/* ============================================
   TURCAN DİZEL - YAPIM AŞAMASINDA
   Industrial Luxury Aesthetic
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Barlow:wght@300;400;500;600&display=swap');

:root {
    /* Industrial Dark Palette */
    --coal-black: #0a0a0a;
    --steel-dark: #141416;
    --steel-medium: #1c1c1f;
    --steel-light: #2a2a2e;
    --chrome: #3d3d42;

    /* Accent Colors */
    --engine-red: #c41e3a;
    --engine-red-glow: #e63950;
    --warning-amber: #d4a03a;

    /* Text Colors */
    --text-primary: #f5f5f5;
    --text-secondary: #a8a8a8;
    --text-muted: #6b6b6b;

    /* Effects */
    --glow-red: 0 0 40px rgba(196, 30, 58, 0.4);
    --glow-soft: 0 0 60px rgba(196, 30, 58, 0.2);
    --metal-shine: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 50%, rgba(255,255,255,0.05) 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Barlow', -apple-system, sans-serif;
    background: var(--coal-black);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

/* ============================================
   CONSTRUCTION PAGE - MAIN CONTAINER
   ============================================ */

.construction-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 2rem;
    background:
        /* Radial spotlight from top */
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(196, 30, 58, 0.15) 0%, transparent 60%),
        /* Subtle vignette */
        radial-gradient(ellipse at center, transparent 40%, rgba(0,0,0,0.4) 100%),
        /* Base gradient */
        linear-gradient(180deg, var(--steel-dark) 0%, var(--coal-black) 50%, #050505 100%);
}

/* Industrial Grid Pattern */
.construction-page::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

/* Floating Particles Effect */
.construction-page::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image:
        radial-gradient(2px 2px at 20% 30%, rgba(196, 30, 58, 0.3) 0%, transparent 100%),
        radial-gradient(2px 2px at 80% 20%, rgba(196, 30, 58, 0.2) 0%, transparent 100%),
        radial-gradient(1px 1px at 40% 70%, rgba(255, 255, 255, 0.15) 0%, transparent 100%),
        radial-gradient(1px 1px at 70% 60%, rgba(255, 255, 255, 0.1) 0%, transparent 100%),
        radial-gradient(2px 2px at 90% 80%, rgba(196, 30, 58, 0.25) 0%, transparent 100%),
        radial-gradient(1px 1px at 10% 90%, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
    animation: particleFloat 20s ease-in-out infinite;
    pointer-events: none;
}

@keyframes particleFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 1; }
    50% { transform: translateY(-20px) rotate(1deg); opacity: 0.8; }
}

/* ============================================
   CONTENT CONTAINER
   ============================================ */

.construction-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 700px;
    width: 100%;
}

/* ============================================
   LOGO SECTION
   ============================================ */

.logo-container {
    margin-bottom: 3rem;
    position: relative;
    animation: logoReveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
}

@keyframes logoReveal {
    0% {
        opacity: 0;
        transform: translateY(-30px) scale(0.95);
        filter: blur(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

.logo {
    max-width: 320px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 30px rgba(196, 30, 58, 0.3));
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.logo:hover {
    filter: drop-shadow(0 0 50px rgba(196, 30, 58, 0.5));
    transform: scale(1.02);
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

.construction-title {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 700;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
    text-transform: uppercase;
    background: linear-gradient(
        180deg,
        #ffffff 0%,
        #f5f5f5 30%,
        #a8a8a8 70%,
        #6b6b6b 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    animation: titleSlide 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
    opacity: 0;
    transform: translateY(30px);
}

@keyframes titleSlide {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Glowing underline */
.construction-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--engine-red), transparent);
    box-shadow: var(--glow-red);
    animation: lineExpand 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.8s forwards;
    opacity: 0;
}

@keyframes lineExpand {
    0% {
        width: 0;
        opacity: 0;
    }
    100% {
        width: 100px;
        opacity: 1;
    }
}

.construction-subtitle {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--engine-red);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 30px rgba(196, 30, 58, 0.5);
    animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
    opacity: 0;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.construction-text {
    font-family: 'Barlow', sans-serif;
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 3rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.7s forwards;
    opacity: 0;
}

/* ============================================
   INFO SECTION - Industrial Card
   ============================================ */

.construction-info {
    background:
        var(--metal-shine),
        linear-gradient(145deg, var(--steel-medium) 0%, var(--steel-dark) 100%);
    border: 1px solid var(--chrome);
    border-radius: 4px;
    padding: 2.5rem;
    margin-top: 2rem;
    position: relative;
    overflow: hidden;
    animation: cardReveal 1s cubic-bezier(0.16, 1, 0.3, 1) 0.9s forwards;
    opacity: 0;
    transform: translateY(40px);
}

@keyframes cardReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Corner accents */
.construction-info::before,
.construction-info::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    border-color: var(--engine-red);
    border-style: solid;
}

.construction-info::before {
    top: -1px;
    left: -1px;
    border-width: 2px 0 0 2px;
}

.construction-info::after {
    bottom: -1px;
    right: -1px;
    border-width: 0 2px 2px 0;
}

.construction-info h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-primary);
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.construction-info h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--engine-red);
    box-shadow: 0 0 10px rgba(196, 30, 58, 0.5);
}

