/* ===== ELITE ALAKÖY PASTANESI - AWARD-WINNING DESIGN ===== */

/* ===== CSS RESET & ELITE VARIABLES ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Elite Color Palette */
    --primary-dark: #1a1a1a;
    --primary-green: #424d3c;
    --secondary-green: #5a6b4c;
    --accent-gold: #d4a574;
    --cream: #fdf5ea;
    --white: #ffffff;
    --light-gray: #f8f8f8;
    --medium-gray: #666666;
    --border-light: #e8e8e8;
    
    /* Elite Typography */
    --font-display: 'Cormorant Garamond', serif;
    --font-body: 'Inter', sans-serif;
    --font-accent: 'Playfair Display', serif;
    
    /* Elite Spacing - FIXED PIXELS */
    --section-padding: 40px;
    --container-padding: 32px;
    --grid-gap: 24px;
    
    /* Elite Transitions */
    --transition-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-spring: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    
    /* Elite Shadows */
    --shadow-subtle: 0 2px 20px rgba(0, 0, 0, 0.03);
    --shadow-medium: 0 8px 40px rgba(0, 0, 0, 0.08);
    --shadow-strong: 0 20px 60px rgba(0, 0, 0, 0.12);
}

/* ===== ELITE BASE STYLES ===== */
html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
    color: var(--primary-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

/* ===== ELITE NAVIGATION ===== */
.navigation {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
    transition: all 0.4s var(--transition-smooth);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-logo {
    height: 60px;
    width: auto;
    transition: all 0.3s var(--transition-smooth);
}

.nav-logo:hover {
    transform: scale(1.05);
}



/* ===== ELITE HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 120px 0 80px;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
    width: 100%;
}

.hero-content {
    max-width: 800px;
}

.hero-title {
    margin-bottom: 40px;
}

.title-main {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 400;
    line-height: 0.9;
    color: var(--primary-dark);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.title-sub {
    display: block;
    font-family: var(--font-body);
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 300;
    color: var(--medium-gray);
    font-style: italic;
    letter-spacing: 0.5px;
}

.hero-description {
    max-width: 600px;
}

.desc-primary {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    font-weight: 400;
    line-height: 1.7;
    color: var(--primary-dark);
    margin-bottom: 24px;
}

.desc-secondary {
    font-size: clamp(1rem, 1.8vw, 1.1rem);
    font-weight: 300;
    line-height: 1.6;
    color: var(--medium-gray);
    font-style: italic;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: var(--container-padding);
    display: flex;
    align-items: center;
    gap: 16px;
    opacity: 0.7;
    animation: float 3s ease-in-out infinite;
}

.scroll-text {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    color: var(--medium-gray);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.scroll-line {
    width: 40px;
    height: 1px;
    background: var(--medium-gray);
    animation: expand 2s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes expand {
    0%, 100% { width: 40px; }
    50% { width: 60px; }
}

/* ===== ELITE CONTAINER ===== */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* ===== ELITE SECTIONS ===== */
.locations {
    padding: var(--section-padding) 0;
    background: var(--light-gray);
}

/* ===== HERO VISUAL ELEMENTS ===== */
.hero-visuals {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-product {
    position: absolute;
    opacity: 0.7;
    animation-duration: 6s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}

.floating-product-1 {
    top: 20%;
    right: 15%;
    animation-name: float1;
    animation-delay: 0s;
}

.floating-product-2 {
    top: 60%;
    right: 8%;
    animation-name: float2;
    animation-delay: 1s;
}

.floating-product-3 {
    top: 30%;
    left: 12%;
    animation-name: float3;
    animation-delay: 2s;
}

.floating-product-4 {
    bottom: 25%;
    left: 20%;
    animation-name: float4;
    animation-delay: 3s;
}

.product-placeholder {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    box-shadow: var(--shadow-medium);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(66, 77, 60, 0.1);
}

@keyframes float1 {
    0%, 100% { transform: translateY(0) rotate(0deg) scale(1); }
    50% { transform: translateY(-20px) rotate(5deg) scale(1.1); }
}

@keyframes float2 {
    0%, 100% { transform: translateY(0) rotate(0deg) scale(1); }
    50% { transform: translateY(-30px) rotate(-8deg) scale(1.05); }
}

@keyframes float3 {
    0%, 100% { transform: translateY(0) rotate(0deg) scale(1); }
    50% { transform: translateY(-25px) rotate(10deg) scale(1.08); }
}

@keyframes float4 {
    0%, 100% { transform: translateY(0) rotate(0deg) scale(1); }
    50% { transform: translateY(-35px) rotate(-5deg) scale(1.12); }
}

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

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 400;
    color: var(--primary-dark);
    margin-bottom: 16px;
    letter-spacing: -0.01em;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.title-primary {
    display: block;
    color: var(--primary-dark);
}

.title-secondary {
    display: block;
    font-size: 0.7em;
    color: var(--medium-gray);
    font-style: italic;
    font-weight: 300;
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight: 300;
    color: var(--medium-gray);
    font-style: italic;
    display: flex;
    flex-direction: column;
    gap: 6px;
    max-width: 800px;
    margin: 0 auto;
}

.subtitle-primary {
    display: block;
    color: var(--primary-dark);
    font-style: normal;
    font-weight: 400;
}

.subtitle-secondary {
    display: block;
    font-size: 0.9em;
    color: var(--medium-gray);
    font-style: italic;
    font-weight: 300;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--grid-gap);
}

.location-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    transition: all 0.4s var(--transition-smooth);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    border-radius: 8px;
    transform: translateY(0) scale(1);
}

.location-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-green);
}

