/* Reset et Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #030213;
    --primary-foreground: #ffffff;
    --background: #ffffff;
    --foreground: oklch(0.145 0 0);
    --muted-foreground: #717182;
    --border: rgba(0, 0, 0, 0.1);
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --container-padding: 1.5rem;
    --border-radius: 0.625rem;
    --transition-duration: 0.6s;
    --transition-ease: cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: var(--foreground);
    background-color: var(--background);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--background);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity var(--transition-duration) var(--transition-ease);
}

.loading-screen.fade-out {
    opacity: 0;
    pointer-events: none;
}

.loading-content {
    text-align: center;
    animation: fadeInUp 0.8s var(--transition-ease);
}

.loading-flower {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: rotate 2s linear infinite;
}

.loading-title {
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 0.2em;
    color: var(--foreground);
    animation: fadeIn 0.8s var(--transition-ease) 0.5s both;
}

/* Navigation */
.navigation {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.7s var(--transition-ease);
    background: transparent;
}

.navigation.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    transition: transform 0.3s var(--transition-ease);
}

.nav-logo:hover {
    transform: scale(1.05);
}

.logo-icon {
    font-size: 1.5rem;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 400;
    letter-spacing: 0.1em;
}

.nav-desktop {
    display: none;
    align-items: center;
    gap: 3rem;
}

.nav-item {
    background: none;
    border: none;
    font-size: 0.875rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: var(--muted-foreground);
    cursor: pointer;
    position: relative;
    padding: 0.5rem 0;
    transition: all 0.3s var(--transition-ease);
}

.nav-item:hover,
.nav-item.active {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.nav-item.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary-color);
    animation: slideIn 0.3s var(--transition-ease);
}

/* Mobile Menu */
.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    gap: 3px;
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    transition: transform 0.3s var(--transition-ease);
}

.mobile-menu-btn:hover {
    transform: scale(1.1);
}

.hamburger {
    width: 20px;
    height: 2px;
    background: var(--foreground);
    transition: all 0.3s var(--transition-ease);
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -320px;
    bottom: 0;
    width: 320px;
    background: var(--background);
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    transition: right 0.3s var(--transition-ease);
    z-index: 999;
}

.mobile-menu.open {
    right: 0;
}

.mobile-menu-content {
    padding-top: 5rem;
    padding-left: 2rem;
}

.mobile-nav-item {
    display: block;
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 1rem 0;
    font-size: 1.125rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: var(--muted-foreground);
    cursor: pointer;
    transition: all 0.3s var(--transition-ease);
}

.mobile-nav-item:hover,
.mobile-nav-item.active {
    color: var(--primary-color);
    transform: translateX(10px);
}

.main-content {
    padding-top:0px;
}


.page {
  display: none;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.page.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}


/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image-container {
    position: absolute;
    inset: 0;
    animation: parallaxMove 20s linear infinite;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.2) 0%,
        transparent 50%,
        rgba(0, 0, 0, 0.4) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
    padding: 0 var(--container-padding);
    animation: fadeInUp 1s var(--transition-ease) 0.5s both;
}

.hero-sparkles {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    animation: fadeIn 1s var(--transition-ease) 0.5s both;
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 300;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
    line-height: 1.2;
    animation: fadeInUp 1s var(--transition-ease) 0.7s both;
}

.hero-title em {
    font-style: italic;
}

.hero-subtitle {
    font-size: clamp(1rem, 3vw, 1.25rem);
    font-weight: 300;
    letter-spacing: 0.05em;
    max-width: 700px;
    margin: 0 auto 3rem;
    opacity: 0.9;
    line-height: 1.6;
    animation: fadeInUp 1s var(--transition-ease) 0.9s both;
}

.hero-cta {
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    cursor: pointer;
    backdrop-filter: blur(10px);
    transition: all 0.5s var(--transition-ease);
    animation: fadeInScale 0.8s var(--transition-ease) 1.1s both;
}

.hero-cta:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.05);
}



.hero-image-container {
  animation: none !important;
  transform: none !important;
}

.hero-animate .hero-content {
    opacity: 0;
    transform: translateY(20px);
    animation: heroContentFadeIn 2s ease 0.5s forwards;
}

@keyframes heroFadeIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes heroContentFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: fadeIn 1s var(--transition-ease) 1.5s both;
}

.scroll-arrow {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.6);
    animation: bounce 2s infinite;
}

/* Philosophy Section */
.philosophy-section {
    padding: 8rem 0;
    background: var(--background);
}

.philosophy-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 300;
    letter-spacing: 0.1em;
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s var(--transition-ease);
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.philosophy-item {
    text-align: center;
    padding: 2rem;
    animation: fadeInUp 0.6s var(--transition-ease);
}

.philosophy-item:nth-child(2) {
    animation-delay: 0.2s;
}

.philosophy-item:nth-child(3) {
    animation-delay: 0.4s;
}

