
@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&family=Lato:wght@100;300;400;700;900&display=swap');

h1, h2, h3, h4, h5, h6 {
    font-family: 'Great Vibes', cursive;
    font-weight: 700;
    letter-spacing: 1px;
    color: #d4af37; /* Gold color for headings */
    font-size: 50px;
}

a {
    font-family: 'Times News Roman', cursive;
    font-weight: 700;
    transition: all 0.4s ease;
    color: #d4af37; /* Gold color for links */
    text-decoration: none;
    font-size: 14px;
}

.navbar {
    font-family: 'Great Vibes', cursive;
    background-color: #d4af37 !important; /* Gold background color */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Optional: shadow for depth */
    padding: 0.5rem;
}

.nav-link {
    font-family: 'Great Vibes', cursive;
    color: #ffffff; /* Change this to your desired text color */
    font-size: 1.5rem; /* Adjust for mobile */
    padding: 0.5rem 1rem; /* Add padding for touch targets */
}

.navbar-brand {
    font-family: 'Great Vibes', cursive;
    color: #ffffff; /* Change this to your desired text color */
    font-size: 2rem; /* Adjust for mobile */
    padding: 0.5rem;
}

.nav-link.active,
.navbar-brand.active {
    font-family: 'Great Vibes', cursive;
    color: #b8760c !important; /* Active link color */
}

.nav-link:hover, 
.navbar-brand:hover {
    font-family: 'Great Vibes', cursive;
    color: #554e05; /* Hover state color */
}

.hero-section {
    position: relative; /* Enables absolute positioning for the video */
    overflow: hidden; /* Prevents overflow of the video */
    height: 100vh; /* Keep this for large screens */
}

.background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the video covers the entire section */
    z-index: -1; /* Sends the video behind any content */
}

.container {
    position: relative; /* Keeps the content above the video */
    z-index: 1; /* Ensures the content is on top */
}

.pdf-container {
    position: relative; /* Allows absolute positioning of iframe */
    overflow: hidden; /* Hides any overflow */
    width: 100%; /* Full width of the container */
    height: 70vh; /* Adjust for mobile */
}

.pdf-viewer {
    position: absolute; /* Positioning to fill the container */
    top: 0;
    left: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    border: none; /* Remove the border */
}

@media (max-width: 768px) {
    .navbar {
        padding: 0.5rem 1rem; /* Adjust navbar padding for mobile */
    }

    .nav-link {
        font-size: 1.2rem; /* Smaller font for mobile */
    }

    .navbar-brand {
        font-size: 1.8rem; /* Smaller brand font for mobile */
    }

    .hero-section {
        height: 70vh; /* Adjust height for mobile */
    }

    .pdf-container {
        height: 60vh; /* Adjust height for mobile devices */
    }

    h1, h2, h3 {
        font-size: 1.5rem; /* Responsive font size */
    }

    .lead {
        font-size: 1rem; /* Responsive lead text size */
    }
}

@media (max-width: 576px) {
    .nav-link {
        font-size: 1rem; /* Even smaller font for extra small screens */
    }

    .navbar-brand {
        font-size: 1.5rem; /* Adjust further for small screens */
    }

    .pdf-container {
        height: 50vh; /* Smaller height for very small screens */
    }

    .hero-section {
        height: 60vh; /* Adjust hero section height */
    }
}

/* Modal image gallery - keeps modal centered and images scaled correctly */
.modal-gallery {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.modal-body {
    padding: 0;
}


