/* ======================================================
   NAУРЫЗ 2026 — Landing Page Styles
   Color palette from references.pdf (pages 53-59):
   - Primary Green:  #69AB2F
   - Warm Cream:     #FEEEDA
   - Crimson Red:    #E62746
   - Orange:         #EE8404
   - Yellow:         #FFDB06
   - Dark:           #1A1A2E
   ====================================================== */

/* ==================== CSS VARIABLES ==================== */
:root {
    /* Brand Colors from references */
    --color-green: #69AB2F;
    --color-green-light: #7EC044;
    --color-green-dark: #4E8A1E;
    --color-cream: #FEEEDA;
    --color-cream-light: #FFF5ED;
    --color-red: #E62746;
    --color-orange: #EE8404;
    --color-yellow: #FFDB06;
    
    /* Neutrals */
    --color-dark: #1A1A2E;
    --color-dark-light: #2D2D44;
    --color-gray: #6B7280;
    --color-gray-light: #F3F4F6;
    --color-white: #FFFFFF;
    
    /* Typography */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    
    /* Spacing */
    --section-padding: 100px 0;
    --container-max: 1200px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.16);
    --shadow-glow-green: 0 0 30px rgba(105, 171, 47, 0.3);
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 50%;
}

/* ==================== RESET & BASE ==================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--color-dark);
    background-color: var(--color-white);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
}

ul {
    list-style: none;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: var(--section-padding);
    position: relative;
}

/* ==================== KAZAKH ORNAMENT PATTERNS (SVG) ==================== */
.ornament-divider {
    width: 120px;
    height: 30px;
    margin: 0 auto 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 30'%3E%3Cpath d='M0 15 L10 5 L20 15 L30 5 L40 15 L50 5 L60 15 L70 5 L80 15 L90 5 L100 15 L110 5 L120 15' stroke='%234DA83A' stroke-width='2' fill='none'/%3E%3Cpath d='M0 15 L10 25 L20 15 L30 25 L40 15 L50 25 L60 15 L70 25 L80 15 L90 25 L100 15 L110 25 L120 15' stroke='%23E88020' stroke-width='2' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

/* ==================== HEADER / NAVBAR ==================== */
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-normal);
    padding: 15px 0;
}

#header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    padding: 8px 0;
}

.navbar {
    display: flex;
    align-items: center;
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.logo-group {
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1001;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 150px;
    width: auto;
    transition: var(--transition-normal);
}

#header.scrolled .logo-img {
    height: 60px;
}

.logo-nauryz {
    height: 160px;
}

#header.scrolled .logo-nauryz {
    height: 70px;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    padding: 5px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-green);
    transition: var(--transition-normal);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

#header.scrolled .nav-links a {
    color: var(--color-dark);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    gap: 4px;
    background: rgba(255,255,255,0.15);
    border-radius: 30px;
    padding: 3px;
    backdrop-filter: blur(4px);
}

#header.scrolled .lang-switcher {
    background: var(--color-gray-light);
}

.lang-btn {
    padding: 5px 12px;
    border: none;
    background: transparent;
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    cursor: pointer;
    border-radius: 20px;
    transition: var(--transition-fast);
}

#header.scrolled .lang-btn {
    color: var(--color-dark);
}

.lang-btn.active {
    background: var(--color-green);
    color: var(--color-white) !important;
}

.lang-btn:hover:not(.active) {
    background: rgba(255,255,255,0.2);
}

.social-links-header {
    display: flex;
    gap: 10px;
}

.social-links-header a {
    color: var(--color-white);
    font-size: 0.9rem;
    opacity: 0.9;
}

.social-links-header a:hover {
    color: var(--color-green);
    opacity: 1;
}

#header.scrolled .social-links-header a {
    color: var(--color-dark);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 5px;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--color-white);
    transition: var(--transition-normal);
}

#header.scrolled .hamburger span {
    background: var(--color-dark);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.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;
    position: relative;
    overflow: hidden;
    background: url('assets/hero.png') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    text-align: center;
    color: var(--color-white);
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(26, 58, 14, 0.45) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(26, 58, 14, 0.55) 100%);
    z-index: 1;
}

