/* ======= GOOGLE FONTS IMPORT ======= */
@import url('https://fonts.googleapis.com/css2?family=Allura&family=Playfair+Display:wght@400;500;600;700&display=swap');

/* ======= VARIABLES ======= */
:root {
    /* Couleurs noir et blanc */
    --primary-color: #222222;
    --secondary-color: #444444;
    --accent-color: #000000;
    --light-color: #f7f7f7;
    --dark-color: #121212;
    --grey-color: #d9d9d9;
    --text-color: #333333;
    --bg-color: #ffffff;
    
    /* Effets de flou */
    --blur-light: 10px;
    --blur-medium: 15px;
    --blur-strong: 20px;
    
    /* Opacités */
    --opacity-light: 0.3;
    --opacity-medium: 0.7;
    --opacity-strong: 0.9;
    
    /* Transitions */
    --transition-fast: 0.3s ease;
    --transition-normal: 0.5s ease;
    --transition-slow: 0.8s ease;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-s: 1rem;
    --spacing-m: 2rem;
    --spacing-l: 3rem;
    --spacing-xl: 5rem;
    
    /* Border Radius */
    --radius-s: 5px;
    --radius-m: 10px;
    --radius-l: 15px;
    --radius-xl: 30px;
    --radius-circle: 50%;
    
    /* Shadows */
    --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 5px 15px rgba(0, 0, 0, 0.15);
    --shadow-strong: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* ======= RESET & BASE STYLES ======= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Allura', cursive;
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.8;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    font-size: 16px; /* Taille de base augmentée */
}

main {
    display: block;
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Allura', cursive;
    margin-bottom: var(--spacing-s);
    color: var(--accent-color);
    font-weight: 400;
    letter-spacing: 1px;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

h2 {
    font-size: 3rem;
    position: relative;
}

h3 {
    font-size: 2.2rem;
}

h4 {
    font-size: 1.8rem;
}

h5 {
    font-size: 1.5rem;
}

h6 {
    font-size: 1.3rem;
}

p {
    margin-bottom: var(--spacing-s);
    font-family: 'Allura', cursive;
    letter-spacing: 0.3px;
    font-size: 1.3rem;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition-fast);
}

a:hover {
    color: var(--secondary-color);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Container */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--spacing-s);
}

/* ======= GLASS EFFECT ======= */
.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(var(--blur-light));
    -webkit-backdrop-filter: blur(var(--blur-light));
    border-radius: var(--radius-m);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: var(--shadow-medium);
    padding: var(--spacing-m);
    transition: var(--transition-normal);
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-strong);
}

/* ======= BUTTONS ======= */
.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: var(--radius-m);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition-fast);
    border: none;
    font-family: 'Allura', cursive;
    letter-spacing: 1px;
    font-size: 1.4rem;
}

.btn-primary {
    background-color: #000000;
    color: white;
}

.btn-primary:hover {
    background-color: #333333;
    color: white;
    transform: translateY(-3px);
}

.btn-secondary {
    background-color: transparent;
    color: #000000;
    border: 2px solid #000000;
}

.btn-secondary:hover {
    background-color: #000000;
    color: white;
    transform: translateY(-3px);
}

.center-btn {
    text-align: center;
    margin-top: var(--spacing-m);
}

/* ======= NAVBAR ======= */
.header-wrapper {
    position: relative;
    width: 100%;
    height: 0;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--transition-normal);
    padding: 0.8rem 0;
    width: 100%;
    z-index: 10000;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.navbar.scrolled {
    background-color: rgba(0, 0, 0, 0.95);
    box-shadow: 0 3px 25px rgba(0, 0, 0, 0.5);
}

.navbar-blur {
    display: none;
}

.navbar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding: 0 var(--spacing-m);
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.logo {
    font-size: 1.2rem;
    font-weight: 500;
    z-index: 1001;
    display: flex;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.3);
    margin-right: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.logo:hover .logo-img {
    transform: scale(1.05);
    border-color: rgba(255, 255, 255, 0.8);
}

.logo-text {
    font-family: 'Allura', cursive;
    color: white;
    font-weight: 400;
    white-space: nowrap;
    letter-spacing: 2px;
    transition: color 0.3s ease;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    font-size: 1.8rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 10px;
}

