/* 
   Saira Food - Fast-Food Fusion Indien & Sri Lankais
   Style moderne pour un public jeune
*/

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    /* Palette de couleurs moderne basée sur le vert */
    --primary-color: #1e6f50; /* Vert principal */
    --primary-dark: #0d503a;
    --primary-light: #2d8a68;
    --secondary-color: #e6b325; /* Accent doré */
    --secondary-dark: #c99a1e;
    --secondary-light: #f8c94c;
    --accent-color: #FFD700; /* Or pour les accents */
    --text-color: #1A1A1A;
    --text-light: #555555;
    --bg-color: #FFFFFF;
    --bg-light: #F9F9F9;
    --bg-dark: #EEEEEE;
    --bg-gradient: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    --border-color: #E0E0E0;
    --success-color: #00C851;
    --error-color: #FF3547;
    --card-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    
    /* Typographie moderne */
    --heading-font: 'Montserrat', sans-serif;
    --body-font: 'Poppins', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
    color: var(--text-color);
}

p {
    margin-bottom: 15px;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
}

ul, ol {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

section {
    padding: 80px 0;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    font-weight: 600;
    text-align: center;
    border-radius: 50px; /* Boutons arrondis */
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: width 0.3s ease;
    z-index: -1;
}

.btn:hover::before {
    width: 100%;
}

.btn-primary {
    background: var(--bg-gradient);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 36px;
    position: relative;
    display: inline-block;
}

.separator {
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 15px auto 20px;
}

.section-header p {
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.cta-buttons .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.cta-buttons .btn i {
    font-size: 14px;
}

.logo h1 {
    font-size: 28px;
    font-weight: 800;
    margin: 0;
    background: var(--bg-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: -0.5px;
    position: relative;
}

.logo h1::after {
    content: 'FUSION';
    position: absolute;
    bottom: -8px;
    right: 0;
    font-size: 12px;
    font-weight: 600;
    color: var(--secondary-color);
    letter-spacing: 2px;
}

nav {
    display: flex;
    align-items: center;
}

.menu {
    display: flex;
}

.menu li {
    margin-left: 30px;
}

.menu a {
    color: var(--text-color);
    font-weight: 600;
    position: relative;
    padding: 8px 0;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.menu a:hover, .menu a.active {
    color: var(--primary-color);
}

.menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--bg-gradient);
    transition: width 0.3s ease;
    border-radius: 3px;
}

.menu a:hover::after, .menu a.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 30px;
    height: 3px;
    background: var(--bg-gradient);
    margin: 6px 0;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/hero-bg.webp') no-repeat center center/cover;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
    padding: 80px 0 0 0; /* Ajout d'un padding-top pour compenser la hauteur du header */
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 75, 43, 0.3), rgba(93, 63, 211, 0.3));
    z-index: 1;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease;
}

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

.hero-content h1 {
    font-size: 60px;
    font-weight: 800;
    margin-bottom: 20px;
    color: white;
    text-transform: uppercase;
    letter-spacing: -1px;
    line-height: 1.1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-content h1 span {
    display: block;
    color: var(--accent-color);
    font-size: 70%;
}

.hero-content p {
    font-size: 22px;
    margin-bottom: 40px;
    font-weight: 300;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    animation: fadeIn 1.5s ease;
}

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

/* About Section */
.about {
    background-color: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: var(--primary-light);
    opacity: 0.05;
    border-radius: 50%;
    z-index: 0;
}

.about::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 250px;
    height: 250px;
    background: var(--secondary-light);
    opacity: 0.05;
    border-radius: 50%;
    z-index: 0;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.about-image {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transform: rotate(-2deg);
    transition: transform 0.5s ease;
}

.about-image:hover {
    transform: rotate(0deg) scale(1.02);
}

.about-text {
    flex: 1;
}

.about-text h3 {
    color: var(--primary-color);
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
}

.about-text h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--bg-gradient);
    border-radius: 2px;
}

.about-text p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.features {
    display: flex;
    flex-wrap: wrap;
    margin-top: 40px;
    gap: 25px;
}

.feature {
    flex: 1;
    min-width: 150px;
    text-align: center;
    padding: 25px 15px;
    background-color: white;
    border-radius: 16px;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(to bottom, rgba(255, 75, 43, 0.05), transparent);
    transition: height 0.3s ease;
    z-index: -1;
}

.feature:hover {
    transform: translateY(-10px);
}

.feature:hover::before {
    height: 100%;
}

