
/* Variables CSS pour la palette de couleurs - DUAL THEME SYSTEM */
:root {
    /* Blue Color Palette */
    --primary-color: #3498db;
    --primary-dark: #2980b9;
    --primary-light: #5dade2;
    --accent-blue: #1e3a8a;
    --accent-blue-light: #3b82f6;
    
    /* Light Theme Variables */
    --bg-light: #ffffff;
    --bg-medium: #f8fafc;
    --bg-dark: #e2e8f0;
    --text-primary: #1e293b;
    --text-secondary: #475569;
    --text-tertiary: #64748b;
    --border-light: rgba(30, 41, 59, 0.1);
    --shadow-light-theme: rgba(30, 41, 59, 0.1);
    --shadow-medium-theme: rgba(30, 41, 59, 0.15);
    --shadow-dark-theme: rgba(30, 41, 59, 0.25);
}

[data-theme="light"] {
    --secondary-color: var(--bg-light);
    --secondary-light: var(--bg-medium);
    --accent-color: var(--text-secondary);
    --accent-light: var(--text-tertiary);
    --accent-lighter: var(--text-secondary);
    
    --background-light: var(--bg-light);
    --background-medium: var(--bg-medium);
    --background-dark: var(--bg-dark);
    --white: #ffffff;
    --text-dark: var(--text-primary);
    --text-medium: var(--text-secondary);
    --text-light: var(--text-tertiary);
    --border-light: var(--border-light);
    
    --shadow-light: var(--shadow-light-theme);
    --shadow-medium: var(--shadow-medium-theme);
    --shadow-dark: var(--shadow-dark-theme);
    
    --primary-gradient: linear-gradient(135deg, var(--bg-light), var(--bg-medium));
    --section-gradient-1: linear-gradient(135deg, var(--bg-medium), var(--bg-light));
    --section-gradient-2: linear-gradient(135deg, var(--bg-light), var(--bg-dark));
    --footer-gradient: linear-gradient(135deg, var(--text-primary), #334155);
}

[data-theme="dark"] {
    --secondary-color: #0f172a;
    --secondary-light: #1e293b;
    --accent-color: #94a3b8;
    --accent-light: #cbd5e1;
    --accent-lighter: #e2e8f0;
    
    --background-light: #0f172a;
    --background-medium: #1e293b;
    --background-dark: #020617;
    --white: #ffffff;
    --text-dark: #f1f5f9;
    --text-medium: #e2e8f0;
    --text-light: #cbd5e1;
    --border-light: rgba(241, 245, 249, 0.2);
    
    --shadow-light: rgba(0,0,0,0.3);
    --shadow-medium: rgba(0,0,0,0.5);
    --shadow-dark: rgba(0,0,0,0.7);
    
    --primary-gradient: linear-gradient(135deg, var(--background-light), var(--background-medium));
    --section-gradient-1: linear-gradient(135deg, var(--background-medium), var(--background-light));
    --section-gradient-2: linear-gradient(135deg, var(--background-light), var(--background-dark));
    --footer-gradient: linear-gradient(135deg, var(--secondary-color), var(--secondary-light));
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--primary-gradient);
    overflow-x: hidden;
}

/* Navigation */
.nav-desktop {
    position: fixed;
    top: 30px;
    right: 40px;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-desktop a {
    font-family: 'Playfair Display', serif;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.nav-desktop a:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* Theme Toggle Button */
.theme-toggle {
    background: var(--background-medium);
    border: 1px solid var(--border-light);
    border-radius: 0;
    padding: 8px 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-dark);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.theme-toggle:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.theme-toggle-icon {
    transition: transform 0.3s ease;
}

.theme-toggle:hover .theme-toggle-icon {
    transform: rotate(180deg);
}

.nav-mobile {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    display: none;
}

.menu-toggle {
    background: var(--background-medium);
    border: 1px solid var(--border-light);
    padding: 10px 15px;
    border-radius: 0;
    font-family: 'Playfair Display', serif;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--background-medium);
    border: 1px solid var(--border-light);
    border-radius: 0;
    padding: 20px;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.mobile-theme-toggle {
    width: 100%;
    background: var(--background-dark);
    border: 1px solid var(--border-light);
    border-radius: 0;
    padding: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-dark);
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 10px;
}

.mobile-theme-toggle:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu a {
    display: block;
    font-family: 'Playfair Display', serif;
    color: var(--text-dark);
    text-decoration: none;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.mobile-menu a:last-child {
    border-bottom: none;
}

.mobile-menu a:hover {
    color: var(--primary-color);
    padding-left: 10px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    text-align: center;
}

/* Logo au-dessus du titre */
.logo-container {
    margin-bottom: 30px;
    perspective: 1000px;
}

.hero-logo {
    width: 120px;
    height: 120px;
    border-radius: 0;
    object-fit: cover;
    border: none;
    box-shadow: 
        0 20px 40px var(--shadow-medium),
        0 10px 20px var(--shadow-light);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: translateZ(20px);
    background: transparent;
}

/* Logo color inversion for light theme */
[data-theme="light"] .hero-logo {
    filter: invert(1);
}

[data-theme="dark"] .hero-logo {
    filter: none;
}

.hero-logo:hover {
    transform: translateZ(40px) rotateY(5deg) rotateX(5deg);
    box-shadow: 
        0 30px 60px var(--shadow-medium),
        0 15px 30px var(--shadow-light);
}

.main-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 600;
    color: var(--text-dark);
    letter-spacing: 4px;
    margin-bottom: 20px;
    position: relative;
    text-shadow: 
        0 2px 4px var(--shadow-light),
        0 8px 16px var(--shadow-medium),
        0 16px 32px rgba(52, 152, 219, 0.2);
    transform: translateZ(30px);
    perspective: 1000px;
}

.main-title::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, var(--primary-color) 50%, transparent 70%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: -1;
    transform: translateZ(-10px);
}

