/* Fonts */
@font-face {
    font-family: 'Magelo';
    src: url('../fonts/magelo/Magelo Thin.ttf') format('truetype');
    font-weight: 100;
    font-style: normal;
    letter-spacing: 2pt;
}

@font-face {
    font-family: 'Magelo';
    src: url('../fonts/magelo/Magelo Extra Light.ttf') format('truetype');
    font-weight: 200;
    font-style: normal;
    letter-spacing: 2pt;
}

@font-face {
    font-family: 'Magelo';
    src: url('../fonts/magelo/Magelo Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    letter-spacing: 2pt;
}

@font-face {
    font-family: 'Magelo';
    src: url('../fonts/magelo/Magelo Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    letter-spacing: 2pt;
}

@font-face {
    font-family: 'Magelo';
    src: url('../fonts/magelo/Magelo Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    letter-spacing: 2pt;
}

@font-face {
    font-family: 'Magelo';
    src: url('../fonts/magelo/Magelo Semi Bold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    letter-spacing: 2pt;
}

@font-face {
    font-family: 'Magelo';
    src: url('../fonts/magelo/Magelo Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    letter-spacing: 2pt;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    font-weight: 200;
}

h2 {
    font-size: 2.5rem;
    font-weight: 300;
}

h3 {
    font-size: 1.8rem;
    font-weight: 300;
}

h4 {
    font-size: 1.4rem;
    font-weight: 400;
}

p {
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.8;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

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

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border: 1px solid #333;
    background: transparent;
    color: #333;
    text-transform: uppercase;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    min-width: 150px;
}

.btn:hover {
    background: #333;
    color: #fff;
}

.btn-primary {
    background: #333;
    color: #fff;
}

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

.btn-secondary {
    background: #f8f8f8;
    border: 1px solid #ddd;
    color: #333;
}

.btn-outline {
    background: transparent;
    border: 1px solid #333;
    color: #333;
    margin: 0.5rem;
}

/* Section Styles */
section {
    padding: 4rem 0;
}

.section-title {
    font-family: "Magelo", serif;
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 2pt;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: transparent;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
}

.nav-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.hamburger {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    z-index: 1000;
    position: relative;
    margin-left: auto;
}

.logo {
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 2px;
    color: white;
}

.nav-menu {
    position: fixed;
    right: -50%;
    top: 0;
    width: 50%;
    height: 100vh;
    background: #c38383;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    list-style: none;
    gap: 2rem;
    transition: right 0.4s ease-in-out;
    z-index: 999;
}

.nav-menu.active {
    right: 0;
}

.nav-link {
    font-size: 1.1rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: white;
    transition: all 0.3s ease;
    padding: 1rem 2rem;
    border-bottom: 1px solid transparent;
    text-align: center;
    width: 100%;
    text-decoration: none;
}

.nav-link:hover {
    color: #c38383;
    border-bottom-color: #c38383;
}

.hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.bar {
    width: 25px;
    height: 2px;
    background: #c38383;
    margin: 3px 0;
    transition: 0.3s;
}

/* Menu Overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 998;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 2s ease-in-out;
    animation: zoomIn 8s ease-in-out infinite;
}

.slide.active {
    opacity: 1;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

@keyframes zoomIn {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

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

.hero-logo {
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 3px;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-title {
    font-family: 'Magelo', serif;
    font-size: 4rem;
    font-weight: 400;
    margin-bottom: 3rem;
    letter-spacing: 2pt;
    line-height: 1.1;
}

.cookie-banner {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    padding: 1rem 2rem;
    border-radius: 5px;
    color: #333;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 3;
}

.cookie-buttons {
    display: flex;
    gap: 0.5rem;
}

.cookie-btn {
    padding: 0.5rem 1rem;
    border: 1px solid #ddd;
    background: white;
    font-size: 0.8rem;
    cursor: pointer;
}

.cookie-btn.active {
    background: #c38383;
    color: white;
    border-color: #c38383;
}

/* Explore Section */
.explore {
    background: #f8f8f8;
    padding: 8rem 0 4rem;
    text-align: center;
}

.explore-subtitle {
    font-size: 2rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #666;
}

/* Équipement & Services Section */
.equipment-services {
    padding: 5rem 0;
    background: #fff;
}

.equipment-services .section-title.center {
    text-align: center;
    margin-bottom: 4rem;
    font-size: 2.5rem;
    color: #333;
}

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

.equipment-services .service-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 1rem;
    padding: 1rem 0;
}

.equipment-services .service-item.left {
    grid-template-columns: 1fr 1fr;
}

.equipment-services.service-item.right {
    grid-template-columns: 1fr 1fr;
}

.equipment-services .service-item.right .service-content {
    order: 1;
}

.equipment-services .service-item.right .service-image {
    order: 2;
}

.equipment-services .service-image {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    background: #f5f5f5;
    min-height: 350px;
}

.equipment-services .service-slideshow {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 350px;
}

.equipment-services .service-slideshow img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 350px;
    object-fit: cover;
    object-position: center bottom;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.equipment-services .service-slideshow img.active {
    opacity: 1;
    position: relative;
}

.equipment-services.service-image img {
    width: 100%;
    height: 100%;
    min-height: 350px;
    object-fit: cover;
    object-position: center bottom;
    display: block;
    transition: transform 0.3s ease;
}

.equipment-services .slide-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.5);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: #333;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.equipment-services .slide-btn:hover {
    background: rgba(243, 156, 18, 0.9);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.equipment-services .slide-btn.prev {
    left: 10px;
}

.equipment-services .slide-btn.next {
    right: 10px;
}

.equipment-services .service-image:hover img {
    transform: scale(1.05);
}

.equipment-services .service-content {
    padding: 2rem;
}

.equipment-services .service-content h3 {
    font-family: 'Magelo', serif;
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 1rem;
    letter-spacing: 2pt;
    color: #333;
}

.equipment-services .service-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
}

/* Responsive for Equipment & Services */
@media (max-width: 768px) {

    .equipment-services .service-item,
    .equipment-services .service-item.left,
    .equipment-services .service-item.right {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .equipment-services .service-item.right .service-content,
    .equipment-services .service-item.right .service-image {
        order: initial;
    }

    .equipment-services .service-image img {
        height: 300px;
    }

    .equipment-services .service-content h3 {
        font-size: 1.5rem;
    }

    .equipment-services .section-title.center {
        font-size: 1.8rem;
    }
}


/* Experiences Section */
.experiences {
    padding: 5rem 0;
    background: #f8f8f8;
}

.experiences .section-title.center {
    text-align: center;
    margin-bottom: 4rem;
    font-size: 2.5rem;
    color: #333;
}

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

.experience-title {
    text-align: center;
    font-family: 'Magelo', serif;
    font-size: 2.5rem;
    margin: 4rem auto 3rem;
    color: #333;
    font-weight: 400;
    letter-spacing: 2pt;
}


.experiences .service-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 1rem;
    padding: 1rem 0;
}

.experiences .service-item.left {
    grid-template-columns: 1fr 1fr;
}

.service-item.right {
    grid-template-columns: 1fr 1fr;
}

.experiences .service-item.right .service-content {
    order: 1;
}

.experiences .service-item.right .service-image {
    order: 2;
}

.experiences .service-image {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); */
    /* background: #f5f5f5; */
    min-height: 350px;
}

.experiences .service-slideshow {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 350px;
}

.experiences .service-slideshow img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 350px;
    object-fit: cover;
    object-position: center bottom;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.experiences .service-slideshow img.active {
    opacity: 1;
    position: relative;
}

.experiences .service-image img {
    width: 100%;
    height: 100%;
    min-height: 350px;
    object-fit: cover;
    object-position: center bottom;
    display: block;
    transition: transform 0.3s ease;
}

.experiences .slide-btn {
    position: absolute;
    top: 60%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.5);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: #333;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.experiences .slide-btn:hover {
    background: rgba(243, 156, 18, 0.9);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.experiences .slide-btn.prev {
    left: 10px;
}

.experiences .slide-btn.next {
    right: 10px;
}

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

.experiences .service-content {
    padding: 2rem;
}

.experiences .service-image h3 {
    font-family: 'Magelo', serif;
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 2rem;
    letter-spacing: 2pt;
    color: #333;
}

.experiences .service-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
}

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

    .experiences .service-item,
    .experiences .service-item.left,
    .experiences .service-item.right {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .experiences .service-item.right .service-content,
    .experiences .service-item.right .service-image {
        order: initial;
    }

    .experiences .service-image img {
        height: 300px;
    }

    .experiences .service-content h3 {
        font-size: 1.5rem;
    }

    .experiences .section-title.center {
        font-size: 1.8rem;
    }
}