.feature i {
    font-size: 36px;
    margin-bottom: 15px;
    background: var(--bg-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.feature h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.feature i {
    font-size: 30px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.feature h4 {
    font-size: 18px;
    margin-bottom: 0;
}

/* Menu Section */
.menu-section {
    background-color: var(--bg-color);
    position: relative;
    overflow: hidden;
}

.menu-section::before {
    content: '🍔';
    position: absolute;
    top: 50px;
    left: 5%;
    font-size: 120px;
    opacity: 0.05;
    transform: rotate(-15deg);
    z-index: 0;
}

.menu-section::after {
    content: '🔥';
    position: absolute;
    bottom: 80px;
    right: 5%;
    font-size: 120px;
    opacity: 0.05;
    transform: rotate(15deg);
    z-index: 0;
}

.menu-categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
    gap: 15px;
    position: relative;
    z-index: 2;
}

.menu-category {
    padding: 12px 25px;
    background-color: var(--bg-light);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.menu-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.menu-category.active::before, .menu-category:hover::before {
    opacity: 1;
}

.menu-category.active, .menu-category:hover {
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.menu-items {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 35px;
    position: relative;
    z-index: 2;
}

.menu-item {
    background-color: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.menu-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--bg-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.menu-item:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.menu-item:hover::after {
    transform: scaleX(1);
}

.menu-item-img {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.menu-item-img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 70%, rgba(0, 0, 0, 0.7));
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.menu-item:hover .menu-item-img::before {
    opacity: 1;
}

.menu-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.menu-item:hover .menu-item-img img {
    transform: scale(1.1) rotate(2deg);
}

.menu-item-content {
    padding: 25px;
}

.menu-item-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-color);
    transition: color 0.3s ease;
}

.menu-item:hover .menu-item-content h3 {
    color: var(--primary-color);
}

.menu-item-content p {
    color: var(--text-light);
    margin-bottom: 18px;
    font-size: 15px;
    line-height: 1.5;
}

.price {
    font-weight: 700;
    font-size: 20px;
    color: var(--secondary-color);
    display: inline-block;
    padding: 5px 15px;
    background-color: rgba(93, 63, 211, 0.1);
    border-radius: 50px;
}

.menu-footer {
    text-align: center;
    margin-top: 60px;
    position: relative;
    z-index: 2;
}

/* Gallery Section */
.gallery {
    background-color: #f9f9f9;
    position: relative;
    overflow: hidden;
    padding: 50px 0;
}

.gallery::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: var(--primary-light);
    opacity: 0.05;
    border-radius: 50%;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0 40px;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 300px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    margin-bottom: 10px;
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.7));
    z-index: 1;
    opacity: 1;
    transition: opacity 0.4s ease;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.gallery-item:hover::before {
    background: linear-gradient(to bottom, transparent 30%, rgba(0, 0, 0, 0.8));
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.gallery-item:hover img {
    transform: scale(1.1) rotate(2deg);
}

.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    z-index: 2;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

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

.overlay h3 {
    color: white;
    margin: 0;
    font-size: 24px;
    font-weight: 600;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    position: relative;
    padding-bottom: 10px;
    font-family: var(--heading-font);
}

.overlay h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 3px;
}

/* Testimonials Section */
.testimonials {
    background: var(--bg-gradient);
    color: white;
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '\201C';
    position: absolute;
    top: 50px;
    left: 5%;
    font-size: 200px;
    font-family: serif;
    opacity: 0.1;
    color: white;
}

.testimonials::after {
    content: '\201D';
    position: absolute;
    bottom: 50px;
    right: 5%;
    font-size: 200px;
    font-family: serif;
    opacity: 0.1;
    color: white;
}

.testimonials .section-header h2 {
    color: white;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 1px;
}

.testimonials .separator {
    background-color: var(--accent-color);
    height: 4px;
    width: 100px;
    border-radius: 2px;
}

.testimonials-slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding: 30px 0;
    scrollbar-width: none;
    position: relative;
    z-index: 2;
}

.testimonials-slider::-webkit-scrollbar {
    display: none;
}

