/* General Styles */


/* Enable Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Trajan Pro', sans-serif; /* Default font */
    margin: 0;
    padding: 0;
}
/* Apply Trajan Pro (or Alternative) to Titles */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Trajan Pro', serif; /* Adobe Font */
    font-weight: 700;
}

/* Apply Myriad (or Alternative) to Content */
 p, span, a, li {
    font-family: 'Myriad', sans-serif; /* Adobe Font */
    font-weight: 400;
}


/* Top Contact Bar */
.top-bar {
    background-color: #d13882; /* Pink color from design */
    padding: 20px 0;
}

/* Navbar */ 
.navbar {
    position: fixed;
}

/* Center Navbar Links */
.navbar-collapse {
    flex-grow: 0; /* Prevents it from stretching */
    justify-content: center;
}

/* Contact Info (Right Side) */
.navbar-contact {
    display: flex;
    flex-direction: column;
    text-align: right;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-left: auto; /* Pushes the contact info to the farthest right */
    gap: 5px; /* Spacing between items */
}

.contact-icon {
    width: 18px; /* Adjust size as needed */
    height: auto;
    margin-right: 8px;
    vertical-align: middle;
    filter: brightness(0) invert(1); /* Make them white if needed */
}

/* Responsive Navbar */
@media (max-width: 991px) {
    .navbar-contact {
        display: flex;
        justify-content: center;
        text-align: center;
        width: 100%;
    }
}


.contact-icon {
    width: 20px; /* Adjust size */
    height: auto;
    margin-right: 8px;
    vertical-align: middle;
    filter: invert(20%) sepia(80%) hue-rotate(-100deg) saturate(350%) brightness(195%);
}

/* Logo */
.navbar-brand img {
    height: 60px; /* Adjust the logo size */
    width: auto; /* Keeps aspect ratio */;
}

.navbar-nav {
    display: flex;
    justify-content: center; /* Center the nav links */
    width: 100%; /* Ensure it takes full width */
}

.navbar-nav .nav-link {
    color: #d13882; /* Pink text */
    font-weight: 600;
    margin-right: 15px;
    
}

.navbar-nav .nav-link:hover {
    color: #8b2e64; /* Darker pink on hover */
}

/* Fix Navbar Toggler Button */
.navbar-toggler {
    border: none;
    outline: none;
}
.navbar-toggler-icon {
    background-image: url('data:image/svg+xml;charset=UTF8,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 30 30"%3E%3Cpath stroke="rgba(209,56,130,1)" stroke-width="2" stroke-linecap="round" stroke-miterlimit="10" d="M4 7h22M4 15h22M4 23h22"/%3E%3C/svg%3E');
}

/* Mobile adjustments */
@media (max-width: 991px) {
    .navbar-collapse {
        background-color: white;
        padding: 10px;
    }
    .contact-info {
        display: none;
    }

    .nav-link {
        padding: 10px;
        display: block;
        text-align: center;
    }
}

/* Hero Section */
.hero {
    position: relative;
    /* background: url('/img/GOLDENAGE_DSC02376.jpg') no-repeat 5% center/cover; Replace with your actual hero image */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: opacity 1s ease-in-out;
    z-index: 1;
    min-height: 80vh; /* Adjust based on preference */
    display: flex;
    align-items: flex-end;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 20px;
    margin-bottom: 100px;
}


/* Dark Overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3); /* Dark overlay for contrast */
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

/* Hero Text */
.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Add shadow */
    text-align: left; /* Align text to the left */
    padding-left: 50px; /* Add padding to the left */
    position: relative;
}

.hero p {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 175px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Add shadow */
    text-align: left; /* Align text to the left */
    padding-left: 50px; /* Add padding to the left */
}


/* Features Container Positioned at Bottom */
.hero-features {
    position: absolute;
    display: grid;
    grid-template-columns: repeat(5, 1fr); /* Adapts to any display */
    gap: 10px; /* Adds space between boxes */
    justify-content: center; /* Keeps the grid centered */
    top: 75%; /* Moves it to the bottom */
    left: 50%; /* Moves it to the right */
    text-shadow: #2c2c2c 2px 2px 6px;
    transform: translateX(-50%); /* Centers it horizontally */
}

.feature-box {
    background-color: #703d9c;
    color: white;
    width: calc(100vw / 5); /* Adjusts to the grid column width */
    min-width: 150px; /* Adapts to the grid column width */
    max-width: 300px;
    height: 300; /* Adjusts height to fit content */
    padding: 10px;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* transition: transform 0.3s ease-in-out; */ /* Removed animation */
    position: relative;
    z-index: 10;
}

