
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Rajdhani:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Monoton&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Rajdhani:wght@300;400;500;600;700&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Milonga&family=Monoton&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Rajdhani:wght@300;400;500;600;700&display=swap');
/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Open Sans', sans-serif;
    scroll-behavior: smooth;
    list-style: none;
    text-decoration: none;
}

/* Color Variables */
:root {
    --main-color: #ff9800;
    --text-color: #ffffff; /* White text for better visibility on black */
    --bg-color: #000000; /* Black background for navbar */
}

/* Body and Header Styling */
body {
    font-family: 'Open Sans', sans-serif;
    color: #333333;
    background-color: #ffffff;
}
/* Header Styling */
header {
    font-family: 'Playfair Display', serif;
    font-weight: 700; /* Adjust as needed for visual emphasis */
    background-color: var(--bg-color);
    padding: 0; /* Remove extra padding */
    position: sticky; /* Make the entire header sticky */
    top: 0; /* Stick to the top */
    z-index: 1000; /* Ensure it stays on top of other content */
}
/* Navbar Styling */
.navbar {
    font-family: 'Playfair Display', serif;
    font-weight: 700; /* Adjust as needed for visual emphasis */
    background-color: black !important;
    width: 100%;
    padding: 10px 0;
    transition: transform 1s ease-out, opacity 1s ease-out;
   
}

}
/* Navbar Styling */
.navbar-nav {
    display: flex;
    justify-content: center;
    width: 100%;
}

/* Additional Styling for Sticky Effect (Optional) */
.navbar.show {
    opacity: 1;
    transform: translateY(0);
}


/* Logo Styling */
header .navbar-brand img {
    width: 90px;
}

/* Center Navigation Links */
.navbar-nav {
    display: flex;
    justify-content: center;
    width: 100%;
}

.navbar-nav .nav-link {
    color: var(--text-color);
    font-size: 16px;
    font-weight: 500;
    margin: 0 15px; /* Space between links */
    transition: color 0.3s;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
    color: var(--main-color);
}

/* Social Icons Styling */
.social-icons a {
    margin: 0 8px; /* Space between icons */
}

.social-icons a img {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    transition: transform 0.4s, box-shadow 0.4s;
}

.social-icons a:hover img {
    transform: scale(1.2);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); /* Shadow for hover effect */
}

/* Responsive Navbar Animation */
.navbar {
    opacity: 0;
    transform: translateY(-100px);
}

.navbar.show {
    opacity: 1;
    transform: translateY(0);
}

 /* Custom styles for the navbar toggler */
 .navbar-toggler {
    background-color: transparent; /* Optional: to make the button background transparent */
}

.navbar-toggler-icon {
    background-color: #fff; /* Main color */
    border-radius: 5px; /* Optional: adds a slight rounded effect */
}

/* If you want to change the color of the toggler icon when active */
.navbar-toggler:focus .navbar-toggler-icon,
.navbar-toggler:hover .navbar-toggler-icon {
    background-color: #fff; /* Same main color */
    opacity: 0.7; /* Optional: slightly transparent on hover/focus */
}


/*   first page................................................................................................*/

.herooo-section {
    position: relative;
    height: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: #7a5b1f;
    overflow: hidden;
}



/* Foreground Layer - bar2.jpg */
/* Foreground Layer - bar2.jpg with animation */
.herooo-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 350px; /* Height for bar2.jpg layer */
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
        url('./image/bb.jpg') no-repeat center center/cover;
    z-index: -2;
    animation: backgroundMove 20s infinite alternate;
}
/* Main Heading and Subtitle */
.herooo-content {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-bottom: 30px;
}

.herooo-content h1 {
    font-family: 'Milonga', cursive;
    font-weight: 600;
    font-size: 6em;
    font-weight: bold;
    color: var(--main-color);
    animation: dropDown 2s ease forwards;
    margin-top: 120px;
}

