 /* Reset de base */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Times New Roman', Times, serif;
        }

        /* Style général */
        body {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(../img/W1.jpeg) no-repeat center center fixed;
            background-size: cover;
            color: #f5f5f5;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        /* Barre de navigation */
        .navbar {
            background: rgba(20, 20, 20, 0.9);
            backdrop-filter: blur(10px);
            padding: 15px 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
        }

        .logo {
            display: flex;
            align-items: center;
        }

        .logo img {
            height: 50px;
            margin-right: 10px;
        }

        .logo h1 {
            font-size: 1.8rem;
            color: #c49b63;
            font-style: italic;
        }

        .nav-links {
            display: flex;
            list-style: none;
        }

        .nav-links li {
            margin: 0 15px;
        }

        .nav-links a {
            color: #f5f5f5;
            text-decoration: none;
            font-size: 1.1rem;
            font-weight: 500;
            padding: 8px 15px;
            border-radius: 5px;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-links a:after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: #c49b63;
            transition: width 0.3s;
        }

        .nav-links a:hover {
            color: #c49b63;
        }

        .nav-links a:hover:after {
            width: 100%;
        }

        .nav-links a.active {
            color: #c49b63;
            background: rgba(196, 155, 99, 0.1);
        }

        .book-btn {
            background: #c49b63;
            color: #fff;
            padding: 10px 20px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s ease;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
        }

        .book-btn:hover {
            background: #a67942;
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
        }

        .menu-toggle {
            display: none;
            cursor: pointer;
            font-size: 1.5rem;
            color: #c49b63;
        }

        /* Section Contact */
        .contact-section {
            background: rgba(82, 81, 81, 0.466);
            color: white;
            padding: 50px 20px;
            border-radius: 10px;
            max-width: 1200px;
            margin: 40px auto;
            position: relative;
            overflow: hidden;
        }

        .contact-section:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, #c49b63, #a67942, #c49b63);
        }

        .contact-section h1 {
            font-size: 2.5em;
            margin-bottom: 10px;
            color: #c49b63;
            text-align: center;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
        }

        .contact-section p {
            font-size: 1.2em;
            margin-bottom: 30px;
            text-align: center;
            color: #ddd;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Conteneur flex */
        .contact-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 40px;
            margin-top: 30px;
        }

        /* Formulaire de contact */
        .contact-form {
            background: rgba(20, 19, 19, 0.7);
            padding: 30px;
            border-radius: 10px;
            width: 600px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            text-align: left;
            position: relative;
            z-index: 1;
        }

        .contact-form label {
            font-weight: bold;
            display: block;
            margin-top: 15px;
            color: #c49b63;
        }

        .contact-form input,
        .contact-form textarea {
            width: 100%;
            padding: 12px;
            margin-top: 8px;
            border: 1px solid #444;
            border-radius: 5px;
            transition: 0.3s;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            font-size: 16px;
        }

        .contact-form input:focus,
        .contact-form textarea:focus {
            border-color: #c49b63;
            box-shadow: 0 0 10px rgba(196, 155, 99, 0.5);
            background: rgba(255, 255, 255, 0.15);
            outline: none;
        }

        /* Bouton animé */
        .btn {
            display: inline-block;
            padding: 12px 30px;
            background: linear-gradient(to right, #c49b63, #a67942);
            color: white;
            border: none;
            border-radius: 5px;
            font-size: 16px;
            font-weight: bold;
            cursor: pointer;
            margin-top: 20px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
            width: 100%;
        }

        .btn:hover {
            background: linear-gradient(to right, #a67942, #8a5e2b);
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
        }

        /* Informations de contact */
        .contact-info {
            background: rgba(161, 159, 159, 0.8);
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(247, 247, 247, 0.1);
            width: 500px;
            font-family: 'Times New Roman', Times, serif;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .contact-info:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: #c49b63;
        }

        .contact-info h2 {
            color: #080606;
            margin-bottom: 25px;
            font-size: 1.8rem;
            position: relative;
            padding-bottom: 10px;
        }

        .contact-info h2:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background: #c49b63;
        }

        .contact-info p {
            display: flex;
            align-items: center;
            justify-content: flex-start;
            font-size: 16px;
            color: #333;
            margin: 20px 0;
            text-align: left;
        }

        .contact-info i {
            font-size: 20px;
            color: #c49b63;
            margin-right: 15px;
            min-width: 25px;
            text-align: center;
        }

        .contact-info img {
            width: 22px;
            height: 22px;
            margin-right: 15px;
        }

        .contact-info a {
            color: #d35400;
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s ease;
        }

        .contact-info a:hover {
            color: #a04000;
            text-decoration: underline;
        }

        /* Réseaux sociaux */
        .social-links {
            text-align: center;
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .social-links h3 {
            margin-bottom: 15px;
            color: #080606;
            font-size: 1.3rem;
        }

        .social-icon {
            display: inline-block;
            margin: 0 12px;
            transition: transform 0.3s ease;
        }

        .social-icon img {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            transition: all 0.3s ease;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }

        .social-icon:hover img {
            transform: scale(1.15) translateY(-5px);
            box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
        }

        /* Animation pour faire apparaître les éléments */
        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Pied de page */
        footer {
            background: rgba(231, 226, 226, 0.95);
            color: #1d1818;
            padding: 60px 0 20px;
            margin-top: auto;
        }

        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-around;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .footer-section {
            flex: 1;
            min-width: 300px;
            margin-bottom: 30px;
            padding: 0 20px;
        }

        .footer-section h3 {
            color: #c49b63;
            margin-bottom: 20px;
            font-size: 1.4rem;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-section h3:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background: #c49b63;
        }

        .footer-section p, .footer-section li {
            margin-bottom: 10px;
            line-height: 1.6;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: #140707;
            text-decoration: none;
            transition: all 0.3s ease;
            display: block;
        }

        .footer-links a:hover {
            color: #c49b63;
            padding-left: 5px;
        }

        .footer-contact p {
            display: flex;
            align-items: center;
        }

        .footer-contact i {
            color: #c49b63;
            margin-right: 10px;
            min-width: 20px;
        }

        .footer-social {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .footer-social a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background: #333;
            border-radius: 50%;
            text-align: center;
            line-height: 40px;
            color: white;
            transition: all 0.3s ease;
        }

        .footer-social a:hover {
            background: #c49b63;
            transform: translateY(-5px);
        }


        .social-icons {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.social-icons a img {
    width: 30px;
    height: 30px;
    transition: transform 0.3s ease;
}

.social-icons a:hover img {
    transform: scale(1.2);
}

        
        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #333;
            max-width: 1200px;
            margin: 30px auto 0;
            color: #999;
            font-size: 0.9rem;
        }

        /* Responsive */
        @media screen and (max-width: 992px) {
            .contact-container {
                flex-direction: column;
                align-items: center;
            }
            
            .contact-form, .contact-info {
                width: 90%;
            }
        }

        @media screen and (max-width: 768px) {
            .menu-toggle {
                display: block;
            }
            
            .nav-links {
                position: fixed;
                top: 80px;
                left: -100%;
                flex-direction: column;
                background: rgba(20, 20, 20, 0.95);
                width: 100%;
                text-align: center;
                transition: 0.5s;
                padding: 20px 0;
            }
            
            .nav-links.active {
                left: 0;
            }
            
            .nav-links li {
                margin: 15px 0;
            }
            
            .footer-section {
                flex: 100%;
            }
        }