/* CSS Variables */
:root {
    --primary-bg: #F4E8D0;
    --secondary-bg: #E8D3B5;
    --accent-orange: #E89A3F;
    --accent-gold: #D4AF37;
    --accent-green: #87A96B;
    --accent-sunset: #FF8C42;
    --off-white: #F7EDD8;
    --cream: #F0E6D2;
    --text-primary: #2A2A2A;
    --text-secondary: #666666;
    --text-muted: #888888;
    --white: #FFFFFF;
    --shadow-soft: rgba(232, 154, 63, 0.25);
    --shadow-dark: rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 40px rgba(232, 154, 63, 0.2);
    --gradient-primary: linear-gradient(135deg, var(--accent-orange), var(--accent-gold));
    --gradient-secondary: linear-gradient(135deg, var(--accent-sunset), var(--accent-green));
    --gradient-dark: linear-gradient(135deg, var(--primary-bg), var(--secondary-bg));
    --border-radius: 16px;
    --border-radius-small: 8px;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --font-display: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--gradient-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    font-weight: 500;
    letter-spacing: 0.01em;
}

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

/* Professional Icons */
.icon {
    display: inline-block;
    width: 24px;
    height: 24px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.icon-large {
    width: 48px;
    height: 48px;
}

.icon-xl {
    width: 64px;
    height: 64px;
}

/* SVG Icons as CSS Classes */
.icon-pool::before {
    content: '';
    display: inline-block;
    width: 1em;
    height: 1em;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23E89A3F' viewBox='0 0 24 24'%3E%3Cpath d='M19 7h1a1 1 0 0 1 1 1v11a3 3 0 0 1-3 3H6a3 3 0 0 1-3-3V8a1 1 0 0 1 1-1h1V6a4 4 0 0 1 4-4h6a4 4 0 0 1 4 4v1zM7 7h10V6a2 2 0 0 0-2-2H9a2 2 0 0 0-2 2v1zM6 9H5v10a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1V9h-1v2a1 1 0 0 1-2 0V9H8v2a1 1 0 0 1-2 0V9z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.icon-phone::before {
    content: '';
    display: inline-block;
    width: 1em;
    height: 1em;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23E89A3F' viewBox='0 0 24 24'%3E%3Cpath d='M21 16.42v3.536a1 1 0 0 1-.93.998c-.437.03-.794.046-1.07.046-8.837 0-16-7.163-16-16 0-.276.015-.633.046-1.07A1 1 0 0 1 4.044 3H7.58a.5.5 0 0 1 .498.45c.023.23.044.413.064.552A13.901 13.901 0 0 0 9.35 8.003c.095.2.033.439-.147.567l-2.158 1.542a13.047 13.047 0 0 0 6.844 6.844l1.54-2.154a.462.462 0 0 1 .573-.149 13.901 13.901 0 0 0 4.001 1.205c.139.02.322.042.55.064a.5.5 0 0 1 .449.498z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.icon-location::before {
    content: '';
    display: inline-block;
    width: 1em;
    height: 1em;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%2387A96B' viewBox='0 0 24 24'%3E%3Cpath d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.icon-clock::before {
    content: '';
    display: inline-block;
    width: 1em;
    height: 1em;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23D2691E' viewBox='0 0 24 24'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm.5-13H11v6l5.25 3.15.75-1.23-4.5-2.67V7z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.icon-star::before {
    content: '';
    display: inline-block;
    width: 1em;
    height: 1em;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23F4A460' viewBox='0 0 24 24'%3E%3Cpath d='M12 2l3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14 2 9.27l6.91-1.01L12 2z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.icon-family::before {
    content: '';
    display: inline-block;
    width: 1em;
    height: 1em;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23228B22' viewBox='0 0 24 24'%3E%3Cpath d='M16 4c0-1.11.89-2 2-2s2 .89 2 2-.89 2-2 2-2-.89-2-2zm4 18v-6h2.5l-2.54-7.63A1.5 1.5 0 0 0 18.5 7.5h-5c-.8 0-1.33.78-1.46 1.37L9.5 16H12v6h8zM12.5 11.5c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5S11 9.17 11 10s.67 1.5 1.5 1.5zM5.5 6c1.11 0 2-.89 2-2s-.89-2-2-2-2 .89-2 2 .89 2 2 2zm2 16v-7H9l1.5-4.5c.42-1.26 1.26-2.17 2.32-2.38L14 7.5c.38-.1.77-.11 1.16-.03.18.04.36.07.54.13l1.06 3.17 2.61.91-.31.94L16.5 12h-1c-.83 0-1.5.67-1.5 1.5v8.5H7.5z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.icon-sunset::before {
    content: '';
    display: inline-block;
    width: 1em;
    height: 1em;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23F4A460' viewBox='0 0 24 24'%3E%3Cpath d='M12 2l1.09 3.26L16 4l-1.26 3.09L18 8l-3.09 1.26L16 12l-3.26-1.09L12 14l-1.09-3.26L8 12l1.26-3.09L6 8l3.09-1.26L8 4l3.26 1.09L12 2zM2 20h20v2H2v-2zm7.5-6c0-1.38 1.12-2.5 2.5-2.5s2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5-2.5-1.12-2.5-2.5z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.icon-wifi::before {
    content: '';
    display: inline-block;
    width: 1em;
    height: 1em;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23D2691E' viewBox='0 0 24 24'%3E%3Cpath d='M12 2C7.03 2 3 6.03 3 11c0 2.75 1.23 5.21 3.16 6.86l7.84-7.84V2zm0 7.34L19.84 17.86C21.77 16.21 23 13.75 23 11c0-4.97-4.03-9-11-9v7.34zM12 22l-8-8c0 4.42 3.58 8 8 8s8-3.58 8-8l-8 8z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.icon-shower::before {
    content: '';
    display: inline-block;
    width: 1em;
    height: 1em;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23D2691E' viewBox='0 0 24 24'%3E%3Cpath d='M12 2c5.52 0 10 4.48 10 10s-4.48 10-10 10S2 17.52 2 12 6.48 2 12 2zm0 2C7.58 4 4 7.58 4 12s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm-1 3h2v3h3v2h-3v3h-2v-3H8v-2h3V7z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.icon-lounge::before {
    content: '';
    display: inline-block;
    width: 1em;
    height: 1em;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23F4A460' viewBox='0 0 24 24'%3E%3Cpath d='M20 10V7a2 2 0 0 0-2-2H6a2 2 0 0 0-2 2v3a2 2 0 0 0-2 2v5h2v2h2v-2h12v2h2v-2h2v-5a2 2 0 0 0-2-2zM6 7h12v3H6V7zm14 8H4v-3h16v3z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.icon-security::before {
    content: '';
    display: inline-block;
    width: 1em;
    height: 1em;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23228B22' viewBox='0 0 24 24'%3E%3Cpath d='M12 1L3 5v6c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V5l-9-4zm0 10.99h7c-.53 4.12-3.28 7.79-7 8.94V12H5V6.3l7-3.11V12z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.logo-palm {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 60'%3E%3Cdefs%3E%3ClinearGradient id='palmGrad' x1='0%25' y1='0%25' x2='100%25' y2='100%25'%3E%3Cstop offset='0%25' stop-color='%232DD4BF'/%3E%3Cstop offset='100%25' stop-color='%233B82F6'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cpath d='M30 45 C25 35, 35 25, 40 30 C45 35, 50 25, 55 30 C60 35, 65 25, 70 30 L70 50 L30 50 Z' fill='url(%23palmGrad)' opacity='0.7'/%3E%3Ctext x='85' y='40' font-family='serif' font-size='32' font-weight='bold' fill='url(%23palmGrad)'%3EThe Palm%3C/text%3E%3C/svg%3E");
    width: 200px;
    height: 60px;
    background-size: contain;
    background-repeat: no-repeat;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(244, 232, 208, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--accent-orange);
    z-index: 1000;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

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

.nav-logo h2 {
    color: var(--accent-orange);
    font-weight: 700;
    font-size: 1.5rem;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-orange);
}

.nav-social {
    display: flex;
    gap: 1rem;
    margin-left: 2rem;
    align-items: center;
}

.social-link {
    color: var(--text-secondary);
    font-size: 1.5rem;
    transition: var(--transition);
    padding: 0.5rem;
}

.social-link:hover {
    color: var(--accent-orange);
    transform: scale(1.1);
}

/* Social Media Icons */
.icon-instagram::before {
    content: "📷";
}

.icon-tiktok::before {
    content: "🎵";
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.nav-hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    transition: var(--transition);
}

/* Breadcrumb */
.breadcrumb {
    background: rgba(0, 0, 0, 0.3);
    padding: 1rem 0;
    margin-top: 80px;
    border-bottom: 1px solid rgba(132, 181, 71, 0.2);
}

.breadcrumb a {
    color: var(--accent-green);
    text-decoration: none;
}

.breadcrumb span {
    color: var(--text-secondary);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 32px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
    letter-spacing: 0.02em;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 8px 25px rgba(45, 212, 191, 0.3);
    position: relative;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-secondary);
    opacity: 0;
    transition: var(--transition);
    border-radius: inherit;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-secondary {
    background: transparent;
    color: var(--accent-orange);
    border-color: var(--accent-orange);
}

.btn-secondary:hover {
    background: var(--accent-orange);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--accent-green);
    border-color: var(--accent-green);
}

.btn-outline:hover {
    background: var(--accent-green);
    color: var(--white);
}

.btn-full {
    width: 100%;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.section-header h1,
.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    letter-spacing: -0.01em;
    line-height: 1.1;
}

.section-header p {
    font-size: 1.3rem;
    color: var(--text-secondary);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.5;
    font-weight: 500;
}

.section-header::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

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

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

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(26, 26, 26, 0.4) 0%,
        rgba(26, 26, 26, 0.2) 50%,
        rgba(232, 154, 63, 0.1) 100%
    );
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><radialGradient id="sunset" cx="50%" cy="50%"><stop offset="0%" stop-color="%23DE914C" stop-opacity="0.1"/><stop offset="100%" stop-color="%2384B547" stop-opacity="0.05"/></radialGradient></defs><rect width="100" height="100" fill="url(%23sunset)"/></svg>');
    animation: float 20s ease-in-out infinite;
}

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

.hero-logo h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    text-shadow: 2px 2px 8px rgba(255, 255, 255, 0.7);
}

.palm-icon {
    font-size: 3rem;
    margin: 1rem 0;
    animation: sway 3s ease-in-out infinite;
}

.hero-tagline {
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--text-primary);
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    margin-top: -1rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.hero-location {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius);
    border: 1px solid var(--accent-orange);
    margin-bottom: 1rem;
    display: inline-block;
    font-size: 1rem;
    color: var(--text-primary);
    text-align: center;
    box-shadow: var(--shadow-glow);
}

.hero-navigation {
    margin-bottom: 4rem;
    margin-top: 3rem;
}

.hero-navigation .btn {
    background: var(--text-primary);
    border: 2px solid var(--text-primary);
    color: var(--off-white);
    padding: 1rem 2rem;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 6px 20px rgba(42, 42, 42, 0.4);
    backdrop-filter: blur(10px);
    transform: scale(1.1);
}

.hero-location .icon-location {
    margin-right: 0.5rem;
    color: var(--accent-green);
}

.btn-small {
    padding: 8px 16px;
    font-size: 0.9rem;
    margin-left: 1rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 6rem;
    margin-top: 2rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    border-right: 2px solid var(--accent-green);
    border-bottom: 2px solid var(--accent-green);
    transform: rotate(45deg);
}

/* About Section */
.about {
    padding: 5rem 0;
    background: rgba(0, 0, 0, 0.2);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--accent-green);
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--text-secondary);
}

.features-list {
    list-style: none;
}

.features-list li {
    padding: 0.5rem 0;
    color: var(--text-primary);
    font-weight: 500;
}

.about-image {
    display: flex;
    justify-content: center;
}

.about-photo {
    width: 100%;
    max-width: 500px;
    height: 350px;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-glow);
    transition: var(--transition);
}

.about-photo:hover {
    transform: scale(1.05);
}

.image-placeholder {
    width: 300px;
    height: 200px;
    background: var(--gradient-dark);
    border-radius: var(--border-radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--accent-green);
    box-shadow: 0 8px 25px var(--shadow-dark);
}

.image-placeholder span {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.image-placeholder p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Services Preview */
/* Gallery Preview */
.gallery-preview {
    padding: 5rem 0;
    background: rgba(0, 0, 0, 0.2);
}

.preview-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.preview-main {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-glow);
}

.preview-image.main {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: var(--transition);
}

.preview-secondary {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.preview-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    flex: 1;
    box-shadow: var(--shadow-soft);
}

.preview-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

/* Supprimer les overlays pour photos plein écran */

.preview-item:hover .preview-image,
.preview-main:hover .preview-image {
    transform: scale(1.1);
}

.gallery-cta {
    text-align: center;
    margin-top: 3rem;
}

.services-preview {
    padding: 5rem 0;
}

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

.service-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    padding: 2.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    border: 1px solid rgba(45, 212, 191, 0.15);
    backdrop-filter: blur(10px);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-glow);
    border-color: var(--accent-green);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06));
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    color: var(--accent-green);
    margin-bottom: 1rem;
}

