/* Variables Globales */
:root {
    --gold: #D4AF37;
    --dark: #1C1C1C;
    --light: #F4F4F4;
    --transition: all 0.3s ease;
}

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

/* Typographie */
body, html {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--light);
    scroll-behavior: smooth;
}

/* En-tête */
.header {
    background-color: rgba(28, 28, 28, 0.9);
    color: var(--gold);
    padding: 1rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    text-decoration: none;
}

.nav {
    display: flex;
}

.nav a {
    color: var(--gold);
    text-decoration: none;
    padding: 0.5rem 1rem;
    margin: 0 0.5rem;
    transition: var(--transition);
    font-weight: 600;
    border-radius: 5px;
}

.nav a:hover {
    background-color: var(--gold);
    color: var(--dark);
}

/* Barre de recherche */
.search-container {
    position: relative;
    margin-left: 20px;
}

.search-form {
    display: flex;
    align-items: center;
}

#search-input {
    padding: 8px;
    border: none;
    border-radius: 4px 0 0 4px;
    font-size: 16px;
    width: 200px;
}

.search-form button {
    padding: 8px 12px;
    background-color: var(--gold);
    border: none;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: background-color 0.3s;
}

.search-form button:hover {
    background-color: #b8960f;
}

.search-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: white;
    border-radius: 0 0 4px 4px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    display: none;
}

.suggestion-item {
    padding: 8px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.suggestion-item:hover {
    background-color: #f0f0f0;
}

.suggestion-item.active {
    background-color: #e0e0e0;
}

/* Bouton de connexion */
.login-container {
    margin-left: 20px;
    display: flex;
    align-items: center;
}

.btn-login {
    background-color: var(--gold);
    color: var(--dark);
    padding: 0.5rem 1rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-login:hover {
    background-color: var(--dark);
    color: var(--gold);
}

/* Section Hero */
.hero {
    position: relative;
    height: 100vh;
    background: url('Entre.png') no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

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

.hero h1 {
    font-size: 4rem;
    font-weight: bold;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    color: var(--gold);
    text-transform: uppercase;
    animation: fadeInUp 1s ease-in-out;
}

.hero p {
    font-size: 1.6rem;
    margin-bottom: 3rem;
    animation: fadeInUp 1.2s ease-in-out;
}

/* Animation de fadeIn */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* CTA Container */
.cta-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Style des boutons */
.cta-btn {
    padding: 1rem 2rem;
    font-size: 1.2rem;
    font-weight: bold;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Bouton primaire */
.primary-btn {
    background-color: var(--gold);
    color: #fff;
}

.primary-btn:hover {
    background-color: #fff;
    color: var(--gold);
    box-shadow: 0px 4px 15px rgba(212, 175, 55, 0.5);
}

/* Bouton secondaire */
.secondary-btn {
    background-color: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.secondary-btn:hover {
    background-color: var(--gold);
    color: #fff;
    box-shadow: 0px 4px 15px rgba(212, 175, 55, 0.5);
}

/* Responsivité */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.3rem;
    }
    
    .cta-btn {
        font-size: 1rem;
    }
}

/* Section À Propos de Nous */
.about-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5rem 2rem;
    background-color: var(--light);
    border-top: 5px solid var(--gold);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.about-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.about-text {
    flex: 1;
    margin-right: 2rem;
    padding: 1rem;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.about-text p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.cta-btn {
    display: inline-block;
    margin: 0 auto;
}

.about-image {
    flex: 1;
    text-align: center;
}

.about-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
        text-align: center;
    }

    .about-text {
        margin: 2rem 0 0 0;
    }
}

/* Section Services */
.services-section {
    position: relative;
    padding: 20px;
    overflow: hidden;
}

.services-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    z-index: -1;
}

.services-section:hover .services-background {
    opacity: 1;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    background-color: var(--light);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.service-card:hover img {
    transform: scale(1.1);
}

.service-info {
    padding: 1rem;
    text-align: center;
}

.service-info h3 {
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
    color: var(--dark);
}

.service-info p {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.service-info a {
    background-color: var(--gold);
    color: var(--dark);
    padding: 0.5rem 1rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    transition: var(--transition);
}

.service-info a:hover {
    background-color: var(--dark);
    color: var(--gold);
}

/* Section Projets */
.projects-container {
    overflow-x: auto;
    display: flex;
    white-space: nowrap;
    scroll-behavior: smooth;
}

.projects-grid {
    display: inline-flex;
}

.project-card {
    position: relative;
    width: 500px;
    height: 750px;
    margin-right: 1rem;
    overflow: hidden;
    border-radius: 10px;
    background-color: #fff;
    transition: transform 0.3s ease-in-out;
}

.project-card:hover {
    transform: scale(1.05);
}

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

.project-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 10px;
    text-align: center;
}

.project-info h3 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 700;
}

.project-info p {
    margin: 5px 0 0;
    font-size: 1rem;
    color: #ddd;
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: var(--light);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contact-form .form-group {
    margin-bottom: 1rem;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark);
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--dark);
    border-radius: 5px;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.contact-form input:focus, .contact-form textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 8px var(--gold);
    outline: none;
}