.philosophy-icon {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1.5rem;
    background: var(--gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.5s var(--transition-ease);
}

.philosophy-item:hover .philosophy-icon {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.philosophy-item h3 {
    font-size: 1.25rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.philosophy-item p {
    color: var(--muted-foreground);
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 8rem 0;
    background: var(--gray-50);
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 300;
    letter-spacing: 0.05em;
    margin-bottom: 2rem;
}

.cta-subtitle {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    line-height: 1.6;
    margin-bottom: 3rem;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--primary-foreground);
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s var(--transition-ease);
}

.btn-primary:hover {
    background: rgba(3, 2, 19, 0.9);
    transform: scale(1.05);
}

.btn-secondary {
    background: none;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s var(--transition-ease);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--primary-foreground);
    transform: scale(1.05);
}

/* Page Header */
.page-header {
    padding: 5rem 0;
    background: var(--background);
    text-align: center;
}

.page-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 300;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s var(--transition-ease);
}

.page-subtitle {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 0.8s var(--transition-ease) 0.2s both;
}

/* Portfolio Filters */
.portfolio-filters {
    padding: 2rem 0;
    background: var(--background);
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: none;
    border: 1px solid var(--border);
    color: var(--foreground);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s var(--transition-ease);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    color: var(--primary-foreground);
    border-color: var(--primary-color);
    transform: scale(1.05);
}

/* Portfolio Grid */
.portfolio-grid-section {
    padding: 3rem 0 5rem;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-auto-rows: 300px;
    gap: 1.5rem;
}

.portfolio-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s var(--transition-ease);
    animation: fadeInScale 0.5s var(--transition-ease);
}

.portfolio-item:hover {
    transform: translateY(-5px);
}

.portfolio-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.portfolio-item.medium {
    grid-row: span 1;
}

.portfolio-item.small {
    grid-row: span 1;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s var(--transition-ease);
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    opacity: 0;
    transition: opacity 0.5s var(--transition-ease);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-info {
    color: white;
    transform: translateY(100%);
    transition: transform 0.5s var(--transition-ease);
}

.portfolio-item:hover .portfolio-info {
    transform: translateY(0);
}

.portfolio-info h3 {
    font-size: 1.125rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.portfolio-info p {
    font-size: 0.875rem;
    opacity: 0.9;
    line-height: 1.4;
}

/* Atelier Hero */
.atelier-hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.atelier-hero-image {
    position: absolute;
    inset: 0;
}

.atelier-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.atelier-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.6), transparent);
}

.atelier-hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    padding: 0 var(--container-padding);
    color: white;
    animation: fadeInLeft 1s var(--transition-ease) 0.5s both;
}

.atelier-hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 300;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.atelier-hero-title em {
    font-style: italic;
}

.atelier-hero-subtitle {
    font-size: 1.25rem;
    font-weight: 300;
    opacity: 0.9;
    line-height: 1.6;
}

/* Process Section */
.process-section {
    padding: 8rem 0;
    background: var(--background);
}

.process-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.process-step {
    text-align: center;
    position: relative;
    animation: fadeInUp 0.6s var(--transition-ease);
}

.process-step:nth-child(2) { animation-delay: 0.2s; }
.process-step:nth-child(3) { animation-delay: 0.4s; }
.process-step:nth-child(4) { animation-delay: 0.6s; }

.process-number {
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.125rem;
    font-weight: 300;
    color: var(--muted-foreground);
}

