/*
Theme Name: MAFF - Altın Çark Film Festivali
Theme URI: https://altincark.com
Author: MAFF Team
Author URI: https://altincark.com
Description: Altın Çark Uluslararası Kısa Film Festivali için modern, Liquid Glass tasarımlı WordPress teması. Light/Dark tema desteği, özelleştirilebilir slider ve countdown özellikleri içerir.
Version: 1.0.0
Requires at least: 5.9
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: maff-theme
Tags: one-column, custom-colors, custom-menu, custom-logo, featured-images, theme-options, translation-ready

Altın Çark Film Festivali - MAFF Theme
*/

/* ========== CSS VARIABLES ========== */
:root {
    --primary-dark: #4e5458;
    --accent-gold: #c99e41;
    --accent-gold-light: #d4af61;
    --accent-gold-dark: #b08a35;
}

/* ========== LIGHT THEME ========== */
[data-theme="light"] {
    --bg-primary: #ffffff;
    --bg-secondary: #f8f9fa;
    --bg-tertiary: #f0f1f2;
    --bg-card: #ffffff;
    --text-primary: #1a1c1e;
    --text-secondary: #4e5458;
    --text-muted: #6c7278;
    --border-color: rgba(78, 84, 88, 0.15);
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-bg-solid: rgba(255, 255, 255, 0.9);
    --shadow-color: rgba(0, 0, 0, 0.08);
    --shadow-strong: rgba(0, 0, 0, 0.15);
    --slide-overlay: rgba(255, 255, 255, 0.35);
    --slide-content-bg: rgba(255, 255, 255, 0.7);
    --gold-glow: rgba(201, 158, 65, 0.15);
}

/* ========== DARK THEME ========== */
[data-theme="dark"] {
    --bg-primary: #0f1012;
    --bg-secondary: #1a1c1e;
    --bg-tertiary: #22252a;
    --bg-card: rgba(26, 28, 30, 0.6);
    --text-primary: #f5f5f5;
    --text-secondary: #c5c8cc;
    --text-muted: #9a9ea2;
    --border-color: rgba(201, 158, 65, 0.15);
    --glass-bg: rgba(15, 16, 18, 0.4);
    --glass-bg-solid: rgba(15, 16, 18, 0.9);
    --shadow-color: rgba(0, 0, 0, 0.3);
    --shadow-strong: rgba(0, 0, 0, 0.5);
    --slide-overlay: rgba(15, 16, 18, 0.4);
    --slide-content-bg: rgba(15, 16, 18, 0.7);
    --gold-glow: rgba(201, 158, 65, 0.08);
}

/* ========== RESET & BASE ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    max-width: 100%;
}

img, video, iframe, embed, object {
    max-width: 100%;
    height: auto;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    max-width: 100%;
}

body {
    font-family: 'Outfit', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background 0.4s ease, color 0.4s ease;
    max-width: 100%;
    width: 100%;
}

/* Background Pattern */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 20% 20%, var(--gold-glow) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(78, 84, 88, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, var(--gold-glow) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* ========== LIQUID GLASS HEADER ========== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100vw;
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-sizing: border-box;
}

.header.scrolled {
    padding: 10px 0;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--border-color);
    border-radius: 100px;
    padding: 12px 35px;
    box-shadow: 
        0 8px 32px var(--shadow-color),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    max-width: 100%;
    box-sizing: border-box;
}

.header.scrolled .header-inner {
    background: var(--glass-bg-solid);
    border-color: rgba(201, 158, 65, 0.25);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-img,
.custom-logo {
    height: 65px;
    width: auto;
    object-fit: contain;
}

/* ========== NAVIGATION ========== */
.nav {
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 5px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
    list-style: none;
}

.nav-link {
    display: block;
    padding: 10px 16px;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    border-radius: 50px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--accent-gold);
    background: rgba(201, 158, 65, 0.1);
}

/* Dropdown Show on Hover */
.nav-item.has-dropdown:hover > .dropdown,
.nav-item.has-dropdown:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Dropdown Styles */
.dropdown,
.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: min(200px, 80vw);
    background: var(--glass-bg-solid);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 10px;
    margin-top: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    box-shadow: 0 20px 40px var(--shadow-strong);
    list-style: none;
    z-index: 1000;
}

/* Dropdown Items */
.dropdown .nav-item,
.sub-menu .nav-item,
.sub-menu li {
    width: 100%;
}

.dropdown-link,
.sub-menu .nav-link,
.dropdown .nav-link {
    display: block;
    padding: 12px 16px;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    border-radius: 10px;
    transition: all 0.2s ease;
}