.main-title:hover::before {
    opacity: 0.3;
}

.main-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
    border-radius: 2px;
    box-shadow: 0 4px 8px rgba(52, 152, 219, 0.3);
}

.quote {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: clamp(1.2rem, 3vw, 1.6rem);
    color: var(--accent-color);
    letter-spacing: 1px;
    text-shadow: 0 2px 4px var(--shadow-light);
}

/* Floating Photo Gallery */
.photo-gallery {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    pointer-events: none;
}

.floating-photo {
    position: absolute;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 20px 60px var(--shadow-medium);
    border: 1px solid var(--border-light);
    backdrop-filter: blur(10px);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    pointer-events: auto;
}

.floating-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.floating-photo:hover {
    transform: scale(1.1) translateZ(20px);
    box-shadow: 0 30px 80px rgba(52, 152, 219, 0.3);
    border-color: var(--primary-color);
    z-index: 1000;
}

.floating-photo:hover img {
    transform: scale(1.05);
}

/* Different sizes and positions for each photo - REPOSITIONNÉES POUR ÉVITER LES CHEVAUCHEMENTS */
.floating-photo:nth-child(1) {
    width: 280px;
    height: 200px;
    top: 5%;
    left: 5%;
    animation: float1 8s ease-in-out infinite;
}

.floating-photo:nth-child(2) {
    width: 200px;
    height: 200px;
    top: 8%;
    right: 5%;
    animation: float2 10s ease-in-out infinite;
    animation-delay: -2s;
}

.floating-photo:nth-child(3) {
    width: 220px;
    height: 300px;
    bottom: 15%;
    right: 2%;
    animation: float3 12s ease-in-out infinite;
    animation-delay: -4s;
}

.floating-photo:nth-child(4) {
    width: 260px;
    height: 180px;
    bottom: 5%;
    left: 17%;
    animation: float4 9s ease-in-out infinite;
    animation-delay: -1s;
}

.floating-photo:nth-child(5) {
    width: 160px;
    height: 240px;
    top: 35%;
    left: 2%;
    animation: float5 11s ease-in-out infinite;
    animation-delay: -3s;
}

.floating-photo:nth-child(6) {
    width: 210px;
    height: 210px;
    top: 20%;
    right: 25%;
    animation: float6 7s ease-in-out infinite;
    animation-delay: -5s;
}

/* Photos supplémentaires masquées sur desktop */
.floating-photo:nth-child(7),
.floating-photo:nth-child(8),
.floating-photo:nth-child(9),
.floating-photo:nth-child(10),
.floating-photo:nth-child(11),
.floating-photo:nth-child(12),
.floating-photo:nth-child(13),
.floating-photo:nth-child(14),
.floating-photo:nth-child(15),
.floating-photo:nth-child(16) {
    display: none;
}

/* Floating keyframes */
@keyframes float1 {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-15px) rotate(1deg); }
    50% { transform: translateY(-10px) rotate(0deg); }
    75% { transform: translateY(-20px) rotate(-1deg); }
}

@keyframes float2 {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-25px) rotate(-1deg); }
    66% { transform: translateY(-8px) rotate(1deg); }
}

@keyframes float3 {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    20% { transform: translateY(-12px) rotate(0.5deg); }
    40% { transform: translateY(-18px) rotate(0deg); }
    60% { transform: translateY(-5px) rotate(-0.5deg); }
    80% { transform: translateY(-22px) rotate(0deg); }
}

@keyframes float4 {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    30% { transform: translateY(-16px) rotate(-1deg); }
    70% { transform: translateY(-12px) rotate(1deg); }
}

