/*
Theme Name: Lab Pekyilmaz
Theme URI: https://labpekyilmaz.com
Author: Lab Pekyilmaz
Description: Minimalist black and white coming soon theme.
Version: 1.0.0
*/

:root {
    --bg-color: #0d0d0d;
    --text-color: #ffffff;
    --accent-color: #ffffff;
    --muted-color: #888888;
    --transition-speed: 0.4s;
    --font-heading: 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Language Toggle */
.lang-toggle {
    position: absolute;
    top: 2.5rem;
    right: 3rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    z-index: 100;
}

.lang-btn {
    background: none;
    border: none;
    color: var(--muted-color);
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 400;
    cursor: pointer;
    transition: color var(--transition-speed) ease;
    padding: 0.2rem;
}

.lang-btn:hover {
    color: var(--text-color);
}

.lang-btn.active {
    color: var(--accent-color);
    font-weight: 600;
}

.divider {
    color: #333;
    font-size: 0.9rem;
}

/* Main Layout */
.container {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

/* Logo */
.logo-container {
    margin-bottom: 2.5rem;
}

.main-logo {
    max-width: 320px;
    width: 100%;
    height: auto;
    transition: transform var(--transition-speed) ease;
}

.main-logo:hover {
    transform: scale(1.02);
}

/* Coming Soon Text */
.coming-soon {
    margin-bottom: 6rem;
    text-align: center;
}

.coming-soon-text {
    font-size: 1.6rem;
    font-weight: 300;
    letter-spacing: 0.5px;
    color: var(--text-color);
    max-width: 650px;
    line-height: 1.5;
    transition: opacity 0.3s ease;
}

/* Projects Section */
.projects-section {
    text-align: center;
    margin-bottom: 4rem;
    width: 100%;
}

.projects-title {
    font-size: 0.9rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--muted-color);
    margin-bottom: 3rem;
    transition: opacity 0.3s ease;
}

.project-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5rem;
    flex-wrap: wrap;
}

.project-logo {
    max-width: 300px;
    height: auto;
    opacity: 0.85;
    transition: all var(--transition-speed) cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.project-logos a {
    text-decoration: none;
    display: inline-block;
    line-height: 0;
}

.project-logo:hover {
    opacity: 1;
    transform: translateY(-5px);
}

/* Footer Section */
.footer {
    padding: 3rem 2rem 4rem;
    text-align: center;
    background: linear-gradient(to top, rgba(255,255,255,0.03), transparent);
}

.contact-us {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
}

.contact-us p {
    font-size: 0.85rem;
    color: var(--muted-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: opacity 0.3s ease;
}

.email-link {
    color: var(--text-color);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 4px;
}

.email-link::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: var(--accent-color);
    transform-origin: bottom right;
    transition: transform 0.3s ease-out;
}

.email-link:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.fade-in.delay-1 { animation-delay: 0.2s; }
.fade-in.delay-2 { animation-delay: 0.4s; }
.fade-in.delay-3 { animation-delay: 0.6s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .lang-toggle {
        top: 2rem;
        right: 2rem;
    }
    
    .container {
        padding: 6rem 1.5rem 3rem;
    }

    .main-logo {
        max-width: 250px;
    }
    
    .coming-soon-text {
        font-size: 1.3rem;
    }
    
    .project-logos {
        gap: 3rem;
        flex-direction: column;
    }
    
    .project-logo {
        max-width: 220px;
    }
}
