/* ==========================================================================
   TARKA TREATS - LIGHT MODE CULINARY DESIGN SYSTEM
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,600;0,800;1,400&display=swap');

:root {
  --tt-bg-main: #fcfbf9;
  --tt-bg-card: #ffffff;
  --tt-bg-card-hover: #f5f3ef;
  --tt-bg-glass: rgba(255, 255, 255, 0.95);
  
  --tt-primary: #d97706;
  --tt-primary-hover: #b45309;
  --tt-primary-glow: rgba(217, 119, 6, 0.3);
  
  --tt-accent-crimson: #dc2626;
  --tt-accent-emerald: #15803d;
  --tt-accent-whatsapp: #25D366;
  --tt-accent-whatsapp-dark: #128C7E;
  
  --tt-text-main: #1c1917;
  --tt-text-muted: #57534e;
  --tt-text-gold: #f59e0b;
  
  --tt-border-light: rgba(217, 119, 6, 0.2);
  --tt-border-glass: rgba(0, 0, 0, 0.08);

  --tt-font-heading: 'Playfair Display', serif;
  --tt-font-body: 'Outfit', sans-serif;
  
  --tt-radius-sm: 8px;
  --tt-radius-md: 16px;
  --tt-radius-lg: 24px;
  --tt-radius-full: 9999px;
  
  --tt-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* --- Announce Ticker --- */
.tt-announcement-bar {
  background: linear-gradient(90deg, #b45309, #d97706, #f59e0b, #d97706, #b45309);
  background-size: 200% 100%;
  animation: ttGradientShift 6s ease infinite;
  color: #ffffff;
  padding: 8px 0;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  overflow: hidden;
  position: relative;
  z-index: 1050;
}

@keyframes ttGradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.tt-marquee-track {
  display: flex;
  white-space: nowrap;
  animation: ttMarquee 25s linear infinite;
}

.tt-marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0 30px;
}

.tt-marquee-item i {
  color: #fef08a;
}

@keyframes ttMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* --- Glass Navigation --- */
.tt-navbar {
  background: var(--tt-bg-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--tt-border-glass);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--tt-transition);
}

.tt-navbar.scrolled {
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.tt-logo-img {
  max-height: 52px;
  width: auto;
  transition: var(--tt-transition);
}

.tt-logo-img:hover {
  transform: scale(1.04);
}

.tt-nav-link {
  color: var(--tt-text-main);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 8px 16px !important;
  border-radius: var(--tt-radius-full);
  transition: var(--tt-transition);
}

.tt-nav-link:hover, .tt-nav-link.active {
  color: var(--tt-primary);
  background: rgba(217, 119, 6, 0.08);
}

.tt-btn-whatsapp {
  background-color: var(--tt-accent-whatsapp);
  color: #fff !important;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: var(--tt-radius-full);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
  transition: var(--tt-transition);
  text-decoration: none;
}

.tt-btn-whatsapp:hover {
  background-color: #20ba5a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
  color: #fff;
}

/* --- Hero Section matching original index.html --- */
.tt-hero-original {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  color: #ffffff;
  overflow: hidden;
  padding: 90px 0;
}

.tt-hero-bg-picture {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.tt-hero-bg-picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.tt-hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.55) 50%, rgba(0,0,0,0.85) 100%);
  z-index: 2;
}

.tt-hero-content {
  position: relative;
  z-index: 3;
  max-width: 780px;
}

.tt-hero-content h1 {
  font-family: var(--tt-font-heading);
  font-size: 3.8rem;
  font-weight: 800;
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 20px;
  text-shadow: 0 4px 15px rgba(0,0,0,0.4);
}

.tt-hero-content h1 span {
  color: #fef08a;
  display: inline-block;
}

.tt-hero-content p {
  font-size: 1.3rem;
  color: #f5f5f4;
  margin-bottom: 36px;
  max-width: 640px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
  line-height: 1.6;
}

.tt-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.tt-btn-hero-primary {
  background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
  color: #ffffff !important;
  font-weight: 700;
  padding: 14px 34px;
  border-radius: var(--tt-radius-full);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 6px 20px rgba(217, 119, 6, 0.4);
  transition: var(--tt-transition);
  text-decoration: none;
  border: none;
  font-size: 1.05rem;
}

