/* ============================================
   Pages Styles - kaligrafia.ge
   Styles for inner pages
   ============================================ */

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #3D2814 0%, #5D4020 100%);
    color: #FDF8E8;
    padding: 8rem 2rem 4rem;
    text-align: center;
}

.page-header h1 {
    color: #C9A227;
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
}

.page-header p {
    opacity: 0.9;
    font-size: 1.1rem;
}

/* About Page */
.about-block {
    margin-bottom: 3rem;
    max-width: 800px;
}

.about-block h2 {
    color: #3D2814;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.about-block p {
    color: #555;
    line-height: 1.9;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 0.8rem 0 0.8rem 2rem;
    position: relative;
    color: #555;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #C9A227;
    font-weight: bold;
}

/* Founders Page */
.founders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.founder-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.founder-card:hover {
    transform: translateY(-5px);
}

.founder-image {
    width: 100%;
    background: #F5E6C8;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.founder-image img {
    width: 100%;
    max-height: 350px;
    object-fit: contain;
    border-radius: 10px;
}

.founder-info {
    padding: 1.5rem;
}

.founder-info h3 {
    color: #3D2814;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.founder-title {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Partners */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.partner-card {
    background: #fff;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.partner-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.partner-logo img {
    max-width: 100%;
    max-height: 100%;
}

.partner-card h3 {
    color: #3D2814;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.partner-card p {
    color: #888;
    font-size: 0.9rem;
}

/* History Page */
.history-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
    font-size: 1.1rem;
    color: #555;
}

.scripts-timeline {
    max-width: 900px;
    margin: 0 auto;
}

.script-block {
    display: flex;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: flex-start;
}

.script-letter {
    font-size: 6rem;
    color: #C9A227;
    font-family: 'Noto Serif Georgian', serif;
    line-height: 1;
    text-shadow: 3px 3px 0 rgba(61, 40, 20, 0.1);
    min-width: 120px;
    text-align: center;
}

.script-content h2 {
    color: #3D2814;
    margin-bottom: 0.5rem;
}

.script-period {
    display: inline-block;
    background: #C9A227;
    color: #3D2814;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.script-content p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.unesco-block {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 2rem;
}

.unesco-block h2 {
    color: #3D2814;
    margin-bottom: 1.5rem;
}

.unesco-block p {
    color: #555;
    line-height: 1.9;
}

/* News Page */
.news-grid {
    max-width: 900px;
    margin: 0 auto;
}

.news-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.news-card.featured {
    border-left: 5px solid #C9A227;
}

.news-date {
    background: #C9A227;
    color: #3D2814;
    padding: 1.5rem;
    text-align: center;
    float: left;
    margin-right: 1.5rem;
    margin-bottom: 1rem;
    border-radius: 0 0 10px 0;
}

.news-date .day {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.news-date .month {
    display: block;
    font-size: 0.9rem;
}

.news-date .year {
    display: block;
    font-size: 0.8rem;
    opacity: 0.8;
}

.news-content {
    padding: 1.5rem;
}

.news-content h2 {
    color: #3D2814;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.news-content h3 {
    color: #3D2814;
    font-size: 1.1rem;
    margin: 1.5rem 0 0.8rem;
}

.news-content p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.news-content ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.news-content ul li {
    color: #555;
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.announcement-box {
    background: linear-gradient(135deg, #FDF8E8 0%, #F5E6C8 100%);
    border-left: 4px solid #C9A227;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 0 10px 10px 0;
}

.announcement-box h3 {
    color: #C9A227;
    margin-bottom: 0.5rem;
}

.news-tags {
    margin-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.news-tags span {
    background: #F5E6C8;
    color: #3D2814;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.85rem;
}

/* Blog Page */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.blog-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-image {
    height: 200px;
    background: linear-gradient(135deg, #C9A227 0%, #E8D48B 100%);
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-content {
    padding: 1.5rem;
}

.blog-category {
    background: #C9A227;
    color: #3D2814;
    padding: 0.2rem 0.8rem;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 600;
}

.blog-content h3 {
    color: #3D2814;
    font-size: 1.2rem;
    margin: 1rem 0 0.5rem;
}

.blog-content p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.7;
}

.read-more {
    display: inline-block;
    margin-top: 1rem;
    color: #C9A227;
    font-weight: 600;
}

.read-more:hover {
    color: #3D2814;
}

.coming-soon-notice {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: #F5E6C8;
    border-radius: 10px;
}

.coming-soon-notice p {
    color: #666;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .page-header {
        padding: 6rem 1rem 3rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .script-block {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .script-letter {
        font-size: 4rem;
    }

    .founders-grid {
        grid-template-columns: 1fr;
    }

    .news-date {
        float: none;
        margin: 0 0 1rem 0;
        border-radius: 10px 10px 0 0;
    }
}