/* ==========================================================================
   🏛️ ROORAL ROOTS TEAROOM - NEXT-GEN MODERN EXPERIENTIAL SPECIFICATION
   ========================================================================== */

/* 1. Global Setup & Structural Constants */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: #f7f4ed;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(74, 53, 41, 0.02) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(140, 109, 83, 0.03) 0%, transparent 50%),
        url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%234a3529' fill-opacity='0.015'%3E%3Cpath d='M50 50c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10s-10-4.477-10-10 4.477-10 10-10zM10 10c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10S0 25.523 0 20s4.477-10 10-10z'/%3E%3C/g%3E%3C/svg%3E");
    color: #261c14;
    font-family: 'Plus Jakarta Sans', sans-serif;
    line-height: 1.7;
    overflow-x: hidden;
}

/* 2. Top Navigation Architecture */
.luxury-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(247, 244, 237, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(74, 53, 41, 0.06);
    padding: 0.8rem 2rem;
}

.nav-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    height: 48px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.05));
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    color: #4a3529;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #8c6d53;
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: #8c6d53;
}

.nav-links a:hover::after {
    width: 100%;
}

/* 3. Immersive Cinematic Hero Spotlight */
.cinematic-hero {
    min-height: 95vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 20px 60px 20px;
    position: relative;
    background-color: #2b1f17;
    background-image: 
        radial-gradient(circle at 80% 20%, rgba(140, 109, 83, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 10% 80%, rgba(74, 53, 41, 0.3) 0%, transparent 60%);
}

.hero-content {
    position: relative;
    z-index: 5;
    max-width: 850px;
    animation: fadeInUp 1s ease-out;
}

.hero-badge {
    display: inline-block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #cbb3a1;
    font-weight: 700;
    border: 1px solid rgba(203, 179, 161, 0.3);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    background: rgba(255,255,255,0.02);
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    color: #fffdfa;
    line-height: 1.15;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.gradient-text {
    background: linear-gradient(135deg, #e5ded7 0%, #cbb3a1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.brand-slogan {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 2rem;
    color: #cbb3a1;
    margin-bottom: 2rem;
}

.hero-philosophy {
    font-size: 1.25rem;
    color: #e5ded7;
    max-width: 680px;
    margin: 0 auto 3rem auto;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 1rem 2.2rem;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #cbb3a1;
    color: #2b1f17;
    box-shadow: 0 10px 25px rgba(203, 179, 161, 0.15);
}

.btn-primary:hover {
    background: #fffdfa;
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(255, 255, 255, 0.2);
}

.btn-secondary {
    background: transparent;
    color: #fffdfa;
    border: 1px solid rgba(255,255,255,0.3);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.05);
    border-color: #fffdfa;
    transform: translateY(-2px);
}

/* 4. Global Web Section Grids */
.web-section {
    padding: 8rem 2rem;
}

.alt-bg {
    background-color: #f0eae1;
}

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

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-tagline {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: #8c6d53;
    font-weight: 700;
    display: block;
    margin-bottom: 0.8rem;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: #2b1f17;
    font-weight: 600;
}

.luxury-divider {
    display: flex;
    justify-content: center;
    margin-top: 1.2rem;
}

.luxury-divider span {
    width: 60px;
    height: 3px;
    background: #8c6d53;
    position: relative;
    border-radius: 2px;
}

/* 5. Next-Gen Fluid Menu Matrix Cards */
.menu-grid-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 3rem;
}

.menu-glass-card {
    background: #fffdfa;
    border: 1px solid rgba(74, 53, 41, 0.08);
    border-radius: 8px;
    padding: 3.5rem 3rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(74, 53, 41, 0.03);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.menu-glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(74, 53, 41, 0.08);
}

.full-width-card {
    grid-column: 1 / -1;
}

.menu-glass-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #2b1f17;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.card-sub-note {
    font-style: italic;
    color: #8c6d53;
    font-size: 0.95rem;
    margin-top: -1rem;
    margin-bottom: 2rem;
}

.menu-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.dual-column-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem 4rem;
}

.menu-item-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    position: relative;
}

.item-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2b1f17;
    z-index: 2;
    background: #fffdfa;
    padding-right: 12px;
}

.item-title small {
    font-weight: 400;
    color: #8c6d53;
    font-style: italic;
}

.item-desc {
    font-size: 0.9rem;
    color: #6e5645;
    margin-top: 0.25rem;
    font-style: italic;
}

.item-dots {
    flex: 1;
    border-bottom: 1px dotted rgba(140, 109, 83, 0.25);
    margin-bottom: 6px;
    z-index: 1;
}

.item-cost {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.15rem;
    color: #8c6d53;
    z-index: 2;
    background: #fffdfa;
    padding-left: 12px;
}

/* 🥖 CLEAN UNIFORM MORNING ROLLS ADD-ON PROFILES */
.menu-item-row.premium-add-on {
    opacity: 0.85;
}

.menu-item-row.premium-add-on .item-title {
    font-size: 0.98rem;
    font-weight: 500;
    color: #594b41;
    padding-left: 15px; /* Elegant indentation for rolls add-ons */
}

.card-footer-notice {
    text-align: center;
    grid-column: 1 / -1;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 600;
    color: #4a3529;
    margin-top: 2.5rem;
    font-size: 1.1rem;
}

