/* ==========================================================================
   KHANDESH KING - ROYAL MEALS, REAL NUTRITION
   Clean Light (White Background) CSS Stylesheet
   ========================================================================== */

:root {
  /* Color Palette - Clean Light Theme with Gold/Amber Accents */
  --bg-main: #ffffff;
  --bg-secondary: #f8f9fa;
  --bg-card: #ffffff;
  --bg-card-border: #e9ecef;
  
  --gold-primary: #b8860b;
  --gold-dark: #8a640f;
  --gold-gradient: linear-gradient(135deg, #d4af37 0%, #b8860b 100%);
  
  --text-main: #1a1a1a;
  --text-muted: #6c757d;
  --text-dark: #111111;
  
  --whatsapp-color: #25d366;
  --whatsapp-hover: #1eb957;
  
  --call-color: #b8860b;
  --call-hover: #966c07;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  
  --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 15px 35px rgba(0, 0, 0, 0.12);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Core */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--bg-main);
  color: var(--text-main);
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: var(--bg-main);
  position: relative;
  overflow-x: hidden;
  padding-bottom: 70px; /* Space for mobile bottom bar */
}

@media (min-width: 768px) {
  body {
    padding-bottom: 0;
  }
}

/* Typography Helpers */
h1, h2, h3, h4, .brand-name {
  font-family: 'Cinzel', serif;
}

.gold-text {
  color: var(--gold-primary);
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

/* ==========================================================================
   Header Section
   ========================================================================== */
.site-header {
  border-bottom: 1px solid var(--bg-card-border);
  background: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 16px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

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

.brand-logo {
  display: flex;
  align-items: center;
}

.brand-name {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--text-dark);
  line-height: 1.1;
}

.brand-tagline {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-top: 2px;
}

.header-phone-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fdfbf7;
  border: 1.5px solid var(--gold-primary);
  color: var(--gold-dark);
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: var(--transition);
}

.header-phone-btn:hover {
  background: var(--gold-primary);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(184, 134, 11, 0.25);
}

/* ==========================================================================
   Main Showcase Layout
   ========================================================================== */
.main-content {
  flex: 1;
  padding: 40px 20px;
  display: flex;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  width: 100%;
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 1.1fr 1.2fr;
    align-items: center;
  }
}

/* Image Column */
.image-column {
  display: flex;
  justify-content: center;
}

.image-frame-wrapper {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--bg-card-border);
  box-shadow: var(--shadow-card);
  background: #ffffff;
  max-width: 520px;
  width: 100%;
  transition: var(--transition);
}

.image-frame-wrapper:hover {
  border-color: var(--gold-primary);
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.image-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--gold-primary);
  color: var(--gold-dark);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.showcase-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  cursor: pointer;
  transition: transform 0.5s ease;
}

.image-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.image-frame-wrapper:hover .image-overlay {
  opacity: 1;
}

.zoom-btn {
  background: var(--gold-gradient);
  color: #ffffff;
  border: none;
  padding: 12px 22px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  transition: transform 0.2s ease;
}

.zoom-btn:hover {
  transform: scale(1.05);
}

/* Details Column */
.hero-card {
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-card);
}

.sub-badge {
  display: inline-block;
  color: var(--gold-primary);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.hero-title {
  font-size: 32px;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--text-dark);
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 38px;
  }
}

.hero-description {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 30px;
}

/* Highlights Grid */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-bottom: 32px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-secondary);
  border: 1px solid var(--bg-card-border);
  padding: 12px 14px;
  border-radius: var(--radius-md);
}

.icon-box {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(184, 134, 11, 0.1);
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.highlight-info h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dark);
}

.highlight-info p {
  font-size: 11px;
  color: var(--text-muted);
}

/* Contact Box */
.contact-box {
  background: #fdfbf7;
  border: 1.5px solid rgba(184, 134, 11, 0.25);
  border-radius: var(--radius-md);
  padding: 24px;
}

.contact-header {
  margin-bottom: 20px;
  text-align: center;
}

.contact-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  display: block;
  margin-bottom: 8px;
}

.phone-display {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 26px;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: 1px;
}

.phone-display i {
  color: var(--gold-primary);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.15); }
  100% { transform: scale(1); }
}

/* Action Buttons */
.action-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (min-width: 600px) {
  .action-buttons {
    flex-direction: row;
  }
}

.btn {
  flex: 1;
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}

.btn-call {
  background: var(--gold-gradient);
  color: #ffffff;
}

.btn-call:hover {
  box-shadow: 0 6px 20px rgba(184, 134, 11, 0.35);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: var(--whatsapp-color);
  color: #ffffff;
}

.btn-whatsapp:hover {
  background: var(--whatsapp-hover);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
  transform: translateY(-2px);
}

.btn-copy {
  background: #ffffff;
  color: var(--text-dark);
  border: 1px solid var(--bg-card-border);
}

.btn-copy:hover {
  background: var(--bg-secondary);
  border-color: #ced4da;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  border-top: 1px solid var(--bg-card-border);
  padding: 24px 0;
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
  background: var(--bg-secondary);
}

/* ==========================================================================
   Mobile Sticky Bottom Bar
   ========================================================================== */
.mobile-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  border-top: 1px solid var(--bg-card-border);
  padding: 10px 16px;
  display: flex;
  gap: 12px;
  z-index: 1000;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  box-shadow: 0 -4px 15px rgba(0,0,0,0.05);
}

@media (min-width: 768px) {
  .mobile-sticky-bar {
    display: none;
  }
}

.mobile-action-btn {
  flex: 1;
  padding: 12px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 14px;
  text-align: center;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.mobile-call {
  background: var(--gold-gradient);
  color: #ffffff;
}

.mobile-whatsapp {
  background: var(--whatsapp-color);
  color: #ffffff;
}

/* ==========================================================================
   Lightbox Modal
   ========================================================================== */
.lightbox-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.lightbox-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 25px;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 40px;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s ease;
}

.lightbox-close:hover {
  color: var(--gold-primary);
}

.lightbox-content {
  max-width: 90vw;
  max-height: 90vh;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  border: 1px solid var(--gold-primary);
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

/* ==========================================================================
   Toast Notification
   ========================================================================== */
.toast {
  position: fixed;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--text-dark);
  color: #ffffff;
  font-weight: 700;
  font-size: 14px;
  padding: 12px 24px;
  border-radius: 30px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  z-index: 3000;
}

@media (min-width: 768px) {
  .toast {
    bottom: 40px;
  }
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
