/**
 * 3SDER Ödülleri - Premium Awards Stylesheet
 * Inspired by Globe Soccer Awards design
 */

/* =====================================================
   CSS Variables
   ===================================================== */
:root {
    /* Awards Theme Colors */
    --awards-gold: #d4af37;
    --awards-gold-light: #f4d35e;
    --awards-gold-dark: #b8960c;
    --awards-dark: #0d0d1a;
    --awards-dark-lighter: #1a1a2e;
    --awards-dark-card: #16162a;
    --awards-text: #ffffff;
    --awards-text-muted: #a0a0a0;
    --awards-border: rgba(212, 175, 55, 0.2);

    /* Typography */
    --font-primary: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-secondary: 'Open Sans', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing */
    --container-max: 1400px;
    --section-padding: 6rem;
    --card-radius: 12px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* =====================================================
   Reset & Base
   ===================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--awards-text);
    background-color: var(--awards-dark);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.2;
}

a {
    color: var(--awards-gold);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--awards-gold-light);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* =====================================================
   Utility Classes
   ===================================================== */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 2rem;
}

.text-gold {
    color: var(--awards-gold);
}

.text-muted {
    color: var(--awards-text-muted);
}

.text-center {
    text-align: center;
}

.gold-gradient {
    background: linear-gradient(135deg, var(--awards-gold) 0%, var(--awards-gold-light) 50%, var(--awards-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* =====================================================
   Header
   ===================================================== */
.awards-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(180deg, var(--awards-dark) 0%, rgba(13, 13, 26, 0.95) 100%);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--awards-border);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    max-width: var(--container-max);
    margin: 0 auto;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header-logo img {
    height: 50px;
    width: auto;
}

.header-logo-text {
    display: flex;
    flex-direction: column;
}

.header-logo-title {
    font-family: var(--font-primary);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--awards-text);
}

.header-logo-subtitle {
    font-size: 0.75rem;
    color: var(--awards-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.header-nav a {
    font-family: var(--font-primary);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--awards-text);
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.5rem 0;
    position: relative;
    transition: color var(--transition-fast);
}

.header-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--awards-gold);
    transition: width var(--transition-normal);
}

.header-nav a:hover,
.header-nav a.active {
    color: var(--awards-gold);
}

.header-nav a:hover::after,
.header-nav a.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.lang-switcher {
    display: flex;
    gap: 0.5rem;
}

.lang-btn {
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--awards-text-muted);
    background: transparent;
    border: 1px solid var(--awards-border);
    border-radius: 4px;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.lang-btn:hover,
.lang-btn.active {
    color: var(--awards-gold);
    border-color: var(--awards-gold);
    background: rgba(212, 175, 55, 0.1);
}

.main-site-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--awards-text-muted);
}

.main-site-link:hover {
    color: var(--awards-gold);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--awards-text);
    transition: all var(--transition-fast);
}

/* =====================================================
   Hero Section
   ===================================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8rem 2rem 4rem;
    background: linear-gradient(180deg, var(--awards-dark) 0%, var(--awards-dark-lighter) 100%);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-background::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
}

.hero-background::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(212,175,55,0.05)" stroke-width="0.5"/></svg>');
    background-size: 200px;
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.hero-year {
    display: inline-block;
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--awards-gold);
    letter-spacing: 8px;
    margin-bottom: 1.5rem;
    padding: 0.5rem 2rem;
    border: 2px solid var(--awards-gold);
    border-radius: 30px;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 800;
    letter-spacing: 4px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 300;
    color: var(--awards-gold);
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--awards-text-muted);
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

/* Decorative Trophy Icon */
.hero-trophy {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    opacity: 0.1;
}

/* =====================================================
   Countdown Section
   ===================================================== */
.countdown-section {
    padding: 4rem 0;
    background: var(--awards-dark-lighter);
    border-top: 1px solid var(--awards-border);
    border-bottom: 1px solid var(--awards-border);
}

.countdown-title {
    font-size: 1rem;
    color: var(--awards-text-muted);
    text-transform: uppercase;
    letter-spacing: 3px;
    text-align: center;
    margin-bottom: 2rem;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 100px;
}