/* Ornament decorations on hero */
.hero-ornament {
    position: absolute;
    width: 400px;
    height: 400px;
    z-index: 1;
    opacity: 0.08;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 400'%3E%3Ccircle cx='200' cy='200' r='180' stroke='%23fff' stroke-width='4' fill='none'/%3E%3Ccircle cx='200' cy='200' r='140' stroke='%23fff' stroke-width='2' fill='none'/%3E%3Cpath d='M200 20 L220 60 L200 100 L180 60 Z' fill='%23fff'/%3E%3Cpath d='M200 300 L220 340 L200 380 L180 340 Z' fill='%23fff'/%3E%3Cpath d='M20 200 L60 220 L100 200 L60 180 Z' fill='%23fff'/%3E%3Cpath d='M300 200 L340 220 L380 200 L340 180 Z' fill='%23fff'/%3E%3Cpath d='M80 80 L110 100 L100 130 L70 110 Z' fill='%23fff'/%3E%3Cpath d='M320 80 L290 100 L300 130 L330 110 Z' fill='%23fff'/%3E%3Cpath d='M80 320 L110 300 L100 270 L70 290 Z' fill='%23fff'/%3E%3Cpath d='M320 320 L290 300 L300 270 L330 290 Z' fill='%23fff'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    animation: rotateOrnament 60s linear infinite;
}

.hero-ornament-left {
    left: -100px;
    top: 10%;
}

.hero-ornament-right {
    right: -100px;
    bottom: 10%;
    animation-direction: reverse;
}

@keyframes rotateOrnament {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    animation: floatParticle linear infinite;
}

@keyframes floatParticle {
    0% { transform: translateY(100vh) scale(0); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-10vh) scale(1); opacity: 0; }
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.hero-badge {
    display: inline-block;
    padding: 8px 28px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 30px;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 30px;
    backdrop-filter: blur(4px);
}

.hero-title {
    margin-bottom: 20px;
}

.hero-title-main {
    display: block;
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-weight: 900;
    letter-spacing: 4px;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--color-white) 0%, var(--color-cream) 50%, var(--color-yellow) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    margin-bottom: 10px;
}

.hero-title-sub {
    display: block;
    font-family: var(--font-heading);
    font-size: clamp(1rem, 2.5vw, 1.6rem);
    font-weight: 500;
    letter-spacing: 8px;
    text-transform: uppercase;
    opacity: 0.85;
}

.hero-location {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 40px;
}

.hero-location i {
    color: var(--color-orange);
    margin-right: 8px;
}

/* Countdown Timer */
.countdown {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 45px;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 80px;
    padding: 15px 10px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-md);
}

.countdown-number {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1;
    color: var(--color-yellow);
}

.countdown-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.75;
    margin-top: 5px;
}

.countdown-separator {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-orange);
    opacity: 0.6;
}

/* CTA Buttons */
.hero-cta {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 36px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition-normal);
}

.btn-primary {
    background: var(--color-green);
    color: var(--color-white);
    border-color: var(--color-green);
}

.btn-primary:hover {
    background: var(--color-green-dark);
    border-color: var(--color-green-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow-green);
}

.btn-outline {
    background: transparent;
    color: var(--color-white);
    border-color: rgba(255,255,255,0.4);
}

.btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--color-white);
}

.btn-outline-light {
    background: transparent;
    color: var(--color-white);
    border-color: var(--color-white);
}

.btn-outline-light:hover {
    background: var(--color-white);
    color: var(--color-green);
}

.btn-lg {
    padding: 18px 48px;
    font-size: 1rem;
}

.btn-full {
    width: 100%;
}

/* Scroll indicator */
.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    color: var(--color-white);
    opacity: 0.6;
    animation: scrollBounce 2s ease infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

/* ==================== SECTION HEADERS ==================== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--color-dark);
    margin-bottom: 12px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-gray);
    max-width: 500px;
    margin: 0 auto;
}

/* ==================== ABOUT SECTION ==================== */
.about {
    background: var(--color-white);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.about-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    border: 1px solid #eee;
    transition: var(--transition-normal);
}

.about-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-green);
}

.about-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--color-green), var(--color-green-light));
    color: var(--color-white);
    font-size: 1.8rem;
}

.about-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--color-dark);
}

.about-card p {
    color: var(--color-gray);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ==================== INVITATION SECTION ==================== */
.invitation {
    background: linear-gradient(135deg, var(--color-cream-light), var(--color-cream));
    position: relative;
    overflow: hidden;
}

.invitation::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    opacity: 0.05;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 400'%3E%3Ccircle cx='200' cy='200' r='180' stroke='%234DA83A' stroke-width='4' fill='none'/%3E%3Ccircle cx='200' cy='200' r='140' stroke='%234DA83A' stroke-width='2' fill='none'/%3E%3Ccircle cx='200' cy='200' r='100' stroke='%234DA83A' stroke-width='2' fill='none'/%3E%3C/svg%3E");
    animation: rotateOrnament 40s linear infinite;
}

