@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('./images/background.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: 500; /* 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 css.................................................*/
/* Base Styling */
body {
    font-family: Arial, sans-serif;
    background-image: url('background2.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    color: #333;
}

.contact-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px;
    background: url('./images/background2.jpg') no-repeat center center/cover;
    color: #000;
    gap: 20px;
}

.map1-container {
    width: 600px;
    height: 400px;
    border: 0;
    margin-top: 50px;
}

.contact-info {
    max-width: 600px;
    background-color: transparent;
    padding: 20px;
    border-radius: 8px;
}

.contact-info h2 {
    font-family: 'Playfair Display', serif;
    font-weight: 700; /* Adjust as needed for visual emphasis */
    font-size: 52px;
    color: #d47500;
    margin-top: 10px;
}

.contact-info p {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 400; /* Rajdhani default weight for readability */
    margin-top: 15px;
    font-size: 16px;
}

.contact-info p span {
    font-family: 'Playfair Display', serif;
    font-weight: 500; /* Adjust as needed for visual emphasis */
    font-weight: bold;
    font-size: 25px;
}

.social2-icons {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social2-icons a img {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    transition: transform 0.4s;
}

.social2-icons a:hover img {
    transform: scale(1.5);
}

/* Mobile Responsive Styling */
@media (max-width: 768px) {
    .contact-section {
        flex-direction: column; /* Stack elements vertically */
        padding: 20px;
        text-align: center;
    }

    .map1-container {
        width: 100%; /* Full width on smaller screens */
        height: auto; /* Maintain aspect ratio */
        margin-top: 20px;
    }

    .contact-info {
        max-width: 100%;
        padding: 15px;
    }

    .contact-info h2 {
        font-size: 32px;
    }

    .contact-info p, .contact-info p span {
        font-size: 14px;
    }

    .social2-icons {
        justify-content: center;
    }
}

/*   contact us page design form............it is removed ........................................................*/



/* Third 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: 700; /* Adjust as needed for visual emphasis */
    font-size: 5em; /* Adjusted for mobile */
    font-weight: bold;
    color: #ff9800;
    margin-bottom: 10px;
}

.herooooo-content p {
    font-family: 'Playfair Display', serif;
    font-weight: 700; /* Adjust as needed for visual emphasis */
    font-size: 1.5em;
    margin-bottom: 10px;
}

.subtext {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 400; /* Rajdhani default weight for readability */
    
    font-size: 1.2em;
    color: #ccc;
    margin-bottom: 20px;
}

.join-button {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 500; /* 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;
}

/* Media queries for mobile responsiveness */
@media (max-width: 768px) {
    .herooooo-content h1 {
        font-size: 2em;
    }

    .herooooo-content p {
        font-size: 
