/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Roboto', sans-serif;
    background: #0b0a0a;
    color: #e0e0e0;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
a { color: #f0b31c; text-decoration: none; }
a:hover { color: #ffd966; }

/* ===== HEADER / NAV ===== */
header {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2a1f 100%);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    border-bottom: 3px solid #f0b31c;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 20px rgba(0,0,0,0.8);
}
.logo {
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    font-size: 1.8rem;
    color: #f0b31c;
    text-shadow: 0 0 10px rgba(240, 179, 28, 0.5);
}
.logo i { margin-right: 10px; }
nav {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}
nav a {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
    border-radius: 30px;
    transition: 0.3s;
    background: transparent;
    color: #ccc;
    border: 1px solid transparent;
}
nav a:hover,
nav a.active {
    background: #f0b31c;
    color: #1a1a1a;
    border-color: #f0b31c;
    box-shadow: 0 0 20px rgba(240, 179, 28, 0.3);
}
nav a.active { background: #f0b31c; color: #1a1a1a; }

/* ===== MAIN CONTENT ===== */
.container {
    flex: 1;
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1.5rem;
    width: 100%;
}

/* ===== HERO / HEADINGS ===== */
h1, h2, h3 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    color: #f0b31c;
    margin-bottom: 1rem;
}
h1 { font-size: 2.8rem; text-shadow: 0 0 20px rgba(240, 179, 28, 0.3); }
h2 { font-size: 2rem; border-bottom: 2px solid #f0b31c; padding-bottom: 0.5rem; margin-top: 1.5rem; }
.subtitle {
    font-size: 1.2rem;
    color: #aaa;
    margin-bottom: 2rem;
}

/* ===== CARDS / GRID ===== */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}
.card {
    background: #1f1e1c;
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid #3a352a;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.6);
}
.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(240, 179, 28, 0.2);
    border-color: #f0b31c;
}
.card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1rem;
    border: 1px solid #333;
}
.card h3 { font-size: 1.3rem; margin-bottom: 0.5rem; }
.card p { color: #bbb; font-size: 0.95rem; }
.card .tag {
    display: inline-block;
    background: #f0b31c;
    color: #1a1a1a;
    padding: 0.2rem 0.8rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    margin-top: 0.5rem;
}
.card .date {
    font-size: 0.8rem;
    color: #888;
    margin-top: 0.3rem;
}

/* ===== TEXT CONTENT ===== */
.content-text {
    background: #161412;
    padding: 2rem;
    border-radius: 16px;
    border-left: 5px solid #f0b31c;
    margin: 2rem 0;
    box-shadow: inset 0 0 30px rgba(0,0,0,0.7);
}
.content-text p { margin-bottom: 1rem; }

/* ===== CONTACT FORM ===== */
.contact-form {
    max-width: 600px;
    margin: 2rem auto;
    background: #1f1e1c;
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid #3a352a;
}
.contact-form label {
    display: block;
    margin: 1rem 0 0.3rem;
    font-weight: 700;
    color: #f0b31c;
}
.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 0.8rem;
    border-radius: 8px;
    border: 1px solid #3a352a;
    background: #0b0a0a;
    color: #e0e0e0;
    font-family: 'Roboto', sans-serif;
}
.contact-form button {
    background: #f0b31c;
    color: #1a1a1a;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1rem;
    margin-top: 1rem;
    cursor: pointer;
    transition: 0.3s;
}
.contact-form button:hover {
    background: #ffd966;
    box-shadow: 0 0 20px rgba(240, 179, 28, 0.4);
}

/* ===== FOOTER ===== */
footer {
    background: #11100e;
    text-align: center;
    padding: 2rem 1rem;
    border-top: 2px solid #2d2a1f;
    color: #777;
    font-size: 0.9rem;
    margin-top: 2rem;
}
footer a { color: #f0b31c; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    header { flex-direction: column; gap: 1rem; }
    .logo { font-size: 1.5rem; }
    nav a { font-size: 0.7rem; padding: 0.3rem 0.6rem; }
    h1 { font-size: 2rem; }
    .grid { grid-template-columns: 1fr; }
}
/* ===== HERO BANNER ===== */
.hero {
    background: linear-gradient(rgba(11, 10, 10, 0.7), rgba(11, 10, 10, 0.8)), 
                url('/images/banner.jfif') no-repeat center center/cover;
    border-radius: 20px;
    padding: 4rem 2rem;
    margin-bottom: 2rem;
    text-align: center;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #f0b31c;
    box-shadow: 0 0 30px rgba(240, 179, 28, 0.1);
    animation: fadeIn 0.8s ease;
}

.hero-content {
    max-width: 700px;
}

.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    font-size: 3.5rem;
    color: #f0b31c;
    text-shadow: 0 0 30px rgba(240, 179, 28, 0.6);
    margin-bottom: 0.5rem;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: #ddd;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.hero-btn {
    display: inline-block;
    background: #f0b31c;
    color: #1a1a1a;
    padding: 0.8rem 2.5rem;
    border-radius: 50px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    transition: 0.3s;
    border: 2px solid transparent;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-btn:hover {
    background: transparent;
    color: #f0b31c;
    border-color: #f0b31c;
    box-shadow: 0 0 30px rgba(240, 179, 28, 0.4);
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .hero {
        padding: 2.5rem 1rem;
        min-height: 200px;
    }
    .hero-title {
        font-size: 2.4rem;
    }
    .hero-subtitle {
        font-size: 1.1rem;
    }
    .hero-btn {
        font-size: 0.9rem;
        padding: 0.6rem 1.8rem;
    }
}
.lang-switch {
    background: #2d2a1f;
    border: 1px solid #f0b31c;
    color: #f0b31c !important;
    padding: 0.3rem 0.7rem;
    border-radius: 30px;
    font-size: 0.7rem;
    font-weight: 700;
}
.lang-switch:hover {
    background: #f0b31c;
    color: #1a1a1a !important;
}