@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;
}



/* ===== Hero Section ===== */
.occasions-hero {
  position: relative;
  height: 100vh;
  background: url('assets/img/function-section2.png') center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #faab00;
}

.hero-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero-content h1 {
  font-size: 3rem;
  font-family: 'Vivaldi', cursive;
  letter-spacing: 1px;
}

.hero-content p {
  margin-top: 1rem;
  font-size: 1.2rem;
  line-height: 1.6;
}

/* ===== Occasions Grid ===== */
.occasions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding: 80px 5%;
  background: #fafafa;
}

.occasion-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.occasion-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.occasion-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.occasion-card h3 {
  margin: 20px 0 10px;
  font-family: 'Vivaldi', cursive;
  color: #333;
}

.occasion-card p {
  font-size: 0.95rem;
  padding: 0 20px 30px;
  color: #666;
}

/* ===== CTA Section ===== */
.cta-section {
  background: #111;
  color: #fff;
  text-align: center;
  padding: 80px 20px;
}

.cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  font-family: 'Vivaldi', cursive;
}

.cta-section p {
  margin-bottom: 25px;
  font-size: 1rem;
  color: #ddd;
}

.btn {
  background: #c59d5f;
  color: #fff;
  padding: 12px 30px;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 500;
  transition: background 0.3s;
}

.btn:hover {
  background: #a8803b;
}


.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;
}