.services-cta {
    text-align: center;
    margin-top: 3rem;
}

/* CTA Section */
.cta {
    padding: 5rem 0;
    background: var(--gradient-primary);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Tarifs Styles */
.tarifs {
    padding: 2rem 0 5rem;
}

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

.zone-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    padding: 2rem;
    border: 1px solid rgba(132, 181, 71, 0.2);
    transition: var(--transition);
    position: relative;
}

.zone-card.featured {
    border-color: var(--accent-orange);
    box-shadow: 0 0 20px rgba(222, 145, 76, 0.2);
}

.featured-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--accent-orange);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.zone-header h2 {
    color: var(--accent-green);
    margin-bottom: 0.5rem;
}

.zone-content {
    margin: 2rem 0;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.price-label {
    font-weight: 500;
}

.price-value {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--accent-orange);
}

.zone-features ul {
    list-style: none;
}

.zone-features li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
}

/* Special Rates */
.special-rates {
    margin: 4rem 0;
}

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

.special-card {
    background: rgba(222, 145, 76, 0.1);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    border: 1px solid var(--accent-orange);
}

.special-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.special-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-orange);
    margin: 1rem 0;
}

/* Pricing Info */
.pricing-info {
    margin: 4rem 0;
}

.pricing-highlight {
    text-align: center;
    margin-top: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(132, 181, 71, 0.1), rgba(222, 145, 76, 0.1));
    border-radius: 15px;
    border: 1px solid var(--accent-orange);
}

