@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;700&family=Open+Sans:wght@300;400;600&display=swap');

:root {
    --primary-red: #e74c3c;
    --dark-red: #c0392b;
    --bg-dark: #121212;
    --bg-card: #1e1e1e;
    --text-white: #ecf0f1;
    --text-gray: #b3b3b3;
    --glass: rgba(30, 30, 30, 0.85);
    --shadow: 0 10px 30px rgba(0,0,0,0.5);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.6;
    background-image: radial-gradient(circle at 50% 50%, #1a1a1a 0%, #121212 100%);
}

/* --- NAVİGASYON (GÜNCELLENMİŞ) --- */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background: rgba(18, 18, 18, 0.98);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--primary-red);
}

nav .logo {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-white);
    text-decoration: none;
}
nav .logo span { color: var(--primary-red); }

/* Menü Linkleri (Desktop) */
.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-menu li { margin-left: 20px; }

.nav-menu li a {
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: 0.3s;
    text-transform: uppercase;
}

.nav-menu li a:hover { color: var(--primary-red); }

/* Hamburger Menü İkonu (Desktopta Gizli) */
.menu-toggle {
    display: none; 
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: white;
    transition: all 0.3s ease-in-out;
}

/* --- MOBİL UYUMLULUK (Responsive) --- */
@media (max-width: 768px) {
    
    /* Hamburger İkonunu Göster */
    .menu-toggle {
        display: block; 
    }

    /* Menü Linklerini Gizle ve Tasarla */
    .nav-menu {
        position: absolute;
        top: 70px; /* Nav yüksekliği kadar aşağıda */
        left: -100%; /* Ekran dışına it */
        flex-direction: column;
        background-color: #121212;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 20px 0;
        border-bottom: 2px solid var(--primary-red);
    }

    /* Menü Açıldığında (.active class'ı gelince) */
    .nav-menu.active {
        left: 0; /* Ekrana getir */
    }

    .nav-menu li {
        margin: 15px 0;
    }

    /* Hamburger Animasyonu (Opsiyonel: Çarpı olur) */
    .menu-toggle.is-active span:nth-child(2) { opacity: 0; }
    .menu-toggle.is-active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .menu-toggle.is-active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

    /* Hero ve diğer ayarlar */
    .hero h1 { font-size: 2.5rem; }
    .grid { grid-template-columns: 1fr; }
}

/* Discord Butonu */
.discord-btn {
    background: #5865F2;
    color: white !important;
    padding: 10px 20px;
    border-radius: 4px;
    transition: transform 0.3s, box-shadow 0.3s;
}
.discord-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(88, 101, 242, 0.4);
}

/* --- Hero Section --- */
.hero {
    height: 90vh;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.8)), url('https://placehold.co/1920x1080?text=LSFD+Action+Shot');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to top, var(--bg-dark), transparent);
}

.hero h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 5rem;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 1rem;
    text-shadow: 0 10px 30px rgba(0,0,0,0.8);
    animation: slideUp 1s ease;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #ddd;
    max-width: 800px;
    animation: slideUp 1.2s ease;
}

/* Özel Butonlar */
.btn-glitch {
    position: relative;
    padding: 15px 40px;
    background: var(--primary-red);
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 2px;
    overflow: hidden;
    transition: 0.3s;
    clip-path: polygon(10% 0, 100% 0, 100% 70%, 90% 100%, 0 100%, 0 30%);
}

.btn-glitch:hover {
    background: white;
    color: var(--primary-red);
    box-shadow: 0 0 20px var(--primary-red);
}

/* --- Layouts --- */
.container {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.section-title {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    color: var(--primary-red);
    margin-bottom: 2rem;
    text-transform: uppercase;
    border-left: 5px solid var(--text-white);
    padding-left: 15px;
}

/* Grid Yapısı */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

/* Kart Tasarımı */
.card {
    background: var(--bg-card);
    border: 1px solid #333;
    border-radius: 8px;
    overflow: hidden;
    transition: 0.4s;
    position: relative;
}

.card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-red);
    box-shadow: 0 10px 30px rgba(231, 76, 60, 0.2);
}

.card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    filter: grayscale(30%);
    transition: 0.4s;
}

.card:hover img {
    filter: grayscale(0%);
}

