@import url('https://fonts.googleapis.com/css2?family=Comic+Neue:wght@700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Comic Sans MS', 'Arial Black', sans-serif;
    background: #fff2db;
}

/* Hero Section */
.hero-section {
    background: #fff2db;
    position: relative;
}

/* Keep the image full width */
.hero-image {
    width: 100%;
    display: block;
}

/* Position the logo specifically in the top left of the image */
.logo-overlay {
    position: absolute;
    top: 27px;   /* Adjust this to align vertically with your baked-in logo */
    left: 40px;  /* Adjust this to move it further from the right edge */
    font-family: 'Comic Neue', cursive;
    font-size: 2.2rem;
    font-weight: bold;
    color: black;
    margin: 0;
    z-index: 10;
}

/* Position the slogan specifically in the top right of the image */
.slogan-overlay {
    position: absolute;
    top: 32px;   /* Adjust this to align vertically with your baked-in logo */
    right: 40px;  /* Adjust this to move it further from the right edge */
    font-family: 'Comic Neue', cursive;
    font-size: 1.8rem;
    font-weight: bold;
    color: black;
    margin: 0;
    z-index: 10;
}

.main-nav {
    display: flex;
    justify-content: center; /* Centered the links */
    gap: 30px;
    padding: 20px 0;
    background: #fff2db;
    border-bottom: 4px solid black; /* Moved the border here */
}

.main-nav a {
    color: black;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: bold;
    transition: color 0.3s;
}

.main-nav a:hover {
    color: #FF6B35;
}

.hero-image {
    width: 100%;
    display: block;
}

/* Testimonial Section */
.testimonial-section {
    padding: 40px 20px;
    background: #fff2db;
    border-bottom: 4px solid black;
}

.testimonial-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
}

.testimonial-scroll {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px 60px;
    scrollbar-width: none;
}

.testimonial-scroll::-webkit-scrollbar {
    display: none;
}

.testimonial-img {
    flex-shrink: 0;
    width: 400px;
    height: auto;
    border: 4px solid black;
    box-shadow: 8px 8px 0 black;
}

.scroll-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #fff2db;
    border: 4px solid black;
    font-size: 3rem;
    width: 60px;
    height: 60px;
    cursor: pointer;
    z-index: 10;
    font-weight: bold;
    box-shadow: 5px 5px 0 black;
}

.scroll-arrow:hover {
    background: #FFD93D;
}

.scroll-arrow.left {
    left: 0;
}

.scroll-arrow.right {
    right: 0;
}

.testimonial-link {
    text-align: center;
    margin-top: 30px;
}

.testimonial-link a {
    display: inline-block;
    padding: 15px 40px;
    background: #4A90E2;
    color: #fff2db;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: bold;
    border: 4px solid black;
    box-shadow: 6px 6px 0 black;
}

.testimonial-link a:hover {
    background: #357ABD;
}

/* Pricing Section */
.pricing-section {
    padding: 60px 20px;
    background: #F5F5DC;
    border-bottom: 4px solid black;
}

.pricing-section h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 40px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.price-card {
    background: white;
    border: 4px solid black;
    padding: 30px;
    box-shadow: 8px 8px 0 black;
    position: relative;
}

.price-card.featured {
    background: #FFD93D;
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: #FF6B35;
    color: white;
    padding: 8px 20px;
    border: 3px solid black;
    font-weight: bold;
}

.price-card h3 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.price {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #FF6B35;
}

.price span {
    font-size: 1.2rem;
    color: #666;
}

.price-card ul {
    list-style: none;
    margin-bottom: 25px;
}

.price-card li {
    padding: 10px 0;
    border-bottom: 2px solid #eee;
    font-size: 1.1rem;
}

.cta-btn {
    width: 100%;
    padding: 15px;
    background: #4A90E2;
    color: white;
    border: 4px solid black;
    font-size: 1.3rem;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 5px 5px 0 black;
    font-family: inherit;
}

.cta-btn:hover {
    background: #357ABD;
}

.cta-btn.primary {
    background: #FF6B35;
}

.cta-btn.primary:hover {
    background: #E55A24;
}

/* Features Section */
.features-section {
    padding: 80px 20px;
    background: #fff2db;
}

.features-section h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    line-height: 1.1;
    text-align: center;
}

.features-grid {
    display: flex;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: stretch; /* Makes both boxes the same height */
}

.feature-box {
    flex: 1; /* Makes both columns equal width */
    background: #fdfaf5;
    padding: 40px;
    border: 4px solid #000;
    box-shadow: 8px 8px 0 #000;
}

.feature-box h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    line-height: 1.1;
}

.feature-box p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #333;
}

    .feature-box ul {
        list-style-type: none; /* Removes default bullets if preferred */
        padding: 0;
    }

    .feature-box li {
        margin-bottom: 25px; /* This creates the gap between the lines */
        line-height: 1.5;    /* This adds space between lines of the same item */
        display: block;      /* Ensures the margin is respected */
    }

    .feature-box li::before {
        content: "✓";
        margin-right: 10px;
        font-weight: bold;
        color: #FF6B35;
    }

    .feature-box li:last-child {
        margin-bottom: 0;
    }

