/* --- Basic Setup --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior:smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
}


/* --- Header & Navigation Bar --- */
header {
    background-color: #ffffff;
    border-bottom: 3px solid #ff8c00;
    padding: 15px 5%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none
}

.logo img {
    height: 60px;
}

.logo span {
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
}

.nav-links ul {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-links a {
    text-decoration: none;
    color: #e67e22;
    font-weight: 500;
    font-size: 1.2rem;
    transition: color 0.3s ease;
    /* ADDED for the underline effect */
    position: relative;
    padding-bottom: 5px;
}

.nav-links a:hover {
    color: #d35400;
}

/* --- ADDED FOR THE ACTIVE LINK --- */
.nav-links a.active {
    color: #d35400;
    font-weight: 600;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #ff8c00;
}
/* --- END OF ACTIVE LINK STYLES --- */

.mobile-menu-button {
    display: none;
    font-size: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    color: #333;
}





/* --- Hero Section --- */
/* .hero {
    height: 80vh;
    color: #fff;
    background: url('./src/Am_pic.jpeg') no-repeat center center/cover;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
} */
 /* --- Hero Section with Video --- */
.hero {
    height: 80vh;
    color: #fff;
    position: relative; /* Essential for positioning the video and overlay */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden; /* Hides parts of the video that overflow the container */
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Crucial: Ensures video covers the area without distortion */
    z-index: 1; /* Sits on the bottom layer */
}

/* Dark overlay for readability */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black overlay */
    z-index: 2; /* Sits between the video and the content */
}

.hero-content {
    position: relative; /* Ensure content is positioned correctly */
    z-index: 3; /* Sits on the top layer, above the video and overlay */
}






/* Dark overlay for readability */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    /* To sit on top of the overlay */
    z-index: 2;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.hero-content .tagline {
    font-size: 1.75rem;
    font-weight: 400;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    background-color: #e67e22;
    color: #fff;
    padding: 14px 28px;
    border-radius: 50px;
    /* Pill shape */
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #d35400;
    transform: translateY(-3px);
}





/* --- Responsive Design --- */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        /* Hide links by default on mobile */
        position: absolute;
        top: 72px;
        /* Height of the header */
        left: 0;
        width: 100%;
        background-color: #fff;
        flex-direction: column;
        padding: 20px 0;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        display: flex;
        /* Show when active */
    }

    .nav-links ul {
        flex-direction: column;
        width: 100%;
        align-items: center;
        gap: 20px;
    }

    .mobile-menu-button {
        display: block;
        /* Show hamburger button */
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content .tagline {
        font-size: 1.2rem;
    }
}






/* --- General Section Styling (Add if you don't have it) --- */
.content-section {
    padding: 80px 5%;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 50px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -15px;
    width: 80px;
    height: 4px;
    background-color: #ff8c00;
}

.btn {
    display: inline-block;
    background-color: #e67e22;
    color: #fff;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn:hover {
    background-color: #d35400;
    transform: translateY(-3px);
}




















/* --- Ambiances Section & Attractive Owl Carousel --- */

.content-section-dark {
    padding: 80px 5%;
    background-color: #f8f9fa;
    
    /* A very light grey for contrast */
    position: relative;
    /* Needed for positioning nav arrows */
}

/* 1. Carousel Item Styling (The Cards) */
.ambiance-item {
    position: relative;
    border-radius: 15px;
    /* Softer corners */
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transform: scale(0.95);
    /* Start slightly smaller */
    transition: all 0.4s ease-in-out;
}

.ambiance-item img {
    display: block;
    width: 100%;
    height: 300px;
    /* Taller images */
    object-fit: cover;
    transition: transform 0.4s ease;
}

.ambiance-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
    color: #fff;
    padding: 30px 20px 20px;
    font-weight: 600;
    font-size: 1.1rem;
    text-align: center;
    opacity: 0;
    /* Hidden by default */
    transform: translateY(20px);
    transition: all 0.4s ease-in-out;
}