.card-content {
    padding: 1.5rem;
}

.card-content h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.card-content p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* --- Form Tasarımı --- */
.form-wrapper {
    background: var(--bg-card);
    padding: 3rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    border-top: 4px solid var(--primary-red);
}

.form-group { margin-bottom: 1.5rem; }

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary-red);
    font-weight: bold;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 1px;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: #2c2c2c;
    border: 1px solid #444;
    color: white;
    border-radius: 4px;
    font-family: 'Open Sans', sans-serif;
    transition: 0.3s;
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-red);
    background: #333;
}

button[type="submit"] {
    width: 100%;
    padding: 15px;
    background: var(--primary-red);
    color: white;
    border: none;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: 0.3s;
    font-family: 'Oswald', sans-serif;
}

button[type="submit"]:hover {
    background: var(--dark-red);
    letter-spacing: 4px;
}

/* Takvim / Etkinlik Kartı */
.event-card {
    display: flex;
    background: var(--bg-card);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    border-left: 5px solid var(--primary-red);
    transition: 0.3s;
}

.event-card:hover { background: #252525; }

.event-date {
    background: #151515;
    color: var(--primary-red);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-width: 120px;
}

.event-date span {
    font-size: 1.8rem;
    font-family: 'Oswald', sans-serif;
    font-weight: bold;
}

.event-details { padding: 1.5rem; }

/* Animasyon */
@keyframes slideUp {
    from { opacity: 0; transform: translateY(50px); }
    to { opacity: 1; transform: translateY(0); }
}

footer {
    background: #0a0a0a;
    text-align: center;
    padding: 3rem;
    border-top: 1px solid #333;
    margin-top: 5rem;
    color: #666;
}

/* --- KİMLİK OLUŞTURUCU STİLLERİ --- */
.id-card-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #000;
    padding: 20px;
    border-radius: 10px;
}

.id-card {
    width: 400px;
    height: 250px;
    background: linear-gradient(135deg, #f4f4f4 50%, #e0e0e0 50%);
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    display: flex;
    border: 1px solid #999;
}

.id-left {
    width: 35%;
    background: var(--dark-red);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.id-photo {
    width: 100px;
    height: 100px;
    background: #333;
    border: 3px solid white;
    border-radius: 5px;
    object-fit: cover;
    margin-bottom: 10px;
}

.id-logo {
    width: 60px;
    opacity: 0.9;
}

.id-right {
    width: 65%;
    padding: 20px;
    position: relative;
    color: #333;
}

.id-header {
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--dark-red);
    border-bottom: 2px solid var(--dark-red);
    margin-bottom: 10px;
    text-transform: uppercase;
}

.id-info-row {
    margin-bottom: 5px;
    font-size: 0.85rem;
    font-weight: bold;
}

.id-info-row span {
    display: block;
    font-weight: normal;
    font-size: 1rem;
    color: #000;
    font-family: 'Oswald', sans-serif;
}

.id-footer {
    position: absolute;
    bottom: 10px;
    right: 20px;
    font-size: 0.7rem;
    color: #666;
    border-top: 1px solid #ccc;
    width: 80%;
    text-align: right;
    padding-top: 2px;
}

/* --- DISPATCH PANELİ STİLLERİ --- */
.dispatch-header {
    background: #1a1a1a;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
    gap: 10px;
    align-items: center;
    border: 1px solid #333;
}

.status-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.status-btn {
    padding: 2rem;
    border: none;
    border-radius: 8px;
    color: white;
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    cursor: pointer;
    transition: 0.2s;
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.status-btn small {
    font-size: 0.8rem;
    font-family: 'Open Sans', sans-serif;
    margin-top: 5px;
    opacity: 0.8;
    text-transform: none;
}

.status-btn:active { transform: scale(0.95); }

/* Renk Kodları */
.btn-green { background: #27ae60; }
.btn-green:hover { background: #2ecc71; }

.btn-red { background: #c0392b; }
.btn-red:hover { background: #e74c3c; }

.btn-yellow { background: #f39c12; color: #000; }
.btn-yellow:hover { background: #f1c40f; }

.btn-blue { background: #2980b9; }
.btn-blue:hover { background: #3498db; }