.highlight-text {
    color: var(--accent-orange);
    font-weight: 600;
    font-size: 1.1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

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

.info-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--accent-green);
}

.info-item h4 {
    color: var(--accent-green);
    margin-bottom: 0.5rem;
}

/* Galerie Styles */
.galerie {
    padding: 2rem 0 5rem;
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.8rem 1.5rem;
    background: transparent;
    border: 1px solid var(--accent-green);
    color: var(--accent-green);
    border-radius: 25px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--accent-green);
    color: var(--white);
}

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

.gallery-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.gallery-item.featured .gallery-image {
    height: 400px;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--white);
    padding: 2rem 1rem 1rem;
    transform: translateY(100%);
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
}

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

.gallery-item .image-placeholder {
    width: 100%;
    height: 250px;
    position: relative;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--white);
    padding: 2rem 1rem 1rem;
    transform: translateY(100%);
    transition: var(--transition);
}

.gallery-item:hover .image-overlay {
    transform: translateY(0);
}

.gallery-note {
    margin-top: 4rem;
    background: rgba(132, 181, 71, 0.1);
    padding: 3rem;
    border-radius: var(--border-radius);
    text-align: center;
    border: 1px solid var(--accent-green);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    position: relative;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: -40px;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
}

.lightbox-image .image-placeholder.large {
    width: 600px;
    height: 400px;
}

