/* assets/css/style.css - მთავარი სტილები */

/* საზოგადო სტილები */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans Georgian', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #2d3748;
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ღილაკები */
.btn {
    display: inline-block;
    padding: 12px 24px;
    text-decoration: none;
    border: none;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background-color: #1a365d;
    color: white;
}

.btn-primary:hover {
    background-color: #2d4a66;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: #1a365d;
    border: 2px solid #1a365d;
}

.btn-secondary:hover {
    background-color: #1a365d;
    color: white;
}

/* ალერტები */
.alert {
    padding: 15px;
    margin: 20px auto;
    border-radius: 5px;
    position: relative;
    max-width: 1200px;
}

.alert-info {
    background-color: #e6f3ff;
    color: #0066cc;
    border-left: 4px solid #0066cc;
}

.alert-success {
    background-color: #e6ffe6;
    color: #009900;
    border-left: 4px solid #009900;
}

.alert-error {
    background-color: #ffe6e6;
    color: #cc0000;
    border-left: 4px solid #cc0000;
}

.close-alert {
    position: absolute;
    right: 15px;
    top: 15px;
    cursor: pointer;
    font-size: 20px;
    font-weight: bold;
}

/* ჰერო სექცია */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 10%; /* Desktop: ჰორიზონტალურად ცენტრში, ვერტიკალურად 10% ზემოდან */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(26, 54, 93, 0.8), rgba(45, 74, 102, 0.6));
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-text {
    max-width: 600px;
    color: white;
    text-align: left;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 20px;
    opacity: 0.9;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* სტატისტიკა */
.stats-section {
    padding: 80px 0;
    background-color: #f7fafc;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item {
    background: white;
    padding: 40px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    color: #4a5568;
}

/* სექციების ზოგადი სტილები */
section {
    padding: 60px 0;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #1a365d;
    font-weight: 600;
}

.view-all-link {
    color: #1a365d;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 16px;
    border: 1px solid #1a365d;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.view-all-link:hover {
    background-color: #1a365d;
    color: white;
}

/* სიახლეების გრიდი */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.news-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
}

.news-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.news-content {
    padding: 20px;
}

.news-content h3 {
    margin-bottom: 10px;
}

.news-content h3 a {
    color: #1a365d;
    text-decoration: none;
    font-size: 1.3rem;
}

.news-content h3 a:hover {
    color: #2d4a66;
}

.news-excerpt {
    color: #666;
    margin-bottom: 15px;
}

.news-meta {
    color: #999;
    font-size: 0.9rem;
}

/* ღონისძიებები */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.event-card {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    display: flex;
    gap: 20px;
    transition: transform 0.3s ease;
}

.event-card:hover {
    transform: translateY(-3px);
}

.event-date {
    text-align: center;
    background-color: #1a365d;
    color: white;
    padding: 15px;
    border-radius: 8px;
    min-width: 80px;
}

.event-day {
    font-size: 2rem;
    font-weight: 700;
}

.event-month {
    font-size: 0.9rem;
}

.event-content h3 a {
    color: #1a365d;
    text-decoration: none;
    font-size: 1.2rem;
}

.event-location {
    color: #666;
    font-size: 0.9rem;
    margin-top: 10px;
}

/* ეპიზოდები */
.episodes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.episode-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.episode-thumbnail {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.episode-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(26, 54, 93, 0.8);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.episode-content {
    padding: 20px;
}

.episode-meta {
    display: flex;
    justify-content: space-between;
    color: #666;
    font-size: 0.9rem;
    margin-top: 10px;
}

/* გალერეა */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    height: 250px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item.featured {
    grid-column: span 2;
    height: 350px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: white;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* CTA სექცია */
.contact-cta {
    background: linear-gradient(45deg, #1a365d, #2d4a66);
    color: white;
    text-align: center;
    padding: 80px 0;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* რესპონსივი დიზაინი */
@media (max-width: 768px) {
    .hero-image {
        object-position: center center; /* Mobile: ცენტრში */
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .section-header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .gallery-item.featured {
        grid-column: span 1;
        height: 250px;
    }
    
    .event-card {
        flex-direction: column;
        text-align: center;
    }
}