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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
}

/* Colors */
:root {
    --primary-color: #D2691E;     /* Terracotta */
    --secondary-color: #B8860B;   /* Golden */
    --accent-color: #8B4513;      /* Brown */
    --success-color: #228B22;     /* Forest Green */
    --warning-color: #FF8C00;     /* Dark Orange */
    --error-color: #DC143C;       /* Crimson */
    --neutral-100: #F5F5DC;       /* Beige */
    --neutral-200: #E6E6DC;
    --neutral-300: #D3D3C8;
    --neutral-400: #A0A08C;
    --neutral-500: #6D6D5A;
    --neutral-600: #4A4A3A;
    --neutral-700: #2F2F2F;
    --neutral-800: #1A1A1A;
    --neutral-900: #D6BE5E;

}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: var(--neutral-900);
    box-shadow: 0 2px 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;
}


 
.logo {
    height: 80px;         /* taille du logo */
    width: 80px;          /* carré pour bien arrondir */
    border-radius: 50%;   /* arrondi complet = cercle */
    border: 2px solid #fff; /* petit contour blanc */
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.8),
                0 0 30px rgba(255, 215, 0, 0.6),
                0 0 45px rgba(255, 215, 0, 0.4); 
    transition: box-shadow 0.3s ease;
}
.logo:hover {
    box-shadow: 0 0 25px rgba(255, 215, 0, 1),
                0 0 50px rgba(255, 215, 0, 0.9),
                0 0 70px rgba(255, 215, 0, 0.7);
}

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

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: width 0.3s ease;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
                url('/fonds.jpg') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

.hero-content {
    max-width: 800px;
    padding: 2rem;
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

.btn {
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--neutral-900);
    color: white;
    box-shadow: 0 4px 15px rgba(210, 105, 30, 0.3);
}

.btn-primary:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(210, 105, 30, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: var(--neutral-900);
    transform: translateY(-2px);
}

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

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid white;
    border-bottom: 2px solid white;
    transform: rotate(45deg);
}


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

.section-title {
    font-size: 2.5rem;
    color: var(--neutral-900);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--neutral-600);
    max-width: 600px;
    margin: 0 auto;
}


#home {
    padding-top: 150px; 
}


/* carte menu scrollable*/

.about-title {
	font-size: 7.5rem;
	font-weight: 900;
    padding-top: 30px; 
	text-transform: uppercase;
	letter-spacing: -0.02em;
	position: absolute;
	top: 120px;
	left: 50%;
	transform: translateX(-50%);
	pointer-events: none;
	white-space: nowrap;
	font-family: "Arial Black", "Arial Bold", Arial, sans-serif;
	background: linear-gradient(
		to bottom,
		rgb(213 189 93 / 55%) 60%,
		rgb(255 255 255 / 0%) 86%
	);
    /* background: rgb(213, 189, 93); */
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.carousel-container {
	width: 100%;
	max-width: 1200px;
	height: 450px;
	position: relative;
	perspective: 1000px;
	margin-top: 80px;
}

.carousel-track {
	width: 100%;
	height: 100%;
    margin-left: 20%;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	transform-style: preserve-3d;
	transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.card {
	position: absolute;
	width: 280px;
	height: 380px;
	background: white;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
	transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	cursor: pointer;
}

.card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.card.center {
	z-index: 10;
	transform: scale(1.1) translateZ(0);
}

.card.center img {
	filter: none;
}

.card.left-2 {
	z-index: 1;
	transform: translateX(-400px) scale(0.8) translateZ(-300px);
	opacity: 0.7;
}

.card.left-2 img {
	filter: grayscale(100%);
}

.card.left-1 {
	z-index: 5;
	transform: translateX(-200px) scale(0.9) translateZ(-100px);
	opacity: 0.9;
}

.card.left-1 img {
	filter: grayscale(100%);
}

.card.right-1 {
	z-index: 5;
	transform: translateX(200px) scale(0.9) translateZ(-100px);
	opacity: 0.9;
}

.card.right-1 img {
	filter: grayscale(100%);
}

.card.right-2 {
	z-index: 1;
	transform: translateX(400px) scale(0.8) translateZ(-300px);
	opacity: 0.7;
}

.card.right-2 img {
	filter: grayscale(100%);
}

.card.hidden {
	opacity: 0;
	pointer-events: none;
}


.dots {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin-top: 60px;
}

.dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: rgba(8, 42, 123, 0.2);
	cursor: pointer;
	transition: all 0.3s ease;
}

.dot.active {
	background: rgb(8, 42, 123);
	transform: scale(1.2);
}




/* About Section */
.about-section {
    padding: 6rem 0;
    background: white;
}

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

.about-text h2 {
    font-size: 2.5rem;
    color: var(--neutral-900);
    margin-bottom: 1.5rem;
}

.about-text > p {
    font-size: 1.1rem;
    color: var(--neutral-600);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.feature h3 {
    color: var(--neutral-900);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.feature p {
    color: var(--neutral-600);
    line-height: 1.5;
}

.about-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* Contact Section */
.contact-section {
    padding: 6rem 0;
    background: var(--neutral-300);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-item h3 {
    color: var(--neutral-900);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-item p {
    color: var(--neutral-600);
    line-height: 1.5;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--neutral-300);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--neutral-900);
}

/* Footer */
.footer {
    background: var(--neutral-700);
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-section h3 {
    color: var(--neutral-900);
    margin-bottom: 1rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--neutral-300);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--neutral-600);
    color: var(--neutral-400);
}





/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}


/* Loading States */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--neutral-200);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-color);
}

