/* Hero Section */
.hero {
    background: linear-gradient(to bottom, #fff0c2, #fdf3e2);
    padding: 2rem 0 0 0;
    text-align: center;
    height: 50vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.hero-text h2 {
    font-size: 1.5rem;
    color: #333;
}

.hero-category {
    display: inline-block;
    background-color: #f17c2a;
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    margin: 0.2rem;
    transition: background 0.3s ease;
}

.hero-category.active {
    background-color: #ffffff;
    color: #f17c2a;
}

.hidden {
    display: none !important;
}

.hero-text h1 {
    font-size: 3rem;
    font-weight: 700;
    margin: 0.5rem 0;
}

.hero-text .orange {
    color: #f17c2a;
}

.hero-text .green {
    color: #72a31e;
}

.hero-text p {
    font-size: 1.1rem;
    margin: 1rem 0 2rem;
    color: #444;
    line-height: 1.6;
}

.menu-button {
    background: #f17c2a;
    color: white;
    padding: 0.9rem 2rem;
    border: none;
    border-radius: 999px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background 0.3s ease;
}

.menu-button:hover {
    background: #e66914;
}

.hero-image img {
    max-width: 300px;
    border-radius: 16px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

/* Scroll Indicator */
.scroll-indicator {
    font-size: 2rem;
    margin-top: 2rem;
    color: #f17c2a;
    animation: bounce 1.5s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(8px);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .nav {
        display: none;
        /* Simplify header on small screens */
    }

    .logo span {
        font-size: 1.2rem;
    }

    .card {
        padding: 1rem !important;
    }

    .special-top {
        flex-direction: column;
        align-items: center;
    }
}

/* Section 2 Styling */
.menu-preview {
    background: #fffbe7;
    padding: 4rem 0;
    text-align: center;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 3rem;
}

.card-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    margin-bottom: 3rem;
}

.menu-card {
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.menu-card img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.menu-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.menu-card p {
    font-size: 0.95rem;
    color: #444;
    margin-bottom: 0.5rem;
}

.price {
    font-weight: 600;
    margin-bottom: 1rem;
}

.order-button {
    background-color: #ffcc00;
    color: #000;
    font-weight: 600;
    text-align: center;
    padding: 0.6rem 1rem;
    border-radius: 30px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.order-button:hover {
    background-color: #e6b800;
}

.order-button.green {
    background-color: #c9f3df;
    color: #005c3c;
}

.order-button.green:hover {
    background-color: #a6e4c8;
}

/* Category colors */
.crepe-color {
    color: #db3e00;
}

.juice-color {
    color: #f9a825;
}

.saj-color {
    color: #007e3f;
}

.special-color {
    color: #cc3300;
}

/* CTA Section */
.menu-cta {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    text-align: left;
}

.menu-cta h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.see-menu-button {
    background-color: #ade2cd;
    color: #003d2b;
    padding: 0.7rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease;
}

.see-menu-button:hover {
    background-color: #90d8bb;
}

.menu-footer-text {
    font-size: 0.95rem;
    color: #444;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Section 3 - Crepes */
.crepes-section {
    background: #fbe3c6;
    padding: 4rem 0;
    text-align: center;
}

.crepes-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #2c1f0e;
}

.crepes-subtitle {
    font-size: 1.1rem;
    color: #4c3a29;
    margin-bottom: 2.5rem;
}

.crepes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}

.crepe-card {
    background-color: #fdf1e0;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    justify-content: center;
}

.crepe-card img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.crepe-card h3 {
    font-size: 1.2rem;
    color: #2c1f0e;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.crepe-card p {
    font-size: 0.95rem;
    color: #4d3a2b;
    margin-bottom: 1rem;
}



.crepe-button {
    background-color: #f26722;
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease;
}

.crepe-button:hover {
    background-color: #d45311;
}

/* Section 4 - Saj Sandwiches */
.saj-section {
    background: #f5dcc1;
    padding: 4rem 0;
    text-align: center;
}

.saj-title {
    font-size: 2rem;
    font-weight: 700;
    color: #3b2a1a;
    margin-bottom: 0.5rem;
}

.saj-subtitle {
    font-size: 1.1rem;
    color: #5a4634;
    margin-bottom: 2.5rem;
}

.saj-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}

.saj-card {
    background-color: #fef0e1;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.saj-card img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.saj-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #3b2a1a;
    margin-bottom: 0.5rem;
}

.saj-card p {
    font-size: 0.95rem;
    color: #4a3724;
    margin-bottom: 1rem;
}

.saj-button {
    background-color: #f26722;
    color: #fff;
    font-weight: 600;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.saj-button:hover {
    background-color: #d45311;
}

/* Section 5 - Juices */
.juice-section {
    background: linear-gradient(to bottom, #fef9d7, #e8f7cc);
    padding: 4rem 0;
    text-align: center;
}

.juice-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2e2e1f;
    margin-bottom: 0.5rem;
}

.juice-subtitle {
    font-size: 1.1rem;
    color: #4b4b3b;
    max-width: 700px;
    margin: 0 auto 2.5rem;
}

.juice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}

.juice-card {
    border-radius: 14px;
    padding: 1.5rem;
    text-align: center;
    background-color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.juice-card img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.juice-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.juice-card p {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 1rem;
}

/* Juice button color variants */
.juice-button {
    background-color: #f26722;
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease;
    width: fit-content;
}

.juice-button:hover {
    background-color: #d45311;
}

.juice-button.orange {
    background-color: #f69e29;
}

.juice-button.orange:hover {
    background-color: #da8a20;
}

.juice-button.green {
    background-color: #7cc947;
}

.juice-button.green:hover {
    background-color: #5bb330;
}

.juice-button.purple {
    background-color: #a63f8c;
}

.juice-button.purple:hover {
    background-color: #902e78;
}

/* Final CTA */
.juice-cta {
    margin-top: 3rem;
}

.juice-cta-button {
    background-color: #f26722;
    color: white;
    font-size: 1rem;
    padding: 0.9rem 2rem;
    border-radius: 30px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.3s ease;
}

.juice-cta-button:hover {
    background-color: #d45311;
}

/* Section 7 - Specials & Promotions */
.specials-section {
    /* background: linear-gradient(to bottom right, #ffe28a, #d6f5c6); */
    padding: 4rem 0;
    text-align: center;
}

.specials-title {
    font-size: 2.1rem;
    font-weight: 700;
    color: #2c1e0e;
    margin-bottom: 0.5rem;
}

.specials-subtitle {
    font-size: 1.05rem;
    color: #4a3a29;
    margin-bottom: 2.5rem;
}

.specials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.special-card {
    background-color: #fff9ed;
    border-radius: 16px;
    overflow: hidden;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    padding: 1rem;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.06);
}

.special-top {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.special-card img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
}

.special-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    justify-content: space-between;
}

.special-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2e2e2e;
    margin: 0;
}