.nav-link {
    color: white;
    font-weight: 400;
    position: relative;
    padding: 0.8rem 1.2rem;
    border-radius: var(--radius-m);
    transition: var(--transition-fast);
    white-space: nowrap;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    font-size: 1.2rem;
    font-family: 'Allura', cursive;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: white;
    transition: width 0.3s ease, left 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after, .active .nav-link::after {
    width: 70%;
}

.nav-link:hover, .nav-link.active {
    background-color: rgba(255, 255, 255, 0.1);
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
}

li.active .nav-link {
    background-color: rgba(255, 255, 255, 0.15);
    font-weight: 600;
}

li.active .nav-link::after {
    width: 70%;
}

.nav-link:hover::after {
    width: 70%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
    padding: 10px;
    margin-right: -10px;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.menu-toggle:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.bar {
    width: 25px;
    height: 2px;
    background-color: white;
    margin: 3px 0;
    transition: var(--transition-fast);
    border-radius: 2px;
}

/* Animation pour le menu hamburger */
.bar.rotate-down {
    transform: translateY(8px) rotate(45deg);
}

.bar.fade-out {
    opacity: 0;
}

.bar.rotate-up {
    transform: translateY(-8px) rotate(-45deg);
}

/* ======= HERO SECTION ======= */
.hero-section {
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: url('../img/3992584-uhd_4096_2160_25fps 00_00_00-00_00_30.gif') center/cover no-repeat;
    margin-bottom: var(--spacing-l);
    margin-top: 0;
    padding-top: 0;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(1px);
    -webkit-backdrop-filter: blur(1px);
}

.hero-content {
    text-align: center;
    color: white;
    max-width: 800px;
    padding: var(--spacing-m);
    position: relative;
    z-index: 1;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    border-radius: var(--radius-l);
    padding: var(--spacing-l);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-section h1 {
    font-size: 4.8rem;
    margin-bottom: var(--spacing-s);
    color: white;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
    letter-spacing: 1px;
}

.hero-section p {
    font-size: 1.9rem;
    margin-bottom: var(--spacing-m);
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.highlight {
    color: #ffffff;
    position: relative;
    display: inline-block;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

/* ======= SECTION HEADERS ======= */
.section-header {
    text-align: center;
    margin-bottom: var(--spacing-l);
}

.section-header p {
    font-size: 1.5rem;
    max-width: 600px;
    margin: 0 auto;
    color: var(--accent-color);
}

/* Logo du chef dans la section header */
.logo-container {
    margin-bottom: var(--spacing-m);
}

.chef-logo {
    width: 250px;
    height: 250px;
    
    object-fit: cover;
    transition: var(--transition-normal);
    display: block;
    margin: 0 auto;
}

.chef-logo:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-strong);
}

.page-header {
    height: 350px;
    background: url('../img/3992584-uhd_4096_2160_25fps 00_00_00-00_00_30.gif') center/cover no-repeat fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: var(--spacing-xl);
    margin-top: 0;
    overflow: hidden;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
}

.page-header .container {
    text-align: center;
    color: white;
    position: relative;
    z-index: 1;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    padding: var(--spacing-l);
    border-radius: var(--radius-l);
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 800px;
}

.page-header h1 {
    color: white;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
    font-size: 3.8rem;
    margin-bottom: var(--spacing-s);
}

.page-header p {
    font-size: 1.6rem;
    margin-bottom: 0;
}

/* Services page header specifics */
.services-header {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../img/3992584-uhd_4096_2160_25fps 00_00_00-00_00_30.gif') center/cover no-repeat fixed;
}

.services-header .page-header-overlay {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(2px);
}

.header-decorations {
    margin-top: var(--spacing-m);
    display: flex;
    justify-content: center;
    gap: var(--spacing-l);
}

.header-decorations i {
    font-size: 2.2rem;
    color: white;
    opacity: 0.8;
    animation: float 3s ease-in-out infinite;
}

.header-decorations i:nth-child(2) {
    animation-delay: 0.5s;
}

.header-decorations i:nth-child(3) {
    animation-delay: 1s;
}

@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
}

.page-header p {
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

/* ======= ABOUT PREVIEW ======= */
.about-preview {
    padding: var(--spacing-l) 0;
}

.about-content {
    display: flex;
    gap: var(--spacing-l);
    align-items: center;
}

.about-image {
    flex: 1;
}

.chef-image-container {
    position: relative;
    border-radius: var(--radius-m);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.chef-image {
    width: 100%;
    transition: var(--transition-normal);
    object-fit: cover;
    max-height: 500px;
    display: block;
}

.chef-image:hover {
    transform: scale(1.05);
}

.about-text {
    flex: 1;
}

/* ======= SERVICES PREVIEW ======= */
.services-preview {
    padding: var(--spacing-xl) 0;
    background-color: rgba(245, 245, 245, 0.5);
}

.services-preview .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-l);
    margin-top: var(--spacing-l);
    margin-bottom: var(--spacing-l);
}

.services-preview .service-card {
    padding: var(--spacing-m);
    text-align: center;
}

.services-preview .service-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: var(--spacing-s);
}

.services-preview .center-btn {
    text-align: center;
}

/* ======= CREATIONS PREVIEW ======= */
.creations-preview {
    padding: var(--spacing-xl) 0;
    background-color: var(--light-color);
    position: relative;
}

.creations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--spacing-m);
}

