@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;
}

.about-hero {
  background: url('assets/img/about-section1.png') center/cover no-repeat;
  position: relative;
  height: 135vh;
  /* full screen height */
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.about-story .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 4rem 10%;
}

.about-story .story-content h1 {
  font-size: 1.3rem;
  color: #ff9900;
}

.about-story h1 span {
  font-size: 3rem;
}

.about-story .story-text span {
  color: white;
}

.about-story .story-content {
  flex: 1;
  padding-right: 2rem;
}

.about-story .story-content h2 {
  font-size: 2rem;
  color: #ff9900;
  margin-bottom: 1rem;
}

.about-story .story-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 10px;
}

.about-gallery {
  text-align: center;
  padding: 3rem 10%;
}

.about-gallery h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #ff9900;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  transition: 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.05);
}

.about-mission {
  background-color: #424242;
  text-align: center;
  padding: 3rem 10%;
}

.about-mission h2 {
  color: #ff9900;
  margin-bottom: 1rem;
}

.about-team {
  text-align: center;
  padding: 3rem 10%;
}

.about-team h2 {
  color: #ff9900;
  margin-bottom: 2rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.team-member img {
  width: 100%;
  border-radius: 10px;
}

.team-member h3 {
  margin-top: 1rem;
  color: #ff7b00;
}

.team-member p {
  font-size: 0.9rem;
  color: #d81313;
}

.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;
}