@import url(common.css);

/* ===== GENERAL LAYOUT & TYPOGRAPHY ===== */
body {
    background: whitesmoke;
}

.subtitle {
    color: var(--main-primary-color);
    font-weight: bold;
}

.body-content {
    width: 80%;
    margin: auto;
}

.card {
    background-color: white;
    border-radius: 12px;
    padding: 20px 20px;
    margin: 10px;
}

/* ===== FIRST SECTION ===== */
.first-section {
    display: flex;
    gap: 30px;
    margin: auto;
}

.first-section-text {
    flex: 2;
}

.first-section-image {
    flex: 2;
}

.first-section-image img {
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.first-section h3 {
    font-size: 3.5vh;
}

/* ===== SECOND SECTION ===== */
.second-section-grid {
    display: grid;
    grid-template-columns: 1fr; 
    gap: 5px;
}

/* ===== STATS SECTION ===== */
.stats-container {
    display: grid;
    grid-template-columns: 1fr; 
    gap: 24px; 
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.stat-card {
    background-color: #fffbf5; 
    border: 2px dashed #ebdccb; 
    border-radius: 16px; 
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    transition: transform 0.2s ease;
}

.stat-card:hover {
    transform: translateY(-5px); 
}

.card-title {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    color: #a67c70; 
    margin-bottom: 10px;
}

.card-value {
    font-size: 32px;
    font-weight: 800;
    color: #b84a42; 
    margin-bottom: 15px;
}

.card-desc {
    font-size: 1.5vh;
    line-height: 1.5;
    color: #5a4e4a; 
    margin: 0;
}

/* ===== CTA SECTION ===== */
.cta-container {
    display: flex;
    align-items: flex-start; 
    justify-content: center; 
    gap: 40px; 
    padding: 20px;
    font-family: 'Arial', sans-serif; 
    background-color: #f4f6f8; 
}

.cta-action-group {
    display: flex;
    flex-direction: column;
    gap: 8px; 
}

.btn-gold {
    display: inline-block;
    background-color: var(--main-primary-color); 
    color: #222;
    text-decoration: none;
    font-weight: 700;
    padding: 14px 28px;
    border-radius: 50px; 
    font-size: 16px;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 10px 20px -5px var(--second-primary-color); 
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 25px -5px var(--second-primary-color);
}

.info-text {
    margin: 0;
    font-size: 13px;
    color: #7f8c8d; 
    margin-left: 5px; 
}

.info-text strong {
    color: #5e686d; 
    font-weight: 700;
}

.cta-link-group {
    display: flex;
    align-items: center;
    height: 50px; 
}

.link-pdf {
    color: #333;
    text-decoration: none;
    font-size: 16px;
}

.link-pdf:hover {
    text-decoration: underline;
}

/* ===== MEDIA QUERIES ===== */

/* Min-width (Desktop Expansion) */
@media (min-width: 768px) {
    .stats-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 600px) {
    .second-section-grid {
        grid-template-columns: 1fr 1fr; 
    }
}

/* Max-width (Mobile Adaptation) */
@media (max-width: 600px) {
    .first-section {
        flex-direction: column;
    }

    .cta-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
    }
    
    .info-text {
        margin-left: 0;
    }
}