.countdown-number {
    font-family: var(--font-primary);
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(180deg, var(--awards-gold-light) 0%, var(--awards-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.countdown-label {
    font-size: 0.85rem;
    color: var(--awards-text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 0.5rem;
}

.countdown-separator {
    font-size: 3rem;
    color: var(--awards-gold);
    opacity: 0.5;
    align-self: flex-start;
    margin-top: 0.5rem;
}

.countdown-ended {
    text-align: center;
    font-size: 1.5rem;
    color: var(--awards-gold);
}

/* =====================================================
   Section Styles
   ===================================================== */
.section {
    padding: var(--section-padding) 0;
}

.section-dark {
    background: var(--awards-dark);
}

.section-darker {
    background: var(--awards-dark-lighter);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--awards-text-muted);
    max-width: 700px;
    margin: 0 auto;
}

/* =====================================================
   About Section (Homepage)
   ===================================================== */
.about-preview {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.about-card {
    background: var(--awards-dark-card);
    border: 1px solid var(--awards-border);
    border-radius: var(--card-radius);
    padding: 2.5rem;
    text-align: center;
    transition: all var(--transition-normal);
}

.about-card:hover {
    border-color: var(--awards-gold);
    transform: translateY(-5px);
}

.about-card-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    fill: var(--awards-gold);
}

.about-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--awards-gold);
}

.about-card-text {
    font-size: 0.95rem;
    color: var(--awards-text-muted);
    line-height: 1.7;
}

/* =====================================================
   Categories Section
   ===================================================== */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.category-card {
    background: var(--awards-dark-card);
    border: 1px solid var(--awards-border);
    border-radius: var(--card-radius);
    padding: 2rem;
    text-align: center;
    transition: all var(--transition-normal);
    cursor: pointer;
}

.category-card:hover {
    border-color: var(--awards-gold);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.category-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(212, 175, 55, 0.05) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-icon svg {
    width: 36px;
    height: 36px;
    fill: var(--awards-gold);
}

.category-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.category-count {
    font-size: 0.85rem;
    color: var(--awards-text-muted);
}

.category-subcategories {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.category-subcategory {
    font-size: 0.75rem;
    padding: 0.3rem 0.8rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--awards-border);
    border-radius: 20px;
    color: var(--awards-text-muted);
}

/* Category Detail Cards (for categories page) */
.category-detail-card {
    background: var(--awards-dark-card);
    border: 1px solid var(--awards-border);
    border-radius: var(--card-radius);
    padding: 3rem;
    margin-bottom: 2rem;
    transition: border-color var(--transition-normal);
}

.category-detail-card:hover {
    border-color: var(--awards-gold);
}

.category-detail-header {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 2rem;
}

.category-detail-icon {
    width: 80px;
    height: 80px;
    min-width: 80px;
    padding: 1.25rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(212, 175, 55, 0.05) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-detail-icon svg {
    width: 40px;
    height: 40px;
    fill: var(--awards-gold);
}

.category-detail-info h3 {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
}

.category-detail-info p {
    color: var(--awards-text-muted);
    line-height: 1.7;
}

.category-detail-subcategories {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.subcategory-card {
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid var(--awards-border);
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    transition: all var(--transition-fast);
}

.subcategory-card:hover {
    border-color: var(--awards-gold);
    background: rgba(212, 175, 55, 0.1);
}

.subcategory-card h4 {
    font-size: 1rem;
    color: var(--awards-gold);
    margin-bottom: 0.5rem;
}

.subcategory-card p {
    font-size: 0.85rem;
    color: var(--awards-text-muted);
}

/* =====================================================
   Jury Section
   ===================================================== */
.jury-preview-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
}

.jury-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
}

.jury-card {
    text-align: center;
    transition: transform var(--transition-normal);
}

.jury-card:hover {
    transform: translateY(-5px);
}

.jury-photo {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--awards-border);
    transition: border-color var(--transition-fast);
}

.jury-card:hover .jury-photo {
    border-color: var(--awards-gold);
}

.jury-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.jury-photo-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--awards-dark-card) 0%, var(--awards-dark-lighter) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.jury-photo-placeholder svg {
    width: 50%;
    height: 50%;
    fill: var(--awards-text-muted);
    opacity: 0.5;
}

.jury-name {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.jury-title {
    font-size: 0.8rem;
    color: var(--awards-gold);
    margin-bottom: 0.25rem;
}

.jury-organization {
    font-size: 0.75rem;
    color: var(--awards-text-muted);
}

/* Chairman Card */
.jury-chairman-card {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.02) 100%);
    border: 2px solid var(--awards-gold);
    border-radius: var(--card-radius);
    padding: 2rem 3rem;
    margin-bottom: 2rem;
}

.jury-chairman-card .jury-photo {
    width: 150px;
    height: 150px;
    border-width: 4px;
    border-color: var(--awards-gold);
}

.jury-chairman-info {
    text-align: left;
}

.jury-chairman-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--awards-dark);
    background: var(--awards-gold);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.jury-chairman-info .jury-name {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.jury-chairman-info .jury-organization {
    font-size: 0.9rem;
}

/* View All Button */
.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 3rem;
    padding: 1rem 2rem;
    font-family: var(--font-primary);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--awards-gold);
    background: transparent;
    border: 2px solid var(--awards-gold);
    border-radius: 30px;
    cursor: pointer;
    transition: all var(--transition-fast);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.view-all-btn:hover {
    background: var(--awards-gold);
    color: var(--awards-dark);
}

.view-all-btn svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

/* =====================================================
   Criteria Section
   ===================================================== */
.criteria-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}

.criteria-card {
    background: var(--awards-dark-card);
    border: 1px solid var(--awards-border);
    border-radius: var(--card-radius);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all var(--transition-normal);
}

.criteria-card:hover {
    border-color: var(--awards-gold);
    transform: translateY(-3px);
}

.criteria-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 1rem;
    fill: var(--awards-gold);
}

.criteria-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.criteria-desc {
    font-size: 0.85rem;
    color: var(--awards-text-muted);
    line-height: 1.5;
}

/* =====================================================
   About Page
   ===================================================== */
