/* Sholenyky Global Styles */
:root {
    --primary: #FED701;
    --dark: #1A1A1A;
    --accent-red: #990000;
    --bg-white: #FFFFFF;
    --text-main: #1A1A1A;
    --text-light: #666666;
    --font-main: 'Montserrat', sans-serif;
    --spacing-unit: 8px;
    --shadow: 0 4px 12px rgba(0,0,0,0.1);
    --border-radius: 12px;
}

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

body {
    font-family: var(--font-main);
    background-color: var(--bg-white);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: var(--bg-white);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

header .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary);
}

.btn-order {
    background: var(--primary);
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 700;
    box-shadow: var(--shadow);
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-order:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

/* Sections */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 40px;
    text-transform: uppercase;
}

/* Hero */
.hero {
    height: 80vh;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('../images/item_all.PNG');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
}

.hero-content h1 {
    font-size: 64px;
    font-weight: 800;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Tradition */
.tradition-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}
/* Flavor Cards */
.flavors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.flavor-card {
    border-radius: var(--border-radius);
    padding: 30px;
    color: white;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.flavor-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: all 0.5s ease;
    z-index: 0;
    transform: scale(1.1);
}

.flavor-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.6);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

.flavor-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: color 0.3s;
}

.flavor-card.traditional { background-color: var(--primary); color: var(--dark); }
.flavor-card.cumin { background-color: var(--dark); }
.flavor-card.spicy { background-color: var(--accent-red); }
.flavor-card.fasting { background-color: #f5f5f5; color: var(--dark); border: 1px solid #ddd; }

.flavor-card:hover .flavor-bg { opacity: 1; transform: scale(1); }
.flavor-card:hover .flavor-overlay { opacity: 1; }
.flavor-card:hover .flavor-content, .flavor-card:hover h3, .flavor-card:hover .desc, .flavor-card:hover .price, .flavor-card:hover strong { color: white !important; }

.flavor-card .badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 20px;
    background: rgba(255,255,255,0.2);
    align-self: flex-start;
    transition: background 0.3s;
}

.flavor-card.traditional .badge, .flavor-card.fasting .badge { background: rgba(0,0,0,0.1); }
.flavor-card:hover .badge { background: rgba(255,255,255,0.2) !important; border-color: transparent !important; color: white !important; }

.flavor-card h3 {
    font-size: 28px;
    margin-bottom: 15px;
    font-weight: 800;
}

.flavor-card .desc {
    margin-bottom: 20px;
    font-size: 14px;
    flex-grow: 1;
}

.flavor-card .meta {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 15px;
    font-size: 12px;
    margin-bottom: 20px;
    transition: border-color 0.3s;
}
.flavor-card.traditional .meta, .flavor-card.fasting .meta { border-top-color: rgba(0,0,0,0.1); }
.flavor-card:hover .meta { border-top-color: rgba(255,255,255,0.3) !important; }

.flavor-card .price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.flavor-card .price {
    font-size: 24px;
    font-weight: 800;
}

.btn-buy {
    background: white;
    color: var(--dark);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    transition: background 0.3s, color 0.3s, transform 0.2s;
    border: none;
    cursor: pointer;
}

.flavor-card.traditional .btn-buy, .flavor-card.fasting .btn-buy { background: var(--dark); color: white; }
.flavor-card:hover .btn-buy { background: var(--primary) !important; color: var(--dark) !important; }
.btn-buy:hover { transform: scale(1.05); }

.tradition-content p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.tradition-image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

/* How to Eat Accordion */
.how-accordion {
    display: flex;
    gap: 15px;
    height: 450px;
    width: 100%;
}

.how-panel {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    flex: 1;
    transition: flex 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    cursor: pointer;
}

.how-panel:hover {
    flex: 3;
}

.how-panel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.how-panel:hover img {
    transform: scale(1.05); /* replace hover scale from earlier */
}

.how-panel .overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 30px 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
}

.how-panel h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 5px;
    white-space: nowrap;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease 0.1s;
}

.how-panel:hover h3 {
    opacity: 1;
    transform: translateY(0);
}

.how-panel p {
    font-size: 14px;
    color: var(--primary);
    white-space: nowrap;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease 0.2s;
}

.how-panel:hover p {
    opacity: 1;
    transform: translateY(0);
}

.how-panel .vertical-title {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) rotate(-90deg);
    transform-origin: center bottom;
    font-size: 22px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    white-space: nowrap;
    transition: opacity 0.3s;
    color: white;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.8);
}

.how-panel:hover .vertical-title {
    opacity: 0;
}

@media (max-width: 768px) {
    .how-accordion {
        flex-direction: column;
        height: 800px;
    }
    .how-panel .vertical-title {
        transform: translateX(-50%);
        bottom: 20px;
    }
}

/* Footer */
footer {
    background: var(--dark);
    color: white;
    padding: 60px 0;
    text-align: center;
}

footer .logo img {
    height: 80px;
    margin-bottom: 20px;
    filter: brightness(0.8);
}

footer .socials {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Responsiveness */
@media (max-width: 768px) {
    .tradition-grid {
        grid-template-columns: 1fr;
    }
    .hero-content h1 {
        font-size: 40px;
    }
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-white);
        padding: 20px;
        box-shadow: 0 10px 10px rgba(0,0,0,0.1);
        text-align: center;
        gap: 15px;
    }
    .nav-links.active {
        display: flex;
    }
    .header-btn {
        display: none;
    }
    .hamburger {
        display: block !important;
        font-size: 28px;
        cursor: pointer;
        user-select: none;
    }
}

.hamburger {
    display: none;
}


/* Info Cards Section */
.info-section {
    padding: 60px 0;
    margin-top: 40px;
}

.info-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.info-card {
    background: #fdfdfd;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #eee;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: var(--primary);
}

.info-card h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--dark);
}

.info-card p {
    font-size: 15px;
    color: var(--text-light);
}

/* CTA Block */
.cta-block {
    text-align: center;
    background: #fdfdfd;
    border-radius: 20px;
    border: 2px solid var(--primary);
    margin: 80px auto;
    padding: 60px 40px;
}

.cta-block h2 {
    margin-bottom: 20px;
    font-size: 32px;
}

.cta-block p {
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-size: 18px;
    color: var(--text-light);
}

.cta-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
}
