/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html {
    scroll-behavior: smooth;
}

:root {
    --brand-teal: #164A41;
    --brand-pink: #F0A093;
    --brand-light: #FDFBF7;
    --text-dark: #164A41;
    --text-white: #ffffff;
    --bg-gray: #f4f4f4;
}

body {
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--brand-light);
}

/* Navigation */
nav {
    background: var(--brand-teal);
    padding: 1rem 5%;
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-icon {
    background-color: var(--brand-pink);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-teal);
    font-size: 1.2rem;
}

.logo-text {
    font-size: 1.4rem;
    font-weight: bold;            
    color: var(--brand-pink);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Desktop Nav Links */
.nav-links {
    display: flex;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: rgba(255,255,255,0.85);
    margin-left: 1.5rem;
    font-weight: 500;
    transition: color 0.3s;
    font-size: 0.95rem;
    text-transform: uppercase;
}

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

.cta-btn {
    background-color: var(--brand-pink);
    color: var(--brand-teal) !important;
    padding: 0.6rem 1.5rem;
    border-radius: 4px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s;
}

.cta-btn:hover {
    background-color: #fff;
    color: var(--brand-teal) !important;
}

/* Hamburger Menu Icon (Hidden on Desktop) */
.hamburger {
    display: none;
    font-size: 1.8rem;
    color: var(--brand-pink);
    cursor: pointer;
}

/* --- SCROLL FIX FOR ANCHORS --- */
section[id], .category[id], footer[id] {
    scroll-margin-top: 90px;
}        

/* Hero Section */
.hero {
    position: relative;
    height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-white);
    padding: 0 20px;
    
    /* Background Fallback */
    background-color: #222;
    
    /* Hero Image */
    background: linear-gradient(rgba(22, 74, 65, 0.7), rgba(22, 74, 65, 0.6)), url('https://images.unsplash.com/photo-1555939594-58d7cb561ad1?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80'); 
    
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-content {
    background: rgba(0,0,0,0.3);
    padding: 2rem;
    border-radius: 10px;
    backdrop-filter: blur(2px);
    border: 1px solid rgba(255,255,255,0.1);
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
    color: var(--brand-pink);
    text-transform: uppercase;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero .subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 300;
    letter-spacing: 1px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    color: #fff;
}

.hero-btn {
    background-color: var(--brand-pink);
    color: var(--brand-teal);
    padding: 1rem 3rem;
    text-decoration: none;
    border: 2px solid var(--brand-pink);
    font-size: 1.1rem;
    transition: all 0.3s;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
    border-radius: 4px;
    display: inline-block;
}

.hero-btn:hover {
    background-color: transparent;
    color: white;
    border-color: white;
}

/* Sections */
section {
    padding: 5rem 5%;
}

.section-title {
    text-align: center;
    margin-bottom: 0.5rem;
    font-size: 2.5rem;
    color: var(--brand-teal);
    font-weight: 300;
    text-transform: uppercase;
}

.section-separator {
    width: 80px;
    height: 3px;
    background-color: var(--brand-pink);
    margin: 0 auto 3rem auto;
}

/* Combos Section */
.combos-section {
    background-color: var(--brand-teal);
    color: white;
    position: relative;
}

.combos-section .section-title {
    color: var(--brand-pink);
}

.combo-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.combo-card {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 0;
    text-align: center;
    flex: 1 1 250px;
    max-width: 320px;
    transition: transform 0.3s;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.combo-card:hover {
    transform: translateY(-8px);
    background: rgba(255,255,255,0.15);
    border-color: var(--brand-pink);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.combo-header {
    background: rgba(0,0,0,0.2);
    padding: 2rem 1rem;
}

.combo-qty {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--brand-pink);
    line-height: 1;
}

.combo-label {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.8;
    margin-top: 0.5rem;
}

.combo-body {
    padding: 2rem 1rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.combo-divider {
    width: 40px;
    height: 2px;
    background-color: var(--brand-pink);
    margin: 0 auto 1.5rem auto;
}

.combo-flavors {
    font-size: 1.2rem;
    font-style: italic;
}

.combo-card.featured {
    border: 2px solid var(--brand-pink);
    background: rgba(255,255,255,0.12);
    transform: scale(1.05);
}

.combo-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

/* Menu Grid */
.category {
    margin-bottom: 5rem;
}

.category-header {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.category-header h3 {
    font-size: 2rem;
    color: var(--brand-teal);
    margin-right: 1rem;
    font-weight: bold;
}

.category-line {
    flex-grow: 1;
    height: 2px;
    background: #eee;
}

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

/* Cards */
.card {
    background: white;
    border-bottom: 4px solid var(--brand-pink);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: box-shadow 0.3s;
    border-radius: 8px 8px 0 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.card:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.card-img {
    height: 220px;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s;
}

.card:hover .card-img {
    transform: scale(1.05);
}

.card-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-title {
    font-size: 1.25rem;
    color: var(--brand-teal);
    font-weight: bold;
    margin-bottom: 0.5rem;
    display: flex;
    justify-content: space-between;
}

.card-desc {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.highlight-tag {
    background: var(--brand-teal);
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    text-transform: uppercase;
    align-self: flex-start;
    margin-bottom: 0.5rem;
}

/* Cake Table */
.cake-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

.cake-table th {
    text-align: left;
    color: var(--brand-pink);
    font-weight: bold;
    font-size: 1rem;
    padding: 0.8rem 0;
    border-bottom: 2px solid var(--brand-teal);
}

.cake-table td {
    padding: 0.8rem 0;
    border-bottom: 1px solid #eee;
}

/* Right Align the Slices Column */
.cake-table th:last-child,
.cake-table td:last-child {
    text-align: right;
}

/* Shared Flavor Box */
.flavors-box {
    background: white;
    border: 1px solid #ddd;
    border-left: 5px solid var(--brand-pink);
    padding: 2rem;
    margin-top: 2rem;
    border-radius: 8px;
}

.flavors-title {
    font-weight: bold;
    color: var(--brand-teal);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.flavor-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    list-style: none;
    padding: 0;
}

.flavor-list li {
    background: var(--bg-gray);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Footer */
.footer {
    background-color: var(--brand-teal);
    color: white;
    text-align: center;
    padding: 4rem 5%;
}

.footer h2 {
    color: var(--brand-pink);
    margin-bottom: 0.5rem;
    font-size: 2rem;
}

.footer-links {
    margin: 2rem 0;
}

.footer-links p {
    margin: 0.8rem 0;
    font-size: 1.1rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.footer-links a:hover {
    color: var(--brand-pink);
}

.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background-color: var(--brand-pink);
    color: var(--brand-teal);
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    text-decoration: none;
    z-index: 2000;
    transition: transform 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 { font-size: 2.5rem; }
    .logo-text { font-size: 1.1rem; }
    .hamburger { display: block; }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--brand-teal);
        flex-direction: column;
        padding: 1rem 0 2rem 0;
        border-top: 1px solid rgba(255,255,255,0.1);
    }
    .nav-links.active { display: flex; }
    .nav-links a { margin: 1rem 0; width: 100%; text-align: center; }
    .cta-btn { margin-top: 1rem; }
    
    .combo-card.featured { transform: scale(1); }
}