.contact-form button.submit-btn {
    background-color: var(--gold);
    color: var(--dark);
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition), transform 0.3s;
}

.contact-form button.submit-btn:hover {
    background-color: var(--dark);
    color: var(--gold);
    transform: scale(1.05);
}

/* Pied de page */
.footer {
    background-color: var(--dark);
    color: var(--light);
    padding: 2rem 1rem;
    text-align: center;
}

.footer .social-icons a {
    color: var(--light);
    margin: 0 0.5rem;
    font-size: 1.5rem;
    transition: transform 0.3s, color 0.3s;
}

.footer .social-icons a:hover {
    transform: scale(1.2);
    color: var(--gold);
}

/* Animation de fade-in */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .header-content {
               flex-direction: column;
        align-items: flex-start;
    }

    .nav {
        flex-direction: column;
        align-items: flex-start;
        margin-top: 1rem;
    }

    .nav a {
        margin: 0.5rem 0;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .search-container {
        margin-left: 0;
        margin-top: 1rem;
    }

    .login-container {
        margin-left: 0;
        margin-top: 1rem;
    }
}

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

    .hero p {
        font-size: 1rem;
    }

    .service-card img {
        height: 150px;
    }
}

/* Section Services avec arrière-plan dynamique */
#services {
    position: relative;
    background-size: cover;
    background-position: center;
    transition: background-image 0.3s ease-in-out;
}

#services::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(28, 28, 28, 0.5);
    z-index: 1;
}

#services .services-grid {
    position: relative;
    z-index: 2;
}

/* Section Projets */
.projects-container {
    overflow-x: auto;
    display: flex;
    white-space: nowrap;
    scroll-behavior: smooth;
}

.projects-grid {
    display: inline-flex;
}

.project-card {
    position: relative;
    width: 500px;
    height: 750px;
    margin-right: 1rem;
    overflow: hidden;
    border-radius: 10px;
    background-color: #fff;
}

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

.project-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 10px;
    text-align: center;
}

.project-info h3 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 700;
}

.project-info p {
    margin: 5px 0 0;
    font-size: 1rem;
    color: #ddd;
}

/* Animation pour les cartes de projet */
.project-card {
    transition: transform 0.3s ease-in-out;
}

.project-card:hover {
    transform: scale(1.05);
}

/* Section À Propos de Nous */
#about {
    background-color: #f9f9f9;
    padding: 3rem 2rem;
    border-radius: 10px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    margin: 3rem 0;
    overflow: hidden;
}

#about::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 5px;
    background-color: var(--gold);
    border-radius: 50px;
}

#about .section-title {
    font-size: 2.5rem;
    font-family: 'Playfair Display', serif;
    color: var(--gold);
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

#about .about-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 1rem;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    animation: fadeIn 1s ease;
}

#about .about-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--dark);
    margin-bottom: 1.5rem;
}