/* 2. Enhanced Hover and Active States */
.owl-item.active .ambiance-item {
    transform: scale(1);
    /* Active (center) item is full size */
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.ambiance-item:hover .ambiance-caption,
.owl-item.active .ambiance-item .ambiance-caption {
    opacity: 1;
    /* Show caption on hover and for active item */
    transform: translateY(0);
}

.ambiance-item:hover img {
    transform: scale(1.1);
}


/* 3. Custom Navigation Arrows (Prev/Next) */
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #ffffff !important;
    color: #ff8c00 !important;
    width: 50px;
    height: 50px;
    border-radius: 50% !important;
    font-size: 24px !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.owl-carousel .owl-nav button.owl-prev:hover,
.owl-carousel .owl-nav button.owl-next:hover {
    background: #ff8c00 !important;
    color: #ffffff !important;
}

.owl-carousel .owl-nav button.owl-prev {
    left: -25px;
}

.owl-carousel .owl-nav button.owl-next {
    right: -25px;
}

/* 4. Custom Dot Indicators */
.owl-carousel .owl-dots {
    text-align: center;
    margin-top: 30px !important;
}

.owl-carousel .owl-dot {
    display: inline-block;
}

.owl-carousel .owl-dot span {
    width: 12px !important;
    height: 12px !important;
    margin: 0 5px !important;
    background: #ddd !important;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.owl-carousel .owl-dot.active span {
    background: #ff8c00 !important;
    width: 30px !important;
    /* Active dot is wider */
    border-radius: 10px;
}

/* --- Magnific Popup Custom INLINE Styling --- */

/* This class hides the popup content on the page */
.mfp-hide {
    display: none !important;
}

/* Styles for the popup container itself */
.mfp-content .popup-description {
    background: #2c3e50;
    /* Matches your footer */
    padding: 40px;
    width: auto;
    max-width: 600px;
    /* Set a comfortable width */
    margin: 20px auto;
    /* Center the popup */
    border-radius: 10px;
    position: relative;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.5);
}

.mfp-content .popup-description h2 {
    font-size: 2rem;
    color: #ff8c00;
    /* Your brand orange */
    margin-bottom: 15px;
}

.mfp-content .popup-description p {
    font-size: 1.1rem;
    color: #ecf0f1;
    line-height: 1.7;
    margin: 0;
}

/* Optional: Fade-in animation for the popup */
.mfp-fade.mfp-bg {
    opacity: 0;
    transition: all 0.3s ease-out;

}

.mfp-fade.mfp-bg.mfp-ready {
    opacity: 0.8;
}

.mfp-fade.mfp-wrap .mfp-content {
    opacity: 0;
    transition: all 0.3s ease-out;
}

.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
    opacity: 1;
}

.mfp-fade.mfp-removing .mfp-content {
    opacity: 0;
}

/* --- Custom Styling for Magnific Popup Close Button --- */

.mfp-close {
    position: absolute;
    top: 0;
    right: 0;
    width: 44px;
    height: 44px;
    line-height: 44px;

    /* Style the 'X' */
    font-size: 30px;
    color: #ffffff;
    text-align: center;

    /* Remove default styling */
    opacity: 0.8;
    background: transparent;
    text-shadow: none;
    padding: 0;

    transition: color 0.3s ease, transform 0.3s ease;
}

.mfp-close:hover {
    color: #ffffff;
    /* Brighter white on hover */
    opacity: 1;
    transform: scale(1.1);
}

/* Position the close button inside our custom popup */
.mfp-content .popup-description .mfp-close {
    top: 5px;
    right: 5px;
    color: white;
}


/* --- Owl Carousel Adjustments for Mobile --- */
@media (max-width: 992px) {
    .owl-carousel .owl-nav button.owl-prev {
        left: -15px;
    }
    .owl-carousel .owl-nav button.owl-next {
        right: -15px;
    }
}





.about-section {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  padding: 50px 10%;
  gap: 40px;
  flex-wrap: wrap; /* Responsive */
}

.about-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-left .image-card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.about-left img {
  width: 400px;
  height: auto;
  display: block;
  border-radius: 12px;
  transition: transform 0.4s ease-in-out;
  gap: 30px;
}
.about-left img:hover {
  transform: scale(1.1);
}

.about-right {
  flex: 1;
  max-width: 600px;
}

.about-right h1 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #ff8c00;
}

.about-right p {
  line-height: 1.6;
  margin-bottom: 15px;
  font-size: 1rem;
}

.about-right .highlight {
  font-weight: 600;
  color: #d35400;
  font-size: 1.1rem;
}