.process-icon {
    width: 5rem;
    height: 5rem;
    margin: 0 auto 1.5rem;
    background: var(--gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    transition: all 0.5s var(--transition-ease);
}

.process-step:hover .process-icon {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.process-step h3 {
    font-size: 1.25rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.process-step p {
    color: var(--muted-foreground);
    line-height: 1.6;
}

/* Stats Section */
.stats-section {
    padding: 8rem 0;
    background: var(--gray-50);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-item {
    background: var(--background);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s var(--transition-ease);
    animation: fadeInUp 0.6s var(--transition-ease);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.stat-item:nth-child(2) { animation-delay: 0.1s; }
.stat-item:nth-child(3) { animation-delay: 0.2s; }
.stat-item:nth-child(4) { animation-delay: 0.3s; }

.stat-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* Services Grid */
.services-grid-section {
    padding: 3rem 0 5rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--background);
    border: 1px solid var(--gray-100);
    border-radius: var(--border-radius);
    padding: 2rem;
    transition: all 0.5s var(--transition-ease);
    animation: fadeInUp 0.6s var(--transition-ease);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-card:nth-child(2) { animation-delay: 0.1s; }
.service-card:nth-child(3) { animation-delay: 0.2s; }
.service-card:nth-child(4) { animation-delay: 0.3s; }
.service-card:nth-child(5) { animation-delay: 0.4s; }
.service-card:nth-child(6) { animation-delay: 0.5s; }

.service-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.service-icon {
    width: 4rem;
    height: 4rem;
    background: var(--gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    flex-shrink: 0;
    transition: all 0.5s var(--transition-ease);
}

.service-card:hover .service-icon {
    background: var(--primary-color);
    color: white;
}

.service-title-group h3 {
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.service-subtitle {
    font-size: 0.875rem;
    color: var(--primary-color);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.service-description {
    color: var(--muted-foreground);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-features li {
    display: flex;
    align-items: center;
    color: var(--muted-foreground);
    margin-bottom: 0.5rem;
}

.service-features li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
    margin-right: 0.75rem;
    flex-shrink: 0;
}

.service-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-100);
}

.service-price {
    font-size: 1.125rem;
    font-weight: 400;
    letter-spacing: 0.05em;
}

.service-btn {
    background: var(--primary-color);
    color: var(--primary-foreground);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s var(--transition-ease);
}

.service-btn:hover {
    background: rgba(3, 2, 19, 0.9);
    transform: scale(1.05);
}

/* Contact Content */
.contact-content {
    padding: 3rem 0 5rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-section-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 300;
    letter-spacing: 0.05em;
    margin-bottom: 2rem;
    animation: fadeInLeft 0.8s var(--transition-ease) 0.2s both;
}

/* Contact Form */
.contact-form {
    animation: fadeInLeft 0.8s var(--transition-ease) 0.2s both;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    font-weight: 400;
    letter-spacing: 0.05em;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--gray-200);
    border-radius: 0.5rem;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s var(--transition-ease);
    background: var(--background);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit-btn {
    width: 100%;
    background: var(--primary-color);
    color: var(--primary-foreground);
    border: none;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s var(--transition-ease);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.form-submit-btn:hover {
    background: rgba(3, 2, 19, 0.9);
    transform: translateY(-2px);
}

/* Contact Info */
.contact-info-section {
    animation: fadeInRight 0.8s var(--transition-ease) 0.4s both;
}

.contact-info-grid {
    margin-bottom: 2rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--gray-50);
    border-radius: var(--border-radius);
    margin-bottom: 1.5rem;
    transition: background-color 0.3s var(--transition-ease);
}

.contact-info-item:hover {
    background: var(--gray-100);
}

.contact-info-icon {
    width: 3rem;
    height: 3rem;
    background: rgba(3, 2, 19, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.contact-info-content h3 {
    font-size: 1.125rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.contact-info-content p {
    color: var(--muted-foreground);
    line-height: 1.4;
}

.contact-info-content a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s var(--transition-ease);
}

.contact-info-content a:hover {
    color: var(--primary-color);
}

/* Social Section */
.social-section {
    padding: 1.5rem;
    background: var(--gray-50);
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
}

.social-section h3 {
    font-size: 1.125rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 2.5rem;
    height: 2.5rem;
    background: var(--background);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--muted-foreground);
    text-decoration: none;
    transition: all 0.3s var(--transition-ease);
}

.social-link:hover {
    color: var(--primary-color);
    background: rgba(3, 2, 19, 0.1);
    transform: scale(1.1);
}

/* Map Placeholder */
.map-placeholder {
    height: 200px;
    background: var(--gray-200);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-content {
    text-align: center;
    color: var(--muted-foreground);
}

.map-icon {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

/* Scroll to Top */
.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 3rem;
    height: 3rem;
    background: var(--primary-color);
    color: var(--primary-foreground);
    border: none;
    border-radius: 50%;
    font-size: 1.125rem;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s var(--transition-ease);
    z-index: 1000;
}

.scroll-to-top.visible {
    opacity: 1;
    pointer-events: auto;
}

.scroll-to-top:hover {
    background: rgba(3, 2, 19, 0.9);
    transform: scale(1.1);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideIn {
    from {
        transform: scaleX(0);
    }
    to {
        transform: scaleX(1);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes parallaxMove {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-20px);
    }
}

/* Responsive Design */
@media (min-width: 768px) {
    .nav-desktop {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: none;
    }
    
    .cta-buttons {
        flex-direction: row;
        justify-content: center;
    }
    
    .philosophy-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .process-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .container {
        padding: 0 1rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .portfolio-item.large {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Utility Classes */
.hidden {
    display: none !important;
}

.visible {
    display: block !important;
}

.site-footer {
  background: var(--primary-color);
  color: var(--primary-foreground);
  padding: 4rem 2rem 2rem;
  margin-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 900px;   /* largeur max pour recentrer */
  margin: 0 auto 2rem; /* centre la grille au milieu */
}

.footer-left {
  text-align: left;
}

.footer-center {
  text-align: center;
}

.footer-right {
  text-align: right;
}


.footer-col h3, .footer-col h4 {
  margin-bottom: 1rem;
  font-weight: 500;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 0.5rem;
}

.footer-col ul li a {
  color: var(--primary-foreground);
  text-decoration: none;
  opacity: 0.85;
  transition: opacity 0.3s ease;
}

.footer-col ul li a:hover {
  opacity: 1;
}

.footer-bottom {
  text-align: center;
  font-size: 0.875rem;
  opacity: 0.7;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 1rem;
}