.creation-card {
    height: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.creation-image {
    height: 200px;
    overflow: hidden;
    border-radius: var(--radius-s);
    margin-bottom: var(--spacing-s);
}

.creation-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-normal);
}

.creation-image img:hover {
    transform: scale(1.1);
}

.creation-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.creation-info h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-xs);
}

.category {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
}

.description {
    margin-bottom: var(--spacing-s);
    flex: 1;
}

/* ======= TESTIMONIALS ======= */
.testimonials {
    padding: var(--spacing-xl) 0;
    background-color: var(--bg-color);
    position: relative;
}

.testimonial-slider {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--spacing-m);
}

.testimonial-card {
    height: 100%;
}

.testimonial-rating {
    margin-bottom: var(--spacing-s);
    color: #ffd700;
}

.testimonial-rating i {
    color: #ffd700;
    margin-right: 2px;
}

.testimonial-rating .fa-star {
    color: #ffd700 !important;
    text-shadow: 0 0 3px rgba(255, 215, 0, 0.5);
}

blockquote {
    font-style: italic;
}

cite {
    display: block;
    margin-top: var(--spacing-s);
    font-weight: 600;
    font-style: normal;
}

/* ======= CONTACT CTA ======= */
.contact-cta {
    padding: var(--spacing-xl) 0;
    background: url('../img/3992584-uhd_4096_2160_25fps 00_00_00-00_00_30.gif') center/cover no-repeat fixed;
    position: relative;
}

.contact-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    filter: grayscale(100%);
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    padding: var(--spacing-l);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-content h2 {
    color: white;
    margin-bottom: var(--spacing-m);
    font-size: 2.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-content p {
    margin-bottom: var(--spacing-l);
    font-size: 1.2rem;
    color: white;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.cta-content .btn-primary {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* ======= CREATIONS GALLERY PAGE ======= */
.creations-section {
    padding: var(--spacing-l) 0;
}

.filter-container {
    margin-bottom: var(--spacing-m);
    text-align: center;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: var(--spacing-m);
}

.filter-btn {
    padding: 0.5rem 1rem;
    background-color: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    cursor: pointer;
    font-family: 'Allura', cursive;
    font-weight: 400;
    border-radius: var(--radius-s);
    transition: var(--transition-fast);
    letter-spacing: 0.5px;
    font-size: 1.1rem;
}

.filter-btn:hover, .filter-btn.active {
    background-color: var(--primary-color);
    color: white;
}

.creations-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--spacing-m);
}

.creation-item {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.creation-details {
    flex: 1;
    padding-top: var(--spacing-s);
}

.date {
    color: var(--accent-color);
    font-style: italic;
    font-size: 0.9rem;
}

.no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: var(--spacing-m);
}

/* ======= ABOUT PAGE ======= */
.about-section {
    padding: var(--spacing-xl) 0;
}

.about-section .about-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--spacing-xl);
    align-items: start;
    padding: var(--spacing-l);
}

.about-section .about-image {
    max-width: 100%;
    overflow: hidden;
    border-radius: var(--radius-m);
    box-shadow: var(--shadow-medium);
}

.about-section .about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition-normal);
    object-fit: cover;
    border-radius: var(--radius-s);
}

.about-section .about-image img:hover {
    transform: scale(1.03);
}

.about-details {
    padding: var(--spacing-m) 0;
}

.about-details h2 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-xs);
    color: var(--accent-color);
}

.about-details h3 {
    font-size: 1.4rem;
    color: var(--secondary-color);
    margin-bottom: var(--spacing-m);
    font-weight: 400;
}

.bio p {
    margin-bottom: var(--spacing-m);
    line-height: 1.7;
}

.skills-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--light-color);
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: var(--spacing-m);
}

.chef-social {
    display: flex;
    gap: var(--spacing-m);
    margin-top: var(--spacing-l);
    flex-wrap: wrap;
}

.chef-social .social-link {
    display: inline-flex;
    align-items: center;
    background: #000000;
    color: white;
    padding: 0.7rem 1.4rem;
    border-radius: var(--radius-l);
    font-weight: 500;
    transition: var(--transition-fast);
}

.chef-social .social-link i {
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

.chef-social .social-link:hover {
    background: #333333;
    transform: translateY(-3px);
    box-shadow: var(--shadow-light);
}

.skill-card {
    text-align: center;
    padding: var(--spacing-m);
    transition: var(--transition-normal);
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.skill-card:hover {
    transform: translateY(-5px);
}

.skill-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-m);
    background: rgba(0, 0, 0, 0.05);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition-normal);
}

