@font-face {
  font-family: 'Vivaldi';
  src: url('assets/fonts/vivaldi.woff2') format('woff2'),
    url('assets/fonts/vivaldi.woff') format('woff'),
    url('assets/fonts/vivaldi.ttf') format('truetype');
}

/* Reset browser defaults */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  color: #222;
  background: #fff;
  overflow-x: hidden;
}

/* ===== Header ===== */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 4rem;
  z-index: 1000;
}

/* ===== Logo Styling ===== */
header .logo {
  display: flex;
  align-items: center;
  gap: 10px;

}

header .logo img {
  height: clamp(40px, 5vw, 60px);
  width: auto;
  object-fit: contain;
  /* Keeps the logo’s proportions */
  border-radius: 100%;
  /* Optional – makes it circular */
}

header .logo span {
  font-family: 'vivaldi', cursive;
  font-size: clamp(1rem, 2vw, 1.6rem);
  font-weight: 700;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.65);
  color: #ff9100;
  letter-spacing: 7px;
}

/* ===== NAVBAR GLOW + ZOOM EFFECT ===== */
nav {
  display: flex;
  gap: 1.8rem;
  transition: all 0.3s ease;
}

nav a {
  font-weight: 500;
  color: #ff8800be;
  font-size: clamp(0.9rem, 1.2vw, 1.1rem);
  text-decoration: none;
  transition: all 0.28s ease;
  position: relative;
}

/* Glow + Zoom on Hover */
nav a:hover {
  color: #ffd152;
  /* golden glow color */
  transform: scale(1.12);
  text-shadow: 0 0 6px rgba(255, 209, 82, 0.3px);
}

/* Optional underline glow animation */
nav a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  transform: translateX(-50%) scaleX(0);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #f3b23a, #fce57e);
  border-radius: 2px;
  transition: transform 0.3s ease;
}

nav a:hover::after {
  transform: translateX(-50%) scaleX(1);
}

/* ===== BOOK A TABLE BUTTON WITH GOLDEN PULSE GLOW ===== */
.cta {
  background: linear-gradient(90deg, #f8b551e8, #66ffd1);
  color: #000;
  padding: 0.7rem 1.5rem;
  border-radius: 5px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.2);
  animation: pulseGlow 4s infinite ease-in-out;
}

/* Hover: stronger glow and zoom */
.cta:hover {
  transform: scale(1.08);
  background: linear-gradient(90deg, #ffd152, #ffe88a);
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.6);
  color: #000;
}

/* ===== PULSE GLOW ANIMATION ===== */
@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 5px rgba(255, 215, 0, 0.3), 0 0 10px rgba(255, 215, 0, 0.2);
  }

  50% {
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.6), 0 0 50px rgba(255, 215, 0, 0.3);
  }

  100% {
    box-shadow: 0 0 5px rgba(255, 215, 0, 0.3), 0 0 10px rgba(255, 215, 0, 0.2);
  }
}

.menu-toggle {
  display: none;
  font-size: 1.8rem;
  background: none;
  border: none;
  cursor: pointer;
  color: #222;
}


/* --- Typography Scaling --- */
h1 {
  font-size: clamp(1.8rem, 4vw, 3rem);
}

h2 {
  font-size: clamp(1.5rem, 3vw, 2.4rem);
}

h3 {
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
}

p,
a,
span,
li {
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  line-height: 1.6;
}

.takeout-hero {
  position: relative;
  background: url("assets/img/takeout-hero.jpg") center/cover no-repeat;
  height: clamp(45vh, 65vh, 75vh);
  display: flex;
  align-items: center;
  justify-content: center;
}

.takeout-hero .hero-overlay {
  background: rgba(255, 145, 0, 0.788);
  text-align: center;
  padding: 2rem;
  max-width: 700px;
  border-radius: 12px;
}

.takeout-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4.2vw, 3.6rem);
  margin-bottom: .8rem;
  color: var(--gold);
}

.takeout-hero p {
  font-size: clamp(1rem, 1.5vw, 1.3rem);
  line-height: 1.4;
  color: #eee;
}