.invitation-card {
    max-width: 800px;
    margin: 0 auto;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 60px 50px;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.invitation-ornament-top,
.invitation-ornament-bottom {
    height: 8px;
    background: linear-gradient(90deg, var(--color-green), var(--color-yellow), var(--color-orange), var(--color-red), var(--color-purple), var(--color-green));
    background-size: 200% 100%;
    animation: shimmerOrnament 4s linear infinite;
}

@keyframes shimmerOrnament {
    0% { background-position: 0% 0%; }
    100% { background-position: 200% 0%; }
}

.invitation-ornament-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}

.invitation-ornament-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.invitation-content {
    text-align: center;
}

.invitation-greeting {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-green-dark);
    margin-bottom: 25px;
}

.invitation-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--color-dark-light);
    margin-bottom: 18px;
    text-align: justify;
}

.invitation-wish {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-orange);
    margin: 30px 0;
    font-style: italic;
}

.invitation-signature {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.signature-regards {
    font-style: italic;
    color: var(--color-gray);
    margin-bottom: 5px;
}

.signature-title {
    font-weight: 600;
    color: #4e8a1e;
}

.signature-name {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--color-green-dark);
    margin-top: 5px;
}

/* ==================== TRADITIONS SECTION ==================== */
.traditions {
    background: var(--color-white);
    position: relative;
}

.traditions::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, var(--color-gray-light), transparent);
    pointer-events: none;
}

.traditions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.tradition-card {
    text-align: center;
    padding: 35px 25px;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    border: 1px solid transparent;
}

.tradition-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-green);
}

.tradition-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.tradition-card h3 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--color-dark);
}

.tradition-card p {
    font-size: 0.9rem;
    color: var(--color-gray);
    line-height: 1.6;
}

/* ==================== PROGRAM SECTION ==================== */
.program {
    background: var(--color-gray-light);
}

.program-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.program-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px 30px;
    background: var(--color-white);
    border: 2px solid #e5e7eb;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition-normal);
    font-family: var(--font-heading);
}

.program-tab:hover {
    border-color: var(--color-green);
}

.program-tab.active {
    background: var(--color-green);
    border-color: var(--color-green);
    color: var(--color-white);
}

.tab-date {
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1;
}

.tab-month {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

.program-day {
    display: none;
    max-width: 800px;
    margin: 0 auto;
}

.program-day.active {
    display: block;
    animation: fadeInUp 0.4s ease;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.event-card {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: var(--color-white);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    border-left: 4px solid var(--color-green);
    transition: var(--transition-normal);
}

.event-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(5px);
}

.event-card.highlight {
    border-left-color: var(--color-orange);
    background: linear-gradient(135deg, var(--color-white), #fff8f0);
}

.event-card.special {
    border-left-color: var(--color-red);
    background: linear-gradient(135deg, var(--color-white), #fff0f3);
}

.event-time {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--color-green);
    white-space: nowrap;
    min-width: 60px;
}

.event-card.highlight .event-time {
    color: var(--color-orange);
}

.event-card.special .event-time {
    color: var(--color-red);
}

.event-info h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--color-dark);
}

.event-artists {
    color: var(--color-orange);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.event-location {
    font-size: 0.85rem;
    color: var(--color-gray);
}

.event-location i {
    color: var(--color-red);
    margin-right: 5px;
}

/* ==================== GALLERY SECTION ==================== */
.gallery {
    background: var(--color-white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 250px;
    gap: 15px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
}

.gallery-item-wide {
    grid-column: span 2;
}

.gallery-item-tall {
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 26, 46, 0.8), transparent);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: var(--transition-normal);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
}

/* ==================== REGISTRATION SECTION ==================== */
.register {
    background: var(--color-gray-light);
}

.register-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.register-info h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--color-dark);
    margin-bottom: 15px;
}

.register-info p {
    color: var(--color-gray);
    line-height: 1.7;
    margin-bottom: 25px;
}

.register-benefits {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.register-benefits li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    color: var(--color-dark-light);
}

.register-benefits i {
    color: var(--color-green);
    font-size: 1.1rem;
}