/* Location Section */
.location-section {
    padding: 5rem 0;
    background: #f8f8f8;
}

.location-section .page-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 0 2rem;
}

.location-section .section-title {
    font-family: 'Magelo', serif;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #333;
    font-weight: 400;
    letter-spacing: 2pt;
}

.location-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

.map-container {
    max-width: 1200px;
    margin: 0 auto 3rem;
    padding: 0 2rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    display: block;
    border-radius: 10px;
}

.car-access-info {
    display: flex;
    align-items: center;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.car-icon {
    flex-shrink: 0;
}

.car-access-text {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.8;
    margin: 0;
}

@media (max-width: 768px) {
    .location-section .section-title {
        font-size: 2rem;
    }

    .location-subtitle {
        font-size: 1rem;
    }

    .car-access-info {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .map-container {
        margin-bottom: 2rem;
    }

    .map-container iframe {
        height: 300px;
    }
}

/* About Us Section */
.about-us-section {
    padding: 5rem 0;
    background: #fff;
}

.about-us-section .section-title {
    font-family: 'Magelo', serif;
    text-align: center;
    margin-bottom: 3rem;
    font-size: 3rem;
    font-weight: 500;
    letter-spacing: 2pt;
    color: #333;
}

.about-header {
    text-align: center;
    margin-bottom: 4rem;
}

.team-photos {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.team-subtitle {
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #666;
    margin-bottom: 2rem;
}

.team-slideshow {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.team-slideshow img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.team-slideshow img.active {
    opacity: 1;
}

.team-photos .slide-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.5);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 28px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: #333;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.team-photos .slide-btn:hover {
    background: rgba(195, 131, 131, 0.9);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.team-photos .slide-btn.prev {
    left: 20px;
}

.team-photos .slide-btn.next {
    right: 20px;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: flex-start;
    margin-bottom: 4rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 2rem;
}

.about-text {
    padding-top: 2rem;
}

.about-title {
    font-family: 'Magelo', serif;
    font-size: 3rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    letter-spacing: 2pt;
    color: #333;
}

.wavy-line {
    width: 300px;
    height: 20px;
    margin-bottom: 2rem;
}

.about-photo {
    position: relative;
    height: 400px;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-top: 11rem;
}

.about-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-story {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 4rem;
    padding: 0 2rem;
}

.story-title {
    font-family: 'Magelo', serif;
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    letter-spacing: 2pt;
    color: #333;
}

.story-subtitle {
    font-size: 1.2rem;
    font-style: italic;
    color: #666;
    margin-bottom: 1.5rem;
}

.wavy-line-bottom {
    width: 100%;
    max-width: 600px;
    height: 20px;
    margin: 0 auto 2rem;
    display: block;
}

.story-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
}

.collection-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin: 0 auto 3rem;
    padding: 0 2rem;
}

.collection-card {
    text-align: center;
}

.card-image {
    height: 250px;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.collection-card h4 {
    font-family: 'Magelo', serif;
    font-size: 1.3rem;
    font-weight: 400;
    letter-spacing: 2pt;
    color: #333;
}

.collection-cta {
    text-align: center;
    padding: 2rem;
}

.cta-note {
    font-size: 1.1rem;
    font-style: italic;
    color: #666;
    margin-bottom: 1.5rem;
}

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

    .about-title {
        font-size: 2rem;
    }

    .story-title {
        font-size: 1.8rem;
    }

    .collection-cards {
        grid-template-columns: 1fr;
    }

    .wavy-line,
    .wavy-line-bottom {
        max-width: 100%;
    }

    .team-slideshow {
        height: 300px;
    }

    .team-photos .slide-btn {
        width: 40px;
        height: 40px;
        font-size: 24px;
    }

    .team-photos .slide-btn.prev {
        left: 10px;
    }

    .team-photos .slide-btn.next {
        right: 10px;
    }

    .about-photo {
        margin-top: 1rem;
    }
}

/* Rooms Section */
.rooms {
    background: #c38383;
    padding: 4rem 0;
    color: white;
}

.rooms-content {
    display: flex;
    flex-direction: column;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    gap: 3rem;
    text-align: center;
}

.rooms-text .section-title {
    color: white;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.rooms-features p {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.rooms-image {
    position: relative;
}

.room-card-large {
    height: 70vh;
    max-height: 700px;
    min-height: 500px;
    position: relative;
    border-radius: 5px;
    border: 3px solid white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block;
}

.room-card-large:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.room-card-large::after {
    content: 'Découvrir nos services';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #c3838369;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 500;
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 20;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.room-card-large:hover::after {
    opacity: 1;
}

.room-slideshow {
    position: relative;
    width: 100%;
    height: 100%;
}

.room-slideshow img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.room-slideshow img.active {
    opacity: 1;
}

.room-type {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 1px;
    z-index: 10;
}

.room-categories {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    max-width: 1400px;
    margin: 3rem auto 0;
    padding: 0 3rem;
}

.room-card {
    height: 30vh;
    max-height: 350px;
    min-height: 250px;
    position: relative;
    border-radius: 3px;
    border: 3px solid white;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.room-card-slideshow {
    position: relative;
    width: 100%;
    height: 100%;
}

.room-card-slideshow img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.room-card-slideshow img.active {
    opacity: 1;
}

.room-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

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

.booking-question {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 2rem;
    color: white;
    font-weight: 300;
}

.room-amenities {
    color: #333;
    max-width: 900px;
    margin: 0 auto;
}

.amenities-title {
    font-family: 'Magelo', serif;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #333;
    font-weight: 400;
    letter-spacing: 2pt;
}

.amenities-intro {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #333;
    font-weight: 300;
    line-height: 1.6;
}

.amenities-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.amenities-list li {
    /* font-size: 1.5rem; */
    /* margin-bottom: 0.8rem; */
    color: #333;
    font-weight: 300;
    padding-left: 1.5rem;
    position: relative;
}

/* .amenities-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #c38383;
    font-weight: bold;
} */



/* Room Features Section */
.room-features {
    padding: 4rem 0;
    background: #f8f8f8;
}

.room-features .section-title {
    text-align: center;
    font-family: 'Magelo', serif;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
    font-weight: 400;
    letter-spacing: 2pt;
}

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

.feature-item {
    text-align: center;
    padding: 2rem;
    transition: transform 0.3s ease;
}

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

.feature-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-icon svg {
    transition: transform 0.3s ease;
}

.feature-item:hover .feature-icon svg {
    transform: scale(1.1);
}

.feature-title {
    font-family: 'Magelo', serif;
    font-size: 1.3rem;
    color: #333;
    font-weight: 400;
    letter-spacing: 2pt;
    line-height: 1.4;
}

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

    .room-features .section-title {
        font-size: 2rem;
    }
}

/* Feature Cards Section */
.feature-cards {
    padding: 4rem 0;
    background: white;
}

.feature-cards .section-title {
    text-align: center;
    font-family: 'Magelo', serif;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
    font-weight: 400;
    letter-spacing: 2pt;
}


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

.feature-card {
    height: 300px;
    position: relative;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    text-decoration: none;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0);
    transition: background 0.3s ease;
    z-index: 1;
}

.feature-card:hover::before {
    background: rgba(0, 0, 0, 0.2);
}

.feature-card h3 {
    position: relative;
    z-index: 2;
}

.feature-card.restaurant {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        url('https://picsum.photos/id/188/800/400') center/cover;
}

.feature-card.discover {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
        #c38383;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
}

.feature-card.wellness {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        url('https://picsum.photos/id/453/800/400') center/cover;
}

.feature-card h3 {
    font-family: 'Magelo', serif;
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 2pt;
    line-height: 1.2;
}

.spotify-logo {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    font-size: 1.5rem;
}

/* Location Section */
.location {
    background: #e91e63;
    padding: 4rem 0;
    color: white;
}

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

.location-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 5px;
}

.location-text .section-title.white {
    color: white;
    text-align: left;
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
}

.location-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-style: italic;
    opacity: 0.9;
}

.location-subtitle {
    font-size: 1.8rem;
    font-weight: 300;
    margin-bottom: 1rem;
}

/* Neighbourhood Cards */
.neighbourhood {
    padding: 4rem 0;
    background: white;
}

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

.neighbourhood-card {
    height: 300px;
    position: relative;
    border-radius: 5px;
    overflow: hidden;
}

.neighbourhood-card:nth-child(1) {
    background: url('https://picsum.photos/id/225/800/400') center/cover;
}

.neighbourhood-card:nth-child(2) {
    background: url('https://picsum.photos/id/274/800/400') center/cover;
}

.neighbourhood-card:nth-child(3) {
    background: url('https://picsum.photos/id/326/800/400') center/cover;
}

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

.card-overlay h3 {
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 1px;
    margin: 0;
}

/* Guide Section */
.guide {
    background: #00695c;
    padding: 4rem 0;
    color: white;
}

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

.guide-text h2 {
    font-size: 2.2rem;
    font-weight: 300;
    margin-bottom: 2rem;
    line-height: 1.3;
}

.guide-text p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.cityguide {
    margin-top: 3rem;
}

.cityguide h4 {
    font-size: 1.3rem;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.guide-image {
    height: 400px;
    background: url('https://picsum.photos/id/403/800/500') center/cover;
    position: relative;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.guide-logo {
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: 3px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.guide-label {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.7);
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

/* Golf Section */
.golf {
    padding: 3rem 0;
    background: #f8f8f8;
}

.golf-card {
    background: url('https://picsum.photos/id/577/1200/300') center/cover;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    border-radius: 5px;
    max-width: 1200px;
    margin: 0 auto;
    background-size: cover;
}

.golf-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 5px;
}

.golf-card h3 {
    position: relative;
    z-index: 1;
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 0.5rem;
}

.golf-card p {
    position: relative;
    z-index: 1;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.golf-card a {
    position: relative;
    z-index: 1;
    color: white;
    text-decoration: underline;
}

/* Press Section */
.press {
    padding: 4rem 0;
    background: white;
}

.press-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 1rem;
    max-width: 1200px;
    margin: 3rem auto 0;
    padding: 0 2rem;
    height: 400px;
}

.press-item {
    background: #f0f0f0;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
    text-decoration: none;
    display: block;
}

.press-item:hover {
    transform: scale(1.02);
}

.press-item.large {
    grid-row: 1 / 3;
}

.press-item.instagram-item {
    background: linear-gradient(135deg, #833AB4, #E1306C, #F77737);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.instagram-icon {
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.press-item.instagram-item:hover .instagram-icon {
    transform: scale(1.1);
}

.press-item.instagram-item .press-content {
    position: static;
    background: none;
    padding: 0;
    text-align: center;
}

.press-item.instagram-item .press-tag {
    font-size: 1.1rem;
    font-weight: 500;
}

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

.press-tag {
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 1px;
}

/* Google Reviews Section */
.google-reviews {
    padding: 6rem 0;
    background: #f8f8f8;
}

.reviews-header {
    text-align: center;
    margin-bottom: 4rem;
}

.google-rating {
    display: inline-flex;
    align-items: center;
    gap: 1.5rem;
    background: white;
    padding: 1.5rem 2.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.rating-info {
    text-align: left;
}

.rating-score {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.rating-stars {
    margin-bottom: 0.3rem;
}

.rating-stars .star {
    color: #fbbc05;
    font-size: 1.5rem;
}

.rating-text {
    font-size: 0.9rem;
    color: #666;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.review-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.12);
}

.review-stars {
    margin-bottom: 1rem;
}

.review-stars .star {
    color: #fbbc05;
    font-size: 1.2rem;
}

.review-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.review-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.review-author strong {
    color: #333;
    font-weight: 600;
}

.review-date {
    font-size: 0.85rem;
    color: #999;
}

.reviews-cta {
    text-align: center;
}

.reviews-cta .btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #4285F4;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: background 0.3s ease;
}

.reviews-cta .btn-primary:hover {
    background: #357ae8;
}

/* Fixed Book Now Button */
.fixed-book-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #c38383;
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(195, 131, 131, 0.4);
    transition: all 0.3s ease;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 8px;
}

.fixed-book-btn:hover {
    background: #a66d6d;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(195, 131, 131, 0.6);
}

.fixed-book-btn span {
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .fixed-book-btn {
        bottom: 20px;
        right: 20px;
        padding: 10px 20px;
        font-size: 0.85rem;
    }
}

/* Footer */
.footer {
    background: #333;
    color: #fff;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-address h4,
.footer-links h4 {
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.footer-address p {
    line-height: 1.8;
    color: #ccc;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #ccc;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid #555;
    flex-wrap: wrap;
}

.footer-bottom p {
    color: #ccc;
    font-size: 0.9rem;
}

.footer-badges span {
    color: #ccc;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1024px) {

    .rooms-content,
    .location-content,
    .guide-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .location-text .section-title.white,
    .rooms-text .section-title {
        text-align: center;
    }

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

    .room-card-large {
        height: 55vh;
        min-height: 350px;
        max-height: 500px;
    }

    .room-card {
        height: 32vh;
        min-height: 220px;
        max-height: 300px;
    }

    .cards-grid,
    .neighbourhood-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .press-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, 200px);
        height: auto;
    }

    .press-item.large {
        grid-row: auto;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        width: 100%;
        right: -100%;
    }

    .hero-title {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .container {
        padding: 0 1rem;
    }

    .room-categories {
        grid-template-columns: 1fr;
    }

    .room-card-large {
        height: 50vh;
        min-height: 300px;
        max-height: 450px;
    }

    .room-card {
        height: 35vh;
        min-height: 200px;
        max-height: 280px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .cookie-banner {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        left: 1rem;
        right: 1rem;
        transform: none;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .rooms-content,
    .location-content,
    .guide-content {
        padding: 0 1rem;
    }

    .room-card-large {
        height: 40vh;
        min-height: 250px;
        max-height: 350px;
    }

    .room-card {
        height: 30vh;
        min-height: 180px;
        max-height: 250px;
    }
}