/* Additional Hover Effects */
.menu-item-content h3:hover {
    color: var(--accent-color);
    cursor: default;
}

.contact-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Focus States for Accessibility */
.btn:focus,
.nav-link:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid var(--neutral-900);
    outline-offset: 2px;
}









.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    text-align: center;
    padding: 48px 16px;
}

.title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    background:  #D6BE5E;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 16px;
}

.subtitle {
    font-size: 1.125rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

/* Carousel Container */
.carousel-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto 48px;
}

.carousel-wrapper {
    background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
    border-radius: 24px;
    padding: 16px;
    overflow: hidden;
    width: 100%;
}

.carousel-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    width: fit-content;
}

/* Carousel Cards */
.carousel-card {
    min-width: 320px;
    height: 384px;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transform: scale(1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.carousel-card:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.card-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-card:hover .card-image {
    transform: scale(1.1);
}

.card-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.2) 50%, transparent 100%);
}

.card-color-accent {
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 80px;
    border-bottom-left-radius: 16px;
    opacity: 0.8;
}

.card-category {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 4px 12px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    color: white;
    font-size: 0.875rem;
    font-weight: 500;
}

.card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    color: white;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.carousel-card:hover .card-title {
    background: linear-gradient(135deg, #ffffff, #d1d5db);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.card-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}

.carousel-card:hover .card-description {
    color: rgba(255, 255, 255, 0.9);
}

.card-hover-indicator {
    margin-top: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
}

.carousel-card:hover .card-hover-indicator {
    opacity: 1;
}

.card-hover-indicator svg {
    width: 16px;
    height: 16px;
    margin-left: 4px;
    transition: transform 0.3s ease;
}

.carousel-card:hover .card-hover-indicator svg {
    transform: translateX(4px);
}


/* Navigation Buttons */
.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding: 12px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    color: #374151;
    z-index: 10;
}

.nav-btn:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
    color: #111827;
}

.nav-btn-prev {
    left: 8px;
}

.nav-btn-next {
    right: 8px;
}




/* Controls */
.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 24px;
}

.dots-container {
    display: flex;
    gap: 8px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d1d5db;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    transform: scale(1.25);
}

.dot:hover:not(.active) {
    background: #9ca3af;
}

.autoplay-btn {
    padding: 8px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.autoplay-btn.active {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: white;
}

.autoplay-btn:not(.active) {
    background: #e5e7eb;
    color: #6b7280;
}

.autoplay-btn:hover {
    transform: scale(1.1);
}

.autoplay-btn:not(.active):hover {
    background: #d1d5db;
}

.play-icon,
.pause-icon {
    display: none;
}

.autoplay-btn.active .pause-icon,
.autoplay-btn:not(.active) .play-icon {
    display: block;
}

.slide-counter {
    text-align: center;
    margin-top: 16px;
    font-size: 0.875rem;
    color: #6b7280;
    font-weight: 500;
}




/* === Fullscreen modal */
.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 99999;               /* au-dessus de tout (si un element persiste au-dessus, voir note) */
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.9);
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s ease;
  }
  
  .modal-overlay.active {
    opacity: 1;
    visibility: visible;
  }
  
  .modal-content {
    position: relative;
    width: 100vw;
    height: 100vh;
    max-width: none;
    max-height: none;
    margin: auto;
    border-radius: 0;
    background: transparent;      /* laisse le fond sombre de l'overlay */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  /* container qui prend tout l'écran et centre l'image */
  .modal-image-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    min-width: 0;                 /* utile dans certains flex layouts */
    min-height: 0;
  }
  
  /* image : entièrement visible (pas de crop) */
  .modal-image {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;          /* IMPORTANT — conserve l'image entière */
    display: block;
    padding: 10px;
    box-sizing: border-box;
  }

  /* bouton fermer visible au-dessus */
  .modal-close {
    position: fixed;              /* fixe au coin de la fenêtre */
    top: 18px;
    right: 18px;
    z-index: 100000;
    padding: 10px;
    background: rgba(255,255,255,0.95);
    border-radius: 50%;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.25);
  }
  
  /* optionnel : masquer le texte latéral (si tu veux vraiment full-screen) */
  .modal-text {
    display: none;
  }
  
  /* petite animation d'apparition */
  .modal-overlay.active .modal-content {
    animation: modalZoom .18s ease;
  }
  @keyframes modalZoom {
    from { transform: scale(.995); opacity: 0; }
    to   { transform: scale(1);    opacity: 1; }
  }
  
