
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Georgia', serif;
            background: linear-gradient(135deg, #f5f3ef 0%, #e8e4dd 100%);
            color: #6b5d4f;
            line-height: 1.6;
        }
        
        .header {
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(10px);
            padding: 20px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .nav {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            gap: 30px;
            padding: 0 20px;
        }
        
        .nav a {
            color: #6b5d4f;
            text-decoration: none;
            font-size: 1.1em;
            transition: color 0.3s;
            cursor: pointer;
        }
        
        .nav a:hover {
            color: #4a7a5a;
        }
        
        .hero {
            text-align: center;
            padding: 80px 20px;
            animation: fadeIn 1.5s ease-in;
        }
        
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .logo-image {
            max-width: 400px;
            width: 100%;
            height: auto;
            margin: 0 auto 30px;
            display: block;
        }
        
        .divider {
            width: 100px;
            height: 2px;
            background: linear-gradient(to right, transparent, #4a7a5a, transparent);
            margin: 30px auto;
        }
        
        .section {
            max-width: 1200px;
            margin: 0 auto;
            padding: 60px 20px;
        }
        
        .section-title {
            text-align: center;
            font-size: 2.5em;
            color: #6b5d4f;
            margin-bottom: 40px;
        }
        
        .presentation {
            background: rgba(255, 255, 255, 0.5);
            padding: 50px;
            border-radius: 15px;
            backdrop-filter: blur(10px);
            text-align: center;
        }
        
        .presentation p {
            font-size: 1.2em;
            line-height: 2;
            margin-bottom: 20px;
        }
        
        .gallery {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin-top: 40px;
        }
        
        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            aspect-ratio: 4/3;
            background: linear-gradient(135deg, #d4cec4 0%, #bdb5a8 100%);
            display: flex;
            width: 100%;
            height: 100%;
            object-fit: cover;
            font-style: italic;
            color: #8b7d6f;
            transition: transform 0.3s;
        }
        
        .gallery-item:hover {
            transform: scale(1.05);
        }
        
        .reservation-form {
            background: rgba(255, 255, 255, 0.5);
            padding: 50px;
            border-radius: 15px;
            backdrop-filter: blur(10px);
            max-width: 600px;
            margin: 0 auto;
        }
        
        .form-group {
            margin-bottom: 25px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-size: 1.1em;
            color: #6b5d4f;
        }
        
        .form-group input,
        .form-group select {
            width: 100%;
            padding: 12px;
            border: 2px solid #d4cec4;
            border-radius: 8px;
            font-family: 'Georgia', serif;
            font-size: 1em;
            background: rgba(255, 255, 255, 0.8);
            transition: border-color 0.3s;
        }
        
        .form-group input:focus,
        .form-group select:focus {
            outline: none;
            border-color: #4a7a5a;
        }
        
        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }
        
        .submit-btn {
            width: 100%;
            padding: 15px;
            background: linear-gradient(135deg, #4a7a5a 0%, #3a6048 100%);
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 1.2em;
            font-family: 'Georgia', serif;
            cursor: pointer;
            transition: transform 0.2s;
        }
        
        .submit-btn:hover {
            transform: translateY(-2px);
        }
        
        .contact-info {
            text-align: center;
            padding: 40px;
            background: rgba(255, 255, 255, 0.5);
            border-radius: 10px;
            backdrop-filter: blur(10px);
            margin-top: 40px;
        }
        
        .contact-info p {
            margin: 10px 0;
            font-size: 1.1em;
        }
        
        .contact-info a {
            color: #6b5d4f;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .contact-info a:hover {
            color: #4a7a5a;
        }
        
        .footer {
            text-align: center;
            padding: 30px 20px;
            background: rgba(255, 255, 255, 0.3);
            margin-top: 60px;
        }
        
        .success-message {
            display: none;
            background: #d4edda;
            border: 2px solid #c3e6cb;
            color: #155724;
            padding: 20px;
            border-radius: 8px;
            margin-bottom: 20px;
            text-align: center;
        }
        
        @media (max-width: 768px) {
            .logo-image {
                max-width: 280px;
            }
            
            .section-title {
                font-size: 2em;
            }
            
            .presentation,
            .reservation-form {
                padding: 30px 20px;
            }
            
            .form-row {
                grid-template-columns: 1fr;
            }
            
            .nav {
                gap: 15px;
            }
            
            .nav a {
                font-size: 1em;
            }
        }

        .main-button {
            padding: 15px 40px;
            background: linear-gradient(135deg, #4a7a5a 0%, #3a6048 100%);
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 1.2em;
            font-family: 'Georgia', serif;
            cursor: pointer;
            transition: transform 0.2s;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }

        .main-button:hover {
            transform: translateY(-2px);
        }

        .popup-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(5px);
            z-index: 1000;
            animation: fadeIn 0.3s ease-in;
        }

        .popup-overlay.active {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .popup-content {
            background: rgba(255, 255, 255, 0.95);
            padding: 40px;
            border-radius: 15px;
            backdrop-filter: blur(10px);
            box-shadow: 0 10px 40px rgba(0,0,0,0.3);
            animation: slideIn 0.3s ease-out;
            max-width: 500px;
            width: 90%;
        }

        .popup-header {
            text-align: center;
            margin-bottom: 30px;
            color: #6b5d4f;
        }

        .popup-header h2 {
            font-size: 2em;
            margin-bottom: 10px;
        }

        .divider {
            width: 100px;
            height: 2px;
            background: linear-gradient(to right, transparent, #4a7a5a, transparent);
            margin: 20px auto;
        }

        .popup-buttons {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
        }

        .popup-btn {
            padding: 20px;
            background: rgba(74, 122, 90, 0.08);
            border: 2px solid #4a7a5a;
            border-radius: 10px;
            color: #6b5d4f;
            font-family: 'Georgia', serif;
            font-size: 1.1em;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
        }

        .popup-btn:hover {
            background: linear-gradient(135deg, #4a7a5a 0%, #3a6048 100%);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        .close-btn {
            position: absolute;
            top: 15px;
            right: 15px;
            background: none;
            border: none;
            font-size: 2em;
            color: #6b5d4f;
            cursor: pointer;
            transition: color 0.3s;
        }

        .close-btn:hover {
            color: #4a7a5a;
        }

        @media (max-width: 600px) {
            .popup-buttons {
                grid-template-columns: 1fr;
            }
            
            .popup-content {
                padding: 30px 20px;
            }
        }
        /* ===== POPUP INFO (fermeture exceptionnelle, annonce, etc.) ===== */
        .info-popup-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.55);
            backdrop-filter: blur(4px);
            z-index: 2000;
            animation: fadeIn 0.4s ease-in;
            align-items: center;
            justify-content: center;
        }

        .info-popup-overlay.active {
            display: flex;
        }

        .info-popup-content {
            background: #fff;
            border-radius: 16px;
            padding: 45px 40px 35px;
            max-width: 480px;
            width: 92%;
            text-align: center;
            box-shadow: 0 15px 50px rgba(0,0,0,0.3);
            animation: slideIn 0.35s ease-out;
            position: relative;
            border-top: 5px solid #4a7a5a;
        }

        .info-popup-icon {
            font-size: 2.8em;
            margin-bottom: 15px;
        }

        .info-popup-title {
            font-size: 1.6em;
            color: #4a7a5a;
            margin-bottom: 10px;
            font-family: 'Georgia', serif;
        }

        .info-popup-divider {
            width: 60px;
            height: 2px;
            background: linear-gradient(to right, transparent, #4a7a5a, transparent);
            margin: 14px auto;
        }

        .info-popup-message {
            font-size: 1.05em;
            color: #6b5d4f;
            line-height: 1.8;
            margin-bottom: 28px;
        }

        .info-popup-close {
            padding: 12px 35px;
            background: linear-gradient(135deg, #4a7a5a 0%, #3a6048 100%);
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 1em;
            font-family: 'Georgia', serif;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s;
            box-shadow: 0 3px 10px rgba(74,122,90,0.3);
        }

        .info-popup-close:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 18px rgba(74,122,90,0.35);
        }

        .info-popup-x {
            position: absolute;
            top: 14px;
            right: 18px;
            background: none;
            border: none;
            font-size: 1.6em;
            color: #aaa;
            cursor: pointer;
            transition: color 0.2s;
            line-height: 1;
        }

        .info-popup-x:hover {
            color: #4a7a5a;
        }
