:root {
    --gold: #d4af37;
    --primary: #2e7d32;
    --dark: #121212;
    --light: #faf9f6;
    --white: #ffffff;
    --glass: rgba(255, 255, 255, 0.85);
    --shadow: 0 10px 30px rgba(0,0,0,0.06);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; background: var(--light); color: var(--dark); transition: 0.3s; overflow-x: hidden; line-height: 1.6; }
body.dark-mode { background: #0a0a0a; color: #eee; --glass: rgba(15, 15, 15, 0.85); --white: #1a1a1a; }

/* LAYOUT */
.container { max-width: 1200px; margin: 0 auto; padding: 80px 20px; }
.narrow { max-width: 800px; margin: 0 auto; text-align: center; }

/* HEADER */
.main-header { position: sticky; top: 0; z-index: 1000; background: var(--glass); backdrop-filter: blur(15px); padding: 12px 0; border-bottom: 1px solid rgba(0,0,0,0.05); }
.header-container { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; padding: 0 20px; }
.brand-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-logo img { height: 45px; width: 45px; border-radius: 50%; border: 2px solid var(--primary); object-fit: cover; }
.brand-name { font-family: 'Playfair Display', serif; font-weight: 900; font-size: 1.6rem; color: var(--primary); }
.header-actions { display: flex; align-items: center; gap: 15px; }
.greeting-pill { font-size: 0.75rem; font-weight: 700; color: var(--primary); background: rgba(46,125,50,0.1); padding: 5px 12px; border-radius: 20px; }
.lang-selector { display: flex; background: rgba(0,0,0,0.05); padding: 3px; border-radius: 30px; }
.lang-btn { border: none; background: transparent; padding: 6px 12px; border-radius: 20px; font-size: 0.8rem; font-weight: 700; cursor: pointer; color: #666; transition: 0.3s;}
.lang-btn.active { background: var(--primary); color: white; }
.icon-btn { background: none; border: none; font-size: 1.2rem; cursor: pointer; color: inherit; }

/* HERO SECTION */
.hero-section { position: relative; height: 85vh; min-height: 500px; display: flex; align-items: center; justify-content: center; text-align: center; color: white; background: url('https://images.pexels.com/photos/302899/pexels-photo-302899.jpeg?w=1600') center/cover; }
.hero-overlay { position: absolute; top:0; left:0; width:100%; height:100%; background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.7)); }
.hero-inner { position: relative; z-index: 2; padding: 20px; }
.hero-badge { font-weight: 700; letter-spacing: 3px; font-size: 0.9rem; color: var(--gold); margin-bottom: 15px; text-transform: uppercase; }
.brand-title { font-family: 'Playfair Display', serif; font-size: 5rem; font-weight: 900; line-height: 1; letter-spacing: -1px; text-shadow: 0 5px 15px rgba(0,0,0,0.5); }
.hero-tagline { font-size: 1.3rem; font-weight: 300; letter-spacing: 3px; margin-top: 15px; opacity: 0.9; }
.prime-btn { display: inline-block; margin-top: 40px; padding: 18px 45px; background: var(--primary); color: white; text-decoration: none; border-radius: 50px; font-weight: 700; box-shadow: 0 10px 25px rgba(46,125,50,0.4); transition: 0.3s; }
.prime-btn:hover { transform: translateY(-3px); background: #1b5e20; }
.secondary-btn { display: inline-block; padding: 12px 35px; border: 2px solid var(--primary); color: var(--primary); text-decoration: none; border-radius: 50px; font-weight: 700; transition: 0.3s; }
.secondary-btn:hover { background: var(--primary); color: white; }

/* TYPOGRAPHY & SECTIONS */
.section-title { font-family: 'Playfair Display', serif; font-size: 2.5rem; color: var(--primary); text-align: center; margin-bottom: 15px; }
.title-line { width: 60px; height: 3px; background: var(--gold); margin: 0 auto 30px; }
.lead-text { font-size: 1.1rem; color: #555; line-height: 1.8; }
body.dark-mode .lead-text { color: #bbb; }

/* GUEST PERKS */
.guest-perks { background: var(--white); border-top: 1px solid rgba(0,0,0,0.03); border-bottom: 1px solid rgba(0,0,0,0.03); }
.perks-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; text-align: center; margin-top: 40px; }
.perk-card { padding: 20px; }
.perk-icon { font-size: 3rem; margin-bottom: 15px; }
.perk-card h3 { font-size: 1.3rem; margin-bottom: 10px; color: var(--primary); }
.perk-card p { color: #666; font-size: 0.95rem; }
body.dark-mode .perk-card p { color: #aaa; }

/* SIGNATURE CARDS (GRID VIEW) */
.preview-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
.preview-card { background: var(--white); border-radius: 20px; overflow: hidden; box-shadow: var(--shadow); cursor: pointer; transition: 0.3s; border: 1px solid rgba(0,0,0,0.03); }
.preview-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
.card-img { height: 220px; background-size: cover; background-position: center; position: relative; }
.card-price { position: absolute; bottom: 15px; right: 15px; background: var(--primary); color: white; padding: 6px 16px; border-radius: 30px; font-weight: 700; }
.card-body { padding: 20px; text-align: center; }
.item-name-en { font-size: 1.2rem; font-weight: 700; color: inherit; }
.item-name-am { color: var(--primary); font-size: 0.9rem; margin-top: 5px; }

/* INFO CARD */
.info-card { display: flex; flex-wrap: wrap; background: var(--white); padding: 50px; border-radius: 30px; box-shadow: var(--shadow); justify-content: space-between; text-align: center; border: 1px solid rgba(0,0,0,0.03); }
.info-block { flex: 1; min-width: 200px; padding: 15px; }
.info-icon { font-size: 2rem; margin-bottom: 15px; }
.info-block h4 { font-size: 1.1rem; margin-bottom: 10px; color: var(--primary); }
.small-note { font-size: 0.85rem; color: #888; margin-top: 5px; }
body.dark-mode .info-block { border-color: rgba(255,255,255,0.1) !important; }

/* FOOTER */
.main-footer { background: #0a0a0a; color: white; padding: 60px 20px; text-align: center; }
.footer-logo { font-family: 'Playfair Display', serif; font-size: 2.5rem; color: var(--primary); margin-bottom: 5px; }
.footer-tag { color: #888; margin-bottom: 30px; letter-spacing: 2px; text-transform: uppercase; font-size: 0.8rem; }
.copyright { font-size: 0.85rem; color: #555; }

@media (max-width: 768px) {
    .brand-title { font-size: 3.5rem; }
    .info-card { flex-direction: column; gap: 30px; padding: 30px; }
    .info-block { border-left: none !important; border-right: none !important; border-bottom: 1px solid rgba(0,0,0,0.1); padding-bottom: 30px; }
    .info-block:last-child { border-bottom: none; padding-bottom: 0; }
    header .greeting-pill { display: none; }
}
@media (max-width: 768px) {
    .orders-grid { grid-template-columns: 1fr !important; }
    .container { padding: 15px !important; }
    .order-card { padding: 12px !important; }
    button { padding: 8px 12px !important; font-size: 0.8rem !important; }
    h1 { font-size: 1.5rem !important; }
    .header-container { flex-wrap: wrap; gap: 10px; }
}
@media (min-width: 769px) and (max-width: 1024px) {
    .orders-grid { grid-template-columns: repeat(2, 1fr) !important; }
}