.takeout-info {
  padding: 4rem 5%;
  text-align: center;
}

.takeout-info h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  margin-bottom: 1rem;
  color: var(--gold);
}

.takeout-info p {
  font-size: clamp(.95rem, 1.2vw, 1.2rem);
  max-width: 850px;
  margin: 0 auto;
}

.info-steps {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
  padding-top: 2rem;
}

.info-steps .step {
  flex: 1 1 220px;
  background: rgb(255, 167, 4);
  padding: 2rem;
  border-radius: var(--radius);
  color: #fff;
  transition: transform .25s;
}

.info-steps .step:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.12);
}

.info-steps .step i {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: .6rem;
  color: var(--accent);
}

.info-steps .step h3 {
  font-size: clamp(1.1rem, 2vw, 1.8rem);
  margin-bottom: .5rem;
}

.info-steps .step p {
  font-size: clamp(.9rem, 1.1vw, 1.1rem);
  line-height: 1.45;
}

.takeout-menu-preview {
  padding: 4rem 5%;
  text-align: center;
}

.takeout-menu-preview h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  margin-bottom: 1.5rem;
  color: var(--gold);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.menu-item {
  background: rgba(255, 255, 255, 0.05);
  padding: 1.5rem;
  border-radius: var(--radius);
  transition: transform .22s;
}

.menu-item:hover {
  transform: scale(1.04);
}

.menu-item img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  margin-bottom: .8rem;
}

.menu-item p {
  font-size: clamp(.9rem, 1.1vw, 1.15rem);
}

.takeout-menu-preview .btn {
  padding: .6rem 1.2rem;
  font-size: clamp(.95rem, 1.1vw, 1.2rem);
  border-radius: 50px;
  background: var(--gold);
  color: #000;
  text-decoration: none;
  font-weight: 600;
  transition: transform .22s;
}

.takeout-menu-preview .btn:hover {
  transform: translateY(-4px);
}


.footer {
  background-color: #000;
  color: #ccc;
  padding: 50px 5%;
  font-family: 'Poppins', sans-serif;
}

/* Style for phone number and email links */
.footer a[href^="tel"],
.footer a[href^="mailto"] {
  color: #ff9c08;
  /* Change this to your desired color */
  font-weight: 500;
  text-decoration: none;
  transition: 0.3s;
}

/* Optional hover effect */
.footer a[href^="tel"]:hover,
.footer a[href^="mailto"]:hover {
  color: #0bc8f7;
  /* Turns white when hovered */
}


.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  border-bottom: 1px solid #333;
  padding-bottom: 25px;
}

.footer-column {
  flex: 1 1 200px;
  margin: 20px;
}

.footer-logo {
  font-size: 2rem;
  margin-top: -10px;
  font-weight: bold;
  color: white;
  font-family: 'Playfair Display', serif;
}

.footer-column h3 {
  color: white;
  margin-bottom: 15px;
  font-size: 1rem;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin: 8px 0;
}

.footer-column ul li a {
  text-decoration: none;
  color: #aaa;
  transition: 0.3s;
}

.footer-column ul li a:hover {
  color: white;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  font-size: 0.9rem;
  color: #777;
}

.footer-bottom h3 {
  color: #eb8007;
}

.social-icons {
  margin: 15px 0;
}

.social-icons a {
  color: #ffffffe0;
  margin: 0 8px;
  font-size: 1.2rem;
  transition: 0.3s;
}

.social-icons a:hover {
  color: rgb(24, 218, 252);
}

.powered {
  color: #777;
}

.powered .iclx {
  color: #00ffff;
  font-weight: bold;
}

@media(max-width:768px) {
  .info-steps {
    flex-direction: column;
    gap: 1.4rem;
  }

  .takeout-hero {
    height: 55vh;
  }
}

@media(max-width:480px) {
  .header .logo span {
    font-size: clamp(1rem, 4vw, 1.4rem);
  }

  .cta {
    font-size: clamp(.9rem, 2vw, 1rem);
  }

  .takeout-hero {
    height: 45vh;
    padding: 0 1rem;
  }
}