.dropdown-link:hover,
.sub-menu .nav-link:hover,
.dropdown .nav-link:hover {
    color: var(--accent-gold);
    background: rgba(201, 158, 65, 0.1);
}

/* CTA Button Style */
.nav-cta,
.nav-item.cta-button > .nav-link {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-dark));
    color: #0f1012 !important;
    font-weight: 600;
    margin-left: 8px;
}

.nav-cta:hover,
.nav-item.cta-button > .nav-link:hover {
    background: linear-gradient(135deg, var(--accent-gold-light), var(--accent-gold));
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201, 158, 65, 0.4);
}

/* Theme Toggle */
.theme-toggle {
    width: 44px;
    height: 44px;
    background: rgba(201, 158, 65, 0.1);
    border: 1px solid rgba(201, 158, 65, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-left: 10px;
    flex-shrink: 0;
}

.theme-toggle:hover {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
}

.theme-toggle:hover svg {
    color: #0f1012;
}

.theme-toggle svg {
    width: 20px;
    height: 20px;
    color: var(--accent-gold);
    transition: all 0.3s ease;
}

.theme-toggle .sun-icon { display: none !important; }
.theme-toggle .moon-icon { display: block; }

[data-theme="dark"] .theme-toggle .sun-icon { display: block !important; }
[data-theme="dark"] .theme-toggle .moon-icon { display: none !important; }

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
    z-index: 10;
    background: none;
    border: none;
}

.mobile-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ========== HERO SECTION ========== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 0 60px;
    position: relative;
    overflow: hidden;
}

.hero-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.slider-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    box-shadow: 
        0 30px 80px var(--shadow-strong),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    max-width: 100%;
}

.slider {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide {
    min-width: 100%;
    position: relative;
    aspect-ratio: 16/7;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, var(--slide-overlay) 0%, transparent 30%, transparent 70%, var(--slide-overlay) 100%);
    z-index: 1;
}

/* Hero Slide - Sadece görsel ve buton */
.slide-hero::before {
    background: transparent !important;
}

.slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px 20px;
    max-width: min(800px, calc(100% - 40px));
    width: 100%;
    box-sizing: border-box;
    background: var(--slide-content-bg);
    border-radius: 20px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.slide-content-minimal {
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    position: absolute;
    bottom: 90px;
    left: 0;
    right: 0;
    transform: none;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 100%;
}

.slide-tag {
    display: inline-block;
    background: rgba(201, 158, 65, 0.15);
    border: 1px solid rgba(201, 158, 65, 0.3);
    color: var(--accent-gold);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.slide-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 5vw, 4.5rem);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 15px;
    line-height: 1.1;
}

.slide-title span {
    color: var(--accent-gold);
}

.slide-text {
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    color: var(--text-muted);
    max-width: min(600px, 100%);
    margin: 0 auto 25px;
    line-height: 1.8;
}

.slide-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-dark));
    color: #0f1012;
    padding: 14px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.slide-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(201, 158, 65, 0.4);
}

.slide-btn svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.slide-btn:hover svg {
    transform: translateX(5px);
}

.slide-btn-hero {
    padding: 18px 45px;
    font-size: 16px;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-dark));
    box-shadow: 0 10px 40px rgba(201, 158, 65, 0.5);
}

.slide-btn-hero:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(201, 158, 65, 0.6);
}

/* Decorative elements */
.slide-decor {
    position: absolute;
    width: min(300px, 50vw);
    height: min(300px, 50vw);
    border-radius: 50%;
    background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
    filter: blur(60px);
    animation: float 8s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, 30px) scale(1.1); }
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 10;
}

.slider-arrows {
    display: flex;
    gap: 8px;
}

.slider-arrow {
    width: 44px;
    height: 44px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-primary);
}

.slider-arrow:hover {
    background: var(--accent-gold);
    color: #0f1012;
    border-color: var(--accent-gold);
    transform: scale(1.1);
}

.slider-arrow svg {
    width: 18px;
    height: 18px;
}

.slider-dots {
    display: flex;
    gap: 6px;
}

.slider-dot {
    width: 10px;
    height: 10px;
    background: var(--text-muted);
    opacity: 0.4;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: var(--accent-gold);
    opacity: 1;
    width: 30px;
    border-radius: 10px;
}

/* ========== SECTIONS ========== */
.section {
    padding: 80px 0;
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
    max-width: 100%;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.section-tag {
    display: inline-block;
    background: rgba(201, 158, 65, 0.1);
    border: 1px solid rgba(201, 158, 65, 0.2);
    color: var(--accent-gold);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: min(600px, 100%);
    margin: 0 auto;
}

/* About Content */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    max-width: 100%;
}

