/* ============================================
   Index/Homepage Styles - kaligrafia.ge
   ============================================ */

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, rgba(61, 40, 20, 0.3) 0%, rgba(139, 105, 20, 0.25) 100%),
                url('../images/hero.jpg') center/cover no-repeat;
    color: #3D2814;
    text-align: center;
    padding: 2rem;
}

.hero-content {
    max-width: 800px;
    z-index: 2;
    background: rgba(255, 253, 245, 0.85);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.hero-badge {
    display: inline-block;
    background: var(--gold);
    color: #3D2814;
    padding: 0.6rem 1.8rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.hero h1 {
    color: #3D2814;
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.hero h1 span {
    color: var(--gold);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: #555;
    line-height: 1.9;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* About Section */
.about-section {
    background: var(--parchment);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px var(--shadow);
}

.about-content h2 {
    margin-bottom: 1.5rem;
}

.about-content p {
    color: #555;
    margin-bottom: 1.5rem;
}

/* Date Highlight Box */
.date-box {
    display: inline-flex;
    align-items: center;
    gap: 1.5rem;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    padding: 1.5rem 3rem;
    border-radius: 15px;
    margin: 2rem 0;
    box-shadow: 0 10px 30px rgba(201, 162, 39, 0.3);
}

.date-box .date-number {
    font-family: 'Noto Serif Georgian', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--burgundy-dark);
    line-height: 1;
}

.date-box .date-text {
    text-align: left;
}

.date-box .date-month {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--burgundy-dark);
}

.date-box .date-title {
    font-size: 0.9rem;
    color: var(--burgundy);
}

/* Timeline Section */
.timeline-section {
    background: var(--cream);
}

.timeline {
    max-width: 700px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 140px;
    top: 35px;
    bottom: -2.5rem;
    width: 2px;
    background: var(--gold);
}

.timeline-item:last-child::before {
    display: none;
}

.timeline-date {
    min-width: 120px;
    font-weight: 600;
    color: var(--burgundy);
    font-size: 0.95rem;
    text-align: right;
}

.timeline-dot {
    width: 20px;
    height: 20px;
    background: var(--gold);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 5px;
    box-shadow: 0 0 0 5px rgba(201, 162, 39, 0.2);
    z-index: 1;
}

.timeline-content h4 {
    margin-bottom: 0.5rem;
    color: var(--burgundy-dark);
}

.timeline-content p {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--burgundy-dark) 0%, var(--burgundy) 100%);
    color: var(--cream);
    text-align: center;
    padding: 5rem 2rem;
}

.cta-section h2 {
    color: var(--gold);
    margin-bottom: 1rem;
}

.cta-section p {
    max-width: 600px;
    margin: 0 auto 2rem;
    opacity: 0.9;
}

/* Responsive */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .date-box {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem 2rem;
    }

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

    .timeline-item {
        flex-direction: column;
        gap: 1rem;
    }

    .timeline-date {
        text-align: left;
    }

    .timeline-item::before {
        display: none;
    }
}
