/* style/promo.css */

/* Base styles for the promo page content */
.page-promo {
    color: #333333; /* Dark text for light body background */
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-top: var(--header-offset, 120px); /* Account for fixed header on desktop and mobile */
    background-color: #FFFFFF; /* Ensure consistency with body background */
}

.page-promo__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.page-promo__hero-section {
    position: relative;
    overflow: hidden;
    background-color: #000000; /* Dark background for the hero section itself */
    color: #FFFFFF; /* Light text for dark hero background */
    text-align: center;
    padding: 80px 0; /* Add some vertical padding */
}

.page-promo__hero-container {
    position: relative;
    max-width: 1400px; /* Wider container for hero image */
    margin: 0 auto;
}

.page-promo__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    opacity: 0.6; /* Slightly dim the image to make text stand out */
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    min-width: unset; /* Override general img rules for hero */
    min-height: unset; /* Override general img rules for hero */
}

.page-promo__hero-content {
    position: relative;
    z-index: 2;
    padding: 40px 20px;
    max-width: 900px;
    margin: 0 auto;
}

.page-promo__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FCBC45; /* Emphasize with a vibrant color */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-promo__hero-description {
    font-size: 1.3em;
    margin-bottom: 40px;
    color: #f0f0f0;
}

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

/* General Button Styles */
.page-promo__button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
    font-size: 1.1em;
    min-width: 180px; /* Ensure buttons are large enough */
    text-align: center;
}

.page-promo__button--register {
    background-color: #FFFFFF; /* White for Register */
    color: #000000; /* Black text */
    border: 2px solid #FFFFFF;
}

.page-promo__button--register:hover {
    background-color: #FCBC45;
    color: #000000;
    transform: translateY(-3px);
    border-color: #FCBC45;
}

.page-promo__button--login {
    background-color: #FCBC45; /* Gold for Login */
    color: #000000; /* Black text */
    border: 2px solid #FCBC45;
}

.page-promo__button--login:hover {
    background-color: #FFFFFF;
    color: #000000;
    transform: translateY(-3px);
    border-color: #FFFFFF;
}

.page-promo__button--large {
    padding: 18px 40px;
    font-size: 1.2em;
    background-color: #FCBC45;
    color: #000000;
    border: 2px solid #FCBC45;
}

.page-promo__button--large:hover {
    background-color: #FFFFFF;
    color: #000000;
    transform: translateY(-3px);
    border-color: #FFFFFF;
}

.page-promo__button--small {
    padding: 10px 20px;
    font-size: 0.9em;
    background-color: #000000;
    color: #FCBC45;
    border: 1px solid #FCBC45;
}

.page-promo__button--small:hover {
    background-color: #FCBC45;
    color: #000000;
    transform: translateY(-2px);
    border-color: #000000;
}

.page-promo__button--link {
    background: none;
    border: 2px solid #000000;
    color: #000000;
    padding: 10px 20px;
    font-size: 1em;
    min-width: unset;
}

.page-promo__button--link:hover {
    background-color: #000000;
    color: #FCBC45;
}

.page-promo__button--login-alt {
    background-color: transparent;
    color: #FCBC45;
    border: 2px solid #FCBC45;
}
.page-promo__button--login-alt:hover {
    background-color: #FCBC45;
    color: #000000;
}


/* Section Titles and Intros */
.page-promo__section-title {
    font-size: 2.5em;
    color: #000000;
    text-align: center;
    margin-bottom: 20px;
    padding-top: 40px;
}

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

.page-promo__section-footer {
    font-size: 1em;
    color: #555555;
    text-align: center;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

/* Grid Layout for Cards */
.page-promo__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.page-promo__card {
    background-color: #f8f8f8;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promo__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-promo__card-image {
    width: 100%; /* Ensure card images fill their container */
    max-width: 400px; /* Max width for consistency */
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    object-fit: cover;
    min-width: 200px; /* Minimum display size */
    min-height: 150px; /* Minimum display size */
}

.page-promo__card-title {
    font-size: 1.5em;
    color: #000000;
    margin-bottom: 15px;
}

.page-promo__card-description {
    font-size: 0.95em;
    color: #666666;
    margin-bottom: 25px;
    flex-grow: 1;
}

/* How to Claim Section */
.page-promo__how-to-claim-section {
    background-color: #f0f0f0;
    padding: 80px 0;
}

.page-promo__steps-list {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 800px;
}

.page-promo__step-item {
    background-color: #FFFFFF;
    border-radius: 10px;
    padding: 25px 30px;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.page-promo__step-title {
    font-size: 1.4em;
    color: #000000;
    margin-bottom: 10px;
}

.page-promo__step-description {
    font-size: 1em;
    color: #555555;
}

.page-promo__cta-block {
    text-align: center;
    margin-top: 50px;
}

.page-promo__cta-text {
    font-size: 1.2em;
    color: #000000;
    margin-bottom: 30px;
    font-weight: bold;
}