.about-section.reverse {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  padding: 50px 10%;
  gap: 40px;
  flex-wrap: wrap;
}

.about-left-text {
  flex: 1;
  max-width: 600px;
}

.about-left-text h1 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #e67e22;
}

.about-left-text p {
  line-height: 1.6;
  margin-bottom: 15px;
  font-size: 1rem;
  color: #2c3e50;
}

.about-right-img {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-right-img .image-card {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.about-right-img img {
  width: 400px;
  height: auto;
  display: block;
  border-radius: 12px;
  transition: transform 0.4s ease-in-out;
}

.about-right-img img:hover {
  transform: scale(1.1);
}
/* --- Enhanced Responsive for About Sections & Images --- */
@media (max-width: 1200px) {
    .about-left img,
    .about-right-img img {
        width: 100%;
        height: auto;
    }

    .about-right,
    .about-left-text {
        max-width: 100%;
    }

    .about-section,
    .about-section.reverse {
        padding: 40px 5%;
        gap: 30px;
        flex-direction: column;
        text-align: center;
    }

    .about-left,
    .about-right-img {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
    }
}
















/* --- Attractive Footer Section --- */
.site-footer {
    background-color: #2c3e50;
    /* A modern, dark blue-grey */
    color: #bdc3c7;
    /* A soft, light grey for text */
    padding: 60px 0 20px 0;
    font-size: 0.95rem;
    border-bottom: 3px solid #ff8c00;
}

.footer-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    /* This creates 4 responsive columns */
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-column {
    padding: 0 10px;
}

.footer-column h3 {
    font-size: 1.2rem;
    color: #ff8c00;
    /* Using your brand's orange */
    margin-bottom: 25px;
    font-weight: 600;
    position: relative;
}

/* Stylish underline for headings */
.footer-column h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 50px;
    height: 2px;
    background-color: #ff8c00;
    
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
    margin-bottom: 15px;
}

.footer-logo img {
    height: 60px;
}

.footer-logo span {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
}

.footer-tagline {
    line-height: 1.7;
}

.footer-links,
.contact-details,
.opening-hours {
    list-style: none;
    padding: 0;
}

.footer-links a,
.contact-details span,
.opening-hours li {
    color: #bdc3c7;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #ff8c00;
    padding-left: 5px;
}

.contact-details li,
.opening-hours li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.contact-details i {
    color: #ff8c00;
    margin-right: 15px;
    font-size: 1.1rem;
    margin-top: 4px;
}

/* Social Media Icons */
.social-links {
    margin-top: 25px;
}

.social-links a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 1rem;
    text-decoration: none;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: #ff8c00;
    transform: translateY(-3px);
}

/* Bottom Copyright Bar */
.footer-bottom {
    text-align: center;
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid #34495e;
    /* A slightly lighter line */
}
/* --- Footer Responsiveness --- */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    /* --- ADD THIS NEW RULE --- */
    .footer-column h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .contact-details li,
    .opening-hours li {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
        margin-top: 20px;
    }

    .contact-details li,
    .opening-hours li {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
        margin-top: 20px;
    }
}
/* --- Ambiance Captions on Small Screens --- */
@media (max-width: 768px) {
    .ambiance-caption {
        font-size: 1rem;
        padding: 20px 10px 10px;
    }

    .owl-carousel .owl-nav button.owl-prev,
    .owl-carousel .owl-nav button.owl-next {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
}



/* --- Contact Form Responsive --- */
@media (max-width: 768px) {
    .contact-wrapper {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .contact-form {
        padding: 30px;
    }
}

/* --- Adjust Section Titles on Small Screens --- */
@media (max-width: 576px) {
    .section-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .section-title::after {
        width: 60px;
        height: 3px;
    }

    .about-right h1,
    .about-left-text h1 {
        font-size: 1.5rem;
    }

    .about-right p,
    .about-left-text p {
        font-size: 0.95rem;
    }

    .cta-button {
        padding: 12px 22px;
        font-size: 1rem;
    }
}
/* Back to Top Button */
#backToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #e67e22;
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    display: none; /* hidden by default */
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    z-index: 999;
}

#backToTop:hover {
    background-color: #d35400;
    transform: translateY(-3px);
}