.skill-card:hover .skill-icon {
    background: var(--primary-color);
    color: white;
    transform: rotate(5deg);
}

.skill-card h3 {
    margin-bottom: var(--spacing-s);
    font-size: 1.4rem;
}

.timeline-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--bg-color);
    position: relative;
    overflow: hidden;
}

.timeline-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/3992584-uhd_4096_2160_25fps 00_00_00-00_00_30.gif') fixed center/cover;
    opacity: 0.03;
    z-index: 0;
    filter: grayscale(100%);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    z-index: 1;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 3px;
    background-color: #000000;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1px;
    border-radius: var(--radius-s);
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
    box-sizing: border-box;
    margin-bottom: var(--spacing-m);
}

.timeline-item:nth-child(odd) {
    left: 0;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-date {
    position: absolute;
    width: 120px;
    background-color: #000000;
    color: white;
    text-align: center;
    padding: 8px 10px;
    border-radius: var(--radius-s);
    top: 20px;
    font-weight: 600;
    box-shadow: var(--shadow-light);
    z-index: 2;
}

.timeline-item:nth-child(odd) .timeline-date {
    right: -150px;
}

.timeline-item:nth-child(even) .timeline-date {
    left: -150px;
}

.timeline-content {
    padding: var(--spacing-m);
    position: relative;
    transition: var(--transition-normal);
    border-radius: var(--radius-m);
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.timeline-content::after {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    background-color: white;
    border: 4px solid #000000;
    border-radius: 50%;
    top: 20px;
    box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.1);
    z-index: 2;
    transition: var(--transition-normal);
}

.timeline-item:hover .timeline-content::after {
    background-color: #000000;
    transform: scale(1.2);
}

.timeline-item:nth-child(odd) .timeline-content::after {
    right: -48px;
}

.timeline-item:nth-child(even) .timeline-content::after {
    left: -48px;
}

.timeline-content h3 {
    margin-bottom: var(--spacing-xs);
    color: var(--accent-color);
}

/* ======= CONTACT PAGE ======= */
.contact-section {
    padding: var(--spacing-xl) 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--spacing-l);
}

.contact-info {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: var(--spacing-m);
    height: 100%;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: var(--spacing-m);
}

.contact-item i {
    font-size: 1.5rem;
    color: #000000;
    margin-right: var(--spacing-s);
    width: 30px;
    text-align: center;
    flex-shrink: 0;
}

.contact-item div {
    flex-grow: 1;
}

.contact-item h3 {
    margin-bottom: 0.2rem;
    font-size: 1.1rem;
}

.contact-item p {
    margin-bottom: 0;
}

.contact-item p a {
    color: var(--primary-color);
    transition: var(--transition-fast);
}

.contact-item p a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

.contact-social h3 {
    margin-bottom: var(--spacing-s);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-circle);
    background-color: var(--primary-color);
    color: white;
    transition: var(--transition-fast);
}

.social-link:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
    color: white;
}

.contact-form {
    padding: var(--spacing-m);
}

.contact-form h2 {
    margin-bottom: var(--spacing-m);
}

.contact-form form {
    display: flex;
    flex-direction: column;
}

.form-group {
    margin-bottom: var(--spacing-m);
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--accent-color);
    font-size: 1.2rem;
}

input, textarea, select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--grey-color);
    border-radius: var(--radius-m);
    font-family: 'Allura', cursive;
    transition: var(--transition-fast);
    background-color: rgba(255, 255, 255, 0.7);
    font-size: 1.3rem;
}

input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 8px rgba(58, 110, 165, 0.3);
    background-color: white;
}

.contact-form .btn-primary {
    padding: 12px 25px;
    margin-top: var(--spacing-s);
    font-size: 1.05rem;
    align-self: flex-start;
}

.form-message {
    padding: 15px;
    margin-bottom: var(--spacing-m);
    border-radius: var(--radius-m);
    font-weight: 500;
    display: flex;
    align-items: center;
}

.form-message.success, .form-message.message-success {
    background-color: rgba(76, 175, 80, 0.1);
    color: #4CAF50;
    border: 1px solid #4CAF50;
}

.form-message.success::before, .form-message.message-success::before {
    content: '\f058';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-right: 10px;
    font-size: 1.2rem;
}

.form-message.error, .form-message.message-error {
    background-color: rgba(244, 67, 54, 0.1);
    color: #F44336;
    border: 1px solid #F44336;
}

.form-message.error::before, .form-message.message-error::before {
    content: '\f057';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-right: 10px;
    font-size: 1.2rem;
}