#about .cta-btn {
    background-color: var(--gold);
    color: var(--dark);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

#about .cta-btn:hover {
    background-color: var(--dark);
    color: var(--gold);
    transform: translateY(-5px);
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animation pour le logo */
.animated-logo {
    opacity: 0;
    transform: scale(0.8);
    animation: fadeInLogo 1.5s forwards;
}

@keyframes fadeInLogo {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Section Services avec arrière-plan dynamique */
.services-section {
    position: relative;
    padding: 20px;
    overflow: hidden;
}

.services-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    z-index: -1;
}

.services-section:hover .services-background {
    opacity: 1;
}

/* Correction potentielle : S'assurer que les cartes de services et les grilles s'affichent correctement */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.service-card {
    background-color: var(--light);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.service-card:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Pied de page */
.footer {
    background-color: var(--dark);
    color: var(--light);
    padding: 2rem 1rem;
    text-align: center;
}

.footer .social-icons a {
    color: var(--light);
    margin: 0 0.5rem;
    font-size: 1.5rem;
    transition: transform 0.3s, color 0.3s;
}

.footer .social-icons a:hover {
    transform: scale(1.2);
    color: var(--gold);
}

/* Responsive */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav {
        flex-direction: column;
        align-items: flex-start;
        margin-top: 1rem;
    }

    .nav a {
        margin: 0.5rem 0;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .search-container {
        margin-left: 0;
        margin-top: 1rem;
    }

    .login-container {
        margin-left: 0;
        margin-top: 1rem;
    }
}

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

    .hero p {
        font-size: 1rem;
    }

    .service-card img {
        height: 150px;
    }
}


/* Section Services */
#services {
    position: relative;
    padding: 2rem 0;
    background-color: var(--light);
    border-top: 5px solid var(--gold);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

#services .section-title {
    font-size: 2.5rem;
    font-family: 'Playfair Display', serif;
    color: var(--gold);
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

/* Section Contact */
#contact {
    padding: 2rem 0;
    background-color: var(--light);
    border-top: 5px solid var(--gold);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

#contact .section-title {
    font-size: 2.5rem;
    font-family: 'Playfair Display', serif;
    color: var(--gold);
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

/* Section Services */
#services {
    position: relative;
    padding: 2rem 0;
    background-color: var(--light);
    border-top: 5px solid var(--gold);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

#services .section-title {
    font-size: 2.5rem;
    font-family: 'Playfair Display', serif;
    color: var(--gold);
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.services-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    z-index: 1;
}

#services:hover .services-background {
    opacity: 1;
}

.social-icons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 15px;
}

.social-icons a {
    text-decoration: none;
    font-size: 24px;  /* Taille des icônes */
    color: #333;  /* Couleur par défaut des icônes */
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #007bff;  /* Couleur au survol */
}

.social-icons i {
    cursor: pointer;
}



/* Ajout des breakpoints standards */
:root {
    --gold: #D4AF37;
    --dark: #1C1C1C;
    --light: #F4F4F4;
    --transition: all 0.3s ease;
}

/* Base responsive pour le conteneur principal */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header responsive */
.header {
    padding: 0.5rem;
}

.header-content {
    padding: 0 15px;
}

/* Navigation responsive */
@media (max-width: 768px) {
    .nav {
        display: none; /* On cache par défaut sur mobile */
        width: 100%;
        position: absolute;
        top: 60px;
        left: 0;
        background-color: var(--dark);
        padding: 1rem;
    }

    .nav.active {
        display: flex;
        flex-direction: column;
    }

    .nav a {
        width: 100%;
        text-align: center;
        padding: 1rem;
        margin: 0.2rem 0;
    }

    /* Bouton hamburger */
    .hamburger {
        display: block;
        cursor: pointer;
    }
}

/* Hero section responsive */
.hero {
    min-height: 100vh;
    height: auto;
    padding: 80px 20px;
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 4rem);
}

.hero p {
    font-size: clamp(1rem, 3vw, 1.6rem);
}