.location-emoji {
    font-size: 2.5rem;
    margin-bottom: 16px;
    display: block;
    transition: all 0.3s var(--transition-smooth);
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
}

.location-info {
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-grow: 1;
    text-align: center;
}

.location-name {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 1.8rem);
    font-weight: 400;
    color: var(--primary-dark);
    letter-spacing: -0.01em;
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 8px;
}

.name-primary {
    display: block;
    color: var(--primary-dark);
}

.name-secondary {
    display: block;
    font-size: 0.75em;
    color: var(--medium-gray);
    font-style: italic;
    font-weight: 300;
}

.location-type {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    color: var(--medium-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-bottom: 12px;
}

.type-primary {
    display: block;
    color: var(--primary-green);
    font-weight: 600;
}

.type-secondary {
    display: block;
    font-size: 0.9em;
    color: var(--medium-gray);
    font-style: italic;
    text-transform: none;
    letter-spacing: 0.3px;
}

.location-description {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 300;
    color: var(--medium-gray);
    margin-bottom: 16px;
    line-height: 1.5;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.desc-primary {
    display: block;
    color: var(--primary-dark);
    font-weight: 400;
    font-style: normal;
}

.desc-secondary {
    display: block;
    font-size: 0.9em;
    color: var(--medium-gray);
    font-style: italic;
    font-weight: 300;
}

.location-status {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 8px 16px;
    background: var(--primary-green);
    color: var(--white);
    border-radius: 6px;
    align-self: flex-start;
}

.status-text {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-hours {
    font-size: 10px;
    font-weight: 400;
    opacity: 0.9;
    letter-spacing: 0.3px;
}

/* ===== ELITE DELIVERY PROMISE ===== */
.delivery-promise {
    padding: var(--section-padding) 0;
    background: var(--cream);
}

.promise-content {
    display: grid;
    grid-template-columns: 1fr 200px;
    gap: 48px;
    align-items: center;
}

.promise-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    color: var(--primary-green);
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

.promise-description {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    font-weight: 400;
    line-height: 1.7;
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.promise-description-en {
    font-size: clamp(1rem, 1.8vw, 1.1rem);
    font-weight: 300;
    line-height: 1.6;
    color: var(--medium-gray);
    font-style: italic;
}

.delivery-icon-premium {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--primary-green);
    border-radius: 50%;
    color: var(--primary-green);
    animation: pulse 3s ease-in-out infinite;
    margin: 0 auto;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); border-color: var(--primary-green); }
    50% { transform: scale(1.05); border-color: var(--accent-gold); }
}

/* ===== ELITE NEWSLETTER ===== */
.newsletter {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.newsletter-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    color: var(--primary-dark);
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.newsletter-subtitle {
    font-family: var(--font-body);
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight: 300;
    color: var(--medium-gray);
    font-style: italic;
    margin-bottom: 24px;
}

.form-group {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    border: 2px solid var(--border-light);
    border-radius: 0;
    overflow: hidden;
    transition: all 0.3s var(--transition-smooth);
}

.form-group:focus-within {
    border-color: var(--primary-green);
    box-shadow: 0 0 0 4px rgba(66, 77, 60, 0.1);
}

.email-input {
    flex: 1;
    padding: 20px 24px;
    border: none;
    background: var(--white);
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--primary-dark);
    outline: none;
}

.email-input::placeholder {
    color: var(--medium-gray);
    font-weight: 300;
}

.submit-button {
    padding: 20px 32px;
    background: var(--primary-green);
    border: none;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s var(--transition-smooth);
    display: flex;
    align-items: center;
    gap: 8px;
}

.submit-button:hover {
    background: var(--secondary-green);
    transform: translateX(4px);
}

.button-arrow {
    transition: transform 0.3s var(--transition-smooth);
}

.submit-button:hover .button-arrow {
    transform: translateX(4px);
}



/* ===== PREMIUM FOOTER ===== */
.footer {
    padding: 18px 0 24px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, #0f1a12 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--accent-gold) 50%, transparent 100%);
}

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

.footer-main {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Footer Brand */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-logo {
    height: 48px;
    width: auto;
    filter: brightness(1.1);
}

.footer-tagline {
    font-family: var(--font-body);
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin: 0;
}

.tagline-primary {
    font-size: 16px;
    font-weight: 500;
    color: var(--white);
    display: block;
}

.tagline-secondary {
    font-size: 14px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
    display: block;
}

/* Footer Links Section */
.footer-links-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-links-title {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 500;
    color: var(--accent-gold);
    margin: 0;
    letter-spacing: -0.01em;
}

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

.footer-social,
.footer-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s var(--transition-smooth);
    padding: 8px 0;
}

.footer-social:hover,
.footer-link:hover {
    color: var(--white);
    transform: translateX(4px);
}

.link-icon {
    font-size: 16px;
    opacity: 0.8;
}

.link-text {
    font-weight: 500;
}

/* Footer Locations */
.footer-locations {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-locations-title {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 500;
    color: var(--accent-gold);
    margin: 0;
    letter-spacing: -0.01em;
}

.footer-location-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-location-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    padding: 4px 0;
}

.location-icon {
    font-size: 16px;
    opacity: 0.9;
}

.location-text {
    font-weight: 400;
}

.footer-hours {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--accent-gold);
    font-weight: 500;
    margin: 8px 0 0 0;
    padding: 8px 12px;
    background: rgba(212, 165, 116, 0.1);
    border-radius: 4px;
    border-left: 3px solid var(--accent-gold);
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    padding-top: 24px;
}

