/* Reset ve temel stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #EBC4B1;
    --text-color: #1A1A1A;
    --accent-color: #2C2C2C;
    --light-color: rgba(255, 255, 255, 0.9);
}

body {
    font-family: 'Playfair Display', serif;
    line-height: 1.6;
    min-height: 100vh;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    padding: 20px;
}

.construction-container {
    width: 100%;
    max-width: 900px;
    text-align: center;
}

.construction-content {
    animation: fadeInUp 1s ease-out;
}

.logo-container {
    margin-bottom: 4rem;
    position: relative;
}

.logo-container::after {
    content: '';
    position: absolute;
    bottom: -2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 1px;
    background: var(--text-color);
    opacity: 0.3;
}

.logo-image {
    max-width: 280px;
    height: auto;
    margin: 0 auto;
    display: block;
}

h1 {
    font-size: 2rem;
    color: var(--text-color);
    margin: 2rem 0;
    font-weight: 400;
    letter-spacing: 0.15em;
}

.slogan {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-style: italic;
    color: var(--text-color);
    margin: 1.5rem 0;
    letter-spacing: 0.1em;
    opacity: 0.9;
    font-weight: 500;
}

p {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 2rem;
    letter-spacing: 0.05em;
    opacity: 0.8;
}

.progress-bar {
    width: 100%;
    max-width: 400px;
    height: 1px;
    background: var(--text-color);
    margin: 4rem auto;
    overflow: hidden;
    opacity: 0.2;
}

.progress {
    width: 75%;
    height: 100%;
    background: var(--text-color);
    animation: progress 2s ease-out;
}

.contact-info {
    margin-top: 4rem;
    position: relative;
}

.contact-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 1px;
    background: var(--text-color);
    opacity: 0.3;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 1rem 0;
}

.social-link {
    color: var(--text-color);
    font-size: 1.8rem;
    transition: all 0.3s ease;
    opacity: 0.7;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.social-link:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.music-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.music-btn .fa-music {
    opacity: 1;
    transition: all 0.3s ease;
}

.music-btn .pause-icon {
    position: absolute;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease;
}

.music-btn.playing .fa-music {
    opacity: 0;
    transform: scale(0);
}

.music-btn.playing .pause-icon {
    opacity: 1;
    transform: scale(1);
}

.music-btn.playing {
    animation: musicPulse 2s infinite;
}

@keyframes musicPulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.email-link {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    letter-spacing: 0.1em;
    opacity: 0.7;
    font-size: 0.9rem;
    margin-top: 1rem;
}

.email-link:hover {
    opacity: 1;
}

.trademark-info {
    margin-top: 1rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(26, 26, 26, 0.1);
}

.trademark-info p {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: var(--text-color);
    opacity: 0.5;
    letter-spacing: 0.05em;
    margin: 0;
    line-height: 1.5;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes progress {
    from {
        width: 0;
    }
    to {
        width: 75%;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo-image {
        max-width: 240px;
    }

    h1 {
        font-size: 1.75rem;
    }

    .social-link {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .logo-image {
        max-width: 220px;
    }

    h1 {
        font-size: 1.5rem;
    }

    .social-links {
        gap: 2.5rem;
    }

    .social-link {
        font-size: 1.4rem;
    }
}

/* Müzik Kontrol */
.music-control {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
}

.music-btn {
    background: transparent;
    border: 2px solid var(--text-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.music-btn:hover {
    opacity: 1;
    transform: scale(1.05);
}

.music-btn.playing {
    animation: pulse 2s infinite;
    opacity: 1;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
} 