.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-block {
    margin-bottom: 4rem;
}

.about-block h2 {
    font-size: 1.75rem;
    color: var(--awards-gold);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--awards-border);
}

.about-block p {
    font-size: 1.1rem;
    color: var(--awards-text-muted);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.timeline-item {
    position: relative;
    text-align: center;
    padding: 2rem 1rem;
    background: var(--awards-dark-card);
    border: 1px solid var(--awards-border);
    border-radius: var(--card-radius);
}

.timeline-item::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: var(--awards-gold);
}

.timeline-number {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 800;
    color: var(--awards-gold);
    margin-bottom: 0.5rem;
}

.timeline-title {
    font-size: 0.95rem;
    font-weight: 600;
}

/* =====================================================
   Footer
   ===================================================== */
.awards-footer {
    background: var(--awards-dark);
    border-top: 1px solid var(--awards-border);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-logo img {
    height: 40px;
}

.footer-logo-text {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 700;
}

.footer-brand p {
    font-size: 0.9rem;
    color: var(--awards-text-muted);
    line-height: 1.7;
}

.footer-section h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--awards-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    font-size: 0.9rem;
    color: var(--awards-text-muted);
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--awards-gold);
}

.footer-contact p {
    font-size: 0.9rem;
    color: var(--awards-text-muted);
    margin-bottom: 0.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--awards-dark-card);
    border: 1px solid var(--awards-border);
    border-radius: 50%;
    transition: all var(--transition-fast);
}

.social-link:hover {
    border-color: var(--awards-gold);
    background: rgba(212, 175, 55, 0.1);
}

.social-link svg {
    width: 18px;
    height: 18px;
    fill: var(--awards-text-muted);
    transition: fill var(--transition-fast);
}

.social-link:hover svg {
    fill: var(--awards-gold);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--awards-border);
}

.footer-copyright {
    font-size: 0.85rem;
    color: var(--awards-text-muted);
}

.footer-main-site a {
    font-size: 0.85rem;
    color: var(--awards-text-muted);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-main-site a:hover {
    color: var(--awards-gold);
}

/* =====================================================
   Buttons
   ===================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-family: var(--font-primary);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 30px;
    cursor: pointer;
    transition: all var(--transition-fast);
    border: none;
}

.btn-gold {
    background: linear-gradient(135deg, var(--awards-gold) 0%, var(--awards-gold-dark) 100%);
    color: var(--awards-dark);
}

.btn-gold:hover {
    background: linear-gradient(135deg, var(--awards-gold-light) 0%, var(--awards-gold) 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--awards-gold);
    border: 2px solid var(--awards-gold);
}

.btn-outline:hover {
    background: var(--awards-gold);
    color: var(--awards-dark);
}

/* =====================================================
   Page Header (Inner Pages)
   ===================================================== */
.page-header {
    padding: 10rem 0 4rem;
    text-align: center;
    background: linear-gradient(180deg, var(--awards-dark) 0%, var(--awards-dark-lighter) 100%);
    border-bottom: 1px solid var(--awards-border);
}

.page-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.1rem;
    color: var(--awards-text-muted);
    max-width: 700px;
    margin: 0 auto;
}

/* =====================================================
   Responsive
   ===================================================== */
@media (max-width: 1200px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .jury-preview-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .jury-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .criteria-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 992px) {
    .header-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: var(--awards-dark);
        border-top: 1px solid var(--awards-border);
        padding: 1rem;
        gap: 0;
    }

    .header-nav.active {
        display: flex;
    }

    .header-nav a {
        padding: 1rem;
        border-bottom: 1px solid var(--awards-border);
    }

    .header-nav a::after {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .about-preview {
        grid-template-columns: 1fr;
    }

    .jury-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .category-detail-subcategories {
        grid-template-columns: 1fr;
    }

    .timeline {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 4rem;
    }

    .container {
        padding: 0 1rem;
    }

    .header-container {
        padding: 1rem;
    }

    .hero-section {
        min-height: auto;
        padding: 8rem 1rem 4rem;
    }

    .countdown-timer {
        gap: 1rem;
    }

    .countdown-item {
        min-width: 70px;
    }

    .countdown-number {
        font-size: 2.5rem;
    }

    .countdown-separator {
        display: none;
    }

    .categories-grid {
        grid-template-columns: 1fr;
    }

    .jury-preview-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .jury-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .jury-chairman-card {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }

    .jury-chairman-info {
        text-align: center;
    }

    .criteria-grid {
        grid-template-columns: 1fr;
    }

    .category-detail-header {
        flex-direction: column;
        text-align: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand {
        max-width: none;
    }

    .social-links {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .timeline {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-year {
        font-size: 1.2rem;
        padding: 0.4rem 1.5rem;
    }

    .countdown-item {
        min-width: 60px;
    }

    .countdown-number {
        font-size: 2rem;
    }

    .lang-switcher {
        gap: 0.25rem;
    }

    .lang-btn {
        padding: 0.3rem 0.6rem;
        font-size: 0.75rem;
    }
}

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

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

.countdown-number {
    animation: pulse 2s ease-in-out infinite;
}