.register-form {
    background: var(--color-white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-group label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 6px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--color-dark);
    transition: var(--transition-normal);
    background: var(--color-white);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-green);
    box-shadow: 0 0 0 3px rgba(77, 168, 58, 0.15);
}

/* ==================== PROGRAM SECTION ==================== */
.program-section {
    background: var(--color-cream);
}

.program-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.program-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 16px 28px;
    background: var(--color-white);
    border: 2px solid var(--color-green-light);
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 100px;
}

.program-tab:hover {
    border-color: var(--color-green);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(105, 171, 47, 0.2);
}

.program-tab.active {
    background: var(--color-green);
    border-color: var(--color-green);
    color: var(--color-white);
    box-shadow: 0 6px 20px rgba(105, 171, 47, 0.35);
    transform: translateY(-2px);
}

.tab-date {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1;
}

.tab-month {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

.program-day {
    display: none;
}

.program-day.active {
    display: block;
    animation: fadeInUp 0.4s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.program-event {
    display: flex;
    gap: 24px;
    padding: 24px;
    background: var(--color-white);
    border-radius: 16px;
    margin-bottom: 16px;
    border-left: 4px solid var(--color-green);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.program-event:hover {
    transform: translateX(6px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    border-left-color: var(--color-orange);
}

.event-time {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-green);
    white-space: nowrap;
    min-width: 60px;
    padding-top: 2px;
}

.event-details {
    flex: 1;
}

.event-title {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 8px;
    line-height: 1.4;
}

.event-artists {
    font-size: 0.9rem;
    color: var(--color-orange);
    margin-bottom: 6px;
    font-weight: 500;
}

.event-artists i {
    margin-right: 6px;
}

.event-location {
    font-size: 0.85rem;
    color: var(--color-gray);
}

.event-location i {
    color: var(--color-red);
    margin-right: 6px;
}

/* Program responsive */
@media (max-width: 768px) {
    .program-tabs {
        gap: 8px;
    }
    
    .program-tab {
        padding: 12px 20px;
        min-width: 75px;
    }
    
    .tab-date {
        font-size: 1.4rem;
    }
    
    .program-event {
        flex-direction: column;
        gap: 8px;
        padding: 18px;
    }
    
    .event-time {
        font-size: 1rem;
    }
}

/* ==================== MAP SECTION ==================== */
.map-section {
    background: var(--color-white);
}

.map-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    align-items: start;
}

.map-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.map-container iframe {
    display: block;
}

.map-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.map-info-item {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: var(--color-gray-light);
    border-radius: var(--radius-md);
}

.map-info-item i {
    font-size: 1.3rem;
    color: var(--color-green);
    margin-top: 3px;
}

.map-info-item h4 {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 3px;
}

.map-info-item p {
    color: var(--color-gray);
    font-size: 0.9rem;
}

/* ==================== CTA SECTION ==================== */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--color-green-dark), var(--color-green), var(--color-green-light));
    text-align: center;
    color: var(--color-white);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 80 80'%3E%3Cpath d='M0 40 L20 20 L40 40 L20 60 Z' fill='rgba(255,255,255,0.04)'/%3E%3Cpath d='M40 0 L60 20 L40 40 L60 60 L40 80' stroke='rgba(255,255,255,0.04)' fill='none' stroke-width='2'/%3E%3C/svg%3E");
    background-size: 80px 80px;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 1.15rem;
    opacity: 0.9;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ==================== FOOTER ==================== */
.footer {
    background: var(--color-dark);
    color: var(--color-white);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
    width: 80px;
    margin-bottom: 15px;
}

.footer-brand p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer-links-col h4,
.footer-social h4 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--color-white);
}

.footer-links-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links-col li {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links-col li i {
    color: var(--color-green);
    font-size: 0.8rem;
}

.footer-links-col a {
    color: rgba(255,255,255,0.6);
}

.footer-links-col a:hover {
    color: var(--color-green);
}

.social-links {
    display: flex;
    gap: 12px;
    margin-bottom: 25px;
}

.social-links a {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.7);
    font-size: 1rem;
    transition: var(--transition-normal);
}

.social-links a:hover {
    background: var(--color-green);
    color: var(--color-white);
    transform: translateY(-3px);
}

.share-block p {
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
    margin-bottom: 10px;
}

.share-buttons {
    display: flex;
    gap: 10px;
}

.share-btn {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    background: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.6);
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    transition: var(--transition-normal);
}

.share-btn:hover {
    background: var(--color-orange);
    color: var(--color-white);
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    margin-top: 20px;
}

