/* style/promotions-holiday-specials.css */

.page-promotions-holiday-specials {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #E0E0E0; /* Light grey for general text on dark background */
    background-color: #1A202C; /* Dark background */
}

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

.page-promotions-holiday-specials__hero {
    background: linear-gradient(135deg, #1A202C 0%, #3a455a 100%); /* Dark gradient */
    padding: 80px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    overflow: hidden;
}

.page-promotions-holiday-specials__hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:abstract_pattern,geometric,dark_luxury]') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 0;
}

.page-promotions-holiday-specials__hero-content {
    position: relative;
    z-index: 1;
    flex: 1;
    max-width: 600px;
    text-align: left;
    padding-left: 20px;
}

.page-promotions-holiday-specials__hero-image-wrapper {
    position: relative;
    z-index: 1;
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-right: 20px;
}

.page-promotions-holiday-specials__hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.page-promotions-holiday-specials__hero-image:hover {
    transform: translateY(-5px);
}

.page-promotions-holiday-specials__title {
    font-size: 3.5em;
    color: #FFD700; /* Gold for main title */
    margin-bottom: 20px;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.page-promotions-holiday-specials__subtitle {
    font-size: 1.4em;
    color: #C0C0C0; /* Lighter grey for subtitle */
    margin-bottom: 30px;
}

.page-promotions-holiday-specials__section {
    padding: 60px 0;
    background-color: #1A202C;
}

.page-promotions-holiday-specials__section-title {
    font-size: 2.5em;
    color: #FFD700; /* Gold for section titles */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.page-promotions-holiday-specials__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    margin: 15px auto 0;
    border-radius: 2px;
}

.page-promotions-holiday-specials__text {
    font-size: 1.1em;
    color: #E0E0E0;
    margin-bottom: 20px;
    text-align: justify;
}

.page-promotions-holiday-specials__text--center {
    text-align: center;
}

.page-promotions-holiday-specials__list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.page-promotions-holiday-specials__list li {
    background-color: #2a3447; /* Slightly lighter dark for list items */
    padding: 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.page-promotions-holiday-specials__list li:hover {
    transform: translateY(-5px);
}

.page-promotions-holiday-specials__icon {
    font-size: 1.8em;
    color: #FFD700;
}

.page-promotions-holiday-specials__offer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-promotions-holiday-specials__offer-card {
    background-color: #2a3447;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    padding-bottom: 20px;
}

.page-promotions-holiday-specials__offer-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
}

.page-promotions-holiday-specials__offer-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 4px solid #FFD700;
}

.page-promotions-holiday-specials__offer-title {
    font-size: 1.8em;
    color: #FFD700;
    padding: 20px;
    margin-bottom: 10px;
}

.page-promotions-holiday-specials__offer-description {
    font-size: 1em;
    color: #C0C0C0;
    padding: 0 20px;
    margin-bottom: 15px;
    flex-grow: 1;
}

.page-promotions-holiday-specials__offer-detail {
    font-size: 0.9em;
    color: #a0a0a0;
    padding: 0 20px;
    margin-bottom: 20px;
}

.page-promotions-holiday-specials__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
    text-align: center;
    margin: 0 10px;
}

.page-promotions-holiday-specials__btn--primary {
    background-color: #FFD700; /* Gold button */
    color: #1A202C; /* Dark text on gold */
}

.page-promotions-holiday-specials__btn--primary:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
}

.page-promotions-holiday-specials__btn--secondary {
    background-color: #4a5568; /* Darker grey for secondary buttons */
    color: #FFD700; /* Gold text on dark */
    border: 2px solid #FFD700;
}

.page-promotions-holiday-specials__btn--secondary:hover {
    background-color: #FFD700;
    color: #1A202C;
    transform: translateY(-2px);
}

.page-promotions-holiday-specials__cta-group {
    text-align: center;
    margin-top: 40px;
}

.page-promotions-holiday-specials__steps-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-promotions-holiday-specials__steps-list li {
    background-color: #2a3447;
    padding: 25px;
    margin-bottom: 15px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    position: relative;
    padding-left: 60px;
}

.page-promotions-holiday-specials__steps-list li::before {
    content: attr(data-step);
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #FFD700;
    color: #1A202C;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 1.1em;
}

.page-promotions-holiday-specials__steps-list li:nth-child(1)::before { content: '1'; }
.page-promotions-holiday-specials__steps-list li:nth-child(2)::before { content: '2'; }
.page-promotions-holiday-specials__steps-list li:nth-child(3)::before { content: '3'; }
.page-promotions-holiday-specials__steps-list li:nth-child(4)::before { content: '4'; }

.page-promotions-holiday-specials__inline-link {
    color: #FFD700; /* Gold for inline links */
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-promotions-holiday-specials__inline-link:hover {
    color: #e6c200;
    text-decoration: underline;
}

.page-promotions-holiday-specials__faq-item {
    background-color: #2a3447;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-promotions-holiday-specials__faq-question {
    font-size: 1.4em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-promotions-holiday-specials__faq-answer {
    font-size: 1em;
    color: #C0C0C0;
}

.page-promotions-holiday-specials__final-cta {
    text-align: center;
    padding: 80px 0;
    background-color: #1A202C;
}

@media (max-width: 992px) {
    .page-promotions-holiday-specials__hero {
        flex-direction: column;
        text-align: center;
        padding: 60px 0;
    }

    .page-promotions-holiday-specials__hero-content {
        max-width: 100%;
        padding-left: 0;
        padding-bottom: 40px;
    }

    .page-promotions-holiday-specials__hero-image-wrapper {
        padding-right: 0;
    }

    .page-promotions-holiday-specials__title {
        font-size: 2.8em;
    }

    .page-promotions-holiday-specials__subtitle {
        font-size: 1.2em;
    }

    .page-promotions-holiday-specials__section-title {
        font-size: 2em;
    }

    .page-promotions-holiday-specials__offer-grid {
        grid-template-columns: 1fr;
    }

    .page-promotions-holiday-specials__list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-promotions-holiday-specials__hero {
        padding: 40px 0;
    }

    .page-promotions-holiday-specials__title {
        font-size: 2.2em;
    }

    .page-promotions-holiday-specials__subtitle {
        font-size: 1.1em;
    }

    .page-promotions-holiday-specials__section-title {
        font-size: 1.8em;
    }

    .page-promotions-holiday-specials__btn {
        padding: 10px 20px;
        font-size: 1em;
        margin: 5px;
    }

    .page-promotions-holiday-specials__faq-question {
        font-size: 1.2em;
    }
}