/* FAQ Section */
.faq-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--light-color);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: var(--spacing-s);
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: var(--spacing-s);
}

.faq-question h3 {
    margin: 0;
    font-size: 1.2rem;
}

.faq-toggle {
    background-color: #000000;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: var(--radius-circle);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: var(--transition-fast);
    padding: 0 var(--spacing-s);
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: var(--spacing-s);
}

/* ======= FOOTER ======= */
.footer {
    background-color: var(--dark-color);
    color: white;
    padding: var(--spacing-l) 0 var(--spacing-s);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-l);
    margin-bottom: var(--spacing-m);
}

.footer-section h3 {
    color: white;
    margin-bottom: var(--spacing-s);
    font-size: 1.3rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background-color: white;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: var(--spacing-xs);
}

.footer-links a {
    color: var(--grey-color);
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.footer p {
    margin-bottom: var(--spacing-xs);
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer p i {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9rem;
}

.social-icons {
    display: flex;
    gap: var(--spacing-s);
    margin-top: var(--spacing-s);
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--dark-color);
    border: 1px solid white;
    color: white;
    border-radius: 50%;
    font-size: 1.2rem;
    transition: var(--transition-fast);
}

.social-icon:hover {
    background-color: white;
    color: var(--dark-color);
    transform: translateY(-3px);
}

.footer-bottom {
    padding-top: var(--spacing-s);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.9rem;
}

/* ======= BOUTON WHATSAPP FLOTTANT ======= */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    animation: pulse 2s infinite;
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.8rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: all var(--transition-fast);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.whatsapp-float a:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
    background: linear-gradient(135deg, #128C7E, #25D366);
}

.whatsapp-float a:active {
    transform: scale(0.95);
}

/* Animation pulse pour attirer l'attention */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Effet de respiration sur mobile */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-float a {
        width: 55px;
        height: 55px;
        font-size: 1.6rem;
    }
}

/* ======= SERVICES PAGE ======= */
.services-section {
    padding: var(--spacing-xl) 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--spacing-l);
    margin-top: var(--spacing-l);
}

.service-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--accent-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    font-size: 2.8rem;
    color: var(--dark-color);
    margin-bottom: var(--spacing-m);
    text-align: center;
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-m);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.03);
    border-radius: 50%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.5s ease;
}

.service-card:hover .service-icon::before {
    transform: scale(1.5);
}

.service-card:hover .service-icon {
    color: var(--accent-color);
    transform: scale(1.1);
}

.service-content {
    flex: 1;
}

.service-content h3 {
    margin-bottom: var(--spacing-s);
    color: var(--dark-color);
    font-size: 1.3rem;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.service-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--dark-color);
    transition: width 0.3s ease;
}

.service-card:hover .service-content h3::after {
    width: 100%;
}

.service-features {
    list-style: none;
    padding: 0;
    font-size: 1.3rem;
    margin-top: var(--spacing-m);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: var(--spacing-s);
}

.service-features li {
    margin-bottom: var(--spacing-s);
    display: flex;
    align-items: flex-start;
    transition: transform 0.2s ease;
}

.service-features li:hover {
    transform: translateX(5px);
}

.service-features li i {
    color: var(--dark-color);
    margin-right: 10px;
    font-size: 0.9rem;
    background-color: rgba(0, 0, 0, 0.03);
    padding: 5px;
    border-radius: 50%;
    margin-top: 2px;
}

.process-section {
    padding: var(--spacing-xl) 0;
    background-color: rgba(0, 0, 0, 0.02);
    position: relative;
}

.process-section::before,
.process-section::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(0, 0, 0, 0.1), transparent);
}

.process-section::before {
    top: 0;
}

.process-section::after {
    bottom: 0;
}

.process-timeline {
    max-width: 800px;
    margin: var(--spacing-l) auto 0;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 30px;
    width: 2px;
    background-color: var(--dark-color);
    opacity: 0.7;
}