/* Contact Styles */
.contact {
    padding: 2rem 0 5rem;
}

.quick-contact {
    margin-bottom: 4rem;
}

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

.contact-method {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    border: 1px solid rgba(132, 181, 71, 0.2);
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-value {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--accent-green);
    margin: 1rem 0;
}

.contact-detail {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Form Styles */
.contact-form-section {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin: 4rem 0;
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(132, 181, 71, 0.2);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-green);
    box-shadow: 0 0 0 2px rgba(132, 181, 71, 0.2);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.4;
}

.contact-info {
    background: rgba(255, 255, 255, 0.03);
    padding: 2rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--accent-green);
    height: fit-content;
}

.info-card {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.info-card:last-child {
    border-bottom: none;
}

.info-card h4 {
    color: var(--accent-green);
    margin-bottom: 0.5rem;
}

.info-card ul {
    list-style: none;
    margin-top: 0.5rem;
}

.info-card li {
    padding: 0.25rem 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* FAQ */
.faq-section {
    margin: 4rem 0;
}

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

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--accent-orange);
}

.faq-item h4 {
    color: var(--accent-orange);
    margin-bottom: 0.5rem;
}

/* Services Page */
.services {
    padding: 2rem 0 5rem;
}

.main-services {
    margin-bottom: 4rem;
}