/* Services section responsive */
.services-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
    padding: 1rem;
}

.service-card {
    width: 100%;
    margin-bottom: 1rem;
}

/* Projects section responsive */
.projects-container {
    padding: 1rem;
}

.project-card {
    width: 100%;
    max-width: 500px;
    height: auto;
    min-height: 400px;
}

/* Contact form responsive */
.contact-form {
    padding: 1rem;
    margin: 1rem;
}

/* About section responsive */
.about-section {
    padding: 2rem 1rem;
}

.about-content {
    flex-direction: column;
    gap: 2rem;
}

.about-text, .about-image {
    width: 100%;
    margin: 0;
}

/* Media Queries plus détaillées */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .header-content {
        flex-direction: column;
    }

    .search-container, .login-container {
        width: 100%;
        margin: 0.5rem 0;
    }

    .search-form {
        width: 100%;
    }

    #search-input {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 0 1rem;
    }

    .cta-container {
        flex-direction: column;
    }

    .cta-btn {
        width: 100%;
        margin: 0.5rem 0;
    }

    .project-card {
        height: 300px;
    }
}

/* Optimisations pour les images */
img {
    max-width: 100%;
    height: auto;
}

/* Fix pour le scroll horizontal */
body {
    overflow-x: hidden;
    width: 100%;
}

/* Optimisation des formulaires pour mobile */
input, textarea, button {
    font-size: 16px; /* Évite le zoom automatique sur iOS */
}

/* Amélioration de la lisibilité sur mobile */
p {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    line-height: 1.6;
}
    }
}

/* Header styles */
.header {
    position: fixed;
    width: 100%;
    z-index: 1000;
    background-color: rgba(28, 28, 28, 0.9);
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
}

.logo-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    color: var(--gold);
}

/* Hamburger button */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 24px;
}

.bar {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--gold);
    margin: 5px 0;
    transition: var(--transition);
}

/* Desktop styles */
@media (min-width: 769px) {
    .header-content {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .mobile-menu {
        display: flex;
        align-items: center;
        gap: 2rem;
    }

    .nav {
        display: flex;
        gap: 1rem;
    }
}

/* Mobile styles */
@media (max-width: 768px) {
    .hamburger {
        display: block;
        z-index: 100;
    }

    .mobile-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: rgba(28, 28, 28, 0.95);
        padding: 1rem;
    }

    .mobile-menu.active {
        display: block;
    }

    .nav {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 1rem;
    }

    .nav a {
        display: block;
        padding: 0.8rem;
        text-align: center;
        border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    }

    .search-container {
        margin: 1rem 0;
    }

    .search-form {
        display: flex;
    }

    .search-form input {
        flex: 1;
    }

    .login-container {
        display: flex;
        justify-content: center;
        gap: 1rem;
        margin-top: 1rem;
    }
}

/* Hamburger animation */
.hamburger.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

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

.hamburger.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}
/* Section Contact */
#contact {
    padding: 2rem 0;
    background-color: var(--light);
    border-top: 5px solid var(--gold);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

#contact .section-title {
    font-size: 2.5rem;
    font-family: 'Playfair Display', serif;
    color: var(--gold);
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: var(--light);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contact-form .form-group {
    margin-bottom: 1rem;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark);
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--dark);
    border-radius: 5px;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.contact-form input:focus, .contact-form textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 8px var(--gold);
    outline: none;
}

.contact-form button.submit-btn {
    background-color: var(--gold);
    color: var(--dark);
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition), transform 0.3s;
}

.contact-form button.submit-btn:hover {
    background-color: var(--dark);
    color: var(--gold);
    transform: scale(1.05);
}

/* Media Query pour les écrans larges (ordinateurs) */
@media (min-width: 769px) {
    .contact-form {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .contact-form .form-group {
        width: 100%;
        max-width: 400px;
    }
}

/* Media Query pour les écrans plus petits (mobiles) */
@media (max-width: 768px) {
    .contact-form {
        padding: 1rem;
    }
}