.footer-copyright {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* Devloris Credits */
.footer-credits {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.08) 0%, rgba(255, 255, 255, 0.05) 100%);
    padding: 8px 20px;
    border-radius: 25px;
    border: 1px solid rgba(212, 165, 116, 0.15);
    backdrop-filter: blur(15px);
    transition: all 0.4s var(--transition-smooth);
}

.footer-credits:hover {
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.12) 0%, rgba(255, 255, 255, 0.08) 100%);
    border-color: rgba(212, 165, 116, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212, 165, 116, 0.15);
}

.credits-text {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    letter-spacing: 0.2px;
}

.devloris-link {
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: var(--accent-gold);
    font-weight: 500;
    transition: all 0.3s var(--transition-smooth);
}

.devloris-link:hover {
    color: var(--white);
    transform: scale(1.02);
}

.devloris-icon {
    height: 20px;
    width: 20px;
    filter: brightness(1.2) saturate(1.1);
    transition: all 0.3s var(--transition-smooth);
}

.devloris-link:hover .devloris-icon {
    transform: rotate(5deg) scale(1.1);
    filter: brightness(1.4) saturate(1.2);
}

.devloris-text {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.4px;
}

/* ===== ELITE BACKGROUND ELEMENTS ===== */
.bg-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.bg-pattern-1 {
    position: absolute;
    top: 20%;
    right: -10%;
    width: 40%;
    height: 60%;
    background-image: url('./pattern-1.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.02;
    animation: floatPattern1 20s ease-in-out infinite;
}

.bg-pattern-2 {
    position: absolute;
    bottom: 10%;
    left: -15%;
    width: 50%;
    height: 70%;
    background-image: url('./pattern-2.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.015;
    animation: floatPattern2 25s ease-in-out infinite reverse;
}

@keyframes floatPattern1 {
    0%, 100% { transform: translateY(0) rotate(0deg) scale(1); }
    50% { transform: translateY(-30px) rotate(2deg) scale(1.05); }
}

@keyframes floatPattern2 {
    0%, 100% { transform: translateY(0) rotate(0deg) scale(1); }
    50% { transform: translateY(40px) rotate(-2deg) scale(0.95); }
}

/* ===== ELITE LOADING ===== */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: all 0.6s var(--transition-smooth);
}

.loading-overlay.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-content {
    text-align: center;
}

.loading-logo img {
    width: 60px;
    height: 60px;
    animation: logoSpin 2s ease-in-out infinite;
}

@keyframes logoSpin {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(180deg); }
}