.process-step {
    display: flex;
    margin-bottom: var(--spacing-l);
    position: relative;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.process-step:hover {
    opacity: 1;
    transform: translateX(5px);
}

.process-step:last-child {
    margin-bottom: 0;
}

.process-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--dark-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
    z-index: 2;
    box-shadow: 0 0 0 5px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.process-step:hover .process-number {
    transform: scale(1.1);
    box-shadow: 0 0 0 8px rgba(0, 0, 0, 0.03);
}

.process-content {
    padding: var(--spacing-m) var(--spacing-l);
    background-color: white;
    border-radius: var(--radius-m);
    box-shadow: var(--shadow-light);
    margin-left: var(--spacing-m);
    flex: 1;
    border-left: 3px solid var(--dark-color);
    position: relative;
    transition: all 0.3s ease;
}

.process-step:hover .process-content {
    box-shadow: var(--shadow-medium);
}

.process-content h3 {
    margin-bottom: var(--spacing-xs);
    color: var(--dark-color);
}

.cta-section {
    padding: var(--spacing-xl) 0;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-section .glass-card {
    max-width: 800px;
    margin: 0 auto;
    padding: var(--spacing-xl);
    background-color: rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.cta-section .glass-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to bottom right,
        rgba(255, 255, 255, 0.2) 0%,
        rgba(255, 255, 255, 0.2) 40%,
        rgba(255, 255, 255, 0.6) 50%,
        rgba(255, 255, 255, 0.2) 60%,
        rgba(255, 255, 255, 0.2) 100%
    );
    transform: rotate(30deg);
    z-index: -1;
    transition: transform 1s ease;
}

.cta-section .glass-card:hover::after {
    transform: rotate(30deg) translate(-10%, -10%);
}

.cta-section h2 {
    margin-bottom: var(--spacing-m);
    font-size: 2rem;
    color: var(--dark-color);
}

.cta-section p {
    margin-bottom: var(--spacing-l);
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.1rem;
}

.cta-section .btn {
    margin-top: var(--spacing-m);
    padding: 12px 30px;
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.4s ease;
}

.cta-section .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.4s ease;
    z-index: -1;
}

.cta-section .btn:hover::before {
    left: 100%;
}

/* ======= GALLERY PAGE ======= */
.gallery-header {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../img/gallery-header.jpg') center/cover no-repeat fixed;
    height: 400px;
}

.gallery-section {
    padding: var(--spacing-xl) 0;
}

.gallery-filter {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--spacing-s);
    margin-bottom: var(--spacing-l);
}

.filter-btn {
    padding: 8px 20px;
    background-color: white;
    border: 1px solid var(--dark-color);
    border-radius: var(--radius-s);
    color: var(--dark-color);
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.filter-btn:hover, .filter-btn.active {
    background-color: var(--dark-color);
    color: white;
}

.category-section {
    margin-bottom: var(--spacing-xl);
}

.category-section h3 {
    margin-bottom: var(--spacing-m);
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.category-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--dark-color);
}

.gallery-slider {
    position: relative;
    overflow: hidden;
    padding: var(--spacing-s) 0;
}

.swiper-container {
    width: 100%;
    padding-bottom: 50px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-m);
    box-shadow: var(--shadow-medium);
    transition: all 0.3s ease;
    height: 100%;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-strong);
}

.gallery-image {
    height: 400px;
    overflow: hidden;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-image img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    padding: var(--spacing-m);
    transform: translateY(70px);
    transition: transform 0.3s ease;
}

.gallery-overlay h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
    color: white;
}

.gallery-overlay p {
    margin-bottom: 8px;
    font-size: 0.9rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease 0.1s;
}

.gallery-overlay .gallery-date {
    font-size: 0.8rem;
    font-style: italic;
    opacity: 0.7;
    display: block;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-item:hover .gallery-overlay p {
    opacity: 1;
    transform: translateY(0);
}

.swiper-button-next, .swiper-button-prev {
    color: var(--dark-color);
    background-color: rgba(255, 255, 255, 0.7);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.swiper-button-next:hover, .swiper-button-prev:hover {
    background-color: white;
}

.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 18px;
}

.swiper-pagination-bullet {
    background: var(--dark-color);
    opacity: 0.6;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--dark-color);
}

/* Gallery Modal */
.gallery-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
    transition: opacity 0.3s ease;
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 80%;
    max-height: 80vh;
    border-radius: var(--radius-m);
    box-shadow: var(--shadow-strong);
    animation: zoom 0.3s ease;
}

@keyframes zoom {
    from {transform: scale(0)}
    to {transform: scale(1)}
}
#modalCaption h3{
    color: white;
}

#modalCaption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: white;
    padding: var(--spacing-m) 0;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 35px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: var(--accent-color);
}

.no-results {
    text-align: center;
    padding: var(--spacing-xl);
    font-size: 1.2rem;
    color: var(--dark-color);
}

/* ======= RESPONSIVE DESIGN ======= */
@media (max-width: 1200px) {
    .container {
        width: 95%;
    }
}

