/* Imports elegant fonts */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
  --color-bg-base: #fbfaf6;
  --color-bg-alt: #f4f1e6;
  --color-primary: #0f2b1d;
  --color-primary-light: #1b4731;
  --color-accent: #1e7d4e;
  --color-accent-hover: #155736;
  --color-text-main: #1d2b24;
  --color-text-muted: #5e6b63;
  --color-white: #ffffff;
  --color-glass-bg: rgba(255, 255, 255, 0.75);
  --color-glass-border: rgba(255, 255, 255, 0.5);
  --shadow-premium: 0 10px 30px rgba(15, 43, 29, 0.04);
  --shadow-hover: 0 20px 40px rgba(15, 43, 29, 0.08);
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background-color: var(--color-bg-base);
  color: var(--color-text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Base Headings */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  color: var(--color-primary);
}

/* Premium Layout Container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

/* Header & Navigation */
header {
  padding: 24px 0;
  background-color: rgba(251, 250, 246, 0.85);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(15, 43, 29, 0.05);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-icon {
  width: 32px;
  height: 32px;
  background-color: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-weight: bold;
  font-family: 'Playfair Display', serif;
}

.logo-text {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: 0.5px;
}

/* Hero Section */
.hero {
  padding: 100px 0 80px 0;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 80% 20%, rgba(196, 157, 99, 0.08) 0%, transparent 50%),
              radial-gradient(circle at 10% 80%, rgba(15, 43, 29, 0.05) 0%, transparent 50%);
}

.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  text-align: left;
}

.hero-text-col {
  flex: 1.2;
}

.hero-image-col {
  flex: 1;
  display: flex;
  justify-content: center;
}

.hero-image-frame {
  width: 100%;
  max-width: 440px;
  height: 440px;
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(15, 43, 29, 0.08);
  border: 6px solid var(--color-white);
  position: relative;
  animation: bubble-morph 8s ease-in-out infinite, bubble-float 6s ease-in-out infinite;
  transition: var(--transition-smooth), border-radius 0.4s ease;
}

.hero-image-frame:hover {
  box-shadow: 0 25px 50px rgba(15, 43, 29, 0.12);
  filter: brightness(1.02);
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
  transition: var(--transition-smooth);
}

@keyframes bubble-morph {
  0% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  }
  25% {
    border-radius: 45% 55% 50% 50% / 40% 45% 55% 60%;
  }
  50% {
    border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
  }
  75% {
    border-radius: 55% 45% 40% 60% / 60% 40% 60% 40%;
  }
  100% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  }
}

@keyframes bubble-float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

.hero-subtitle {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-accent);
  margin-bottom: 16px;
  display: inline-block;
}

.hero h1 {
  font-size: 3.5rem;
  line-height: 1.15;
  margin-bottom: 24px;
  color: var(--color-primary);
}

.hero h1 span {
  font-style: italic;
  color: var(--color-accent);
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--color-text-muted);
  font-weight: 300;
  margin-bottom: 36px;
}

.btn-primary-link {
  display: inline-block;
  padding: 14px 28px;
  background-color: var(--color-primary);
  color: var(--color-white);
  text-decoration: none;
  font-weight: 600;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(15, 43, 29, 0.2);
  transition: var(--transition-smooth);
  font-size: 0.95rem;
}

.btn-primary-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(15, 43, 29, 0.35);
  background-color: var(--color-primary-light);
}

@media (max-width: 991px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }
  .hero-text-col, .hero-image-col {
    width: 100%;
  }
  .hero-image-frame {
    height: 380px;
    margin: 0 auto;
    transform: none;
  }
  .hero-image-frame:hover {
    transform: translateY(-5px);
  }
}

/* Sections General Styling */
section {
  padding: 80px 0;
}

.section-alt {
  background-color: var(--color-bg-alt);
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-tag {
  color: var(--color-accent);
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 10px;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.section-header p {
  color: var(--color-text-muted);
  max-width: 500px;
  margin: 0 auto;
  font-weight: 300;
}

/* Card Grids */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
}

/* Premium Card System */
.premium-card {
  background: var(--color-glass-bg);
  border: 1px solid var(--color-glass-border);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-premium);
  transition: var(--transition-smooth);
  position: relative;
  height: 100%;
}

.premium-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(30, 125, 78, 0.25);
  background: var(--color-white);
}

.card-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: var(--color-accent);
  color: var(--color-white);
  padding: 6px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 10;
}

.card-content {
  margin-bottom: 24px;
}

.card-category {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-accent);
  font-weight: 600;
  margin-bottom: 12px;
}

.premium-card h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
  color: var(--color-primary);
}

.premium-card p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  font-weight: 300;
  margin-bottom: 20px;
}

.card-price-row {
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 1.1rem;
}

.price {
  color: var(--color-primary);
}

/* Card Image System */
.card-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
  border-radius: 14px;
  margin-bottom: 24px;
  background-color: var(--color-bg-alt);
  position: relative;
  border: 1px solid rgba(15, 43, 29, 0.05);
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.premium-card:hover .card-image img {
  transform: scale(1.06);
}