/* ===== ELITE RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    :root {
        --section-padding: 32px;
        --container-padding: 24px;
    }
    
    .promise-content {
        grid-template-columns: 1fr;
        gap: 24px;
        text-align: center;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-bottom {
        flex-direction: column;
        align-items: center;
        gap: 16px;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: row;
        justify-content: center;
        gap: 24px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 24px;
        --grid-gap: 16px;
    }
    
    .nav-container {
        height: 80px;
        padding: 0 20px;
    }
    
    .nav-logo {
        height: 50px;
    }
    
    .hero {
        padding: 100px 0 60px;
        min-height: 100vh;
    }
    
    .floating-product {
        display: none;
    }
    
    .locations-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: clamp(2rem, 5vw, 2.5rem);
        gap: 6px;
    }
    
    .title-secondary {
        font-size: 0.65em;
    }
    
    .section-subtitle {
        font-size: clamp(0.9rem, 2vw, 1rem);
        gap: 4px;
    }
    
    .subtitle-secondary {
        font-size: 0.85em;
    }
    
    .location-info {
        padding: 24px;
    }
    
    .location-name {
        font-size: clamp(1.3rem, 4vw, 1.5rem);
        gap: 2px;
    }
    
    .name-secondary {
        font-size: 0.7em;
    }
    
    .location-description {
        font-size: 13px;
        gap: 6px;
    }
    
    .desc-secondary {
        font-size: 0.85em;
    }
    
    .form-group {
        flex-direction: column;
    }
    
    .submit-button {
        justify-content: center;
    }
    
    .scroll-indicator {
        display: none;
    }
}

@media (max-width: 480px) {
    :root {
        --section-padding: 20px;
        --grid-gap: 12px;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .footer {
        padding: 12px 0 20px;
    }
    
    .footer-main {
        gap: 24px;
        margin-bottom: 20px;
        padding-bottom: 20px;
    }
    
    .footer-brand {
        text-align: center;
    }
    
    .footer-links-section,
    .footer-locations {
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
        gap: 20px;
    }
    
    .footer-location-list {
        align-items: center;
    }
    
    .footer-hours {
        text-align: center;
        max-width: 200px;
        margin: 8px auto 0;
    }
    
    .footer-credits {
        padding: 10px 16px;
        gap: 6px;
    }
    
    .credits-text {
        font-size: 11px;
    }
    
    .devloris-icon {
        height: 14px;
        width: 14px;
    }
    
    .devloris-text {
        font-size: 12px;
    }
}

/* ===== ELITE ACCESSIBILITY & PERFORMANCE ===== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ===== ELITE PRINT STYLES ===== */
@media print {
    .bg-elements,
    .loading-overlay,
    .navigation {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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