/* 6. Product Vitrine Array Layouts */
.showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.showcase-card {
    background: #fffdfa;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0,0,0,0.02);
    border: 1px solid rgba(74, 53, 41, 0.05);
    transition: all 0.3s ease;
}

.showcase-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 45px rgba(74, 53, 41, 0.06);
}

.showcase-card.preferred {
    border: 2px solid #8c6d53;
    position: relative;
}

.popular-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #8c6d53;
    color: #fffdfa;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.4rem 1rem;
    border-radius: 4px;
    z-index: 5;
}

.showcase-img-frame {
    height: 240px;
    background: #fdfbf7;
    padding: 2rem;
    border-bottom: 1px solid rgba(74, 53, 41, 0.04);
}

.showcase-img-frame img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.showcase-body {
    padding: 2.5rem 2rem;
    text-align: center;
}

.showcase-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #2b1f17;
    margin-bottom: 0.5rem;
}

.showcase-price {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #8c6d53;
    margin-bottom: 1.2rem;
}

.showcase-desc {
    font-size: 0.95rem;
    color: #4a3529;
    margin-bottom: 1.8rem;
}

.showcase-badges {
    display: flex;
    justify-content: center;
    gap: 0.6rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.badge {
    background: #f0eae1;
    color: #4a3529;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.3rem 1rem;
    border-radius: 50px;
}

.premium-badge {
    background: rgba(140, 109, 83, 0.1);
    color: #8c6d53;
}

/* 7. Immersive Calendar Destination Sections */
.immersive-destination-section {
    position: relative;
    background-color: #1e1510;
    padding: 8rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.destination-card {
    position: relative;
    z-index: 5;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    max-width: 800px;
    width: 100%;
    padding: 4.5rem 3.5rem;
    text-align: center;
    color: #fffdfa;
    box-shadow: 0 40px 80px rgba(0,0,0,0.3);
}

.dest-badge {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #cbb3a1;
    font-weight: 700;
    display: block;
    margin-bottom: 1rem;
}

.destination-card h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.6rem;
    color: #fffdfa;
    margin-bottom: 0.5rem;
}

.dest-address {
    color: #cbb3a1;
    font-size: 1rem;
    margin-bottom: 2.5rem;
    letter-spacing: 0.5px;
}

.dest-meta-block {
    margin-bottom: 3rem;
}

.dest-time {
    font-size: 1.4rem;
    font-family: 'Playfair Display', serif;
    color: #fffdfa;
    margin-bottom: 0.5rem;
}

.dest-schedule {
    color: #e5ded7;
    font-size: 1.05rem;
}

.dest-calendar-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #fffdfa;
    margin-bottom: 1.5rem;
    border-bottom: 1px dashed rgba(255,255,255,0.15);
    padding-bottom: 1rem;
}

.dest-calendar-layout {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.dest-cal-col p {
    font-size: 1.1rem;
    color: #e5ded7;
    margin-bottom: 0.8rem;
}

.dest-cal-col p span {
    color: #fffdfa;
    font-weight: 600;
}

/* 8. Local Crossover Highlight Matrix */
.compact-container {
    max-width: 900px;
}

.community-banner-box {
    background: #fffdfa;
    border-radius: 8px;
    padding: 4.5rem 3.5rem;
    text-align: center;
    box-shadow: 0 15px 45px rgba(74, 53, 41, 0.04);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(74, 53, 41, 0.05);
}

.banner-accent-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #4a3529, #8c6d53, #cbb3a1);
}

.community-banner-box h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: #2b1f17;
    margin-bottom: 1rem;
}

.highlight-text {
    color: #8c6d53;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
}

/* 9. Modern Footer Systems */
.modern-footer {
    background-color: #2b1f17;
    color: #cbb3a1;
    padding: 3.5rem 2rem;
    text-align: center;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 500;
}

/* 🍇 THE FRUIT FRIENDS INTERACTIVE BUTTON & FOX FIX */
.showcase-action {
    margin-top: 2rem !important;
    padding-top: 1.5rem !important;
    border-top: 1px dashed rgba(74, 53, 41, 0.15) !important;
    width: 100% !important;
    display: block !important;
    clear: both !important;
}

.btn-card-link {
    display: block !important;
    width: 100% !important;
    text-align: center !important;
    background-color: #8c6d53 !important; 
    color: #fffdfa !important; 
    text-decoration: none !important;
    font-size: 0.85rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    padding: 1rem 1.5rem !important;
    border-radius: 4px !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 12px rgba(140, 109, 83, 0.15) !important;
    border: none !important;
    
    /* Layer hierarchy enforcement for Firefox pointer tracking */
    position: relative !important;
    z-index: 999 !important;
    pointer-events: auto !important;
}

.btn-card-link:hover {
    background-color: #2b1f17 !important; 
    color: #fffdfa !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 20px rgba(43, 31, 23, 0.2) !important;
}

/* ⚜️ TRADEMARK GLOBAL SIZING SUPERSCRIPT */
sup, .showcase-body h3::after {
    font-size: 60%;
    font-weight: 600;
    vertical-align: super;
    margin-left: 2px;
    color: #8c6d53;
}

/* Keyframes & Media Overrides */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    .hero-title { font-size: 2.8rem; }
    .nav-links { display: none; } 
    .menu-grid-wrapper { grid-template-columns: 1fr; }
    .dest-calendar-layout { gap: 1.5rem; }
    .web-section { padding: 5rem 1.5rem; }
}