.herooo-content p {
    font-family: 'Playfair Display', serif;
    font-weight: 400; /* Adjust as needed for visual emphasis */
    font-size: 1em;
    color: #fff;
    animation: bottomUp 3s ease forwards;
}

/* Keyframes for Drop Down Effect on h1 */
@keyframes dropDown {
    0% {
        opacity: 0;
        transform: translateY(-50px); /* Start above */
    }
    100% {
        opacity: 1;
        transform: translateY(0); /* End at the original position */
    }
}

/* Keyframes for Bottom Up Effect on p */
@keyframes bottomUp {
    0% {
        opacity: 0;
        transform: translateY(50px); /* Start below */
    }
    100% {
        opacity: 1;
        transform: translateY(0); /* End at the original position */
    }
}




/* Keyframes for Background Movement */
/* Keyframes for Background Movement */
@keyframes backgroundMove {
    0% { background-position: center; }
    100% { background-position: center 10px; } /* Adjust the values to control movement */
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Responsive Design */
@media (max-width: 768px) {
    .herooo-section {
        height: auto;
    }

    .bar-box {
        flex-direction: column;
        position: static;
        margin-top: 20px;
    }

    .herooo-content h1 {
        font-size: 2.5em;
    }

    .herooo-content p {
        font-size: 1.2em;
    }
}



/*  second page cssssssssssssssssssssssssssssssssss    Container for the whole section */
/* Background for the section */
body {
    margin: 0;
    padding: 0;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 400; /* Rajdhani default weight for readability */
    background: url('./images/background2.jpg') no-repeat center center fixed;
    background-size: cover;
}

/* Container for the whole section */
.jubilee-section {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
    padding: 60px 20px;
    max-width: 1000px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.9); /* White overlay for readability */
    border-radius: 12px;
}

/* Content container */
.jubilee-content {
    flex: 1;
    color: #333;
    max-width: 600px;
    padding-right: 10px;
}

.jubilee-content h2 {
    font-family: 'Playfair Display', serif;
    font-weight: 700; /* Adjust as needed for visual emphasis */
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #333;
    line-height: 1.4;
    text-align: left;
}