/* Highlight / Split Card Sections */
.highlight-card {
  background: linear-gradient(145deg, #ffffff, #fbfbf9);
  border: 1px solid rgba(30, 125, 78, 0.2);
  display: flex;
  flex-direction: column;
  padding: 40px;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.highlight-card .card-price-row {
  justify-content: center;
  margin-top: 10px;
}

/* General Contact Us Area */
.contact-section {
  text-align: center;
}

.contact-box {
  background-color: var(--color-primary);
  color: var(--color-white);
  border-radius: 30px;
  padding: 60px 40px;
  max-width: 800px;
  margin: 0 auto;
  box-shadow: 0 20px 50px rgba(15, 43, 29, 0.15);
}

.contact-box h2 {
  color: var(--color-white);
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.contact-box p {
  color: rgba(255, 255, 255, 0.7);
  max-width: 550px;
  margin: 0 auto 30px auto;
  font-weight: 300;
}

.contact-button-container {
  max-width: 250px;
  margin: 0 auto;
}

/* Footer styling */
footer {
  background-color: var(--color-primary);
  color: rgba(255, 255, 255, 0.6);
  padding: 40px 0;
  font-size: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

footer a {
  color: var(--color-accent);
  text-decoration: none;
  transition: var(--transition-smooth);
}

footer a:hover {
  color: var(--color-white);
}

/* Global Floating Button container */
.floating-whatsapp-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 99;
  width: 200px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border-radius: 50px;
  transition: var(--transition-smooth);
}

.floating-whatsapp-btn:hover {
  transform: scale(1.05);
}

/* Live Analytics Console / Panel Style */
.analytics-panel {
  position: fixed;
  top: 0;
  right: -420px;
  width: 420px;
  height: 100%;
  background-color: #121814;
  color: #e2e8f0;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
  z-index: 1000;
  transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.analytics-panel.open {
  right: 0;
}

.analytics-header {
  padding: 24px;
  background-color: #18221c;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.analytics-header h3 {
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.analytics-header h3::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 10px #10b981;
  animation: blink 1.5s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

.close-btn {
  background: none;
  border: none;
  color: #a0aec0;
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.close-btn:hover {
  color: #fff;
}

.analytics-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
}

.analytics-footer {
  padding: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background-color: #18221c;
  display: flex;
  gap: 10px;
}

.btn-secondary {
  flex: 1;
  padding: 10px;
  background-color: rgba(255, 255, 255, 0.05);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  transition: var(--transition-smooth);
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* Log card item styles */
.log-card {
  background-color: #1d2621;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 16px;
  margin-bottom: 16px;
}

.log-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.log-tag {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 4px;
}

.tag-monthly_services { background-color: rgba(196, 157, 99, 0.2); color: #c49d63; }
.tag-featured_products { background-color: rgba(59, 130, 246, 0.2); color: #60a5fa; }
.tag-ice_cream_section { background-color: rgba(236, 72, 153, 0.2); color: #f472b6; }
.tag-special_snack_section { background-color: rgba(245, 158, 11, 0.2); color: #fbbf24; }
.tag-general_contact { background-color: rgba(16, 185, 129, 0.2); color: #34d399; }
.tag-floating_button { background-color: rgba(139, 92, 246, 0.2); color: #a78bfa; }

.log-time {
  font-size: 0.75rem;
  color: #718096;
}

.log-detail {
  font-size: 0.85rem;
  margin-bottom: 6px;
}

.log-detail strong {
  color: #cbd5e0;
}

.log-json {
  margin-top: 10px;
  background-color: #131916;
  border-radius: 6px;
  padding: 10px;
  font-size: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.03);
}

.log-json pre {
  margin: 0;
  overflow-x: auto;
}

.log-json code {
  color: #34d399;
}

.no-logs {
  text-align: center;
  color: #718096;
  font-size: 0.9rem;
  padding: 40px 10px;
}

/* Floating analytics trigger button style */
.analytics-toggle-btn {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 99;
  background-color: #121814;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  padding: 12px 24px;
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-smooth);
}

.analytics-toggle-btn:hover {
  transform: translateY(-3px);
  background-color: #1c2720;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Founder Section Styles */
.founder-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}

.founder-images-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.founder-img-card {
  background-color: var(--color-white);
  border: 1px solid rgba(30, 125, 78, 0.08);
  border-radius: 24px;
  overflow: hidden;
  height: 360px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-premium);
  transition: var(--transition-smooth);
  position: relative;
}

.founder-img-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(30, 125, 78, 0.2);
}

.founder-img-card img {
  width: 100%;
  height: calc(100% - 45px);
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.founder-img-card:hover img {
  transform: scale(1.05);
}

.founder-img-label {
  height: 45px;
  background-color: var(--color-white);
  color: var(--color-primary);
  font-weight: 600;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 1px solid rgba(15, 43, 29, 0.05);
  letter-spacing: 0.5px;
}

.founder-text-col {
  display: flex;
  flex-direction: column;
}

.founder-role {
  color: var(--color-accent);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.founder-text-col h3 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.founder-quote {
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--color-text-muted);
  margin-bottom: 24px;
  border-left: 3px solid var(--color-accent);
  padding-left: 20px;
}

.founder-desc {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  margin-bottom: 30px;
  line-height: 1.6;
}

.founder-stats {
  display: flex;
  gap: 40px;
}

.stat-box {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-primary);
  font-family: 'Playfair Display', serif;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

@media (max-width: 991px) {
  .founder-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }
}

/* Mobile responsive fixes */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.4rem;
  }
  
  .hero {
    padding: 60px 0 40px 0;
  }
  
  section {
    padding: 50px 0;
  }
  
  .grid-3, .grid-2 {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .analytics-panel {
    width: 100%;
    right: -100%;
  }

  .floating-whatsapp-btn {
    bottom: 20px;
    right: 20px;
    width: 150px;
  }

  .analytics-toggle-btn {
    bottom: 20px;
    left: 20px;
    padding: 10px 18px;
    font-size: 0.8rem;
  }
}