@media (max-width: 992px) {
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2.5rem;
    }
    
    .hero-section h1 {
        font-size: 3.8rem;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .about-image, .about-text {
        flex: none;
        width: 100%;
    }
    
    .about-section .about-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-m);
    }
    
    .about-section .about-image {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-m);
    }
    
    /* Services Page Responsive */
    .services-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .service-card {
        margin-bottom: var(--spacing-m);
    }
    
    .process-timeline::before {
        left: 20px;
    }
    
    .process-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .process-content {
        padding: var(--spacing-s);
        margin-left: var(--spacing-s);
    }
    
    .chef-social {
        justify-content: center;
    }
    
    .timeline::after {
        left: 31px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 20px;
    }
    
    .timeline-item:nth-child(even) {
        left: 0;
    }
    
    .timeline-date {
        width: auto;
        position: relative;
        top: -30px;
        left: -70px !important;
        right: auto !important;
        margin-bottom: -15px;
    }
    
    .timeline-content::after {
        left: -39px !important;
        right: auto !important;
    }
}

/* ======= RESPONSIVE TABLETTES ======= */
@media (max-width: 1024px) and (min-width: 769px) {
    .navbar, .navbar-blur {
        width: 95%;
        left: 50%;
        transform: translateX(-50%);
        border-radius: var(--radius-m);
        margin-top: 10px;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        right: -100%;
        height: auto;
        width: 280px;
        flex-direction: column;
        justify-content: flex-start;
        padding: 25px 20px;
        align-items: center;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(var(--blur-medium));
        transition: var(--transition-normal);
        z-index: 1000;
        border-radius: var(--radius-m);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        border-left: 1px solid rgba(255, 255, 255, 0.1);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-menu li {
        width: 100%;
        margin: 10px 0;
    }
    
    .nav-link {
        display: block;
        text-align: center;
        padding: 15px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        font-size: 1.1rem;
    }
    
    .nav-link::after {
        bottom: 0;
    }
    
    .nav-menu.active {
        right: 15px;
        animation: slideIn 0.3s forwards;
    }
    
    @keyframes slideIn {
        from {
            right: -100%;
        }
        to {
            right: 15px;
        }
    }
}


@media (max-width: 768px) {
    .navbar, .navbar-blur {
        width: 95%;
        left: 50%;
        transform: translateX(-50%);
        border-radius: var(--radius-m);
        margin-top: 10px;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        right: -100%;
        height: auto;
        width: 220px;
        flex-direction: column;
        justify-content: flex-start;
        padding: 20px 15px;
        align-items: center;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(var(--blur-medium));
        transition: var(--transition-normal);
        z-index: 1000;
        border-radius: var(--radius-m);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        border-left: 1px solid rgba(255, 255, 255, 0.1);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-menu li {
        width: 100%;
        margin: 8px 0;
    }
    
    .nav-link {
        display: block;
        text-align: center;
        padding: 12px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-link::after {
        bottom: 0;
    }
    
    .nav-menu.active {
        right: 10px;
        animation: slideIn 0.3s forwards;
    }
    
    @keyframes slideIn {
        from {
            opacity: 0;
            transform: translateX(20px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
    
    .nav-link {
        margin: var(--spacing-s) 0;
        font-size: 1.4rem;
    }
    
    .hero-section h1 {
        font-size: 3.2rem;
    }
    
    .hero-section p {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    .navbar, .navbar-blur {
        width: 98%;
        margin-top: 5px;
    }
    
    .logo-text {
        font-size: 1.6rem;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .hero-section p {
        font-size: 1.3rem;
    }
    
    .section-header p {
        font-size: 1.3rem;
    }
    
    .testimonial-slider {
        grid-template-columns: 1fr;
    }
    
    .social-links {
        justify-content: center;
    }
}

/* ======= GALLERY PREVIEW SECTION ======= */
.gallery-preview {
    padding: 4rem 0;
}

.gallery-slider {
    position: relative;
    margin-bottom: 2rem;
}

.gallery-item {
    position: relative;
    height: 350px;
    border-radius: var(--border-radius);
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-image {
    width: 100%;
    height: 100%;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-image img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 1rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    margin: 0;
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.gallery-overlay p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

.home-gallery-swiper {
    padding-bottom: 3rem;
}

.home-gallery-swiper .swiper-slide {
    height: auto;
}

.home-gallery-swiper .swiper-pagination {
    bottom: 0;
}

.home-gallery-swiper .swiper-button-next,
.home-gallery-swiper .swiper-button-prev {
    color: var(--primary-color);
    background: rgba(255, 255, 255, 0.5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.home-gallery-swiper .swiper-button-next:hover,
.home-gallery-swiper .swiper-button-prev:hover {
    background: rgba(255, 255, 255, 0.8);
}

.home-gallery-swiper .swiper-button-next:after,
.home-gallery-swiper .swiper-button-prev:after {
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .gallery-item {
        height: 280px;
    }
}

@media (max-width: 576px) {
    .gallery-item {
        height: 400px;
    }
}

/* ======= SERVICES ALTERNATING LAYOUT ======= */
.services-alternating {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-item {
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 0;
    border-radius: var(--border-radius);
}

.service-item .service-image {
    flex: 1;
    height: 400px;
    overflow: hidden;
}

.service-item .service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-item:hover .service-image img {
    transform: scale(1.05);
}

.service-item .service-content {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-item .service-content h3 {
    margin-top: 0;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.service-item .service-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.service-item .service-features li {
    margin-bottom: 0.7rem;
    display: flex;
    align-items: center;
}

.service-item .service-features li i {
    margin-right: 10px;
    color: var(--accent-color);
}

.service-item .btn {
    align-self: flex-start;
    margin-top: 1rem;
}

/* Reverse layout for alternating items */
.service-item.service-reverse {
    flex-direction: row-reverse;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .service-item, .service-item.service-reverse {
        flex-direction: column;
    }
    
    .service-item .service-image {
        width: 100%;
        height: 300px;
    }
    
    .service-item .service-content {
        width: 100%;
        padding: 2rem;
    }
}

/* ======= TESTIMONIALS STYLES ======= */
.testimonials-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--light-color);
}

.testimonials-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    border-radius: var(--radius-m);
    box-shadow: var(--shadow-light);
    padding: var(--spacing-m);
    margin-bottom: var(--spacing-l);
}

.average-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-right: var(--spacing-m);
    border-right: 1px solid var(--grey-color);
    min-width: 150px;
}

.rating-number {
    font-size: 2.5rem;
    font-weight: bold;
    line-height: 1;
}

.rating-number span {
    font-size: 1.2rem;
    font-weight: normal;
}

.rating-stars {
    margin: var(--spacing-xs) 0;
}

.rating-stars .fa-star {
    color: #ddd;
    font-size: 1.2rem;
    margin: 0 2px;
}

.rating-stars .fa-star.active {
    color: #ffc107;
}

.rating-count {
    color: var(--secondary-color);
    font-size: 0.9rem;
}

.rating-stats {
    flex-grow: 1;
    padding-left: var(--spacing-m);
}

.rating-bar {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.rating-label {
    min-width: 60px;
    display: flex;
    align-items: center;
}

.rating-label .fa-star {
    font-size: 0.8rem;
    margin-left: 3px;
    color: #ffc107;
}

.progress-bar {
    flex-grow: 1;
    height: 8px;
    background-color: #f0f0f0;
    border-radius: 10px;
    margin: 0 var(--spacing-xs);
    overflow: hidden;
}

.progress-bar .progress {
    height: 100%;
    background-color: #ffc107;
    border-radius: 10px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: var(--spacing-m);
    margin-bottom: var(--spacing-l);
}

.testimonial-card {
    background-color: white;
    border-radius: var(--radius-m);
    box-shadow: var(--shadow-light);
    overflow: hidden;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.testimonial-content {
    padding: var(--spacing-m);
}

.testimonial-rating {
    margin-bottom: var(--spacing-s);
}

.testimonial-rating .fa-star {
    color: #ffd700 !important;
    font-size: 1.1rem;
    margin-right: 2px;
    text-shadow: 0 0 3px rgba(255, 215, 0, 0.5);
}

.testimonial-rating .fa-star.active {
    color: #ffd700 !important;
}

.testimonial-text {
    font-style: italic;
    line-height: 1.6;
    color: var(--text-color);
}

.testimonial-footer {
    padding: var(--spacing-s) var(--spacing-m);
    background-color: var(--light-color);
    border-top: 1px solid var(--grey-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.testimonial-author {
    font-weight: bold;
    font-size: 1.05rem;
}

.testimonial-date {
    color: var(--secondary-color);
    font-size: 0.9rem;
}

.no-testimonials {
    text-align: center;
    padding: var(--spacing-xl) 0;
}

.no-testimonials i {
    font-size: 3rem;
    color: var(--grey-color);
    margin-bottom: var(--spacing-m);
}

.no-testimonials p {
    color: var(--secondary-color);
    margin-bottom: var(--spacing-xs);
}

.testimonials-cta {
    text-align: center;
    background-color: white;
    border-radius: var(--radius-m);
    box-shadow: var(--shadow-light);
    padding: var(--spacing-l);
    margin-top: var(--spacing-xl);
}

.testimonials-cta h3 {
    margin-bottom: var(--spacing-s);
}

.testimonials-cta p {
    margin-bottom: var(--spacing-m);
    color: var(--secondary-color);
}

@media (max-width: 992px) {
    .testimonials-summary {
        flex-direction: column;
        align-items: stretch;
    }
    
    .average-rating {
        border-right: none;
        border-bottom: 1px solid var(--grey-color);
        padding-right: 0;
        padding-bottom: var(--spacing-m);
        margin-bottom: var(--spacing-m);
    }
    
    .rating-stats {
        padding-left: 0;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}
