/* ========================================
   TERMAK - Site Yapım Aşaması
   Profesyonel Under Construction Page
   ======================================== */

:root {
    --primary-color: #1a1a2e;
    --secondary-color: #16213e;
    --accent-color: #0f3460;
    --highlight-color: #e94560;
    --text-primary: #2d3748;
    --text-secondary: #718096;
    --bg-light: #f7fafc;
    --bg-white: #ffffff;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    overflow-y: auto;
    min-height: 100vh;
}

.construction-container {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 50%, var(--accent-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-x: hidden;
    padding: 2rem 0;
}

/* Animated Background */
.animated-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.bg-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(233, 69, 96, 0.1);
    animation: float 20s infinite ease-in-out;
}

.bg-circle:nth-child(1) {
    width: 400px;
    height: 400px;
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.bg-circle:nth-child(2) {
    width: 300px;
    height: 300px;
    bottom: -50px;
    right: -50px;
    animation-delay: 5s;
}

.bg-circle:nth-child(3) {
    width: 500px;
    height: 500px;
    top: 50%;
    right: -150px;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(50px, -50px) scale(1.1);
        opacity: 0.5;
    }
}

/* Main Content */
.content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
    padding: 1rem;
    max-width: 800px;
    width: 100%;
    box-sizing: border-box;
}

/* Logo */
.logo-container {
    margin-bottom: 2rem;
    animation: fadeInDown 1s ease;
}

.logo {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 800;
    letter-spacing: -2px;
    margin-bottom: 0.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    line-height: 1;
}

.tagline {
    font-size: clamp(0.9rem, 3vw, 1.2rem);
    font-weight: 500;
    opacity: 0.9;
    letter-spacing: 2px;
}

/* Icon Container */
.icon-container {
    margin: 2rem 0;
    animation: fadeInUp 1s ease 0.3s both;
}

.icon-wrapper {
    position: relative;
    display: inline-block;
    width: clamp(80px, 20vw, 120px);
    height: clamp(80px, 20vw, 120px);
}