.tt-btn-hero-primary:hover {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(245, 158, 11, 0.5);
  color: #ffffff !important;
}

.tt-btn-hero-ghost {
  border: 2px solid rgba(255, 255, 255, 0.8);
  color: #ffffff !important;
  font-weight: 700;
  padding: 12px 30px;
  border-radius: var(--tt-radius-full);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--tt-transition);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(6px);
  font-size: 1.05rem;
}

.tt-btn-hero-ghost:hover {
  background: #ffffff;
  color: #1c1917 !important;
  border-color: #ffffff;
  transform: translateY(-2px);
}

/* --- Feature Highlights --- */
.tt-features-strip {
  padding: 40px 0;
  background: #ffffff;
  border-bottom: 1px solid var(--tt-border-glass);
}

.tt-feature-box {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: #fcfbf9;
  border-radius: var(--tt-radius-md);
  border: 1px solid var(--tt-border-glass);
  transition: var(--tt-transition);
}

.tt-feature-box:hover {
  transform: translateY(-4px);
  background: #ffffff;
  border-color: var(--tt-border-light);
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

.tt-feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(217, 119, 6, 0.1);
  color: var(--tt-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

/* --- Section Formatting --- */
.tt-section {
  padding: 85px 0;
  position: relative;
}

.tt-section-kicker {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--tt-primary);
  margin-bottom: 10px;
  display: block;
}

.tt-section-title {
  font-family: var(--tt-font-heading);
  font-size: 2.7rem;
  font-weight: 700;
  color: #1c1917;
  margin-bottom: 16px;
}

.tt-section-desc {
  color: var(--tt-text-muted);
  font-size: 1.1rem;
  max-width: 650px;
  margin-bottom: 40px;
}

/* --- Story Section --- */
.tt-story-card {
  background: #ffffff;
  border: 1px solid var(--tt-border-light);
  border-radius: var(--tt-radius-lg);
  padding: 40px;
  position: relative;
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}

.tt-story-quote {
  font-family: var(--tt-font-heading);
  font-size: 1.6rem;
  font-style: italic;
  color: #b45309;
  line-height: 1.5;
  margin-bottom: 20px;
}

/* --- Interactive Menu Showcase --- */
.tt-menu-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 45px;
  flex-wrap: wrap;
}

.tt-tab-btn {
  background: #ffffff;
  border: 1px solid var(--tt-border-glass);
  color: var(--tt-text-muted);
  padding: 12px 28px;
  border-radius: var(--tt-radius-full);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--tt-transition);
  box-shadow: 0 2px 6px rgba(0,0,0,0.03);
}

.tt-tab-btn:hover, .tt-tab-btn.active {
  background: var(--tt-primary);
  color: #ffffff;
  border-color: var(--tt-primary);
  box-shadow: 0 4px 15px var(--tt-primary-glow);
}

.tt-menu-card {
  background: #ffffff;
  border-radius: var(--tt-radius-lg);
  border: 1px solid var(--tt-border-glass);
  overflow: hidden;
  transition: var(--tt-transition);
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 6px 20px rgba(0,0,0,0.04);
}

.tt-menu-card:hover {
  transform: translateY(-6px);
  border-color: var(--tt-border-light);
  box-shadow: 0 12px 30px rgba(0,0,0,0.09);
}

.tt-menu-card-img-wrap {
  position: relative;
  height: 230px;
  overflow: hidden;
}

.tt-menu-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.tt-menu-card:hover .tt-menu-card-img-wrap img {
  transform: scale(1.06);
}

.tt-menu-tag {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(6px);
  color: var(--tt-primary);
  padding: 6px 14px;
  border-radius: var(--tt-radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border: 1px solid var(--tt-border-light);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.tt-menu-card-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.tt-menu-card-title {
  font-family: var(--tt-font-heading);
  font-size: 1.4rem;
  color: #1c1917;
  margin-bottom: 12px;
}

.tt-menu-card-desc {
  color: var(--tt-text-muted);
  font-size: 0.95rem;
  margin-bottom: 24px;
  flex-grow: 1;
}

.tt-menu-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--tt-border-glass);
  padding-top: 16px;
  margin-top: auto;
}