.about-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.about-content p {
    color: var(--text-muted);
    margin-bottom: 15px;
    line-height: 1.8;
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--bg-tertiary);
    max-width: 100%;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-image::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    pointer-events: none;
}

/* ========== AWARDS SECTION ========== */
.awards-section {
    background: linear-gradient(180deg, transparent, var(--gold-glow), transparent);
    overflow: hidden;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 100%;
}

.award-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.award-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-gold-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.award-card:hover {
    transform: translateY(-8px);
    border-color: rgba(201, 158, 65, 0.3);
    box-shadow: 0 20px 40px var(--shadow-color);
}

.award-card:hover::before {
    transform: scaleX(1);
}

.award-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(201, 158, 65, 0.15), rgba(201, 158, 65, 0.05));
    border: 1px solid rgba(201, 158, 65, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.award-card:hover .award-icon {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-dark));
    transform: scale(1.1);
}

.award-icon svg {
    width: 28px;
    height: 28px;
    color: var(--accent-gold);
    transition: color 0.3s ease;
}

.award-card:hover .award-icon svg {
    color: #0f1012;
}

.award-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.award-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ========== COUNTDOWN SECTION ========== */
.countdown-section {
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.countdown-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: min(600px, 100vw);
    height: min(600px, 100vw);
    background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
    pointer-events: none;
}

.countdown-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--text-primary);
    margin-bottom: 10px;
}

.countdown-year {
    color: var(--accent-gold);
}

.countdown-subtitle {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 40px;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    max-width: 100%;
}

.countdown-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 25px 20px;
    min-width: min(100px, 20vw);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    flex-shrink: 1;
}

.countdown-item:hover {
    transform: translateY(-5px);
    border-color: rgba(201, 158, 65, 0.4);
    box-shadow: 0 15px 30px var(--shadow-color);
}

.countdown-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-gold);
    line-height: 1;
    margin-bottom: 8px;
}

.countdown-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ========== CONTACT SECTION ========== */
.contact-section {
    background: linear-gradient(180deg, transparent, var(--bg-secondary));
    overflow: hidden;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 100%;
}

.contact-info {
    max-width: 100%;
    overflow: hidden;
}

.contact-info h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.contact-info p {
    color: var(--text-muted);
    margin-bottom: 25px;
    line-height: 1.8;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
    word-break: break-word;
    overflow-wrap: break-word;
}

.contact-link:hover {
    color: var(--accent-gold);
}

.contact-link svg {
    width: 18px;
    height: 18px;
    color: var(--accent-gold);
    flex-shrink: 0;
}

.contact-form {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 35px;
    max-width: 100%;
    box-sizing: border-box;
}

.form-group {
    margin-bottom: 18px;
}

.form-label {
    display: block;
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 6px;
}

.form-input,
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    max-width: 100%;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 14px 18px;
    color: var(--text-primary);
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-input:focus,
.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    background: rgba(201, 158, 65, 0.05);
}

.form-input::placeholder,
.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--text-muted);
}

textarea.form-input,
.contact-form textarea {
    min-height: 100px;
    resize: vertical;
}

.form-btn,
.contact-form input[type="submit"],
.contact-form button[type="submit"] {
    width: 100%;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-dark));
    color: #0f1012;
    border: none;
    border-radius: 12px;
    padding: 16px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-btn:hover,
.contact-form input[type="submit"]:hover,
.contact-form button[type="submit"]:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(201, 158, 65, 0.4);
}

/* ========== FOOTER ========== */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    padding: 50px 0 25px;
    overflow: hidden;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 25px;
    margin-bottom: 30px;
    max-width: 100%;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo .logo-img,
.footer-logo .custom-logo {
    height: 45px;
}

.footer-links,
.footer-menu {
    display: flex;
    gap: 15px 25px;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 100%;
    list-style: none;
}

.footer-link,
.footer-menu a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-link:hover,
.footer-menu a:hover {
    color: var(--accent-gold);
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
    color: #0f1012;
    transform: translateY(-3px);
}

.social-link svg {
    width: 18px;
    height: 18px;
}

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid var(--border-color);
}

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

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

@media (max-width: 1024px) {
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image {
        order: -1;
    }

    .nav-link {
        padding: 10px 12px;
        font-size: 13px;
    }
}

