/* Reset ve temel stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #fdf4e3;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2c3e50;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 500px;
    padding: 2rem;
    text-align: center;
    background: #fdf4e3;
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25), 0 10px 20px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: fadeInUp 1s ease-out;
}

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

/* Header ve Logo */
.header {
    margin-bottom: 3rem;
}

.logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
}

.logo img {
    max-width: 200px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.logo h1 {
    font-size: 3rem;
    font-weight: 600;
    letter-spacing: 8px;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    position: relative;
}

.logo h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
}

.collection {
    font-size: 0.9rem;
    font-weight: 300;
    letter-spacing: 4px;
    color: #7f8c8d;
    text-transform: uppercase;
}

/* Ana içerik */
.main-content {
    margin-bottom: 3rem;
}

.brand-description {
    margin-bottom: 2.5rem;
}

.brand-description p {
    font-size: 1.1rem;
    font-weight: 300;
    color: #7f8c8d;
    letter-spacing: 1px;
}

/* Sosyal medya linkleri */
.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #d4a574 0%, #c49464 100%);
    color: white;
    text-decoration: none;
    border-radius: 50%;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(212, 165, 116, 0.3);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.social-link:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 15px 30px rgba(102, 126, 234, 0.4);
}

.social-link:hover::before {
    left: 100%;
}

.social-link:nth-child(1) {
    background: linear-gradient(135deg, #d4a574 0%, #b8956a 100%);
    box-shadow: 0 8px 20px rgba(212, 165, 116, 0.3);
}

.social-link:nth-child(2) {
    background: linear-gradient(135deg, #c49464 0%, #a8825a 100%);
    box-shadow: 0 8px 20px rgba(196, 148, 100, 0.3);
}

.social-link:nth-child(3) {
    background: linear-gradient(135deg, #b8956a 0%, #9c7f50 100%);
    box-shadow: 0 8px 20px rgba(184, 149, 106, 0.3);
}

.social-link:nth-child(4) {
    background: linear-gradient(135deg, #a8825a 0%, #8c6d46 100%);
    box-shadow: 0 8px 20px rgba(168, 130, 90, 0.3);
}

/* Footer */
.footer {
    border-top: 1px solid rgba(127, 140, 141, 0.2);
    padding-top: 1.5rem;
}

.footer p {
    font-size: 0.8rem;
    color: #95a5a6;
    font-weight: 300;
}

/* Responsive tasarım */
@media (max-width: 768px) {
    .container {
        margin: 1rem;
        padding: 1.5rem;
        max-width: calc(100% - 2rem);
    }
    
    .logo h1 {
        font-size: 2.5rem;
        letter-spacing: 6px;
    }
    
    .collection {
        font-size: 0.8rem;
        letter-spacing: 3px;
    }
    
    .social-links {
        gap: 1rem;
    }
    
    .social-link {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 2rem;
        letter-spacing: 4px;
    }
    
    .brand-description p {
        font-size: 1rem;
    }
    
    .social-link {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}