/* RESET & TEMEL AYARLAR */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #000000;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* ÜST MENÜ (NAVBAR) */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 8%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo {
    font-family: 'Syne', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: 5px;
    color: #ffffff;
    text-transform: uppercase;
}

.navbar nav a {
    color: #cccccc;
    text-decoration: none;
    margin-left: 30px;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.navbar nav a:hover {
    color: #ffffff;
}

.navbar .nav-btn {
    border: 1px solid #ffffff;
    padding: 8px 18px;
    transition: all 0.3s ease;
}

.navbar .nav-btn:hover {
    background-color: #ffffff;
    color: #000000;
}

/* HERO SECTION (ANA GİRİŞ DÜZENİ) */
.hero {
    min-height: 100vh;
    width: 100%;
    background: url('https://images.unsplash.com/photo-1469334031218-e382a71b716b?q=80&w=1920&auto=format&fit=crop') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 20px 60px 20px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.9) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center; /* ELEMANLARI ÜST ÜSTE VE ORTADA HİZALAR */
}

.hero-content .tag {
    font-size: 0.8rem;
    letter-spacing: 5px;
    color: #888888;
    display: block;
    margin-bottom: 15px;
}

.hero-content h1 {
    font-family: 'Syne', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: 6px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.1rem;
    color: #dddddd;
    font-weight: 300;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

/* GERİ SAYIM SAYACI DÜZENİ */
.countdown-container {
    margin: 30px 0 25px 0;
    padding: 25px 30px;
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    width: fit-content;
}

.countdown-label {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 4px;
    color: #aaaaaa;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.time-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 75px;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.time-box span {
    font-family: 'Syne', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
}

.time-box label {
    font-size: 0.65rem;
    letter-spacing: 2px;
    color: #888888;
    margin-top: 8px;
    font-weight: 600;
}

/* LANSMAN BUTONU (SAYACIN TAM ALTINDA) */
.cta-button {
    display: inline-block;
    padding: 16px 40px;
    background-color: #ffffff;
    color: #000000;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 3px;
    transition: all 0.3s ease;
    margin-top: 15px;
}

.cta-button:hover {
    background-color: #000000;
    color: #ffffff;
    outline: 1px solid #ffffff;
}

/* MANIFESTO SECTION */
.manifesto {
    padding: 120px 8%;
    background-color: #050505;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.manifesto h2 {
    font-family: 'Syne', sans-serif;
    font-size: 2rem;
    letter-spacing: 6px;
    margin-bottom: 30px;
    color: #888888;
}

.manifesto-text {
    font-size: 1.3rem;
    font-weight: 300;
    max-width: 900px;
    margin: 0 auto;
    line-height: 2;
    color: #e5e5e5;
}

/* LOOKBOOK / GALERİ */
.lookbook {
    padding: 100px 8%;
    background-color: #000000;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-family: 'Syne', sans-serif;
    font-size: 2.2rem;
    letter-spacing: 4px;
}

.section-title p {
    color: #666666;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-top: 5px;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    position: relative;
    overflow: hidden;
    background-color: #111111;
    aspect-ratio: 3 / 4;
}

.card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: transform 0.6s ease, filter 0.6s ease;
}

.card:hover img {
    transform: scale(1.05);
    filter: grayscale(0%);
}

.card-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 25px;
    background: linear-gradient(360deg, rgba(0,0,0,0.9) 0%, transparent 100%);
}

.card-info span {
    font-size: 0.75rem;
    letter-spacing: 3px;
    color: #888888;
}

.card-info h3 {
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 1px;
    margin-top: 5px;
}

/* VIP BÖLÜMÜ */
.vip-section {
    padding: 120px 8%;
    background-color: #0a0a0a;
    display: flex;
    justify-content: center;
}

.vip-box {
    max-width: 600px;
    text-align: center;
    background-color: #000000;
    padding: 60px 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.vip-box h2 {
    font-family: 'Syne', sans-serif;
    font-size: 2rem;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.vip-box p {
    color: #a0a0a0;
    font-size: 0.95rem;
    margin-bottom: 30px;
    font-weight: 300;
}

.subscribe-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.subscribe-form input {
    padding: 16px;
    background-color: #111111;
    border: 1px solid #333333;
    color: #ffffff;
    font-size: 0.9rem;
    outline: none;
    text-align: center;
    transition: border 0.3s ease;
}

.subscribe-form input:focus {
    border-color: #ffffff;
}

.subscribe-form button {
    padding: 16px;
    background-color: #ffffff;
    color: #000000;
    border: none;
    font-weight: 700;
    letter-spacing: 2px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.subscribe-form button:hover {
    background-color: #cccccc;
}

.form-message {
    display: block;
    margin-top: 15px;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

/* FOOTER */
footer {
    padding: 40px 8%;
    background-color: #000000;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: #666666;
}

.socials a {
    color: #888888;
    text-decoration: none;
    margin-left: 20px;
    letter-spacing: 2px;
    transition: color 0.3s ease;
}

.socials a:hover {
    color: #ffffff;
}

/* MOBİL UYUM */
@media (max-width: 768px) {
    .navbar nav { display: none; }
    .hero-content h1 { font-size: 2.2rem; }
    .manifesto-text { font-size: 1rem; }
    .countdown-timer { gap: 8px; }
    .time-box { min-width: 60px; padding: 10px 8px; }
    .time-box span { font-size: 1.6rem; }
    footer { flex-direction: column; gap: 20px; text-align: center; }
    .socials a { margin: 0 10px; }
}