/*
Theme Name: Breakfast Landing Page
Theme URI: https://example.com/breakfast-landing
Author: Antigravity
Author URI: https://example.com
Description: A modern, minimalist landing page theme for breakfast recipes.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: breakfast-landing
*/

:root {
    /* Pastel Palette - Default Values */
    --primary: #FFB7B2;
    /* Soft Coral/Peach */
    --primary-dark: #FF9E99;
    /* Slightly darker for hover */
    --secondary: #E2F0CB;
    /* Sage Green */
    --accent: #FFDAC1;
    /* Soft Peach/Cream */
    --accent-blue: #C7CEEA;
    /* Soft Lavender/Blue */
    --bg-color: #FDFBF7;
    /* Warm Off-white */
    --white: #ffffff;
    --text-color: #4A4A4A;
    /* Soft Charcoal */
    --text-light: #7a7a7a;

    /* Spacing & Layout */
    --container-width: 1100px;
    --border-radius: 12px;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.05);

    /* Fonts */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--text-color);
    text-align: center;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.highlight {
    color: #ff9189;
    /* A bit stronger than primary for text readability */
    font-style: italic;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 183, 178, 0.4);
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    border: 2px solid var(--primary);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 183, 178, 0.6);
}

.btn-large {
    font-size: 1.2rem;
    padding: 1.2rem 3rem;
}

.center-btn {
    text-align: center;
    margin-top: 2rem;
}

/* Animations */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 183, 178, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(255, 183, 178, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 183, 178, 0);
    }
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes wobble {

    0%,
    100% {
        transform: translateX(0%);
        transform-origin: 50% 50%;
    }

    15% {
        transform: translateX(-6px) rotate(-6deg);
    }

    30% {
        transform: translateX(3px) rotate(6deg);
    }

    45% {
        transform: translateX(-3px) rotate(-3.6deg);
    }

    60% {
        transform: translateX(2px) rotate(2.4deg);
    }

    75% {
        transform: translateX(-1px) rotate(-1.2deg);
    }
}

.wobble:hover {
    animation: wobble 1s both;
}

/* Scroll Reveal Classes */
[data-reveal] {
    opacity: 0;
    transition: all 0.8s ease-out;
}

[data-reveal="bottom"] {
    transform: translateY(30px);
}

[data-reveal="left"] {
    transform: translateX(-30px);
}

[data-reveal="right"] {
    transform: translateX(30px);
}

[data-reveal="zoom"] {
    transform: scale(0.9);
}

.revealed {
    opacity: 1;
    transform: translate(0) scale(1);
}

