@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 */
.functions-hero {
  position: relative;
  height: 100%;
  top: 45px;
  background: url("assets/img/function-section1.png") center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  overflow: hidden;
}

.functions-hero .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.functions-hero .hero-text {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 20px;
}

.functions-hero h1 {
  font-size: 3rem;
  color: #ffcc66;
  text-shadow: 0 0 15px #ff9900;
}

.functions-hero p {
  font-size: 1.2rem;
  margin: 10px 0 25px;
}

/* Book Button (matches site neon glow) */
.book-btn {
  background: #ff9900;
  padding: 12px 28px;
  border-radius: 50px;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
  box-shadow: 0 0 15px #ff9900;
}

.book-btn:hover {
  background: #ffb733;
  box-shadow: 0 0 30px #ffcc66;
}

.tour-btn {
  background: #ff9900;
  padding: 12px 28px;
  border-radius: 50px;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
  box-shadow: 0 0 15px #ff9900;
}

.tour-btn:hover {
  background: #ffb733;
  box-shadow: 0 0 30px #ffcc66;
}

/* Info Section */
.functions-info {
  display: flex;
  flex-wrap: wrap;
  padding: 60px 10%;
  background: #613c06;
  color: #ff9b05e1;
  align-items: center;
  gap: 40px;
}

.functions-info h2 {
  font-size: 2rem;
  color: #ffcc66;
  margin-bottom: 20px;
}

.functions-info p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #ddd;
}

.info-content {
  flex: 1 1 50%;
}

.info-image {
  flex: 1 1 40%;
}

.info-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
}

/* Gallery */
.functions-gallery {
  background: #613c06;
  text-align: center;
  padding: 60px 5%;
}

.functions-gallery h2 {
  color: rgb(255, 136, 1);
  font-size: 2rem;
  margin-bottom: 30px;
  text-shadow: 0 0 15px #a94e00;
}

.gallery-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.gallery-container img {
  width: 100%;
  border-radius: 12px;
  transition: 0.3s;
}

.gallery-container img:hover {
  transform: scale(1.05);
}

/* CTA Section */
.functions-cta {
  background: #613c06;
  text-align: center;
  padding: 70px 20px;
  color: #fff;
}

.functions-cta h2 {
  color: #ffcc66;
  margin-bottom: 15px;
  font-size: 2rem;
}

.functions-cta p {
  color: #ccc;
  margin-bottom: 30px;
  font-size: 1.1rem;
}

.function-form-section {
  background-color: #e6e6e6;
  padding: 80px 0;
}

.form-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: start;
}

.event-form {
  display: flex;
  gap: 30px;
  width: 100%;
}

.form-left {
  flex: 2;
  display: flex;
  flex-direction: column;
  color: #ff9900;
}

.form-left label {
  font-weight: 600;
  margin-top: 10px;
}

.form-left input,
.form-left select,
.form-left textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  margin-top: 5px;
  font-size: 15px;
}

.form-left textarea {
  height: 120px;
  resize: none;
}

.form-left small {
  color: #ffffff;
  font-size: 12px;
  margin-bottom: 10px;
}

.date-time {
  display: flex;
  gap: 20px;
  margin: 15px 0;
}

.submit-btn {
  background: rgb(255, 145, 0);
  color: rgb(255, 255, 255);
  border: none;
  border-radius: 30px;
  padding: 12px;
  margin-top: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
}

.submit-btn:hover {
  background: #444;
}

.form-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
  color: #ff9100;
}

.info-box {
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.info-box i {
  font-size: 22px;
  color: rgb(235, 152, 0);
  margin-bottom: 5px;
}

.info-box h4 {
  margin-bottom: 5px;
  font-size: 16px;
}

.info-box p {
  color: #000000;
  font-size: 14px;
}

.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;
}