.feature-box img {
    width: 50px;
    height: auto;
    margin: 1px;
    margin-top: 10px;
    /* transition: transform 0.3s ease-in-out; */ /* Removed animation */
    filter: drop-shadow(2px 4px 6px black); /* Adds a drop shadow */
}

.feature-title {
    font-size: 1.2rem;
    display: flex;
    font-family: 'Trajan Pro', serif;
    font-weight: bold;
    margin: 5px 0;
}

/* 🔹 Fix for Always Visible Description */
.feature-description {
    font-size: .8rem;
    opacity: 1; /* Always visible */
    visibility: visible; /* Always visible */
    /* transition: opacity 0.3s ease-in-out, visibility 0.1s ease-in-out; */ /* Removed animation */
    margin-top: 5px;
    padding: 5px;
    width: 90%;
}

/* 🔹 Removed Hover Effects That Expand Box */
/* .feature-box:hover { */
    /* transform: scale(1.05); */ /* Removed animation */
    /* z-index: 10;
    height: fit-content; */
}

/* 🔹 Removed Hover Effect That Shows Description */
/* .feature-box:hover .feature-description { */
    /* opacity: 1; */
    /* visibility: visible; */
}

/* 🔹 Removed Hover Effect That Scales Image */
/* .feature-box:hover img { */
    /* transform: scale(1.1); */
}

/* Colors */
.purple { background-color: #872c58; color: white; }
.yellow { background-color: #fec629; color: rgb(255, 255, 255); }
.pink-light { background-color: #cd5a91; color: rgb(255, 255, 255); }
.pink-dark { background-color: #ed1e79; color: rgb(255, 255, 255); }
.purple-dark { background-color: #93278f; color: rgb(255, 255, 255); }

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero {
        object-position: left; /* Adjusts image position */
    }
    .hero h1 {
        font-size: 2.2rem;
        font-weight: 900;
        text-align: start; /* Center text on smaller screens */
        margin-bottom: 10px;
    }
    
    
    .hero p {
        font-size: 1rem;
        text-align: start; /* Center text on smaller screens */
        margin-bottom: 20px;
    }

    .hero-features {
        grid-template-columns: 1fr;
        align-items: center;
        position: relative;
        left: auto;
        right: 12.5%;
    }

    .feature-box {
        height: fit-content;
        width: 100%;
        left: 70%;
    }

    .feature-description {
        opacity: 1;
        visibility: visible;
    }
}


/* About Us Section */
.about {
    margin-top: 125px;
    padding: 100px 20px;
    margin-bottom: -125px;
}

.about-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    max-width: 1100px;
    margin: auto;
}

.about-image {
    position: relative;
    display: inline-block;
}

.about-image::before {
    content: "";
    position: absolute;
    top: 50px; /* Moves it down slightly */
    left: 25px; /* Moves it right slightly */
    width: 100%;
    height: 75%;
    border: 3px solid #703d9c; /* Purple border */
    z-index: -1; /* Places it behind the image */
}

/* Image */
.about-image img {
    width: 100%;
    max-width: 600px;
    border-radius: 10px; /* Rounded corners */
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.1);
    display: block; /* Ensures no extra spacing */
}

/* Right: Text */
.about-text {
    flex: 1;
    max-width: 500px;
    text-align: left;
}

.about-text h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c2c2c;
}

.about-text p {
    font-size: .9rem;
    line-height: 1.6;
    color: #444;
}

/* Decorative Square */
.decorative-square {
    width: 20px;
    height: 20px;
    background-color: #703d9c; /* Purple */
    margin-top: 15px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .about {
        padding: 5px 40px;
        margin-top: 5px;
        margin-bottom: 0;
    }
    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .about-reversed .about-container {
        flex-direction: column; /* Ensures proper stacking on small screens */
    }


    .about-text {
        max-width: 90%;
    }

    .decorative-square {
        margin: 10px auto; /* Center the square */
    }
}

/* Servicios Section */
.services {
    text-align: center;
    padding: 50px 20px;
    background-color: #f8f8f8;
    border-radius: 10px;
    max-width: 800px;
    margin: 40px auto;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.services h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #703d9c;
    font-family: 'Trajan Pro', serif;
}

.services-list {
    list-style: none;
    padding: 0;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.services-list li {
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 10px;
    background: white;
    padding: 10px 15px;
    border-radius: 8px;
    width: 90%;
    max-width: 500px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
}

.services-list li i {
    font-size: 1.5rem;
    color: #703d9c;
}


/* Testimonials Section */
.testimonials {
    font-family: Trajan Pro, serif;
    background-color: #8c8c8c; /* Gray background */
    padding: 50px 0;
    text-align: center;
    color: white;
    text-align: center;
}

/* Section Title */
.testimonials h3 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.testimonials cite {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 30px;
    font-size: larger;
    color: #872c58;
}

/* Testimonial Grid (Holds 3 Cards in a Row) */
.testimonial-grid {
    display: flex;
    justify-content: center; /* Center the testimonial cards */
    flex-wrap: nowrap;
    gap: 20px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch; /* Smooth scrolling for iOS */
}

/* Testimonial Card */
.testimonial-card {
    background-color: white;
    color: black;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    max-width: 300px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: max-width 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

/* .testimonial-card img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 10px;
} */

.testimonial-card:hover {
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.5);

}

/* Carousel Navigation Arrows */
.carousel-control-prev, .carousel-control-next {
    position: rela;
    top: 50%;
    background: none;
    border: none;
}

.carousel-control-icon {
    font-size: 30px;
    color: white;
}
/* Responsive Adjustments */
@media (max-width: 768px) {
    .testimonial-grid {
        display: flex;
        flex-direction: column; /* Stack cards on top of each other */
        align-items: center;
    }

    .testimonial-card {
        max-width: 90%;
        margin: 10px 0;
    }
}

/* Amenities Section */
.amenities-section {
    padding: 40px 20px;
    text-align: center;
    background: #d13882;
}

/* Section Title */
.amenities-title {
    font-size: 2rem;
    font-weight: bolder;
    text-transform: uppercase;
    font-family: "Trajan Pro", serif;
    color: #ffffff;
    margin-bottom: 20px;
}

/* Container */
.amenities-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

/* Individual Amenity */
.amenity-box {
    display: flex;
    align-items: center;
    background: white;
    padding: 10px 20px;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    max-width: 300px;
    gap: 10px;
}

/* Icons */
.amenity-box i {
    font-size: 1.8rem; /* Adjust icon size */
    color: #703d9c; /* Match your site's color */
}

/* Text */
.amenity-text {
    font-size: 1rem;
    font-family: "Myriad", sans-serif;
    color: #444;
}

/* Mobile View */
@media (max-width: 768px) {
    .amenities-container {
        flex-direction: column;
        align-items: center;
    }

    .amenity-box {
        width: 90%;
    }
}



/* Mission Section */
.mission {
    position: relative;
    background: url('/img/GOLDENAGE_DSC02367.jpg') no-repeat top center/cover, #f8f8f8;
    text-align: center;
    padding: 100px 20px;
    display: flex;
    align-items: flex-start; /* Align items to the bottom */
    justify-content: center;
    min-height: 75vh;
    margin-bottom: 15vh;
}

/* Overlay to Improve Readability */
.mission-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
}

/* Floating Box */
.mission {
    margin-bottom: 200px;
}
.mission-box {
    position: absolute;
    top: 95%;
    left: 50%;
    transform: translate(-50%, -50%); /* Ensures perfect centering */
    z-index: 2;
    width: 50%;
    height: auto;
    background: #d13882; /* Original Pink */
    padding: 10px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.3);
    margin-bottom: 50px; /* Add margin to create space from the bottom */
}