@keyframes float5 {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    40% { transform: translateY(-20px) rotate(1deg); }
    80% { transform: translateY(-14px) rotate(-0.5deg); }
}

@keyframes float6 {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-18px) rotate(-1deg); }
    50% { transform: translateY(-8px) rotate(0.5deg); }
    75% { transform: translateY(-25px) rotate(0deg); }
}

/* Sections */
.section {
    min-height: 100vh;
    padding: 100px 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.section-content {
    max-width: 1200px;
    width: 100%;
    text-align: center;
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
    position: relative;
}

.section-number {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 300;
    color: rgba(52, 152, 219, 0.3);
    line-height: 1;
}

.section h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--text-dark);
    letter-spacing: 2px;
    margin: 0;
}

.section-line {
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
}

.section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 30px;
}

/* Section specific styling */
.section-intro {
    background: var(--section-gradient-1);
    position: relative;
    z-index: 15;
}



.section-services {
    background: var(--section-gradient-2);
    position: relative;
}



.section-contact {
    background: var(--section-gradient-1);
    position: relative;
}



/* Introduction */
.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 50px;
}

.intro-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.portrait img {
    width: 200px;
    height: 200px;
    border-radius: 0;
    object-fit: cover;
    border: 1px solid var(--primary-color);
    box-shadow: 0 10px 40px var(--shadow-light);
}

.portrait h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-top: 20px;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.service-card {
    background: var(--background-medium);
    padding: 40px 30px;
    border-radius: 0;
    border: 1px solid var(--border-light);
    box-shadow: 0 10px 40px var(--shadow-light);
    transition: all 0.3s ease;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px var(--shadow-medium);
    border-color: var(--primary-color);
}

.service-card .icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.service-card:hover .icon {
    color: var(--primary-dark);
    transform: scale(1.1);
}

.service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 15px;
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 50px;
}

.contact-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.contact-info {
    color: var(--text-dark);
}

.contact-info p {
    color: var(--text-medium);
}

.contact-item {
    margin-bottom: 10px;
    padding: 5px;
    background: var(--background-medium);
    border: 1px solid var(--border-light);
    border-radius: 0;
    color: var(--text-dark);
}

.contact-item i {
    color: var(--primary-color);
    margin-right: 8px;
}

.contact-item strong {
    color: var(--text-dark);
    font-weight: 600;
}

.map-container {
    background: var(--background-medium);
    border-radius: 0;
    border: 1px solid var(--border-light);
    padding: 10px;
    box-shadow: 0 10px 40px var(--shadow-light);
    height: 400px;
    overflow: hidden;
}

.map-container iframe {
    transition: all 0.3s ease;
}

.map-container:hover iframe {
    transform: scale(1.02);
}

/* Footer */
.footer {
    background: var(--footer-gradient);
    color: white;
    padding: 60px 50px 20px;
    position: relative;
    overflow: hidden;
}



.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.footer-brand h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.footer-brand p {
    color: var(--accent-lighter);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.footer-line {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
    margin-bottom: 20px;
}

.footer-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.footer-section h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.footer-section p {
    color: var(--accent-lighter);
    line-height: 1.6;
}

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

.social-links a {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--accent-lighter);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 12px 20px;
    border-radius: 0;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border-light);
}

.social-links a:hover {
    color: var(--primary-color);
    background: rgba(52,152,219,0.1);
    border-color: rgba(52,152,219,0.3);
    transform: translateX(10px);
}

.social-icon {
    font-size: 1.5rem;
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    position: relative;
    z-index: 2;
}

.footer-bottom p {
    color: var(--accent-light);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 1200px) {
    .floating-photo:nth-child(1) { width: 220px; height: 150px; top: 4%; left: 4%; }
    .floating-photo:nth-child(2) { width: 150px; height: 150px; top: 7%; right: 4%; }
    .floating-photo:nth-child(3) { width: 170px; height: 230px; bottom: 12%; right: 2%; }
    .floating-photo:nth-child(4) { width: 200px; height: 140px; bottom: 4%; left: 30%; }
    .floating-photo:nth-child(5) { width: 120px; height: 180px; top: 30%; left: 2%; }
    .floating-photo:nth-child(6) { width: 160px; height: 160px; top: 40%; right: 22%; }
    
    .hero-logo {
        width: 100px;
        height: 100px;
        border-radius: 0;
    }
    
    /* Maintain logo filter on smaller screens */
    [data-theme="light"] .hero-logo {
        filter: invert(1);
    }
}

