/* Reset & Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

html {
  scroll-behavior: smooth;
}


body {
  font-family: "Segoe UI", Arial, sans-serif;
  
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;
  background-color: #f9fafc; /* fallback color */
  color: #333;
  line-height: 1.6;
}


/* 
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.3); /* dark overlay for boldness */
  /* z-index: 0;
  pointer-events: none; */
/* } */ */

body > * {
  position: relative;
  z-index: 1;
}


a {
  text-decoration: none;
  color: inherit;
}

.container {
  max-width: 1100px;
  margin: auto;
  padding: 0 20px;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #1f2d3d;
  color: white;
  padding: 14px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.2rem;
  font-weight: bold;
}

.nav-logo img {
  height: 70px; /* increase from your current 32px */
  width: auto;  /* maintain aspect ratio */
}

.nav-logo span {
  font-size: 24px; /* Increase from your current 18px */
  font-weight: bold; /* Keep it bold for emphasis */
  color: white; /* Optional: make sure it's visible */
}



.nav-links a {
  margin: 0 15px;
  color: white;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #e67e22;
}

/* Sticky CTA Button */
.sticky-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #e67e22;
  color: white;
  padding: 12px 20px;
  border-radius: 50px;
  font-weight: bold;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  z-index: 900;
  transition: background 0.3s ease;
}

.sticky-button:hover {
  background: #cf6d17;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), 
            url('city.png') no-repeat center center / cover;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding: 0 20px;
  
}

.hero-content {
  max-width: 700px;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.4rem;
  margin-bottom: 30px;
  color: #ddd;
}

.header-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}

.header-images img {
  height: 45px;
  margin-left: 12px;
  vertical-align: middle;
}


.header-images img {
  width: 48px; /* or your preferred size */
  height: auto;
}







.btn-primary,
.btn-secondary {
  padding: 14px 24px;
  border-radius: 6px;
  font-weight: bold;
  display: inline-block;
  transition: background 0.3s ease;
}

.btn-primary {
  background: #e67e22;
  color: white;
}

.btn-primary:hover {
  background: #cf6d17;
}

.btn-secondary {
  background: #3498db;
  color: white;
}

.btn-secondary:hover {
  background: #2271b1;
}

/* Services Section */
#services {
  padding: 80px 0;
  background-image: url('deli.png');
  text-align: center;
}

#services h2 {
  font-size: 2.2rem;
  margin-bottom: 40px;
  color: black; /* 👈 Add this line */
}


.service-cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
}

.card {
  background: white;
  border-radius: 12px;
  padding: 30px 20px;
  width: 280px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 30px 25px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.1);
}


.card i {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #e67e22;
}

.card h3 {
  margin-bottom: 8px;
  font-size: 1.3rem;
}



/* Forms */
.form-section {
  padding: 80px 0;
  background-image: url('book.png');
  color: white; /* 👈 Add this line */
}

  

.form-section h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2rem;
}

form {
  max-width: 500px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

form input,
form textarea,
form select {
  padding: 12px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
}

form textarea {
  resize: vertical;
  min-height: 100px;
}

form button {
  padding: 14px;
  background: #e67e22;
  color: white;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

form button:hover {
  background: #cf6d17;
}

/* Contact Section */
.contact-section {
  background: #1f2d3d;
  color: white;
  padding: 60px 0;
  text-align: center;
}

.contact-section a {
  color: #e67e22;
  text-decoration: underline;
}

/* Footer */
footer {
  background-color: #0e1a2b; /* dark navy tone */
  color: #fff;
  text-align: center;
  padding: 40px 20px;
  font-size: 16px;
  line-height: 1.8;
}

footer a {
  color: #ff8c42; /* subtle orange for links */
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}



/* Responsive Styles */
@media (max-width: 768px) {
  .nav-links {
    display: none; /* Hide on small screens unless you add mobile menu */
  }

  .header-buttons {
    flex-direction: column;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero p {
    font-size: 1.1rem;
  }

  .card {
    width: 100%;
    max-width: 350px;
  }
}


.flash-banner {
  background-color: #ff0033 !important;
  color: #ffffff !important;
  padding: 14px 0 !important;
  font-weight: bold !important;
  text-align: center !important;
  font-size: 1.2rem !important;
  animation: flash-banner-animation 1.5s infinite;
  position: relative;
  z-index: 2000; /* Make sure it’s above other content */
}



@keyframes flash-banner-animation {
  0% { opacity: 1; }
  50% { opacity: 0.4; }
  100% { opacity: 1; }
}

.about-section {
  background: #fff;
  padding: 60px 20px;
  text-align: center;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.about-section .container {
  max-width: 800px;
  margin: 0 auto;
}

.about-section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #222;
}

.about-section p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 25px;
  line-height: 1.6;
}

.about-section ul {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 10px;
}

.about-section li {
  font-size: 1rem;
  color: #333;
  background: #f4f4f4;
  padding: 10px 15px;
  border-radius: 6px;
  display: inline-block;
  margin: 5px;
}

.how-it-works {
  background: #111; /* dark background to make white text pop */
  color: #fff;
  padding: 60px 20px;
  text-align: center;
}

.how-it-works .container {
  max-width: 1000px;
  margin: 0 auto;
}

.how-it-works h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #fff;
}

.steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.step {
  flex: 1 1 250px;
  max-width: 300px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 20px;
}

.step i {
  font-size: 2.2rem;
  color: #ffcc00;
  margin-bottom: 15px;
}

.step h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #fff;
}

