
/* ========== Base ========== */
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: url('background.jpg') no-repeat center center/cover;
  color: white;
}

a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}

/* ========== Navbar ========== */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background-color: #000;
  position: relative;
  z-index: 1000;
}

.logo img {
  max-height: 60px;              /*  Keeps it within navbar height */
  width: auto;
  transform: none;               /*  Removes scaling distortion */
  vertical-align: middle;
}


/* Navigation links */
.nav-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 30px;
  align-items: center;
}

/* Order Now Button */
.order-btn {
  background-color: #E6B800;
  border: none;
  padding: 10px 20px;
  font-weight: bold;
  cursor: pointer;
  color: black;
}

/* Hamburger Icon */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1100;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: white;
  border-radius: 2px;
  display: block;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Close Button for Mobile Nav */
.close-btn {
  display: none;
  position: absolute;
  top: 10px;
  right: 20px;
  background: none;
  border: none;
  font-size: 30px;
  color: white;
  cursor: pointer;
  z-index: 1101;
}

/* ========== Hero Section ========== */
.hero {
  text-align: center;
  padding: 160px 20px 10px; /* ⬆️ More top & bottom space */
  min-height: 100vh;    /* ⬆️ Makes it fill the full viewport height */
  box-sizing: border-box;
  margin-bottom: 0;
}

.hero.main-background {
  background: url('images/dagwood.jpg') center center/cover no-repeat fixed;
  padding-bottom: 30px;
}
.hero.main-background .description {
  color: black;
}

.hero h1 {
  font-family: 'Georgia', serif;
  font-size: 4rem;
  font-weight: bold;
  letter-spacing: 2px;
  color:#E6B800 ;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.6);
  margin-bottom: 20px;
}

.tagline {
  font-size: 1.5rem;
  margin-top: 10px;
  color:black ; 
  font-weight: bold;
}

.description {
  max-width: 600px;
  margin: 20px auto;
  font-size: 1.1rem;
}

.hero-buttons button {
  background-color: #E6B800;
  border: none;
  padding: 12px 24px;
  margin: 10px;
  font-weight: bold;
  cursor: pointer;
  margin-bottom: 5px;
}

.hero-buttons button:hover,
.order-btn:hover {
  background-color: #e6c200;
  transform: scale(1.05);
  transition: 0.2s ease;
}

.center-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 20px 0;
}


/* ========== Menu Grid ========== */
.main-background {
  background: url('images/dagwood.jpg') center center/cover no-repeat fixed;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 30px 20px;
  margin: 0;
}

.menu-title {
  color: #E6B800;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.6);
  font-size: 2.5rem;
  text-align: center;
  margin: 60px auto 40px;
  max-width: 90%;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto 60px;
}

.menu-item {
  background-color: #000;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.menu-item h2 {
  color: #E6B800;
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.menu-item p {
  font-size: 1rem;
}

/* ========== Contact Section ========== */
.contact-section {
  max-width: 600px;
  margin: 60px auto;
  background-color: rgba(0, 0, 0, 0.7);
  padding: 40px;
  border: 2px solid #E6B800;
  border-radius: 10px;
  color: #d2b48c;
}

.contact-title {
  text-align: center;
  font-size: 2.5rem;
  color:#E6B800 ;
  margin-bottom: 30px;
}

.contact-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 20px;
  border: 1px solid #E6B800;
  border-radius: 5px;
  background-color: #222;
  color: white;
}

.contact-form textarea {
  height: 120px;
  resize: none;
}

.submit-btn {
  background-color: #E6B800;
  color: black;
  font-weight: bold;
  padding: 12px 24px;
  border: none;
  cursor: pointer;
  width: 100%;
  border-radius: 5px;
}

.call-contact {
  display: flex;
  align-items: center;
  margin-top: 20px;
  font-size: 1rem;
}

.call-icon {
  height: 20px;
  margin-right: 10px;
}

.call-number {
  color: #ff4d4d;
  font-weight: bold;
  text-decoration: none;
}

.call-number:hover {
  color: #E6B800;
}

/* ========== Footer ========== */
.footer {
  background-color: #000;
  color: white;
  font-family: 'Poppins', sans-serif;
  padding: 40px 20px 20px;
}

/* Desktop Footer Enhancements */
@media (min-width: 769px) {
  .footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
    padding: 40px 60px;
    max-width: 1200px;
    margin: 0 auto;
  }

  .footer-section {
    flex: 1;
    min-width: 200px;
  }

  .footer-section h3 {
    font-size: 1.4rem;
    color: #E6B800;
    margin-bottom: 20px;
    font-weight: 600;
  }

  .footer-section p,
  .footer-section ul li a {
    font-size: 1rem;
    color: #d2b48c;
  }

  .footer-section ul {
    list-style: none;
    padding: 0;
  }

  .footer-section ul li {
    margin-bottom: 10px;
  }

  .footer-section ul li a:hover {
    color: #E6B800;
  }

  .footer-bottom {
    text-align: center;
    padding: 20px;
    font-size: 0.60rem;
    color: #ff4d4d;
    border-top: 1px solid #E6B800;
    margin-top: 20px;
  }

  .social-icons {
    display: flex;
    gap: 20px;
    margin-top: 10px;
  }

  .social-icons a img {
    width: 32px;
    height: 32px;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
  }

  .social-icons a:hover img {
    transform: scale(1.2);
  }
}


