/* style/promo.css */
.page-promo {
    padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
    color: #333333; /* Dark text for light body background */
    background-color: #f8f8f8;
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
}

.page-promo__section {
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.page-promo__hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px 40px;
    background: linear-gradient(135deg, #FFD700 0%, #8B0000 100%);
    color: #ffffff;
    position: relative;
    overflow: hidden;
    border-radius: 0 0 20px 20px;
}

.page-promo__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    z-index: 0;
}

.page-promo__hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.page-promo__hero-title {
    font-size: 3.8em;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
    line-height: 1.2;
}

.page-promo__hero-description {
    font-size: 1.4em;
    margin-bottom: 40px;
    max-width: 800px;
    line-height: 1.5;
}

.page-promo__hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-promo__button {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1em;
    transition: all 0.3s ease;
    white-space: nowrap;
    cursor: pointer;
    border: none;
}

.page-promo__button--primary {
    background-color: #FFD700;
    color: #8B0000;
    box-shadow: 0 6px 15px rgba(255, 215, 0, 0.4);
}

.page-promo__button--primary:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.6);
}

.page-promo__button--secondary {
    background-color: #8B0000;
    color: #FFD700;
    border: 2px solid #FFD700;
    box-shadow: 0 6px 15px rgba(139, 0, 0, 0.4);
}

.page-promo__button--secondary:hover {
    background-color: #a00000;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(139, 0, 0, 0.6);
}

.page-promo__section-title {
    font-size: 2.8em;
    color: #8B0000;
    text-align: center;
    margin-bottom: 25px;
    font-weight: 700;
}

.page-promo__section-intro {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px;
    color: #555555;
}

.page-promo__features-grid, .page-promo__promo-grid, .page-promo__steps-grid, .page-promo__tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-promo__feature-card, .page-promo__promo-card, .page-promo__step-card, .page-promo__tip-card {
    background-color: #fcfcfc;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 250px;
}

.page-promo__feature-card:hover, .page-promo__promo-card:hover, .page-promo__step-card:hover, .page-promo__tip-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.page-promo__feature-title, .page-promo__promo-card-title, .page-promo__step-title, .page-promo__tip-title {
    font-size: 1.6em;
    color: #8B0000;
    margin-bottom: 15px;
    font-weight: 600;
}

.page-promo__feature-description, .page-promo__promo-card-description, .page-promo__step-description, .page-promo__tip-description {
    font-size: 1em;
    color: #666666;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-promo__promo-card .page-promo__button {
    margin-top: auto;
}

.page-promo__promo-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    min-width: 200px;
    min-height: 200px;
}

.page-promo__vip-program {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-promo__vip-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    object-fit: contain;
    margin-top: 30px;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    min-height: 200px;
}

.page-promo__cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-promo__hero-title {
        font-size: 3em;
    }
    .page-promo__section-title {
        font-size: 2.2em;
    }
    .page-promo__promo-image, .page-promo__vip-image {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .page-promo__hero-title {
        font-size: 2.2em;
    }
    .page-promo__hero-description {
        font-size: 1.1em;
    }
    .page-promo__hero-buttons, .page-promo__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-promo__button {
        width: 100%;
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-promo__section {
        margin: 20px auto;
        padding: 15px;
    }
    .page-promo__section-title {
        font-size: 1.8em;
    }
    .page-promo__section-intro {
        font-size: 0.95em;
        margin-bottom: 30px;
    }
    .page-promo__features-grid, .page-promo__promo-grid, .page-promo__steps-grid, .page-promo__tips-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .page-promo__feature-card, .page-promo__promo-card, .page-promo__step-card, .page-promo__tip-card {
        padding: 20px;
        min-height: unset;
    }
    .page-promo__feature-title, .page-promo__promo-card-title, .page-promo__step-title, .page-promo__tip-title {
        font-size: 1.4em;
    }
    .page-promo__promo-image, .page-promo__vip-image {
        width: 100%;
        max-width: 100%;
        height: auto;
        min-width: 200px;
        min-height: 200px;
    }
    .page-promo__hero-section {
        padding: 60px 15px 30px;
    }
}

@media (max-width: 480px) {
    .page-promo__hero-title {
        font-size: 1.8em;
    }
    .page-promo__section-title {
        font-size: 1.6em;
    }
    .page-promo__button {
        font-size: 0.9em;
        padding: 10px 20px;
    }
}