@media (max-width: 900px) {
    .header-inner {
        padding: 8px 15px;
    }

    .nav {
        display: none !important;
        position: fixed;
        top: 80px;
        left: 15px;
        right: 15px;
        background: var(--glass-bg-solid);
        backdrop-filter: blur(20px);
        border: 1px solid var(--border-color);
        border-radius: 20px;
        padding: 20px;
        flex-direction: column;
        align-items: stretch;
        box-shadow: 0 20px 40px var(--shadow-strong);
        max-width: calc(100% - 30px);
    }

    .nav.active {
        display: flex !important;
    }

    .nav-menu {
        flex-direction: column;
        width: 100%;
        gap: 0;
    }

    .nav-item {
        width: 100%;
    }

    .nav-link {
        padding: 14px 16px;
        font-size: 15px;
        border-radius: 12px;
    }

    .nav-cta {
        margin-left: 0;
        margin-top: 10px;
        text-align: center;
    }

    .dropdown,
    .sub-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: transparent;
        border: none;
        box-shadow: none;
        padding: 5px 0 5px 15px;
        margin: 0;
        backdrop-filter: none;
    }

    .dropdown .nav-link,
    .sub-menu .nav-link,
    .dropdown-link {
        padding: 12px 16px;
        font-size: 14px;
    }

    .mobile-toggle {
        display: flex;
    }

    .theme-toggle {
        margin-left: auto;
        margin-right: 15px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 90px 0 40px;
        min-height: auto;
    }

    .slide {
        aspect-ratio: 4/3;
    }

    .slide-content {
        padding: 30px 15px;
    }

    .slide-content-minimal {
        bottom: 80px;
    }

    .slide-btn-hero {
        padding: 14px 35px;
        font-size: 14px;
    }

    .slide-title {
        font-size: clamp(1.6rem, 6vw, 2.5rem);
    }

    .slide-text {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }

    .slide-btn {
        padding: 12px 24px;
        font-size: 13px;
    }

    .slider-controls {
        bottom: 15px;
        gap: 15px;
    }

    .slider-arrow {
        width: 38px;
        height: 38px;
    }

    .slider-arrow svg {
        width: 16px;
        height: 16px;
    }

    .section {
        padding: 60px 0;
    }

    .awards-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .award-card {
        padding: 25px 20px;
    }

    .countdown-timer {
        gap: 10px;
    }

    .countdown-item {
        min-width: 0;
        flex: 1 1 60px;
        padding: 15px 10px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .header-inner {
        padding: 6px 12px;
        border-radius: 50px;
    }

    .container {
        width: 100%;
        padding: 0 15px;
    }

    .hero-container {
        width: 100%;
        padding: 0 15px;
    }

    .slider-wrapper {
        border-radius: 16px;
    }

    .slide-tag {
        padding: 6px 14px;
        font-size: 10px;
    }

    .slide-title {
        font-size: 1.5rem;
    }

    .logo-img,
    .custom-logo {
        height: 45px;
    }

    .theme-toggle {
        width: 36px;
        height: 36px;
        margin-right: 8px;
    }

    .theme-toggle svg {
        width: 16px;
        height: 16px;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .about-content h3 {
        font-size: 1.4rem;
    }

    .contact-form {
        padding: 25px 20px;
    }

    .award-card {
        padding: 20px 15px;
    }

    .award-icon {
        width: 50px;
        height: 50px;
    }

    .award-icon svg {
        width: 24px;
        height: 24px;
    }

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

    .countdown-label {
        font-size: 0.65rem;
        letter-spacing: 1px;
    }

    .countdown-timer {
        gap: 8px;
    }

    .countdown-item {
        padding: 12px 8px;
    }

    .slider-controls {
        bottom: 10px;
        gap: 10px;
    }

    .slider-arrow {
        width: 32px;
        height: 32px;
    }

    .slider-dot {
        width: 8px;
        height: 8px;
    }

    .slider-dot.active {
        width: 24px;
    }
}

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

.animate-in {
    animation: fadeInUp 0.8s ease forwards;
}

/* ========== WORDPRESS SPECIFIC ========== */
.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
}

.alignleft {
    float: left;
    margin-right: 1.5em;
}

.alignright {
    float: right;
    margin-left: 1.5em;
}

.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.wp-caption {
    max-width: 100%;
}

.wp-caption-text {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-align: center;
    padding: 10px 0;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
}

.gallery-item {
    margin: 0;
}

.gallery-item img {
    border-radius: 8px;
}

/* Page content */
.page-content,
.entry-content {
    color: var(--text-secondary);
    line-height: 1.8;
}

.page-content h1,
.page-content h2,
.page-content h3,
.page-content h4,
.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--text-primary);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.page-content a,
.entry-content a {
    color: var(--accent-gold);
    text-decoration: none;
}

.page-content a:hover,
.entry-content a:hover {
    text-decoration: underline;
}