.special-info p {
    font-size: 0.95rem;
    color: #444;
    margin: 0.2rem 0 0.8rem;
}

/* select first p in special-info */
.special-info p:first-of-type {
    display: none;
}

.special-btn {
    display: inline-block;
    font-weight: 600;
    padding: 0.45rem 1rem;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.9rem;
    color: white;
    transition: background 0.3s ease;
    text-wrap: nowrap;
}

.special-btn.red {
    background-color: #f26722;
}

.special-btn.red:hover {
    background-color: #d65311;
}

.special-btn.green {
    background-color: #76c949;
}

.special-btn.green:hover {
    background-color: #5bb330;
}

.special-btn.beige {
    background-color: #d7c5a5;
    color: #2e2e2e;
}

.special-btn.beige:hover {
    background-color: #c7b08d;
}

/* Promo Tags */
.promo-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
}

.promo {
    padding: 0.8rem 1rem;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
    line-height: 1.2;
    color: white;
    min-width: 100px;
}

.promo.green {
    background-color: #76c949;
}

.promo.orange {
    background-color: #f69e29;
}

.cta-big {
    background-color: #f26722;
    color: white;
    font-weight: 700;
    padding: 0.9rem 1.5rem;
    border-radius: 30px;
    font-size: 1rem;
    text-decoration: none;
    transition: background 0.3s ease;
}

.cta-big:hover {
    background-color: #d55311;
}


/* Suggestions */
.suggestions {
    margin-top: 4rem;
}

.suggestions h2 {
    font-size: 1.3rem;
    color: #2f2f2f;
    margin-bottom: 1rem;
}

.suggested-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.suggestion {
    background: #d9f2d8;
    padding: 1rem;
    border-radius: 12px;
    width: 140px;
}

.suggestion img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 0.5rem;
}

.simple-footer {
    margin-top: 4rem;
    text-align: left;
    font-size: 0.9rem;
    color: #444;
}

.footer-links {
    display: flex;
    gap: 4rem;
    margin-top: 1rem;
}


.product-section {
    background: #fbe3c6;
    padding: 4rem 0;
    text-align: center;
}

.title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #2c1f0e;
}

.subtitle {
    font-size: 1.1rem;
    color: #4c3a29;
    margin-bottom: 2.5rem;
}

.cards-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.card {
    background-color: #fdf1e0;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    justify-content: center;
    min-width: 250px;
    max-width: 300px;
    width: 100%;
}

.card-button-order {
    background-color: #f26722;
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease;
}

.card-button-view {
    background-color: white;
    color: #f26722;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease;
    font-size: 14px;

}

.special-btn.view-item {
    background-color: white;
    color: #f26722;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease;
}

.card-button-order:hover {
    background-color: #d45311;
}

.card-buttons {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.card img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.card h3 {
    font-size: 1.2rem;
    color: #2c1f0e;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.card p {
    font-size: 0.95rem;
    color: #4d3a2b;
    margin-bottom: 1rem;
    flex: 1;
}