/* Mission Title */
.mission h2 {
    font-size: 2rem;
    font-weight: 700;
    font-family: "Trajan Pro", serif;
    margin-bottom: 15px;
    color: white;
}

/* Mission Text */
.mission span {
    font-size: 1.2rem;
    font-family: "Myriad", sans-serif;
    line-height: 1.6;
    color: white;
}

/* Responsive Adjustments */
@media (max-width: 768px) {

    .mission-box {
        width:90%;
        top: 85%;
    }

    .mission-box h2, .mission-box span {
        text-align: center;
        width: auto;
    }
}


/* Gallery Section */
#gallery {
    text-align: center;
    padding: 20px;
    max-width: 1300px;
    margin: auto;
    background-color: #ffffff;
}

.gallery h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #d13882;
}

/* Filter Buttons */
.gallery-filters {
    margin-bottom: 15px;
}

.filter-btn {
    padding: 10px 20px;
    margin: 5px;
    border: none;
    background-color: white;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.3s;
    font-size: 16px;
    color: #d13882;
}

.filter-btn.active {
    background-color: #d13882;
    color: white;
}

/* Gallery Container */
.gallery-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap; /* Allows images to wrap */
    gap: 10px;
    width: 95%;
    max-width: 1200px;
    padding: 10px;
}

/* Image Styling */
.gallery-container img {
    width: calc(25% - 30px); /* 4 images per row */
    max-width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 8px;
    object-fit: cover;
    object-position: top;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    position: relative;
    z-index: 1;
}


/* Hover Effect */
.gallery-container img:hover {
    transform: scale(1.15);
    z-index: 10;
    position: relative;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.3);
}

