/* Reset CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Variables */
:root {
    --primary-color: #1a1a1a;
    --secondary-color: #c9a55c;
    --text-color: #333;
    --background-color: #fff;
    --accent-color: #e6c78b;
    --gray-light: #f5f5f5;
    --gray-dark: #666;
}

/* Style général */
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(0, 56, 97, 0.95);
    transition: background-color 0.3s ease;
}

header.scrolled {
    background-color: rgba(0, 56, 97, 0.98);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.main-nav .logo {
    display: flex;
    align-items: center;
}

.main-nav .logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.main-nav .logo img {
    height: 50px;
    width: auto;
    display: block;
}

.logo a {
    color: #fff;
    text-decoration: none;
    font-size: 1.8rem;
    font-weight: 300;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #003861;
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #003861;
    padding: 1rem;
    min-width: 200px;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li {
    margin: 0.5rem 0;
}

.dropdown-menu a {
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.dropdown-menu a:hover {
    color: #003861;
}

.lang-switch {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 20px;
}

.lang-switch a {
    display: flex;
    align-items: center;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    padding: 2px;
}

.lang-switch a.active {
    opacity: 1;
}

.lang-switch a:hover {
    opacity: 1;
}

.flag-icon {
    width: 32px;
    height: 24px;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    object-fit: cover;
}

.burger-menu {
    display: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

@media (max-width: 992px) {
    .burger-menu {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #003861;
        flex-direction: column;
        padding: 1rem;
        text-align: center;
    }

    .nav-links.active {
        display: flex;
    }

    .dropdown-menu {
        position: static;
        background-color: transparent;
        box-shadow: none;
        padding: 0.5rem 0;
    }

    .lang-switch {
        margin: 1rem 0;
    }
}

@media (max-width: 768px) {
    .lang-switch {
        margin: 10px 0;
    }
    .flag-icon {
        width: 28px;
        height: 21px;
    }
}

/* Ajustement pour le contenu sous le header fixe */
main {
    padding-top: 80px;
    overflow-x: hidden;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
                url('../images/villas/sweet-hill-19-Kaye.jpg') no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-content {
    max-width: 800px;
    padding: 0 2rem;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--secondary-color);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: var(--accent-color);
}

/* Presentation Section */
.presentation {
    padding: 3rem 0;
    text-align: center;
    background-color: var(--gray-light);
}

.presentation h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.presentation p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.2rem;
    color: var(--gray-dark);
}

/* Featured Villas Section */
.featured-villas {
    padding: 3rem 0;
}

.featured-villas h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.villa-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.villa-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.villa-card:hover {
    transform: translateY(-5px);
}

.villa-image {
    height: 250px;
    background-size: cover;
    background-position: center;
}

.villa-kaye {
    background-image: url('../images/villas/sweet-hill-19-Kaye.jpg');
}

.villa-rosa {
    background-image: url('../images/villas/Rosa343526470.jpg');
}

.villa-cali {
    background-image: url('../images/villas/Cali354504134.jpg');
}

.villa-alba {
    background-image: url('../images/villas/Alba325177944.jpg');
}

.villa-pina {
    background-image: url('../images/villas/Pina332917307.jpg');
}

.villa-bali {
    background-image: url('../images/villas/Bali354507890.jpg');
}

.villa-card h3 {
    padding: 1.5rem;
    font-size: 1.5rem;
    margin: 0;
}

.villa-card p {
    padding: 0 1.5rem;
    color: var(--gray-dark);
}

.villa-link {
    display: block;
    padding: 1rem 1.5rem;
    text-align: right;
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: bold;
}

/* Services Section */
.services {
    padding: 3rem 0;
    background-color: var(--gray-light);
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-item {
    text-align: center;
    padding: 1.5rem;
}

.service-item i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 0.75rem;
}

.service-item h3 {
    margin-bottom: 0.75rem;
}

/* Footer Styles */
footer {
    background-color: #003861;
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-links a {
    color: #fff;
    font-size: 1.5rem;
    margin-right: 1rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #c8a97e;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}

/* Villas Page Styles */
.villas-hero {
    position: relative;
    height: 80vh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.hero-content {
    max-width: 800px;
    padding: 2rem;
    z-index: 1;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.villas-intro {
    padding: 4rem 2rem;
    background-color: #f8f9fa;
    text-align: center;
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
}

.intro-content h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.intro-content .lead {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
}

.villas-cta {
    padding: 4rem 2rem;
    text-align: center;
    background-color: #f8f9fa;
}

.villas-cta h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.villas-cta p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 2rem;
}

/* Art de Vivre Page Styles */
.lifestyle-hero {
    height: 60vh;
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../images/pages/art-de-vivre/page%20art%20de%20vivre%20-%20bandeau%20home%20page.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    margin-bottom: 4rem;
}

.lifestyle-section {
    padding: 6rem 0;
}

.lifestyle-section:nth-child(even) {
    background-color: #f8f9fa;
}

.lifestyle-section h2 {
    font-size: 2.8rem;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto 4rem;
    line-height: 1.8;
}

.experience-grid {
    max-width: 1200px;
    margin: 0 auto;
}

.experience-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.experience-card.reverse {
    direction: rtl;
}

.experience-image {
    height: 100%;
    min-height: 400px;
    overflow: hidden;
}

.experience-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.experience-image img:hover {
    transform: scale(1.05);
}

.experience-content {
    padding: 3rem;
    direction: ltr;
}

.experience-content h3 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.experience-content p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.highlights {
    list-style: none;
    padding: 0;
}

.highlights li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    color: #666;
}

.highlights li::before {
    content: "•";
    color: #c8a97e;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.event-card {
    text-align: center;
    padding: 3rem 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.event-card:hover {
    transform: translateY(-5px);
}

.event-card i {
    font-size: 3rem;
    color: #c8a97e;
    margin-bottom: 1.5rem;
}

.event-card h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.event-card p {
    color: #666;
    line-height: 1.6;
}

.experience-slider {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.experience-slide {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 500px;
}

.experience-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
}

.slide-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.lifestyle-cta {
    padding: 6rem 0;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
                url('../images/lifestyle/cta-bg.jpg') no-repeat center center;
    background-size: cover;
    color: white;
}

.lifestyle-cta h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.lifestyle-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

@media (max-width: 992px) {
    .experience-card {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .experience-image {
        min-height: 300px;
    }

    .events-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .lifestyle-hero {
        height: 60vh;
    }

    .lifestyle-section h2 {
        font-size: 2.2rem;
    }

    .experience-content {
        padding: 2rem;
    }

    .events-grid {
        grid-template-columns: 1fr;
    }

    .experience-slide {
        height: 400px;
    }

    .slide-content h3 {
        font-size: 1.8rem;
    }

    .lifestyle-cta h2 {
        font-size: 2.2rem;
    }
}

.studios-hero {
    height: 80vh;
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../images/villas/sweet-hill-11-scaled.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

/* Studios Detail Page Styles */
.studio-hero {
    height: 80vh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

.studio-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.5));
    z-index: 1;
}

.studio-hero .hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

.studio-intro {
    padding: 6rem 0;
    background: linear-gradient(to bottom, #fff, #f8f9fa);
}

.studio-intro .intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.studio-intro h2 {
    font-size: 2.8rem;
    color: #2c3e50;
    margin-bottom: 2rem;
    font-weight: 300;
}

.studio-intro .lead {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #495057;
}

.studio-feature-section {
    padding: 6rem 0;
    background-color: #fff;
}

.studio-feature-section.light {
    background-color: #f8f9fa;
}

.studio-feature-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.studio-feature-content.reverse {
    direction: rtl;
}

.studio-feature-text {
    direction: ltr;
    padding: 2rem;
}

.studio-feature-text h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.studio-feature-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #495057;
}

.studio-feature-image {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.studio-feature-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.studio-feature-image:hover img {
    transform: scale(1.05);
}

.studio-amenities {
    padding: 6rem 0;
    background-color: #f8f9fa;
}

.studio-amenities h2 {
    font-size: 2.8rem;
    color: #2c3e50;
    margin-bottom: 4rem;
    text-align: center;
    font-weight: 300;
}

.studio-amenities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.studio-amenity-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.studio-amenity-item:hover {
    transform: translateY(-5px);
}

.studio-amenity-item img {
    width: 48px;
    height: 48px;
    margin-bottom: 1.5rem;
}

.studio-amenity-item h3 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.studio-gallery {
    padding: 6rem 0;
    background-color: #fff;
    max-width: 1200px;
    margin: 0 auto;
}

.studio-gallery h2 {
    font-size: 2.8rem;
    color: #2c3e50;
    margin-bottom: 4rem;
    text-align: center;
    font-weight: 300;
}

.studio-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    width: 100%;
}

.studio-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 4/3;
}

.studio-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.studio-gallery-item:hover img {
    transform: scale(1.05);
}

.studio-cta {
    padding: 6rem 0;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/villas/sweet-hill-11-scaled.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    color: #fff;
}

.studio-cta h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.studio-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

@media (max-width: 992px) {
    .studio-feature-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .studio-feature-content.reverse {
        direction: ltr;
    }

    .studio-feature-image img {
        height: 400px;
    }

    .studio-amenities-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .studio-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .studio-hero {
        height: 60vh;
    }

    .studio-intro h2,
    .studio-feature-text h2,
    .studio-amenities h2,
    .studio-gallery h2,
    .studio-cta h2 {
        font-size: 2rem;
    }

    .studio-feature-text {
        padding: 1rem;
    }

    .studio-feature-image img {
        height: 300px;
    }

    .studio-amenities-grid {
        grid-template-columns: 1fr;
    }

    .studio-gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* Villa Gallery Styles */
.villa-gallery {
    padding: 6rem 0;
    background-color: #fff;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    width: 100%;
}

.gallery-item {
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 8px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* Villa Styles */
.villa-hero {
    height: 80vh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

.villa-intro {
    padding: 6rem 0;
    background: linear-gradient(to bottom, #fff, #f8f9fa);
    text-align: center;
}

.villa-intro .intro-content {
    max-width: 800px;
    margin: 0 auto;
}

.villa-intro h2 {
    font-size: 2.8rem;
    color: #2c3e50;
    margin-bottom: 2rem;
    font-weight: 300;
}

.villa-intro .lead {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #495057;
}

.villa-feature-section {
    padding: 6rem 0;
    background-color: #fff;
}

.villa-feature-section.light {
    background-color: #f8f9fa;
}

.feature-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-content.reverse {
    direction: rtl;
}

.feature-text {
    direction: ltr;
    padding: 2rem;
}

.feature-text h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.feature-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #495057;
}

.feature-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.feature-image img:hover {
    transform: scale(1.02);
}

.villa-amenities {
    padding: 6rem 0;
    background-color: #f8f9fa;
    text-align: center;
}

.villa-amenities h2 {
    font-size: 2.8rem;
    color: #2c3e50;
    margin-bottom: 4rem;
    font-weight: 300;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.amenity-item {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.amenity-item:hover {
    transform: translateY(-5px);
}

.amenity-item img {
    width: 48px;
    height: 48px;
    margin-bottom: 1.5rem;
}

.amenity-item h3 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.amenity-item p {
    font-size: 1rem;
    color: #495057;
    line-height: 1.6;
}

/* Villa Gallery Styles */
.villa-gallery {
    padding: 6rem 0;
    background-color: #fff;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    width: 100%;
}

.gallery-item {
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 8px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.villa-cta {
    padding: 6rem 0;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/villas/Kaye332918344.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    color: #fff;
}

.villa-cta h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.villa-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.btn.btn-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #c8a97e;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.btn.btn-primary:hover {
    background-color: #b69468;
}

@media (max-width: 992px) {
    .feature-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .feature-content.reverse {
        direction: ltr;
    }

    .feature-image img {
        height: 400px;
    }

    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .villa-hero {
        height: 60vh;
    }

    .villa-intro h2,
    .feature-text h2,
    .villa-amenities h2,
    .villa-cta h2 {
        font-size: 2rem;
    }

    .feature-text {
        padding: 1rem;
    }

    .feature-image img {
        height: 300px;
    }

    .amenities-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }
} 