@media (max-width: 1024px) {
    .nav-desktop { 
        top: 20px;
        right: 30px;
        gap: 20px;
    }
    
    .theme-toggle {
        padding: 6px 10px;
        font-size: 1rem;
    }
    
    .floating-photo:nth-child(1) { width: 180px; height: 120px; top: 4%; left: 4%; }
    .floating-photo:nth-child(2) { width: 120px; height: 120px; top: 6%; right: 4%; }
    .floating-photo:nth-child(3) { width: 130px; height: 180px; bottom: 10%; right: 2%; }
    .floating-photo:nth-child(4) { width: 160px; height: 110px; bottom: 4%; left: 25%; }
    .floating-photo:nth-child(5) { width: 90px; height: 140px; top: 28%; left: 2%; }
    .floating-photo:nth-child(6) { width: 130px; height: 130px; top: 38%; right: 20%; }
    
    .hero-logo {
        width: 90px;
        height: 90px;
        border-radius: 0;
    }
    
    /* Maintain logo filter on tablet screens */
    [data-theme="light"] .hero-logo {
        filter: invert(1);
    }
    
    .section { 
        padding: 80px 40px; 
    }
    
    .main-title {
        font-size: clamp(2.5rem, 7vw, 4rem);
    }
}

@media (max-width: 768px) {
    .nav-desktop { display: none; }
    .nav-mobile { display: block; }
    
    /* Réduire la hauteur de la section hero */
    .hero {
        min-height: 60vh;
        overflow: hidden;
        position: relative;
    }
    
    .hero-content {
        text-align: center;
        position: relative;
        z-index: 10;
    }
    
    /* Afficher plus de photos sur mobile pour remplir complètement */
    .floating-photo:nth-child(7),
    .floating-photo:nth-child(8),
    .floating-photo:nth-child(9),
    .floating-photo:nth-child(10),
    .floating-photo:nth-child(11),
    .floating-photo:nth-child(12) {
        display: block;
    }
    
    .floating-photo:nth-child(13),
    .floating-photo:nth-child(14),
    .floating-photo:nth-child(15),
    .floating-photo:nth-child(16) {
        display: none;
    }
    
    /* Grille CSS avec 3 rangées pour remplir complètement */
    .photo-gallery {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: repeat(3, 1fr);
        gap: 4px;
        padding: 4px;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 5;
        max-height: 60vh;
    }
    
    .floating-photo {
        position: relative;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        width: 100% !important;
        height: 100% !important;
        border-radius: 6px;
        border-width: 1px;
        animation: none !important;
        opacity: 0.4;
        pointer-events: none;
        filter: grayscale(60%) blur(0.5px);
        transition: all 0.3s ease;
    }
    
    .hero-logo {
        width: 80px;
        height: 80px;
        border-radius: 0;
    }
    
    /* Maintain logo filter on mobile screens */
    [data-theme="light"] .hero-logo {
        filter: invert(1);
    }
    
    .section { 
        padding: 60px 20px; 
        min-height: auto;
    }
    
    .section-header {
        flex-direction: column;
        gap: 15px;
        margin-bottom: 30px;
    }
    
    .section-number {
        font-size: 2.5rem;
    }
    
    .intro-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .services-grid { 
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .footer-info {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .social-links a:hover {
        transform: translateX(0);
    }
    
    .map-container {
        height: 300px;
    }
}

@media (max-width: 480px) {
    /* Section hero encore plus petite sur très petits écrans */
    .hero {
        min-height: 50vh;
        overflow: hidden;
        position: relative;
    }
    
    /* Grille 2x6 sur petits écrans pour couvrir complètement */
    .photo-gallery {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(6, 1fr);
        gap: 2px;
        padding: 2px;
        max-height: 50vh;
    }
    
    /* Afficher plus de photos sur petits écrans */
    .floating-photo:nth-child(7),
    .floating-photo:nth-child(8),
    .floating-photo:nth-child(9),
    .floating-photo:nth-child(10),
    .floating-photo:nth-child(11),
    .floating-photo:nth-child(12) {
        display: block;
    }
    
    .floating-photo {
        border-radius: 2px;
        opacity: 0.3;
        filter: grayscale(80%) blur(1px);
    }
    
    .hero-logo {
        width: 70px;
        height: 70px;
        border-radius: 0;
    }
    
    /* Correct logo filter on small mobile screens */
    [data-theme="light"] .hero-logo {
        filter: invert(1);
    }
    
    .section {
        padding: 40px 15px;
    }
    
    .main-title { 
        letter-spacing: 2px; 
        font-size: clamp(1.8rem, 5vw, 2.5rem);
    }
    
    .footer { 
        padding: 40px 20px 20px; 
    }
    
    .footer-brand h3 {
        font-size: 2rem;
    }
    
    .service-card {
        padding: 25px 15px;
    }
    
    .service-card .icon {
        font-size: 2.5rem;
    }
    
    .map-container {
        height: 250px;
        padding: 5px;
        border-radius: 0;
    }
}