.service-card.large {
    padding: 3rem;
}

.service-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.service-features {
    list-style: none;
    margin: 2rem 0;
}

.service-features li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
}

.service-price {
    text-align: right;
    margin-top: 2rem;
}

.service-price span {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
}

/* Equipment Grid */
.included-services {
    margin: 4rem 0;
}

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

.equipment-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--border-radius);
    border: 1px solid rgba(132, 181, 71, 0.2);
}

.equipment-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.equipment-item h4 {
    color: var(--accent-green);
    margin-bottom: 0.5rem;
}

/* Special Slots */
.special-slots {
    margin: 4rem 0;
}

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

.slot-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 1px solid var(--accent-orange);
    text-align: center;
}

.slot-time {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.slot-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin: 1rem 0;
}

.feature-tag {
    background: rgba(132, 181, 71, 0.2);
    color: var(--accent-green);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
}

.slot-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent-orange);
    margin-top: 1rem;
}

/* Rules Section */
.rules-section {
    margin: 4rem 0;
    background: rgba(255, 255, 255, 0.03);
    padding: 3rem;
    border-radius: var(--border-radius);
}

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

.rules-column h4 {
    color: var(--accent-green);
    margin-bottom: 1rem;
}

.rules-column ul {
    list-style: none;
}

.rules-column li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 1rem;
}

.rules-column li::before {
    content: '•';
    color: var(--accent-orange);
    position: absolute;
    left: 0;
}

/* Localisation Styles */
.localisation {
    padding: 2rem 0 5rem;
}

.location-hero {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: var(--border-radius);
    margin-bottom: 4rem;
    border: 1px solid rgba(132, 181, 71, 0.2);
}

.location-info {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.location-icon {
    font-size: 3rem;
    color: var(--accent-green);
}

.address {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--accent-green);
    margin: 0.5rem 0;
}

.address-note {
    color: var(--text-secondary);
    font-style: italic;
}

.location-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Map Section */
.map-section {
    margin: 4rem 0;
}

.map-container {
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 2px solid var(--accent-green);
    box-shadow: 0 8px 25px var(--shadow-dark);
}

.map-note {
    text-align: center;
    margin-top: 1rem;
    color: var(--text-secondary);
    font-style: italic;
}