/* ============================================
   INFO ITEMS
   ============================================ */

.info-item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.25rem;
    margin-bottom: 0.75rem;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid transparent;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    text-align: left;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-item:hover {
    background: rgba(196, 30, 58, 0.08);
    border-color: rgba(196, 30, 58, 0.3);
    transform: translateX(5px);
}

/* Icon styling */
.info-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--steel-light) 0%, var(--steel-dark) 100%);
    border: 1px solid var(--chrome);
    border-radius: 4px;
    color: var(--engine-red);
    font-size: 1.25rem;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.info-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--engine-red);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.info-icon i {
    position: relative;
    z-index: 1;
    transition: color 0.4s ease;
}

.info-item:hover .info-icon {
    border-color: var(--engine-red);
    box-shadow: var(--glow-red);
    transform: scale(1.05);
}

.info-item:hover .info-icon::before {
    opacity: 1;
}

.info-item:hover .info-icon i {
    color: white;
}

/* Content styling */
.info-content {
    flex: 1;
    text-align: left;
}

.info-content strong {
    display: block;
    font-family: 'Oswald', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.4rem;
}

.info-content {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.info-content a {
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.info-content a:hover {
    color: var(--engine-red);
}

/* Map Link - Special CTA */
.map-link {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    margin-top: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: transparent;
    border: 1px solid var(--engine-red);
    border-radius: 3px;
    color: var(--engine-red);
    font-family: 'Oswald', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.map-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--engine-red);
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.map-link span,
.map-link i {
    position: relative;
    z-index: 1;
}

.map-link:hover {
    color: white;
    box-shadow: var(--glow-red);
    transform: translateY(-2px);
}

.map-link:hover::before {
    transform: translateX(0);
}

.map-link i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.map-link:hover i {
    transform: translateX(3px);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 768px) {
    .construction-page {
        padding: 1.5rem;
    }

    .logo {
        max-width: 260px;
    }

    .logo-container {
        margin-bottom: 2.5rem;
    }

    .construction-title {
        letter-spacing: 0.1em;
    }

    .construction-subtitle {
        font-size: 1.2rem;
        letter-spacing: 0.2em;
    }

    .construction-text {
        font-size: 1rem;
        padding: 0 0.5rem;
    }

    .construction-info {
        padding: 2rem 1.5rem;
    }

    .info-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
    }

    .info-content {
        text-align: center;
    }

    .info-item:hover {
        transform: translateY(-3px);
    }
}

@media (max-width: 480px) {
    .logo {
        max-width: 200px;
    }

    .construction-subtitle {
        font-size: 1rem;
        letter-spacing: 0.15em;
    }

    .construction-info {
        padding: 1.5rem 1rem;
    }

    .construction-info h3 {
        font-size: 1.1rem;
    }

    .info-icon {
        width: 45px;
        height: 45px;
        min-width: 45px;
    }

    .map-link {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================
   ACCESSIBILITY - Reduced Motion
   ============================================ */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .logo-container,
    .construction-title,
    .construction-subtitle,
    .construction-text,
    .construction-info {
        opacity: 1;
        transform: none;
    }
}

/* ============================================
   SELECTION STYLING
   ============================================ */

::selection {
    background: var(--engine-red);
    color: white;
}

::-moz-selection {
    background: var(--engine-red);
    color: white;
}