.footer-bottom p {
    color: rgba(255,255,255,0.4);
    font-size: 0.85rem;
}

/* ==================== BACK TO TOP ==================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    background: var(--color-green);
    color: var(--color-white);
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition-normal);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--color-green-dark);
    transform: translateY(-3px);
}

/* ==================== MODAL ==================== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--color-white);
    padding: 50px;
    border-radius: var(--radius-lg);
    text-align: center;
    max-width: 450px;
    width: 90%;
    transform: scale(0.8);
    transition: var(--transition-normal);
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.modal-icon {
    font-size: 4rem;
    margin-bottom: 15px;
}

.modal-content h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-dark);
    margin-bottom: 10px;
}

.modal-content p {
    color: var(--color-gray);
    margin-bottom: 25px;
    line-height: 1.6;
}

/* ==================== RESPONSIVE ==================== */

/* Tablet */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-card:last-child {
        grid-column: span 2;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .traditions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .register-wrapper {
        grid-template-columns: 1fr;
    }
    
    .map-wrapper {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-auto-rows: 200px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    :root {
        --section-padding: 70px 0;
    }
    
    /* Mobile Nav */
    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: var(--color-dark);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 20px;
        transform: translateX(-100%);
        transition: var(--transition-normal);
        z-index: 1000;
    }
    
    .nav-links.active {
        transform: translateX(0);
    }
    
    .nav-links a {
        color: var(--color-white) !important;
        font-size: 1.1rem;
    }
    
    .hamburger {
        display: flex;
    }
    
    .social-links-header {
        display: none;
    }
    
    .logo-img {
        height: 55px;
    }
    
    .logo-nauryz {
        height: 65px;
    }
    
    #header.scrolled .logo-img {
        height: 40px;
    }
    
    #header.scrolled .logo-nauryz {
        height: 50px;
    }

    /* Hero */
    .hero {
        background: url('assets/heromobile.png') no-repeat center center;
        background-size: cover;
        background-color: #2D5A15;
    }
    
    .hero-ornament {
        display: none;
    }
    
    .hero-content {
        padding: 0 16px;
    }
    
    .hero-badge {
        padding: 6px 20px;
        font-size: 0.8rem;
        margin-bottom: 20px;
    }
    
    .hero-title-main {
        font-size: clamp(2rem, 8vw, 3rem);
        letter-spacing: 2px;
    }
    
    .hero-title-sub {
        letter-spacing: 4px;
        font-size: 0.8rem;
    }
    
    .hero-location {
        font-size: 0.9rem;
        margin-bottom: 24px;
    }
    
    .countdown {
        gap: 6px;
    }
    
    .countdown-item {
        min-width: 60px;
        padding: 10px 6px;
    }
    
    .countdown-number {
        font-size: 2rem;
    }
    
    .countdown-separator {
        font-size: 1.5rem;
    }
    
    /* Grids */
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .about-card:last-child {
        grid-column: auto;
        max-width: none;
    }
    
    .traditions-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 180px;
    }
    
    .gallery-item-wide {
        grid-column: span 2;
    }
    
    .gallery-item-tall {
        grid-row: auto;
    }
    
    .register-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .register-form {
        padding: 25px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .map-wrapper {
        grid-template-columns: 1fr;
    }
    
    .map-info {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .map-info-item {
        flex: 1;
        min-width: 200px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .invitation-card {
        padding: 40px 25px;
    }
    
    .program-tabs {
        gap: 8px;
    }
    
    .program-tab {
        padding: 12px 20px;
    }
    
    .event-card {
        flex-direction: column;
        gap: 8px;
    }
}

/* Small phones */
@media (max-width: 480px) {
    .hero {
        background-position: top center;
        background-size: 100% auto;
    }
    
    .hero-title-main {
        font-size: 2rem;
    }
    
    .hero-title-sub {
        letter-spacing: 4px;
    }
    
    .countdown-item {
        min-width: 50px;
        padding: 8px 4px;
    }
    
    .countdown-number {
        font-size: 1.6rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 200px;
    }
    
    .gallery-item-wide {
        grid-column: auto;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 0.8rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
}

/* ==================== PRINT STYLES ==================== */
@media print {
    #header, .hero-scroll, .back-to-top, .cta-section, .countdown {
        display: none;
    }
    
    .hero {
        min-height: auto;
        padding: 40px;
        background: var(--color-green) !important;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }
    
    .section {
        padding: 30px 0;
    }
}
