/* Black Friday 2025 Landing Page Styles */

/* Reset and Base Styles */
.bf2025-page {
    font-family: 'Source Sans Pro', Arial, sans-serif;
    color: #fff;
    line-height: 1.6;
}

.bf2025-page * {
    box-sizing: border-box;
}

/* Hero Section - Dark Background */
.bf2025-hero {
    background-color: #231f20;
    padding: 60px 20px 40px;
    text-align: center;
    position: relative;
}

.bf2025-hero-content {
    max-width: 900px;
    margin: 0 auto;
}

/* Black Friday Logo/Title */
.bf2025-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    gap: 10px;
}

.bf2025-logo-text {
    display: flex;
    align-items: baseline;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.bf2025-logo-black {
    font-size: 72px;
    font-weight: 700;
    color: #fff;
    text-transform: lowercase;
    letter-spacing: -2px;
    line-height: 1;
}

.bf2025-logo-friday {
    font-size: 72px;
    font-weight: 700;
    color: #FFC20E;
    text-transform: lowercase;
    letter-spacing: -2px;
    line-height: 1;
}

.bf2025-logo-icon {
    width: 80px;
    height: auto;
    margin-left: 20px;
}

/* Hero Text */
.bf2025-headline {
    font-size: 28px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.3;
}

.bf2025-subheading {
    font-size: 48px;
    font-weight: 700;
    color: #FFC20E;
    margin-bottom: 10px;
    letter-spacing: -1px;
    line-height: 1.2;
}

.bf2025-secondary-text {
    font-size: 20px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 30px;
}

/* Date Banner */
.bf2025-date-banner {
    display: inline-block;
    background-color: #fff;
    color: #231f20;
    font-size: 36px;
    font-weight: 800;
    padding: 5px 40px;
    margin: 20px 0;
    border: 3px solid #231f20;
    line-height: 1.3;
}

/* Disclaimer */
.bf2025-disclaimer {
    font-size: 14px;
    color: #ccc;
    margin-top: 20px;
    font-style: italic;
}

/* Value Proposition Section */
.bf2025-value-prop {
    background-color: #000;
    padding: 40px 20px;
    text-align: center;
}

.bf2025-value-prop-content {
    max-width: 900px;
    margin: 0 auto;
}

.bf2025-value-text {
    font-size: 24px;
    line-height: 1.6;
    color: #fff;
}

.bf2025-value-text .highlight {
    color: #FFC20E;
    font-weight: 700;
}

/* Campaign Details Section */
.bf2025-campaign {
    background-color: #1a1a1a;
    background-image: linear-gradient(180deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #fff;
    padding: 60px 20px 20px;
}

.bf2025-campaign-content {
    max-width: 1100px;
    margin: 0 auto;
}

.bf2025-campaign-header {
    background-color: #FFC20E;
    color: #000;
    display: inline-block;
    padding: 10px 30px;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
    border-radius: 0 30px 30px 0;
}

.bf2025-campaign-intro {
    font-size: 24px;
    margin-bottom: 40px;
    line-height: 1.6;
    color: #fff;
}

/* Packages Section */
.bf2025-packages {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.bf2025-package {
    flex: 1;
    padding: 30px;
    border-left: 5px solid #FFC20E;
    background-color: rgba(255, 255, 255, 0.05);
}

.bf2025-package-title {
    font-size: 24px;
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 5px;
    text-transform: uppercase;
    color: #fff;
}

.bf2025-package-discount {
    font-size: 24px;
    font-weight: 700;
    color: #FFC20E;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.bf2025-package-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bf2025-package-list li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    font-size: 20px;
    line-height: 1.5;
    color: #fff;
}

.bf2025-package-list li:before {
    content: "●";
    position: absolute;
    left: 0;
    color: #FFC20E;
    font-size: 24px;
    line-height: 1.2;
}

/* Footer Logo Section */
.bf2025-footer-logo {
    background-color: #1a1a1a;
    background-image: linear-gradient(180deg, #2d2d2d 0%, #1a1a1a 100%);
    padding: 40px 20px 60px;
    text-align: center;
}

.bf2025-footer-logo img {
    max-width: 200px;
    height: auto;
    filter: brightness(0) invert(1);
}

/* CTA Section */
.bf2025-cta-section {
    background-color: #2d2d2d;
    padding: 0px 20px 80px;
    text-align: center;
}

.bf2025-cta-button {
    display: inline-block;
    background-color: #FFC20E;
    color: #000;
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 20px 60px;
    border-radius: 50px;
    text-decoration: none;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(255, 194, 14, 0.3);
}

.bf2025-cta-button:hover {
    background-color: #ffcd3d;
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(255, 194, 14, 0.4);
    text-decoration: none;
    color: #000;
}

.bf2025-cta-button:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(255, 194, 14, 0.3);
}

/* Responsive Styles */
@media (min-width: 768px) {
    .bf2025-logo-black,
    .bf2025-logo-friday {
        font-size: 96px;
    }

    .bf2025-logo-icon {
        width: 100px;
    }

    .bf2025-headline {
        font-size: 32px;
    }

    .bf2025-subheading {
        font-size: 56px;
    }

    .bf2025-secondary-text {
        font-size: 24px;
    }

    .bf2025-date-banner {
        font-size: 40px;
        padding: 20px 50px;
    }

    .bf2025-packages {
        flex-direction: row;
        gap: 40px;
    }

    .bf2025-package {
        padding: 40px;
    }

    .bf2025-campaign-header {
        font-size: 28px;
        padding: 12px 40px;
    }

    .bf2025-cta-button {
        font-size: 28px;
        padding: 22px 70px;
    }
}

@media (min-width: 992px) {
    .bf2025-hero {
        padding: 80px 20px 100px;
    }

    .bf2025-logo-black,
    .bf2025-logo-friday {
        font-size: 120px;
    }

    .bf2025-logo-icon {
        width: 120px;
    }

    .bf2025-headline {
        font-size: 36px;
    }

    .bf2025-subheading {
        font-size: 64px;
    }

    .bf2025-campaign {
        padding: 80px 20px 40px;
    }

    .bf2025-campaign-intro {
        font-size: 24px;
    }

    .bf2025-package-list li {
        font-size: 20px;
    }

    .bf2025-cta-section {
        padding: 0px 20px 100px;
    }

    .bf2025-cta-button {
        font-size: 32px;
        padding: 25px 80px;
    }
}

/* Print styles */
@media print {
    .bf2025-page {
        background: white;
        color: black;
    }
}