/* Access Info */
.access-info {
    margin: 4rem 0;
}

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

.access-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(132, 181, 71, 0.2);
    text-align: center;
}

.access-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.access-card h3 {
    color: var(--accent-green);
    margin-bottom: 1rem;
}

.access-card ul {
    list-style: none;
    text-align: left;
}

.access-card li {
    padding: 0.3rem 0;
    color: var(--text-secondary);
}

/* Opening Hours */
.opening-hours {
    margin: 4rem 0;
}

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

.hours-card {
    background: rgba(222, 145, 76, 0.1);
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 1px solid var(--accent-orange);
}

.hours-card h3 {
    color: var(--accent-orange);
    margin-bottom: 1rem;
}

.hours-list {
    margin-bottom: 1rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hours-item:last-child {
    border-bottom: none;
}

.hours-card ul {
    list-style: none;
}

.hours-card li {
    padding: 0.3rem 0;
    color: var(--text-secondary);
}

/* Nearby Places */
.nearby-places {
    margin: 4rem 0;
}

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

.place-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--border-radius);
    border: 1px solid rgba(132, 181, 71, 0.2);
}

.place-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.place-item h4 {
    color: var(--accent-green);
    margin-bottom: 0.5rem;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-gold));
    padding: 3rem 0 1rem;
    border-top: 1px solid var(--accent-orange);
}

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

.footer-section h3,
.footer-section h4 {
    color: var(--white);
    margin-bottom: 1rem;
}

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

.footer-section ul li {
    padding: 0.3rem 0;
}

.footer-section ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--accent-orange);
}

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

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes sway {
    0%, 100% { transform: rotate(-5deg); }
    50% { transform: rotate(5deg); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* Mobile Styles */
@media (max-width: 768px) {
    /* Navigation */
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(244, 232, 208, 0.98);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: var(--transition);
    }
    
    .nav-social {
        margin-left: 0;
        margin-top: 2rem;
        justify-content: center;
    }
    
    /* Hero navigation mobile */
    .hero-navigation {
        margin-bottom: 8rem !important;
        margin-top: 5rem !important;
    }
    
    /* Location actions mobile */
    .location-actions {
        margin-bottom: 10rem !important;
        margin-top: 6rem !important;
    }
    
    /* Hide section description on mobile */
    .section-header p {
        display: none;
    }

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

    .nav-hamburger {
        display: flex;
    }

    .nav-hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

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

    .nav-hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    /* Container */
    .container {
        padding: 0 15px;
    }

    /* Hero */
    .hero-logo h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 280px;
    }

    /* Sections */
    .section-header h1,
    .section-header h2 {
        font-size: 2rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    /* Tarifs */
    .zones-grid {
        grid-template-columns: 1fr;
    }

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

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

    /* Gallery Preview */
    .preview-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .preview-secondary {
        flex-direction: row;
    }

    .preview-image.main {
        height: 250px;
    }

    /* Galerie */
    .gallery-filters {
        flex-direction: column;
        align-items: center;
    }

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

    /* Contact */
    .quick-contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-section {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

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

    /* Services */
    .equipment-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .rules-content {
        grid-template-columns: 1fr;
    }

    /* Localisation */
    .location-hero {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .location-info {
        flex-direction: column;
        text-align: center;
    }

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

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

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

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    /* Image placeholders */
    .image-placeholder {
        width: 100%;
        max-width: 300px;
    }

    .lightbox-image .image-placeholder.large {
        width: 90vw;
        height: 60vh;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 1rem;
    }

    .hero-logo h1 {
        font-size: 2rem;
    }

    .palm-icon {
        font-size: 2rem;
    }

    .equipment-grid,
    .places-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 1.5rem;
    }

    .zone-card {
        padding: 1.5rem;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .nav-hamburger,
    .hero-buttons,
    .cta-buttons,
    .btn {
        display: none;
    }

    body {
        color: #000;
        background: #fff;
    }

    .hero {
        height: auto;
        padding: 2rem 0;
    }
}