/* force le modal à ignorer les limitations globales */
.modal-overlay.active .modal-image {
    width: 100vw !important;
    height: 100vh !important;
    max-width: 100vw !important;
    max-height: 100vh !important;
    object-fit: contain !important;
  

  }
  


  /* === Overrides: force fullscreen modal layout when overlay is active === */
.modal-overlay.active .modal-content {
    width: 100vw !important;
    height: 100vh !important;
    max-width: none !important;
    max-height: none !important;
    margin: 0 !important;
    padding: 0 !important;
    border-radius: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  
  .modal-overlay.active .modal-body {
    /* Forcer colonne (image centré verticalement/horizontalement) */
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    height: 100% !important;
    align-items: center !important;
    justify-content: center !important;
  }
  
  /* Laisser l'image occuper l'espace central (ignorer les précédentes 50%) */
  .modal-overlay.active .modal-image-container {
    width: 100% !important;
    height: 100% !important;
    min-width: 0 !important;
    min-height: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  
  /* Cacher (ou placer) le texte latéral pendant le mode fullscreen */
  .modal-overlay.active .modal-text {
    display: none !important;
  }
  
  /* Forcer l'image à être centrée et non positionnée */
  .modal-overlay.active .modal-image {
    position: static !important;
    width: auto !important;
    height: auto !important;
    max-width: 90vw !important;   /* ajoute un padding visuel autour */
    max-height: 90vh !important;
    object-fit: contain !important;
    margin: 0 auto !important;
    transform: none !important;
  }
  



.modal-body {
    display: flex;
    flex-direction: column;
}



.modal-gradient {
    position: absolute;
    inset: 0;
    opacity: 0.2;
}

.modal-category {
    position: absolute;
    bottom: 16px;
    left: 16px;
    padding: 4px 12px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
}




/* Print Styles */
@media print {
    .navbar,
    .hero,
    .contact-form {
        display: none;
    }
    
    .menu-section {
        background: white;
    }
}





@media (max-width: 768px) {
    #home {
        padding-top: 220px; 
    }
   
	.about-title {
		font-size: 4.5rem;
        padding-top: 30px; 
	}

	.card {
		width: 200px;
		height: 280px;
	}

	.card.left-2 {
		transform: translateX(-250px) scale(0.8) translateZ(-300px);
	}

	.card.left-1 {
		transform: translateX(-120px) scale(0.9) translateZ(-100px);
	}

	.card.right-1 {
		transform: translateX(120px) scale(0.9) translateZ(-100px);
	}

	.card.right-2 {
		transform: translateX(250px) scale(0.8) translateZ(-300px);
	}

	.member-name {
		font-size: 2rem;
	}

	.member-role {
		font-size: 1.2rem;
	}

	.member-name::before,
	.member-name::after {
		width: 50px;
	}

	.member-name::before {
		left: -70px;
	}

	.member-name::after {
		right: -70px;
	}
}





/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 160px;
        flex-direction: column;
        background: var(--neutral-900);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .features {
        margin-top: 2rem;
    }
    
    .container {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
 

}




/* Responsive Design */
@media (min-width: 1024px) {
    .modal-body {
        flex-direction: row;
    }

    .modal-image-container {
        width: 50%;
        height: 384px;
    }

    .modal-text {
        width: 50%;
    }
}

@media (max-width: 768px) {
    .carousel-card {
        min-width: 280px;
        height: 320px;
    }

    .modal-text {
        padding: 24px;
    }

    .modal-actions {
        flex-direction: column;
    }
}

/* Couleurs des cartes */
.color-blue-purple { background: linear-gradient(135deg, #3b82f6, #8b5cf6); }
.color-cyan-blue { background: linear-gradient(135deg, #06b6d4, #3b82f6); }
.color-purple-pink { background: linear-gradient(135deg, #8b5cf6, #ec4899); }
.color-green-emerald { background: linear-gradient(135deg, #10b981, #059669); }
.color-orange-red { background: linear-gradient(135deg, #f97316, #ef4444); }
.color-indigo-purple { background: linear-gradient(135deg, #6366f1, #8b5cf6); }
.color-teal-cyan { background: linear-gradient(135deg, #14b8a6, #06b6d4); }
.color-amber-orange { background: linear-gradient(135deg, #f59e0b, #f97316); }