/* ============================================
   ARTKOLKHI — ძირითადი სტილები
   ფერთა პალიტრა: თბილი კრემისფერი + ბორდო + ოქრო
   ============================================ */

/* ---------- CSS ცვლადები ---------- */
:root {
    --color-bg:          #FAF7F1;
    --color-bg-alt:      #F3EDE3;
    --color-bg-dark:     #2C1810;
    --color-text:        #3D2B1F;
    --color-text-light:  #7A6B5D;
    --color-heading:     #2C1810;
    --color-burgundy:    #8B1A1A;
    --color-burgundy-light: #A52A2A;
    --color-gold:        #B5860D;
    --color-gold-light:  #D4A843;
    --color-white:       #FFFFFF;
    --color-border:      #E0D5C7;
    --color-overlay:     rgba(44, 24, 16, 0.6);

    --font-heading:      'Noto Serif Georgian', Georgia, serif;
    --font-body:         'Noto Sans Georgian', 'Helvetica Neue', sans-serif;

    --container-max:     1440px;
    --container-padding: 40px;
    --header-height:     80px;

    --transition:        0.3s ease;
    --transition-slow:   0.5s ease;
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--color-text);
    background-color: var(--color-bg);
    line-height: 1.7;
    font-size: 16px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition);
}

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

ul, ol {
    list-style: none;
}

/* ---------- Container ---------- */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* ---------- Wrapper ---------- */
.wrapper {
    width: 100%;
}

.wrapper-alt {
    width: 100%;
    background-color: var(--color-bg-alt);
}

.wrapper-dark {
    width: 100%;
    background-color: var(--color-bg-dark);
    color: var(--color-bg);
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: var(--color-bg);
    border-bottom: 1px solid var(--color-border);
    z-index: 1000;
    transition: box-shadow var(--transition);
}

.site-header.scrolled {
    box-shadow: 0 2px 20px rgba(44, 24, 16, 0.08);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
}

/* ლოგო */
.logo {
    display: flex;
    align-items: baseline;
    gap: 10px;
    flex-shrink: 0;
}

.logo-art {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 6px;
    color: var(--color-heading);
    text-transform: uppercase;
}

.logo-kolkhi {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 400;
    color: var(--color-burgundy);
    font-style: italic;
}

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

/* ნავიგაცია */
.main-nav {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-link {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    color: var(--color-text);
    letter-spacing: 0.5px;
    position: relative;
    padding: 4px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1.5px;
    background-color: var(--color-burgundy);
    transition: width var(--transition);
}

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

.nav-link:hover {
    color: var(--color-burgundy);
}

/* ენის გადამრთველი + ავტორიზაცია */
.lang-switcher {
    display: flex;
    gap: 8px;
}

.lang-btn {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    color: var(--color-text-light);
    padding: 4px 8px;
    transition: color var(--transition);
}

.lang-btn.active {
    color: var(--color-heading);
    font-weight: 600;
}

.lang-btn:hover {
    color: var(--color-burgundy);
}

/* ბურგერი */
.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.burger span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--color-heading);
    transition: all var(--transition);
}

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

.burger.open span:nth-child(2) {
    opacity: 0;
}

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

/* ============================================
   HERO SECTION — მხოლოდ სლაიდერი
   ============================================ */
.hero-section {
    margin-top: var(--header-height);
    padding: 30px 0 60px;
}

/* სლაიდერის გარე ჩარჩო */
.hero-slider-wrap {
    position: relative;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    background-color: var(--color-bg-dark);
}

/* Swiper კონტეინერი */
.hero-slider {
    width: 100%;
    aspect-ratio: 21 / 9;
}

/* სლაიდის ფოტო — მთლიანად ავსებს */
.hero-slider .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* წერტილები — სლაიდერის ქვემოთ */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 20px 0 0;
}

.slider-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--color-border);
    cursor: pointer;
    transition: all var(--transition);
    border: none;
    padding: 0;
}

.slider-dots .dot.active {
    background-color: var(--color-burgundy);
    width: 28px;
    border-radius: 5px;
}

.slider-dots .dot:hover {
    background-color: var(--color-gold);
}

/* ============================================
   ABOUT SECTION — ლამაზი ორ-სვეტიანი
   ============================================ */
.about-wrapper {
    background-color: var(--color-bg-alt);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.about-section {
    padding: 40px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 60px;
    align-items: center;
}

.about-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 600;
    color: var(--color-heading);
    margin-bottom: 24px;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--color-gold);
    margin-top: 16px;
}

.about-text {
    font-size: 17px;
    line-height: 1.9;
    color: var(--color-text);
    margin-bottom: 0;
}