/* The Ragrets Strike-through */
.strikethrough {
    position: relative;
    display: inline-block;
}

.strikethrough::after {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 3px;
    background: #FF6B35;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .features-grid {
        flex-direction: column;
    }
}

/* Footer */
footer {
    background: #2C1810;
    color: white;
    padding: 30px;
    text-align: center;
    border-top: 4px solid black;
}

footer p {
    margin: 10px 0;
}

/* Responsive */
@media (max-width: 768px) {
    .main-nav {
        flex-direction: column;
        gap: 10px;
    }
    
    .testimonial-img {
        width: 300px;
    }
    
    .price-card.featured {
        transform: scale(1);
    }
    
    .scroll-arrow {
        width: 50px;
        height: 50px;
        font-size: 2rem;
    }
}

/* ===== DISCLAIMER SECTION ===== */

        .disclaimer-section {
            background: #FFD93D;
            border-top: 4px solid black;
            border-bottom: 4px solid black;
            padding: 40px 20px;
            text-align: center;
            position: relative;
        }

        .disclaimer-section::before {
            content: '⚠';
            display: block;
            font-size: 3rem;
            margin-bottom: 10px;
        }

        .disclaimer-inner {
            max-width: 700px;
            margin: 0 auto;
            border: 4px solid black;
            padding: 30px;
            background: #fff2db;
            box-shadow: 8px 8px 0 black;
            position: relative;
        }

        .disclaimer-inner::before {
            content: 'DISCLAIMER';
            position: absolute;
            top: -18px;
            left: 50%;
            transform: translateX(-50%);
            background: #FF6B35;
            color: white;
            padding: 6px 20px;
            font-family: 'Comic Neue', cursive;
            font-weight: bold;
            font-size: 1rem;
            border: 3px solid black;
            white-space: nowrap;
            letter-spacing: 3px;
        }

        .disclaimer-inner p {
            font-family: 'Comic Neue', cursive;
            font-size: 1.15rem;
            line-height: 1.7;
            color: #333;
        }

        .disclaimer-inner strong {
            color: #FF6B35;
        }

        .disclaimer-inner .wink {
            font-size: 2rem;
            display: block;
            margin-top: 12px;
        }

        /* --- ADVANCED MOBILE OVERRIDES --- */

.mobile-warning {
    display: none; /* Hidden on Desktop */
    background-color: #333333; /* The Grey Container */
    color: #ffffff; /* White Text */
    text-align: center;
    padding: 20px 15px;
    font-family: 'Comic Neue', cursive;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.9rem;
    border-bottom: 4px solid #FF6B35; /* The Orange Border */
    width: 100%;
}

@media screen and (max-width: 768px) {
    .mobile-warning {
        display: block; /* Just toggle visibility - styling already applied above */
    }

    /* 1. Fix the Hero Overlays */
    /* Since they are baked into an image, we stack them or hide them if they overlap */
    .logo-overlay, .slogan-overlay {
        position: relative; /* Switch from absolute to relative */
        top: 0;
        left: 0;
        right: 0;
        text-align: center;
        padding: 10px;
        background: #fff2db; /* Matches your body bg */
        width: 100%;
        font-size: 1.5rem; /* Shrink font for mobile */
    }
    
    .logo-overlay {
        border-bottom: 2px solid black;
    }

    /* 2. Fix the Testimonial Scroller */
    .testimonial-scroll {
        padding: 20px 10px; /* Less padding on sides */
        gap: 15px;
    }

    .testimonial-img {
        width: 85vw; /* Make images nearly full width of the screen */
        box-shadow: 4px 4px 0 black; /* Smaller shadow for smaller screen */
    }

    /* Hide the arrows on mobile - users prefer to swipe with their thumb */
    .scroll-arrow {
        display: none;
    }

    /* 3. Pricing & Features */
    .pricing-grid {
        grid-template-columns: 1fr; /* Force single column */
    }

    .price-card.featured {
        transform: scale(1); /* Remove the 'pop' scale so it fits the screen width */
        margin: 20px 0;
    }

    .features-grid {
        flex-direction: column;
        gap: 20px;
    }

    .feature-box {
        padding: 20px;
    }

    .feature-box h2 {
        font-size: 1.8rem;
    }

    /* 4. Navigation */
    .main-nav {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        padding: 15px 0;
    }

    .main-nav a {
        font-size: 1.1rem;
        border-bottom: 2px solid transparent;
        width: 100%;
        text-align: center;
        padding: 5px 0;
    }

    /* 5. Typography Adjustments */
    h2, .pricing-section h2 {
        font-size: 2rem !important;
    }

    .disclaimer-inner {
        padding: 20px;
        width: 95%;
    }
}