/* Header / Hero */
.hero {
    padding: 4rem 0 3rem;
    text-align: center;
    background: linear-gradient(135deg, #fff5f5 0%, #f4fcf0 100%);
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 2rem;
}

.hero-carousel-container {
    margin: 2rem auto;
    max-width: 800px;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: nowrap;
    overflow-x: auto;
    /* Fallback */
    scroll-snap-type: x mandatory;
    padding-bottom: 1rem;
}

.carousel-track::-webkit-scrollbar {
    display: none;
}

.carousel-track .slide {
    flex: 0 0 250px;
    scroll-snap-align: center;
}

.carousel-track img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

.carousel-track img:hover {
    transform: scale(1.05);
}

/* Features */
.features {
    padding: 4rem 0;
}

.feature-list {
    list-style: none;
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.feature-list li {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 500;
}

.feature-list li i {
    color: var(--primary);
    font-size: 1.2rem;
    background: #fff0f0;
    padding: 10px;
    border-radius: 50%;
}

/* Preview / Recipes Grid */
.preview {
    padding: 4rem 0;
    background-color: #f9fdf5;
    /* Very subtle green tint */
}

.recipe-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.recipe-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

.recipe-card:hover {
    transform: translateY(-5px);
}

.recipe-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-body {
    padding: 1.5rem;
}

.card-body h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.card-body .meta {
    font-size: 0.8rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.more-options {
    text-align: center;
    margin-top: 3rem;
    background: var(--secondary);
    padding: 2rem;
    border-radius: var(--border-radius);
    color: #5a7050;
}

/* Authority */
.authority {
    padding: 5rem 0;
}

.auth-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.auth-image img {
    width: 100%;
    max-width: 400px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border: 5px solid var(--white);
}

.auth-text {
    flex: 1;
}

.auth-text h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.auth-text p {
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

/* Bonuses */
.bonuses {
    padding: 4rem 0;
    background: #fffaf0;
    /* Subtle orange tint */
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.bonus-card {
    text-align: center;
    background: var(--white);
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.bonus-img img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.bonus-card h4 {
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.price-tag del {
    color: #999;
    font-size: 0.9rem;
    margin-right: 10px;
}

.price-tag span {
    color: #4CAF50;
    font-weight: 700;
    font-size: 1.1rem;
}

/* Pain Points */
.pain-points {
    padding: 4rem 0;
    background: #fff;
}

.pain-list {
    list-style: none;
    max-width: 700px;
    margin: 0 auto;
}

.pain-list li {
    padding: 1rem;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
}

.pain-list li i {
    color: #ff6b6b;
    font-size: 1.3rem;
}

/* Advantages */
.advantages {
    padding: 4rem 0;
    background: #f0f7ff;
}

.adv-list {
    list-style: none;
    max-width: 700px;
    margin: 0 auto;
}

.adv-list li {
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
}

.adv-list li i {
    color: #4CAF50;
    font-size: 1.3rem;
}

/* Testimonials */
.testimonials {
    padding: 4rem 0;
}

.testimonial-track {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding: 1rem;
}

.t-slide {
    flex: 0 0 280px;
}

.t-slide img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

/* Offer */
.offer {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--secondary) 0%, #d4e8b0 100%);
    position: relative;
    overflow: hidden;
}

/* Decorative background circle */
.offer::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}

.offer-container {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 20px;
    padding: 3rem;
    display: flex;
    gap: 3rem;
    align-items: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.offer-image {
    flex: 1;
}

/* Floating Animation */
@keyframes float {
    0% {
        transform: translateY(0px) rotate(-3deg);
    }

    50% {
        transform: translateY(-10px) rotate(-3deg);
    }

    100% {
        transform: translateY(0px) rotate(-3deg);
    }
}

.offer-image img {
    width: 100%;
    transform: rotate(-3deg);
    border-radius: 10px;
    animation: float 4s ease-in-out infinite;
}

.offer-content {
    flex: 1.2;
    text-align: center;
}

.offer-content h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.offer-features {
    list-style: none;
    margin-bottom: 2rem;
    display: inline-block;
    text-align: left;
}

.offer-features li {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #666;
}

.price-box {
    background: #f9f9f9;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 0.9rem;
}

.installments {
    font-size: 1rem;
    margin: 5px 0;
}

.big-price {
    font-size: 3.5rem;
    font-weight: 800;
    color: #4CAF50;
    line-height: 1;
}

.cash-price {
    font-size: 0.9rem;
    color: #666;
}

.scarcity {
    margin-top: 10px;
    font-size: 0.8rem;
    color: #ff6b6b;
    font-weight: 700;
    letter-spacing: 1px;
}

/* Guarantee & Delivery */
.guarantee-delivery {
    padding: 4rem 0;
}

.guarantee-box {
    background: #fff;
    border: 2px dashed var(--primary);
    padding: 2rem;
    text-align: center;
    border-radius: var(--border-radius);
    margin-bottom: 4rem;
}

.guarantee-box h3 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.delivery-info {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.delivery-image {
    flex: 1;
}

.delivery-image img {
    width: 100%;
    border-radius: var(--border-radius);
}

.delivery-text {
    flex: 1.5;
}

.delivery-text h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.delivery-text ul {
    list-style: none;
}

.delivery-text li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.delivery-text li i {
    font-size: 1.2rem;
    color: var(--accent-blue);
    width: 20px;
    text-align: center;
}

/* FAQ */
.faq {
    padding: 4rem 0;
    background: #fdfdfd;
}

.accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    border-bottom: 1px solid #eee;
}

.accordion-header {
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-family: var(--font-body);
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

.accordion-header:hover {
    background: #f9f9f9;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 1.5rem;
}

.accordion-content p {
    padding-bottom: 1.5rem;
    color: #666;
}

.accordion-item.active .accordion-content {
    max-height: 200px;
    /* Approximated height */
}

.accordion-item.active .accordion-header i {
    transform: rotate(180deg);
}

footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 2rem;
    font-size: 0.9rem;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    :root {
        --container-width: 100%;
    }

    .container {
        padding: 0 15px;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    .hero {
        padding: 6rem 0 2rem;
        /* More top padding for nav clearance if needed, or just visual balance */
        border-bottom-left-radius: 30px;
        border-bottom-right-radius: 30px;
    }

    .hero h1 {
        font-size: 2rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .btn {
        padding: 0.8rem 2rem;
        width: 100%;
        /* Full width buttons on mobile */
        max-width: 300px;
        display: block;
        margin: 0 auto;
    }

    .feature-list {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .feature-list li {
        padding: 1rem;
        font-size: 0.95rem;
    }

    .auth-content,
    .offer-container,
    .delivery-info {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        padding: 1.5rem;
        /* Reduced padding for offer container */
    }

    .auth-image img {
        max-width: 280px;
    }

    .auth-text h2 {
        font-size: 1.8rem;
    }

    .offer-container {
        padding: 2rem 1.5rem;
    }

    .offer-image img {
        max-width: 250px;
    }

    .big-price {
        font-size: 3rem;
    }

    .delivery-info {
        gap: 2rem;
    }

    .delivery-text li {
        justify-content: flex-start;
        /* Keep aligned left or center? center looks better if text-align is center */
        text-align: left;
    }

    /* Adjust delivery list for centered layout */
    .delivery-text ul {
        display: inline-block;
        text-align: left;
    }

    .offer-content {
        flex: 1.2;
        text-align: center;
    }

    .offer-content h3 {
        font-family: var(--font-heading);
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    .offer-features {
        list-style: none;
        margin-bottom: 2rem;
        display: inline-block;
        text-align: left;
    }

    .offer-features li {
        margin-bottom: 0.5rem;
        font-weight: 600;
        color: #666;
    }
}