.testimonial {
    flex: 0 0 calc(33.333% - 20px);
    min-width: 320px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 35px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial::before {
    content: '\201C';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 60px;
    font-family: serif;
    color: rgba(255, 255, 255, 0.2);
    line-height: 1;
}

.testimonial:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.testimonial-content {
    position: relative;
    z-index: 1;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 25px;
    font-size: 17px;
    line-height: 1.7;
    font-weight: 300;
}

.testimonial-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-info h4 {
    color: white;
    margin-bottom: 5px;
    font-size: 18px;
    font-weight: 600;
}

.stars {
    color: var(--accent-color);
    font-size: 14px;
    letter-spacing: 2px;
}

/* Contact Section */
.contact {
    background-color: var(--bg-color);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: var(--secondary-light);
    opacity: 0.05;
    border-radius: 50%;
    z-index: 0;
}

.contact-content {
    display: flex;
    gap: 60px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.contact-info {
    flex: 1;
}

.info-item {
    margin-bottom: 35px;
    padding: 25px;
    background-color: var(--bg-light);
    border-radius: 20px;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.info-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 0;
    background: var(--bg-gradient);
    transition: height 0.3s ease;
}

.info-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.info-item:hover::before {
    height: 100%;
}

.info-item i {
    font-size: 32px;
    background: var(--bg-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 18px;
    display: inline-block;
}

.info-item h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-color);
}

.info-item p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
}

.social-media {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-media a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background: var(--bg-gradient);
    color: white;
    border-radius: 50%;
    font-size: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.social-media a:hover {
    transform: translateY(-8px) rotate(360deg);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.contact-form {
    flex: 1;
    background-color: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--card-shadow);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: var(--primary-light);
    opacity: 0.05;
    border-radius: 0 0 0 100%;
    z-index: -1;
}

.contact-form::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 120px;
    height: 120px;
    background: var(--secondary-light);
    opacity: 0.05;
    border-radius: 0 100% 0 0;
    z-index: -1;
}

.form-group {
    margin-bottom: 25px;
    position: relative;
}

.form-row {
    display: flex;
    gap: 25px;
}

.form-group.half {
    flex: 1;
}

input, select, textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid var(--bg-light);
    border-radius: 50px;
    font-family: var(--body-font);
    font-size: 16px;
    background-color: var(--bg-light);
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05) inset;
}

textarea {
    border-radius: 20px;
    height: 140px;
    resize: vertical;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--primary-light);
    background-color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transform: translateY(-3px);
}

input::placeholder, textarea::placeholder {
    color: var(--text-light);
    opacity: 0.7;
}

select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23555' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: calc(100% - 20px) center;
    padding-right: 40px;
}

.map {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
    margin-top: 40px;
}

.map:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

/* Footer */
footer {
    background: linear-gradient(135deg, #1a1a1a, #333);
    color: white;
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
}

/* Informations section in footer */
footer .footer-info,
footer .footer-info h3,
footer .footer-info p,
footer .footer-info i {
    color: #ffffff !important;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--bg-gradient);
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.footer-logo {
    flex: 1;
    min-width: 250px;
}

.footer-logo h2 {
    color: white;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 20px;
    background: var(--bg-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.footer-links {
    flex: 1;
    min-width: 200px;
}

.footer-links h3, .footer-newsletter h3 {
    color: white;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links h3::after, .footer-newsletter h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--bg-gradient);
    border-radius: 2px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-links ul li {
    position: relative;
    transition: all 0.3s ease;
}

.footer-links ul li::before {
    content: '→';
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 16px;
    display: inline-block;
}

.footer-links ul li:hover {
    transform: translateX(20px);
}

.footer-links ul li:hover::before {
    opacity: 1;
    left: -15px;
}

.footer-links ul li a:hover {
    color: white;
}

.footer-newsletter {
    flex: 1;
    min-width: 250px;
}

.footer-newsletter p {
    margin-bottom: 20px;
    color: #b3b3b3;
}

#newsletter-form {
    display: flex;
}

#newsletter-form input {
    flex: 1;
    border-radius: 4px 0 0 4px;
    border: none;
}

#newsletter-form button {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 0 20px;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#newsletter-form button:hover {
    background-color: var(--primary-dark);
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin: 0;
    color: #ffffff;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--primary-dark);
    transform: translateY(-5px);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .about-content {
        flex-direction: column;
    }
    
    .contact-content {
        flex-direction: column;
    }
    
    .menu-item {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    header .container {
        height: 70px;
    }
    
    .hero {
        padding-top: 70px; /* Ajuster le padding-top pour correspondre à la hauteur du header en mobile */
    }
    
    .menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: white;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: left 0.3s ease;
    }
    
    .menu.active {
        left: 0;
    }
    
    .menu li {
        margin: 15px 0;
    }
    
    .hamburger {
        display: block;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hero-content h1 {
        font-size: 36px;
    }
    
    .hero-content p {
        font-size: 18px;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .section-header h2 {
        font-size: 30px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .testimonial {
        flex: 0 0 calc(100% - 20px);
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 28px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 20px;
    }
}