/* Hide non-selected images */
.hidden {
    display: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .gallery-container {
        width: 100%;
    }
    .gallery-container img {
        width: calc(33.33% - 3px); /* 3 images per row */
    }

    .gallery-container img:active {
        transform: scale(2.5); /* Enlarge image on click */
        z-index: 20;
        position: relative;
        box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.5);
    }
}

/* Lightbox (Modal) Styling */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out;
    z-index: 1000;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 8px;
    box-shadow: 0px 5px 20px rgba(255, 255, 255, 0.3);
    transition: transform 0.3s ease-in-out;
}

/* Close button */
.lightbox .close-btn {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 30px;
    color: white;
    cursor: pointer;
    background: none;
    border: none;
}

.lightbox.show {
    opacity: 1;
    visibility: visible;
}



/* Contact Section */
.contact-section {
    background-color: #e4e4e4;
    position: relative;
    width: 100%;
    height: 500px; /* Adjust height as needed */
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

/* Google Maps Background */
.map-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Contact Form Styling */
.contact-form-container {
    position: relative;
    z-index: 2;
    background: #d13882; /* Original Pink */
    padding: 30px;
    border-radius: 10px;
    max-width: 350px;
    width: 90%;
    margin-right: 200px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.contact-form-container h2 {
    font-size: 1.8rem;
    font-family: "Trajan Pro", serif;
    color: white;
}

.contact-form-container p {
    font-size: 1rem;
    font-family: "Myriad", sans-serif;
    color: white;
    margin-bottom: 15px;
}

/* Form Inputs */
.contact-form-container input,
.contact-form-container textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
}

/* Submit Button */
.contact-form-container button {
    background: #703d9c; /* Purple */
    color: white;
    padding: 10px;
    border: none;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

.contact-form-container button:hover {
    background: #5a2f7a;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .contact-section {
        flex-direction: column;
        height: auto;
        padding-bottom: 30px;
        align-items: center; /* Align to the right */
    }
    .map-container {
      height: 100vh;

    }

    .contact-form-container {
        margin-right: 0;
        width: 90%;
        right: 0;
        bottom: 0;
        z-index: 1000; /* Ensure it stays above other content */
    }
}

/* Contact Banner */
.contact-banner {
    background: #d13882; /* Pink Color */
    text-align: center;
    padding: 20px 0;
}

.contact-banner h2 {
    font-size: 1.8rem;
    font-family: "Trajan Pro", serif;
    color: white;
}

/* Contact Info Section */
.contact-info {
    background: #8b2e64; /* Dark Purple */
    padding: 40px 0;
    color: white;
    position: relative;
    z-index: 10;
}

.contact-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1100px;
    margin: auto;
    gap: 30px;
}

/* Left: Logo */
.contact-logo img {
    width: 180px; /* Adjust as needed */
    filter: brightness(0) invert(1); /* Turns logo white */
}

/* Middle: Contact Text */
.contact-text {
    flex: 1;
    font-size: .8rem;
    font-family: "Myriad", sans-serif;
    line-height: 1.6;
    max-width: 450px;
}

/* Divider Line */
.contact-divider {
    width: 2px;
    height: 80px;
    background: white;
}

/* Right: Contact Details */
.contact-details {
    display: flex;
    flex-direction: column;
}

.contact-details p {
    display: flex;
    align-items: center;
    font-size: 1rem;
    font-family: "Myriad", sans-serif;
    margin-bottom: 10px;
}

/* Icons */
.contact-details .icon {
    width: 20px;
    height: auto;
    margin-right: 10px;
    filter: brightness(0) invert(1); /* Turns icons white */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .map-container {
        position: static;
        width: 100%;
        height: 300px;
        margin-top:10px;
    }

    .contact-form-container {
        position: static;
        width: 100vh;
    }

    .contact-info {
        display: block;
    }

    .contact-logo img {
        width: 150px; /* Adjust as needed */
    }
    .contact-logo img {
        width: 150px; /* Adjust as needed */
    }

    .contact-divider {
        display: none; /* Hide divider on mobile */
    }

    .contact-text {
        max-width: 100%;
    }

    .contact-details p {
        justify-content: center;
    }

    /* Thank You Page Styles */
.thankyou-section {
    background-color: #f8f8f8;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    text-align: center;
}

.thankyou-container {
    max-width: 600px;
    background: #fff;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
}

.thankyou-container h1 {
    font-family: 'Trajan Pro', serif;
    font-size: 2.5rem;
    color: #d13882;
    margin-bottom: 20px;
}

.thankyou-container p {
    font-family: 'Myriad', sans-serif;
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 30px;
}

.btn-home {
    display: inline-block;
    background-color: #703d9c;
    color: white;
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 5px;
    font-family: 'Myriad', sans-serif;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-home:hover {
    background-color: #5a2f7a;
}

}