/* ========== Popup (Order Now) ========== */
.call-popup {
  display: none;
  position: absolute;
  background-color: #111;
  border: 2px solid #E6B800;
  padding: 16px;
  border-radius: 10px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.5);
  z-index: 1000;
  min-width: 200px;
  max-width: 240px;
  font-size: 0.95rem; /* ⬅️ slightly smaller text */
  color: white;
  text-align: center;
  animation: fadeIn 0.3s ease-in-out;
}


@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

.popup-title {
  font-size: 1.3rem;
  color: #E6B800;
  margin-bottom: 10px;
}

.popup-text {
  font-size: 0.95rem;
  margin-bottom: 15px;
  color: #d2b48c;
}

.call-link {
  display: inline-block;
  background-color: #E6B800;
  color: black;
  font-weight: bold;
  padding: 10px 15px;
  border-radius: 6px;
  text-decoration: none;
  margin-bottom: 10px;
}

.call-link:hover {
  background-color: #e6c200;
}

.popup-hours {
  font-size: 0.9rem;
  color: #ccc;
}

.close-popup {
  position: absolute;
  top: 8px;
  right: 12px;
  font-size: 20px;
  cursor: pointer;
  color: #E6B800;
}

/* ========== Responsive Media Queries ========== */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 24px;
    background: none;
    border: none;
    cursor: pointer;
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1001;
  }
  .hamburger span {
    height: 3px;
    width: 100%;
    background-color: white;
    border-radius: 2px;
    transition: all 0.3s ease;
  }

  /* Transform into X when active */
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

.nav-links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 60px;
    left: auto;
    width: 80%;
    right: 10px;
    max-width: 300px;
    max-height: 60vh;
    height: auto;
    border-radius: 8px;
    background-color: rgba(0,0,0,0.95);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    padding: 20px 15px;
    z-index: 1000;
    overflow-y: auto; /* 👈 prevents overflow from stretching the height */
  }

  .nav-links.show {
    display: flex;
  }

.nav-links li {
    margin: 16px 0;
  }

  .nav-links a {
    color: white;
    font-size: 18px;
  }
  .desktop-only {
    display: none;
  }

  .hero-buttons button,
.order-btn {
  width: auto;              /*  Shrinks to fit content */
  padding: 8px 16px;        /*  Adds comfortable touch area */
  font-size: 0.95rem;       /*  Keeps text readable but compact */
  border-radius: 6px;
  white-space: nowrap;      /*  Prevents text from wrapping */
}

  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-links-container {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .footer {
    padding: 40px 20px;
    background-color: #000;
    border-top: 2px solid #E6B800;
  }

  .footer-section h3 {
    font-size: 1.3rem;
    color: #E6B800;
    margin-bottom: 15px;
    text-align: center;
  }

  .footer-section p,
  .footer-section ul li a {
    font-size: 0.95rem;
    color: #d2b48c;
    text-align: center;
  }

  .footer-section ul {
    padding: 0;
    list-style: none;
    text-align: center;
  }

  .footer-section ul li {
    margin-bottom: 10px;
  }

  .footer-section ul li a:hover {
    color: #E6B800;
  }

  .footer-bottom {
    text-align: center;
    padding: 20px;
    color: #ff4d4d;
    border-top: 1px solid #E6B800;
    margin-top: 20px;
    font-size: 0.85rem; /* Clean, readable, and still subtle */
    line-height: 1.4;
  }

.social-icons {
    justify-content: center;
    margin-top: 10px;
  }

  .social-icons a img {
    width: 28px;
    height: 28px;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
  }

  .social-icons a:hover img {
    transform: scale(1.2);
  }

  .main-background {
    padding: 30px 15px;
  }

  .menu-title {
    font-size: 2rem;
  }

  .menu-item h2 {
    font-size: 1.2rem;
  }

  .menu-item p {
    font-size: 0.95rem;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .tagline {
    font-size: 1.2rem;
  }

  .description {
    font-size: 1rem;
    padding: 0 10px;
  }

  .hero-buttons button {
    width: 100%;
    margin: 10px 0;
  }

  .logo img {
    transform: scale(1.2);
  }
}

@media (max-width: 480px) {
  .menu-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .menu-title {
    font-size: 1.6rem;
  }

  .menu-item {
    margin: 0;
    padding: 15px;
  }

  .contact-section {
    padding: 20px;
    margin: 30px 15px;
  }

  .contact-title {
    font-size: 2rem;
  }

  .contact-form input,
  .contact-form textarea {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

  .call-contact {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .call-number {
    font-size: 1rem;
  }
}

.image-gallery {
  padding: 60px 20px;
  background-color: rgba(0, 0, 0, 0.7);
  border-top: 2px solid #E6B800;
  border-bottom: 2px solid #E6B800;
}

.gallery-title {
  text-align: center;
  font-size: 2.5rem;
  color: #E6B800;
  margin-bottom: 40px;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.6);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.gallery-item {
  background-color: #111;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
  text-align: center;
}

.gallery-item img {
  width: 100%;
  border-radius: 6px;
  margin-bottom: 10px;
}

.caption {
  color: #d2b48c;
  font-size: 1rem;
  font-weight: 500;
}
@media (max-width: 600px) {
  .image-gallery {
    padding: 30px 10px;
  }

  .gallery-title {
    font-size: 1.8rem;
    margin-bottom: 25px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .gallery-item {
    padding: 8px;
  }

  .gallery-item img {
    width: 90%;
    max-width: 220px;
    height: auto;
    margin: 0 auto;
    display: block;
    border-radius: 6px;
  }

  .caption {
    font-size: 0.85rem;
  }

  .call-popup {
    left: 50% !important;
    transform: translateX(-50%);
    width: 90%;
  }
}



