/* =========================================
   BASE STYLES & RESET & AESTHETIC CANVAS
   ========================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  /* Prevents your sticky navbar from cutting off section headings when scrolling */
  scroll-padding-top: 90px; 
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #f5f2eb; /* Uniform aesthetic warm sand canvas */
  color: #2b231d; /* Deep espresso brown instead of harsh pure black */
  line-height: 1.6;
}

section {
  padding: 80px 5%;
}

h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2.4rem;
  color: #243005; /* Rich dark industrial tone */
  font-weight: 700;
}

/* =========================================
   STICKY NAVIGATION
   ========================================= */
header {
  background: rgba(143, 123, 84, 0.925);
  backdrop-filter: blur(10px);
  padding: 15px 5%;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(163, 153, 141, 0.15);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo-area img {
  height: 80px !important; /* The !important smash-overrides any HTML inline styles */
  width: auto;
  border-radius: 5px;
}

.logo-area h2 {
  margin: 0;
  font-size: 1.5rem;
  color: #3d2a25;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
}

.nav-links a {
  text-decoration: none;
  color: #2b231d;
  font-weight: 600;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #bfa173; /* Smooth warm gold accent */
}

/* Sticky top sub-navigation menu bar style support */
.sticky-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 2px 15px rgba(0,0,0,0.05);
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 12px;
  z-index: 1010;
}
.sticky-nav a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.3s;
}
.sticky-nav a:hover {
  color: #bfa173;
}

/* =========================================
   BUTTONS & SOCIAL BUTTONS
   ========================================= */
.btn-primary, 
.social-btn,
button {
  display: inline-block;
  padding: 12px 28px;
  background-color: #bfa173;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-align: center;
  transition: all 0.3s ease;
  font-family: 'Poppins', sans-serif;
  box-shadow: 0 4px 10px rgba(191, 161, 115, 0.2);
}

.btn-primary:hover, 
button:hover {
  background-color: #a88858;
  transform: translateY(-2px);
}

