.hero-section {
    position: relative;
    text-align: center; /* Centers inline or inline-block elements */
}

.hero-image {
    background-image: url("/images/Jaleen1.jpg");
    height: 50vh;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 100%;
}

.hero-text {
    font-family: 'Gabriela', serif;
    font-size: clamp(1rem, 4vw, 3rem);
    text-align: center;
    color: #fff; 
    background-color: rgba(0, 0, 0, 0.6); 
    padding: 10px;
    border-radius: 8px;
    display: inline-block;  /* Makes it wrap around the content */
    margin-top: 20px;
    box-sizing: border-box;
}

.title {
    font-family: 'Gabriela', serif;
}

nav {
    margin-bottom: 20px; 
}

.navbar {
    background-color: #66b3ff;
}

.navbar-dark .navbar-nav .nav-link {
    color: #ffffff; /* White text color */
}

.navbar-dark .navbar-nav .nav-link:hover {
    color: #3399ff; /* Darker blue on hover */
}

.navbar-nav {
    margin: 3; 
    padding: 3;
}

.nav-item {
    padding-left: 30px;
    padding-right: 30px; /* Add space to the left and right of each nav item */
}

.nav-item a {
    font-size: 1.5rem; /* Increase the nav item font size */
}

.navbar-collapse {
    display: flex;
    justify-content: center;
}

.navbar-brand {
    font-family: 'Gabriela', cursive;
    /* font-size: 8rem; */
    font-size: clamp(3rem, 8vw, 6rem);
    flex: 0;
    color: #504E56;
}

body {
    padding-top: 0px;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: #fff;
    color: #000;
    overflow-x: hidden;
}

.footer {
    background-color: #66b3ff;
    color: #ffffff;
    padding: 15px 0; 
}

.bio-pic {
    max-width: 50%; 
    height: auto; 
    display: block; 
    margin: 0 auto 20px;
    border-radius: 8px;
}

.bio-text {
    color: #333; /* Set the text color to dark gray */
    font-size: 1.2rem; /* Increase the font size */
    line-height: 1.8;
    font-weight: 500;
}

.media-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px;
    box-sizing: border-box;
    place-items: center;
}

.media-gallery img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform .2s ease-in-out;
}

.media-gallery img:hover {
    transform: scale(1.1);
}

img {
    max-width: 100%;
    height: auto;
}

.video-wrapper {
    width: 100%;
    height: auto;
    position: relative;
    overflow: hidden;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
}

.video-wrapper-vert {
    width: 100%;
    height: auto;
    position: relative;
    overflow: hidden;
    padding-top: 177.78%; /* 16:9 Aspect Ratio */
}

.video-wrapper video, .video-wrapper-vert video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
}

.center-image {
    max-width: 80%;
    height: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.center-text {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}