.jubilee-content p {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 505; /* Rajdhani default weight for readability */
    margin-bottom: 2rem;
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

/* Sport details styling */
.sport-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sport-item {
    display: flex;
    align-items: center;
    gap: 15px;
}


.icon-container {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid #e0a800; /* Circle border color */
    border-radius: 50%;
    background-color: #ffffff;
    padding: 5px; /* Padding to keep the icon centered */
}

.icon-container img {
    width: 30px; /* Ensures consistent icon size */
    height: 30px;
    object-fit: contain; /* Ensures the icon fits within the container */
}


.sport-text h3 {
    font-family: 'Milonga', cursive;
    font-weight: 400;
    margin: 0;
    font-size: 1.2rem;
    color: #333;
    font-weight: bold;
}

.sport-text p {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 500; /* Rajdhani default weight for readability */
    color: #666;
    margin-top: 0.3rem;
    line-height: 1.4;
    font-size: 1rem;
}

/* Stacked image container */
.stacked-images {
    position: relative;
    max-width: 400px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

/* First Image */
.jubilee-image img {
    position: relative;
    width: 350px;
    height: 250px;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}


/*.jubilee-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 40%;
    height:46.6%;
    background-color: rgba(0, 0, 0, 0.35);
    z-index: 1;
}*/

/* Second Image stacked and offset */
.jubilee-image-second img {
    position: relative;
    top: -30px;
    left: 0px;
    width: 350px;
    height: 250px;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    opacity: 0.9;
}


/*   third age cssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssss*/
.container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding: 20px;
    margin-top:60px;
    flex-wrap: wrap; /* Allows sections to wrap on smaller screens */
}

.section {
    background-color: #d18d21;
    width: 300px;
    text-align: center;
    border-radius: 0px;
    overflow: hidden;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

.section img {
    width: 100%;
    height: 25vh;
    display: block;
}

.section h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700; /* Adjust as needed for visual emphasis */
    font-size: 1.2em;
    font-weight: bold;
    color: white;
    margin: 30px 0 20px;
}

.section p {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 500; /* Rajdhani default weight for readability */
    font-size: 1.1em;
    color: white;
    padding: 0 10px 20px;
}
* Responsive Design */
@media (max-width: 768px) {
    .container {
        flex-direction: column; /* Stack sections vertically on mobile */
        gap: 20px;
        padding: 10px;
        margin-top: 20px;
    }

    .section {
        width: 100%; /* Full width for each section on mobile */
        padding: 15px;
    }

    .section img {
        height: 20vh; /* Adjust image height for better fit on mobile */
    }

    .section h3 {
        font-size: 1.5em; /* Slightly larger heading for readability */
        margin: 20px 0 10px;
    }

    .section p {
        font-size: 0.95em; /* Adjust paragraph font size for better fit */
    }
}

/* fourth page homepage HerOOOOO Section Styling................................................................................. */
/* HerOOOOO Section Styling */

/* fifth section footer......................................................................... */

.herooooo-section {
    position: relative;
    background: url('./images/background.jpg') no-repeat center center/cover;
    padding: 40px 15px;
    color: #fff;
    text-align: center;
}

/* Dark overlay */
.dark-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

/* Content within the section */
.herooooo-content {
    position: relative;
    z-index: 2;
}

.herooooo-content h1 {
    font-family: 'Milonga', cursive;
    font-weight: 600;
    font-size: 5em; /* Adjusted for mobile */
    font-weight: bold;
    color: #ff9800;
    margin-bottom: 10px;
}

.herooooo-content p {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600; /* Rajdhani default weight for readability */
    font-size: 1.5em;
    margin-bottom: 10px;
}

.subtext {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 400; /* Rajdhani default weight for readability */
    font-style: italic;
    font-size: 1.2em;
    color: #ccc;
    margin-bottom: 20px;
}

.join-button {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600; /* Rajdhani default weight for readability */
    display: inline-block;
    padding: 12px 25px;
    background-color: #ff9800;
    color: #fff;
    font-weight: bold;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s, transform 0.4s;
    margin-top: 10px;
}

.join-button:hover {
    background-color: #e68a00;
    transform: scale(1.05);
}

/* Info sections - flex layout */
.info-sections {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 400; /* Rajdhani default weight for readability */
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
    position: relative;
    z-index: 2;
}

.info-box {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 400; /* Rajdhani default weight for readability */
    background-color: rgba(0, 0, 0, 0.8);
    padding: 15px;
    border-radius: 10px;
    width: 100%; /* Full width for smaller screens */
    max-width: 320px; /* Limit width on larger screens */
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.info-box.show {
    opacity: 1;
    transform: translateY(0);
}

.icon img {
    width: 40px; /* Adjusted for mobile */
    height: 40px;
    margin-bottom: 10px;
}

.info-box h3 {
    font-size: 1.3em;
    color: #ff9800;
    margin-bottom: 10px;
}

.info-box ul {
    list-style-type: none;
    padding: 0;
    font-size: 0.9em;
}

.info-box li {
    color: #ccc;
    margin-bottom: 15px;
}

.map-container iframe {
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 250px;
}
/* Responsive Design */
@media (max-width: 768px) {
    .herooo-section {
        height: auto;
        padding: 20px 10px;
    }

    .herooo-content h1 {
        font-size: 2.5em;
    }

    .herooo-content p {
        font-size: 1em;
    }

    .navbar-nav .nav-link {
        font-size: 14px;
        margin: 0 10px;
    }

    .jubilee-section {
        flex-direction: column;
        padding: 40px 15px;
    }

    .herooooo-content h1 {
        font-size: 2em;
    }

    .herooooo-content p {
        font-size: 1em;
    }

    .info-sections {
        flex-direction: column;
        align-items: center;
    }
}