.step p {
  font-size: 0.95rem;
  color: #ccc;
  line-height: 1.4;
}


.visual-highlights {
  background: #f4f4f4;
  padding: 40px 20px;
  text-align: center;
}

.visual-row {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.visual-box {
  width: 200px;
  padding: 20px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.visual-box i {
  font-size: 2.5rem;
  color: #e67e22;
  margin-bottom: 10px;
}

.visual-box p {
  font-weight: 600;
  color: #333;
}


/* Hamburger styles */
.hamburger {
  display: none;
  font-size: 1.5rem;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}

/* Show hamburger only on small screens */
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    background-color: #1f2d3d;
    position: absolute;
    top: 100%;
    right: 0;
    width: 200px;
    text-align: right;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  }

  .nav-links.show {
    display: flex;
  }

  .nav-links a {
    margin: 10px 0;
  }
}


.contact-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  align-items: center;
  margin-top: 10px;
}

.contact-info p {
  margin: 0;
}

.contact-info .divider {
  color: #e67e22;
  font-weight: bold;
}

/* Contact links styling */
.contact-section a {
  text-decoration: none; /* remove underline */
  color: inherit;        /* keep the color same as surrounding text */
  cursor: pointer;       /* shows it's clickable */
}

.contact-section a:hover {
  text-decoration: none; /* no underline on hover */
  color: #007bff;        /* optional: color change on hover */
}


.navbar {
  display: flex;
  justify-content: center; /* center everything horizontally */
  align-items: center;
  background-color: #0b1b36; /* dark navy header */
  padding: 10px 40px;
  position: relative; /* allows absolute positioning for logo */
}

.navbar {
  background: rgba(15, 25, 45, 0.9);
  backdrop-filter: blur(8px);
  padding: 14px 40px;
  transition: background 0.3s ease;
}




/* Left Logo */
.nav-logo {
  position: absolute;
  left: 40px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo img {
  height: 45px;
  width: auto;
}

.nav-logo span {
  font-size: 1.4rem;
  font-weight: 600;
  color: white;
}

/* Centered Nav Links */
.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links li a:hover {
  color: #f97316; /* orange hover */
}

/* Responsive adjustment */
@media (max-width: 768px) {
  .nav-links {
    gap: 15px;
    font-size: 0.9rem;
  }

  .nav-logo {
    left: 20px;
  }
}

h1, h2, h3 {
  font-family: 'Poppins', sans-serif;
  letter-spacing: 0.5px;
}

h1 {
  font-size: 3rem;
  font-weight: 700;
}

h2 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
}

p {
  color: #555;
  font-size: 1.05rem;
  line-height: 1.8;
}


section {
  padding: 100px 0;
}

section {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

section.visible {
  opacity: 1;
  transform: translateY(0);
}


.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 25px;
}

.btn-primary {
  background: linear-gradient(90deg, #e67e22, #f39c12);
  box-shadow: 0 4px 12px rgba(230,126,34,0.4);
  transition: all 0.3s ease;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(230,126,34,0.5);
}



/* --- HAMBURGER MENU FIX --- */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  margin-left: auto; /* Push it to far right */
  z-index: 1100;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background-color: #fff; /* Always white and visible */
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Hamburger toggle animation (X shape) */
.hamburger.toggle span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.toggle span:nth-child(2) {
  opacity: 0;
}
.hamburger.toggle span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile visibility */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  /* Mobile dropdown menu */
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 65px;
    right: 0;
    background: rgba(0, 0, 0, 0.95); /* Dark background */
    width: 100%;
    text-align: center;
    padding: 20px 0;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    padding: 10px 0;
  }

  .nav-links li a:hover {
    color: #00bfff;
  }
}


.fixed-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
}

.top-banner {
  background: #fff3cd;
  color: #856404;
  padding: 10px;
  text-align: center;
  font-weight: 500;
  font-size: 0.95rem;
}

.navbar {
  background-color: #1f2d3d;
  padding: 14px 40px;
}


/* keep navbar positioning predictable for the absolute child */
.navbar {
  position: relative; /* harmless if already set, required for absolute positioning */
}

/* non-intrusive absolute-positioned call box (does NOT affect layout) */
.call-to-book {
  position: absolute;
  top: 50%;
  right: 16px;               /* distance from right edge; adjust if you want */
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  z-index: 50;               /* sits above other header elements */
}



.hero {
  padding-top: 120px; /* header height */
}

@media (max-width: 768px) {
  .hero {
    padding-top: 140px;
  }
}


@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 20px;
    background: #1f2d3d;
    width: 220px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    padding: 10px 0;
    z-index: 1000;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    padding: 10px 20px;
    text-align: left;
  }

  .nav-links li a {
    color: white;
    font-weight: 500;
  }

  .nav-links li a:hover {
    color: #f97316;
  }
}


.loading-spinner {
  border: 5px solid #f3f3f3;
  border-top: 5px solid #007bff;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  animation: spin 1s linear infinite;
  margin: 10px auto;
  display: none;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}