.tt-menu-days {
  font-size: 0.85rem;
  color: var(--tt-primary);
  font-weight: 700;
}

/* --- WhatsApp Quick Order Box --- */
.tt-order-builder-box {
  background: linear-gradient(135deg, #f0fdf4 0%, #e8f5e9 100%);
  border: 1px solid rgba(37, 211, 102, 0.35);
  border-radius: var(--tt-radius-lg);
  padding: 40px;
  position: relative;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.08);
}

.tt-order-builder-title {
  font-family: var(--tt-font-heading);
  color: #14532d;
  font-size: 2rem;
  margin-bottom: 12px;
}

/* --- Hygiene Strip & Reviews --- */
.tt-hygiene-card {
  background: linear-gradient(135deg, #f0fdf4 0%, #ffffff 100%);
  border: 1px solid rgba(21, 128, 61, 0.25);
  border-radius: var(--tt-radius-lg);
  padding: 36px;
  display: flex;
  align-items: center;
  gap: 28px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.04);
}

.tt-hygiene-badge-big {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(22, 163, 74, 0.3);
  flex-shrink: 0;
}

.tt-review-card {
  background: #ffffff;
  border-radius: var(--tt-radius-md);
  padding: 28px;
  border: 1px solid var(--tt-border-glass);
  height: 100%;
  box-shadow: 0 6px 20px rgba(0,0,0,0.03);
}

.tt-stars {
  color: #d97706;
  font-size: 1.1rem;
  margin-bottom: 12px;
}

/* --- Contact & Hours Section --- */
.tt-contact-card {
  background: #ffffff;
  border-radius: var(--tt-radius-lg);
  border: 1px solid var(--tt-border-glass);
  padding: 36px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.04);
}

.tt-hours-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tt-hours-item {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--tt-border-glass);
}

.tt-hours-item:last-child {
  border-bottom: none;
}

.tt-badge-open {
  background: rgba(22, 163, 74, 0.12);
  color: #15803d;
  border: 1px solid rgba(22, 163, 74, 0.3);
  padding: 4px 12px;
  border-radius: var(--tt-radius-full);
  font-size: 0.8rem;
  font-weight: 700;
}

/* --- Footer & Modals --- */
.tt-footer {
  background: #1c1917;
  color: #d6d3d1;
  padding: 70px 0 30px;
}

.tt-footer-logo {
  max-height: 58px;
  margin-bottom: 20px;
  filter: brightness(1.2);
}

.tt-footer-title {
  color: #ffffff;
  font-family: var(--tt-font-heading);
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.tt-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tt-footer-links li {
  margin-bottom: 10px;
}

.tt-footer-links a {
  color: #a8a29e;
  text-decoration: none;
  transition: var(--tt-transition);
  cursor: pointer;
}

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

.tt-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 30px;
  margin-top: 50px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 0.9rem;
  color: #a8a29e;
}

/* Modal Light Styling */
.modal-content.tt-modal-content {
  background: #ffffff;
  color: var(--tt-text-main);
  border: 1px solid var(--tt-border-light);
  border-radius: var(--tt-radius-lg);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.modal-header.tt-modal-header {
  border-bottom: 1px solid var(--tt-border-glass);
}

.modal-footer.tt-modal-footer {
  border-top: 1px solid var(--tt-border-glass);
}

/* Floating WhatsApp Button */
.tt-floating-wa {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--tt-accent-whatsapp);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
  z-index: 9999;
  transition: var(--tt-transition);
  text-decoration: none;
}

.tt-floating-wa:hover {
  transform: scale(1.1);
  color: #fff;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.6);
}

/* Responsive tweaks */
@media (max-width: 991px) {
  .tt-hero-content h1 {
    font-size: 2.8rem;
  }
  .tt-section-title {
    font-size: 2.2rem;
  }
  .tt-story-card {
    padding: 30px;
  }
}

@media (max-width: 575px) {
  .tt-hero-content h1 {
    font-size: 2.2rem;
  }
  .tt-hero-content p {
    font-size: 1.1rem;
  }
  .tt-floating-wa {
    bottom: 20px;
    right: 20px;
    width: 52px;
    height: 52px;
    font-size: 1.5rem;
  }
}