/* სტატისტიკა — ქარდები */
.about-stats {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.stat-card {
    background: var(--color-white);
    border-radius: 16px;
    padding: 28px 32px;
    border: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateX(6px);
    box-shadow: 0 6px 24px rgba(44, 24, 16, 0.08);
    border-color: var(--color-gold-light);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 700;
    color: var(--color-burgundy);
    line-height: 1;
    min-width: 90px;
}

.stat-plus {
    color: var(--color-gold);
}

.stat-label {
    font-size: 14px;
    color: var(--color-text-light);
    letter-spacing: 0.5px;
}

/* ============================================
   LIVE SECTION — მუქი ფონი, გამოყოფილი
   ============================================ */
.live-section {
    background: linear-gradient(135deg, var(--color-bg-dark) 0%, #3D1A10 50%, #4A1A1A 100%);
    padding: 80px 0;
}

.live-section-header {
    text-align: center;
    margin-bottom: 50px;
}

.live-section-badge {
    display: inline-block;
    background: #E53E3E;
    color: var(--color-white);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    padding: 5px 20px;
    border-radius: 4px;
    margin-bottom: 20px;
    animation: livePulse 2s infinite;
}

.live-section-title {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 600;
    color: var(--color-bg);
    margin-bottom: 12px;
}

.live-section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--color-gold);
    margin: 16px auto 0;
}

.live-section-subtitle {
    font-size: 16px;
    color: rgba(250, 247, 241, 0.5);
}

.live-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

/* ლაივ ბანერი */
.live-banner {
    display: flex;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.live-banner:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.live-banner-bg {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 48px 36px;
    text-align: center;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 480px;
}

.live-banner-icon {
    color: var(--color-gold-light);
    margin-bottom: 20px;
    opacity: 0.7;
}

.live-banner-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 600;
    color: var(--color-bg);
    margin-bottom: 8px;
}

.live-banner-text {
    font-size: 14px;
    color: rgba(250, 247, 241, 0.5);
    margin: 0;
}

/* პროგრამის preview */
.program-preview {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 32px;
    display: flex;
    flex-direction: column;
}

.program-preview-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 600;
    color: var(--color-bg);
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.program-preview-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 28px;
    flex: 1;
}

.program-preview-item {
    display: flex;
    gap: 16px;
    align-items: baseline;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.program-preview-item:last-child {
    border-bottom: none;
}

.program-preview-time {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--color-gold-light);
    min-width: 50px;
}

.program-preview-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-bg);
    margin-bottom: 3px;
}

.program-preview-meta {
    font-size: 12px;
    color: rgba(250, 247, 241, 0.4);
}

@keyframes livePulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    padding: 80px 0;
    text-align: center;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 600;
    color: var(--color-bg);
    margin-bottom: 16px;
}

.cta-subtitle {
    font-size: 17px;
    color: rgba(250, 247, 241, 0.7);
    margin-bottom: 32px;
}

/* ღილაკები */
.btn {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    padding: 14px 32px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
}

.btn-primary {
    background-color: var(--color-burgundy);
    color: var(--color-white);
}

.btn-primary:hover {
    background-color: var(--color-burgundy-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(139, 26, 26, 0.3);
}

.btn-outline {
    background-color: transparent;
    color: var(--color-burgundy);
    border: 1.5px solid var(--color-burgundy);
}

.btn-outline:hover {
    background-color: var(--color-burgundy);
    color: var(--color-white);
}

.btn-gold {
    background-color: var(--color-gold);
    color: var(--color-white);
}

.btn-gold:hover {
    background-color: var(--color-gold-light);
    transform: translateY(-2px);
}

.btn-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background-color: var(--color-bg-dark);
    color: var(--color-bg-alt);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 16px;
}

.footer-logo .logo-art {
    color: var(--color-bg);
    font-size: 20px;
}

.footer-logo .logo-kolkhi {
    color: var(--color-gold-light);
    font-size: 18px;
}

.footer-logo-img {
    height: 100px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-desc {
    font-size: 14px;
    color: rgba(250, 247, 241, 0.6);
    line-height: 1.7;
    margin-bottom: 8px;
}

.footer-location {
    font-size: 13px;
    color: rgba(250, 247, 241, 0.4);
}

.footer-heading {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    color: var(--color-bg);
    margin-bottom: 16px;
}

.footer-link {
    display: block;
    font-size: 14px;
    color: rgba(250, 247, 241, 0.6);
    margin-bottom: 10px;
    transition: color var(--transition);
}

.footer-link:hover {
    color: var(--color-gold-light);
}

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

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(250, 247, 241, 0.08);
    color: rgba(250, 247, 241, 0.6);
    transition: all var(--transition);
}

.social-link:hover {
    background-color: var(--color-gold);
    color: var(--color-white);
}

.footer-bottom {
    border-top: 1px solid rgba(250, 247, 241, 0.1);
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(250, 247, 241, 0.4);
}

/* ============================================
   UTILITIES
   ============================================ */
.text-center { text-align: center; }
.text-right  { text-align: right; }
.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }
.mb-20 { margin-bottom: 20px; }
.mb-40 { margin-bottom: 40px; }