/* Genel Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Poppins", sans-serif;
    background: #fff;
    color: #000;
    line-height: 1.6;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    border-bottom: 1px solid #eee;
}

.logo {
    font-weight: 700;
    font-size: 20px;
}

.nav a {
    margin-left: 25px;
    text-decoration: none;
    color: #000;
    font-size: 14px;
    font-weight: 500;
}

.nav a:hover {
    color: #e50914;
}

/* Hero */
.hero {
    text-align: center;
    padding: 120px 20px;
}

.hero h1 {
    font-size: 72px;
    font-weight: 700;
}

.hero .subtitle {
    margin-top: 15px;
    font-size: 18px;
    color: #555;
}

/* Countdown */
.countdown {
    margin: 60px auto;
    display: flex;
    justify-content: center;
    gap: 60px;
}

.time-box {
    text-align: center;
}

.time-box span {
    display: block;
    font-size: 54px;
    font-weight: 600;
}

.time-box label {
    font-size: 16px;
    color: #555;
    margin-top: 8px;
    display: block;
}

/* Buttons */
.buttons {
    margin-top: 40px;
}

.btn {
    display: inline-block;
    padding: 14px 34px;
    margin: 0 10px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    background: #000;
    color: #fff;
    transition: 0.3s;
}

.btn:hover {
    background: #e50914;
}

.btn.outline {
    background: transparent;
    border: 2px solid #000;
    color: #000;
}

.btn.outline:hover {
    background: #000;
    color: #fff;
}

/* Footer */
.footer {
    text-align: center;
    padding: 30px 20px;
    font-size: 14px;
    color: #777;
    border-top: 1px solid #eee;
    margin-top: 100px;
}

/* Artists Page */
.artists {
    text-align: center;
    padding: 100px 20px;
}

.artists h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 10px;
}

.artists .subtitle {
    font-size: 18px;
    color: #555;
    margin-bottom: 60px;
}

.artist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.artist-card {
    padding: 40px 20px;
    border: 1px solid #eee;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    background: #fafafa;
    transition: 0.3s;
}

.artist-card:hover {
    background: #000;
    color: #fff;
    transform: translateY(-5px);
}
/* Contact Page */
.contact {
    text-align: center;
    padding: 100px 20px;
}

.contact h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 10px;
}

.contact .subtitle {
    font-size: 18px;
    color: #555;
    margin-bottom: 60px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
    text-align: left;
}

.contact-info p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #333;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
    font-family: "Poppins", sans-serif;
}

.contact-form textarea {
    resize: none;
}

.contact-form .btn {
    width: 100%;
    border: none;
    cursor: pointer;
}

/* ============================= */
/*   RESPONSIVE TASARIM          */
/* ============================= */

/* Tablet ve daha küçük cihazlar */
@media screen and (max-width: 992px) {
    .header {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
    }

    .nav {
        margin-top: 15px;
        display: flex;
        flex-wrap: wrap;
        gap: 15px;
    }

    .hero h1 {
        font-size: 48px;
    }

    .countdown {
        flex-wrap: wrap;
        gap: 30px;
    }

    .artist-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Telefon */
@media screen and (max-width: 576px) {
    .header {
        padding: 15px;
    }

    .logo {
        font-size: 18px;
    }

    .nav {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .hero {
        padding: 80px 15px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero .subtitle {
        font-size: 14px;
    }

    .countdown {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .time-box span {
        font-size: 40px;
    }

    .artist-card {
        padding: 25px 15px;
        font-size: 16px;
    }

    .contact-form input,
    .contact-form textarea {
        font-size: 14px;
    }

    .btn {
        padding: 12px 24px;
        font-size: 14px;
    }
}

/* Hamburger Menü */
.hamburger {
    display: none;
    font-size: 28px;
    cursor: pointer;
}

/* Mobilde menü gizlenecek */
@media screen and (max-width: 768px) {
    .nav {
        display: none;
        flex-direction: column;
        background: #fff;
        width: 100%;
        border-top: 1px solid #eee;
        margin-top: 10px;
        padding: 10px 0;
    }

    .nav a {
        padding: 12px 20px;
        border-bottom: 1px solid #f0f0f0;
    }

    .hamburger {
        display: block;
    }

    .nav.show {
        display: flex;
    }
}