/* Dynamic social link color blocks */
.whatsapp-btn { background-color: #25D366; color: white; box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2); }
.whatsapp-btn:hover { background-color: #1ebe57; transform: translateY(-2px); }

.insta-btn { background-color: #E1306C; color: white; margin-top: 10px; box-shadow: 0 4px 12px rgba(225, 48, 108, 0.2); }
.insta-btn:hover { background-color: #c61f59; transform: translateY(-2px); }

.linkedin-btn { background-color: #0077B5; color: white; margin-top: 15px; box-shadow: 0 4px 12px rgba(0, 119, 181, 0.2); }
.linkedin-btn:hover { background-color: #005987; transform: translateY(-2px); }

/* =========================================
   HERO SECTION (STANDOUT DARK INDUSTRIAL)
   ========================================= */
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px; 
  padding: 60px 6%; 
  min-height: 65vh;
  background-color: #1c1e21; /* High-end Matte Charcoal Container Block */
  border-radius: 24px;
  margin: 20px 5% 40px 5%;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.hero-left {
  flex: 1;
  max-width: 550px;
}

.hero-left h1 {
  font-size: 3.4rem;
  color: #dfb76c; /* Polished brass gold accent */
  margin-bottom: 20px;
  line-height: 1.15;
  font-weight: 700;
}

.hero-left p {
  font-size: 1.1rem;
  margin-bottom: 25px;
  color: #e2dcd5; /* Softer cream text for deep contrast reading */
}

/* Container to sit title and logo side-by-side */
/* =========================================
   HERO LOGO SIDE-BY-SIDE INTEGRATION
   ========================================= */

/* Wraps the text heading and logo together */
.hero-title-wrapper {
  display: flex;
  align-items: center;
  gap: 20px; /* Spacing between the text and the logo */
  margin-bottom: 20px;
}

/* Controls the size and look of the logo inside the hero */
.hero-big-logo {
  height: 100px !important;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.3)); /* Gives the logo pop on the dark background */
}

/* Adjusts the heading layout slightly to stay beautifully balanced */
.hero-left h1 {
  margin-bottom: 0 !important; /* Removes default bottom margin so it levels with the logo */
}

/* =========================================
   MOBILE ADJUSTMENT FOR HERO LOGO
   ========================================= */
@media (max-width: 768px) {
  .hero-title-wrapper {
    flex-direction: column; /* Stacks logo cleanly on small phone screens */
    gap: 15px;
    text-align: center;
  }
  
  .hero-big-logo {
    height: 80px !important; /* Slightly smaller logo scale for mobile views */
  }
}
/* Optional gentle floating animation effect */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* Button override inside dark hero */
.hero .btn-primary {
  background-color: #dfb76c;
  color: #1c1e21;
}
.hero .btn-primary:hover {
  background-color: #cda255;
}

.hero-right {
  flex: 1;
  display: flex;
  justify-content: center;
}

.hero-right img {
  width: 100%;
  max-width: 500px;
  height: 380px;
  border-radius: 18px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  object-fit: cover;
}

/* =========================================
   CONTACT & MAP ROW (FLOATING INTERACTIVE)
   ========================================= */
.contact-map-row {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding: 60px 5%;
  align-items: stretch;
  background: transparent !important;
}

.contact, .map {
  flex: 1;
  min-width: 300px;
  padding: 0; 
  background: #ffffff !important; /* Crisp floating look */
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(163, 153, 141, 0.15) !important;
  overflow: hidden;
  border: none !important;
}

.contact {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 40px;
}

.contact h2, .map h2 {
  margin-top: 30px;
  margin-bottom: 20px;
}

.contact-info p {
  font-size: 1.1rem;
  margin-bottom: 15px;
  font-weight: 500;
}

.map-container {
  height: 100%;
  min-height: 350px;
  padding: 0 20px 20px 20px;
}

/* =========================================
   MENU & GALLERY GRIDS
   ========================================= */
.menu-section, .gallery-section {
  background: transparent !important;
  padding: 60px 5%;
}

.gallery, 
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.gallery img {
  width: 100%;
  height: auto; 
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(163, 153, 141, 0.1);
  transition: transform 0.3s ease;
  display: block;
}

.gallery-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover; 
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(163, 153, 141, 0.1);
  transition: transform 0.3s ease;
}

.gallery img:hover, 
.gallery-grid img:hover {
  transform: translateY(-6px);
}

/* =========================================
   BOOKING / ORDER SECTION
   ========================================= */
.booking-section {
  background: transparent !important; /* Cleans background stripping */
}

.forms {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}

.dine-in, 
.take-away {
  flex: 1;
  min-width: 320px;
  max-width: 450px;
  background: #ffffff !important;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(163, 153, 141, 0.15) !important;
  transition: transform 0.3s ease;
}

.dine-in:hover, 
.take-away:hover {
  transform: translateY(-4px);
}

.dine-in h2, 
.take-away h2 {
  margin-bottom: 25px;
  font-size: 1.8rem;
  text-align: left;
}

form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

input, 
textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #e1dad0;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  background-color: #fbfafa;
  color: #2b231d;
  transition: all 0.3s ease;
}

input:focus, 
textarea:focus {
  outline: none;
  border-color: #bfa173;
  background-color: #fff;
  box-shadow: 0 0 0 3px rgba(191, 161, 115, 0.1);
}

/* =========================================
   FOUNDERS SECTION (FLEX LAYOUT REWORK)
   ========================================= */
.founders-section {
  background: transparent !important;
}

/* Target your added parent flex-wrapper cleanly */
.founders-section > div {
  display: flex;
  gap: 35px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px;
}

.founder-card {
  flex: 1;
  min-width: 280px;
  max-width: 340px;
  background: #fff !important;
  padding: 35px 25px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(163, 153, 141, 0.15) !important;
  transition: transform 0.3s ease;
}

.founder-card:hover {
  transform: translateY(-5px);
}

.founder-card img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  border: 4px solid #f5f2eb;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.founder-card h3 {
  color: #9b7267;
  margin-bottom: 12px;
  font-size: 1.35rem;
}

.founder-card p {
  font-size: 0.95rem;
  color: #c5b6ab;
}

/* =========================================
   FOOTER
   ========================================= */
footer {
  text-align: center;
  padding: 30px;
  background-color: #2b1f1d;
  color: #e2dcd5;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

/* =========================================
   MOBILE RESPONSIVENESS
   ========================================= */
@media (max-width: 768px) {
  body {
    padding-top: 45px; /* Offset spacing context changes */
  }

  nav {
    flex-direction: column;
    gap: 15px;
  }
  
  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }

  .hero {
    flex-direction: column;
    text-align: center;
    padding: 40px 6%;
    margin: 15px 3%;
    gap: 30px;
  }

  .hero-left h1 {
    font-size: 2.4rem;
  }

  .hero-right img {
    height: 280px;
  }

  .contact-map-row,
  .forms,
  .founders-section > div {
    flex-direction: column;
    align-items: center;
  }

  .dine-in, 
  .take-away,
  .founder-card {
    max-width: 100%;
    width: 100%;
  }
}
/* =========================================
   INPUT TEXT VISIBILITY FIX
   ========================================= */
input, 
textarea,
input:focus, 
textarea:focus {
  color: #2b231d !important; /* Forces the text to be dark espresso brown */
  background-color: #ffffff !important; /* Keeps the background crisp white */
}

/* Fixes any potential browser autocomplete/autofill text color issues */
input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus {
  -webkit-text-fill-color: #2b231d !important;
  transition: background-color 5000s ease-in-out 0s;
}