.icon-main {
    font-size: clamp(3rem, 12vw, 5rem);
    color: var(--highlight-color);
    animation: rotate 3s linear infinite;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.icon-secondary {
    font-size: clamp(2rem, 8vw, 3rem);
    color: rgba(255, 255, 255, 0.3);
    animation: rotate 2s linear infinite reverse;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@keyframes rotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Message Container */
.message-container {
    margin: 2rem 0;
    animation: fadeInUp 1s ease 0.6s both;
}

.main-title {
    font-size: clamp(1.75rem, 6vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    padding: 0 1rem;
}

.subtitle {
    font-size: clamp(1.1rem, 4vw, 1.3rem);
    font-weight: 500;
    margin-bottom: 1rem;
    opacity: 0.95;
    padding: 0 1rem;
}

.description {
    font-size: clamp(0.95rem, 3vw, 1.05rem);
    opacity: 0.85;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Progress Bar */
.progress-container {
    margin: 2rem 0;
    animation: fadeInUp 1s ease 0.9s both;
    padding: 0 1rem;
}

.progress-bar {
    width: 100%;
    max-width: 500px;
    height: 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    overflow: hidden;
    margin: 0 auto 1rem;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--highlight-color), #ff6b8a);
    border-radius: 10px;
    width: 0%;
    animation: progressFill 2s ease 1.2s forwards;
    box-shadow: 0 0 20px rgba(233, 69, 96, 0.5);
}

@keyframes progressFill {
    to {
        width: 85%;
    }
}

.progress-text {
    font-size: 0.95rem;
    opacity: 0.9;
    font-weight: 500;
}

#progress-value {
    color: var(--highlight-color);
    font-weight: 700;
}

/* Features */
.features-container {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin: 2rem 0;
    padding: 0 1rem;
    animation: fadeInUp 1s ease 1.2s both;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
    min-width: 100px;
    flex: 1 1 calc(50% - 0.5rem);
    max-width: 150px;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.feature-item i {
    font-size: clamp(1.5rem, 5vw, 2rem);
    color: var(--highlight-color);
    margin-bottom: 0.5rem;
}

.feature-item span {
    font-size: clamp(0.8rem, 2.5vw, 0.9rem);
    font-weight: 500;
    text-align: center;
}

/* Contact Container */
.contact-container {
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: fadeInUp 1s ease 1.5s both;
    box-sizing: border-box;
}

.contact-container h3 {
    font-size: clamp(1.2rem, 4vw, 1.5rem);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: clamp(0.9rem, 3vw, 1.05rem);
    flex-wrap: wrap;
    justify-content: center;
}

.contact-item i {
    font-size: 1.3rem;
    color: var(--highlight-color);
    width: 30px;
    text-align: center;
}

.contact-item a {
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.contact-item a:hover {
    color: var(--highlight-color);
    text-decoration: underline;
}

/* Countdown */
.countdown-container {
    margin: 2rem 0;
    padding: 0 1rem;
    animation: fadeInUp 1s ease 1.8s both;
}

.countdown-label {
    font-size: clamp(0.9rem, 3vw, 1rem);
    opacity: 0.8;
    margin-bottom: 1rem;
    font-weight: 500;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 80px;
    flex: 1 1 calc(33.333% - 1rem);
    max-width: 120px;
}

.countdown-number {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
    font-weight: 800;
    color: var(--highlight-color);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.countdown-label-small {
    font-size: 0.85rem;
    opacity: 0.8;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Footer */
.footer {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    animation: fadeInUp 1s ease 2s both;
    padding: 0 1rem;
}

.footer p {
    font-size: clamp(0.8rem, 2.5vw, 0.9rem);
    opacity: 0.7;
    margin: 0.5rem 0;
}

.powered-by {
    font-size: 0.9rem;
    opacity: 0.8;
    font-weight: 500;
    line-height: 1.6;
    margin-top: 0.5rem;
}

.powered-by a {
    color: white;
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
}

.powered-by a:hover {
    color: var(--highlight-color);
    text-decoration: underline;
    transform: translateY(-2px);
}

/* Particles */
.particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    animation: particleFloat 15s infinite ease-in-out;
}

.particle:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    left: 30%;
    animation-delay: 2s;
}

.particle:nth-child(3) {
    left: 50%;
    animation-delay: 4s;
}

.particle:nth-child(4) {
    left: 70%;
    animation-delay: 6s;
}

.particle:nth-child(5) {
    left: 90%;
    animation-delay: 8s;
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) scale(1);
        opacity: 0;
    }
}

/* 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);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .construction-container {
        padding: 1rem 0;
    }

    .content {
        padding: 0.5rem;
    }

    .logo-container {
        margin-bottom: 1.5rem;
    }

    .icon-container {
        margin: 1.5rem 0;
    }

    .message-container {
        margin: 1.5rem 0;
    }

    .progress-container {
        margin: 1.5rem 0;
    }

    .features-container {
        margin: 1.5rem 0;
        gap: 0.75rem;
    }

    .feature-item {
        min-width: 90px;
        padding: 0.75rem;
        flex: 1 1 calc(50% - 0.375rem);
    }

    .contact-container {
        margin: 1.5rem 0;
        padding: 1.25rem;
    }

    .countdown-container {
        margin: 1.5rem 0;
    }

    .countdown {
        gap: 0.75rem;
    }

    .countdown-item {
        min-width: 70px;
        padding: 0.75rem;
        flex: 1 1 calc(25% - 0.5rem);
    }

    .footer {
        margin-top: 1.5rem;
        padding-top: 1.5rem;
    }
}

@media (max-width: 480px) {
    .construction-container {
        padding: 0.5rem 0;
    }

    .content {
        padding: 0.25rem;
    }

    .logo-container {
        margin-bottom: 1rem;
    }

    .icon-container {
        margin: 1rem 0;
    }

    .message-container {
        margin: 1rem 0;
    }

    .progress-container {
        margin: 1rem 0;
    }

    .features-container {
        margin: 1rem 0;
    }

    .feature-item {
        min-width: 80px;
        padding: 0.5rem;
    }

    .contact-container {
        margin: 1rem 0;
        padding: 1rem;
    }

    .contact-item {
        font-size: 0.85rem;
        gap: 0.5rem;
    }

    .countdown-container {
        margin: 1rem 0;
    }

    .countdown-item {
        min-width: 60px;
        padding: 0.5rem;
        flex: 1 1 calc(25% - 0.5rem);
    }

    .footer {
        margin-top: 1rem;
        padding-top: 1rem;
    }
}

/* Extra small devices */
@media (max-width: 360px) {
    .feature-item {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .countdown-item {
        flex: 1 1 calc(25% - 0.5rem);
        max-width: 80px;
    }
}

