/* ===================================================
   Mountain Shadow Resort — Luxury Theme Stylesheet
   =================================================== */

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Inter', sans-serif;
  color: #fff;
  background: #0a0a0a;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  display: block;
  max-width: 100%;
}

/* ---------- Design Tokens ---------- */
:root {
  --gold:        #c9a84c;
  --gold-light:  #e4c76b;
  --gold-dark:   #9a7a2e;
  --white:       #ffffff;
  --off-white:   #f5f0e8;
  --dark:        #0d0d0d;
  --dark-overlay: rgba(10, 10, 10, 0.55);
  --glass-bg:    rgba(15, 15, 15, 0.45);
  --glass-border:rgba(201, 168, 76, 0.25);
  --transition:  0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --shadow-gold: 0 4px 30px rgba(201, 168, 76, 0.15);
}

/* ---------- Floating Navbar ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 0 clamp(1.5rem, 4vw, 4rem);
  height: 80px;
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 3rem);
  background: var(--glass-bg);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  border-bottom: 1px solid var(--glass-border);
  transition: background var(--transition);
}

.navbar__logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 1.5px;
  white-space: nowrap;
  text-transform: uppercase;
  flex-shrink: 0;
  margin-right: auto;
}

.navbar__logo span {
  color: var(--white);
  font-weight: 400;
}

.navbar__menu {
  display: flex;
  align-items: center;
  gap: clamp(0.8rem, 2vw, 2rem);
  flex-wrap: nowrap;
  margin-left: auto;
}

.navbar__link {
  position: relative;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--off-white);
  padding: 6px 0;
  transition: color var(--transition);
  white-space: nowrap;
}

.navbar__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  transition: width var(--transition);
}

.navbar__link:hover {
  color: var(--gold-light);
}

.navbar__link:hover::after {
  width: 100%;
}

/* Mobile hamburger (hidden on desktop) */
.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1100;
  background: none;
  border: none;
  padding: 4px;
}

.navbar__hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: var(--transition);
}

/* ---------- Hero Section ---------- */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-video,
.restaurant-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.hero::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 0;
}
/* CONTENT ABOVE VIDEO */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  animation: heroZoom 25s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  0%   { transform: scale(1);   }
  100% { transform: scale(1.08); }
}

/* Dark gradient overlay */
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(
      to bottom,
      rgba(10, 10, 10, 0.65) 0%,
      rgba(10, 10, 10, 0.4) 40%,
      rgba(10, 10, 10, 0.7) 70%,
      rgba(10, 10, 10, 0.80) 100%
    );
}

/* Gold vignette accent */
.hero__overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 50% 80%,
    rgba(201, 168, 76, 0.06) 0%,
    transparent 65%
  );
}

/* ---------- Hero Content ---------- */
.hero__content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 800px;
  padding: 0 1.5rem;
  animation: fadeUp 1.2s ease-out;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Decorative top line */
.hero__content::before {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto 1.8rem;
  animation: lineGrow 1.4s ease-out 0.4s both;
}

@keyframes lineGrow {
  from { width: 0;  opacity: 0; }
  to   { width: 60px; opacity: 1; }
}

.hero__subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 15px;
  opacity: 0.9;
  animation: fadeUp 1.2s ease-out 0.2s both;
}

.hero__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
  text-shadow:
    0 4px 20px rgba(0,0,0,0.7),
    0 8px 40px rgba(0,0,0,0.6);
  margin-bottom: 0.5rem;
  animation: fadeUp 1.2s ease-out 0.35s both;
}

.hero__title span {
  display: block;
  color: var(--gold);
}

.hero__tagline {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 10px;
  margin-bottom: 30px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.6);
  animation: fadeUp 1.2s ease-out 0.5s both;
}

/* ---------- Book Now Button ---------- */
.btn-book {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 40px;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: black;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  border: none;
  border-radius: 0;
  cursor: pointer;
  overflow: hidden;
  transition: 0.3s;
  animation: fadeUp 1.2s ease-out 0.65s both;
}

.btn-book::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  opacity: 0;
  transition: opacity var(--transition);
}

.btn-book:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(201, 168, 76, 0.5);
}

.btn-book:hover::before {
  opacity: 1;
}

.btn-book__text {
  position: relative;
  z-index: 1;
}

.btn-book__arrow {
  position: relative;
  z-index: 1;
  display: inline-block;
  transition: transform var(--transition);
}

.btn-book:hover .btn-book__arrow {
  transform: translateX(5px);
}

/* ---------- Scroll Indicator ---------- */
.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 48%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: fadeUp 1.2s ease-out 1s both;
}

.scroll-indicator__text {
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.scroll-indicator__line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50%      { opacity: 1;   transform: scaleY(1);   }
}
#gallery {
  display: block !important;
  padding-top: 120px;
  justify-content: center;
  align-items: center;
}
#gallery .section__inner {
  max-width: 700px;
  margin: 0 auto 60px auto;
  text-align: center;
}
/* ===== PREMIUM GALLERY ===== */
/* ===== PREMIUM GALLERY ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 250px;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.gallery-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border-radius: 18px;
}

/* Different sizes */
.gallery-card.big {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-card.wide {
  grid-column: span 2;
}

/* Image */
.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

/* Overlay */
.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  color: white;
  transform: translateY(20px);
  opacity: 0;
  transition: 0.4s;
}

/* Show on hover */
.gallery-card:hover .gallery-overlay {
  transform: translateY(0);
  opacity: 1;
}

.gallery-overlay h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
}

.gallery-overlay p {
  font-size: 12px;
  opacity: 0.7;
}

/* Zoom effect */
.gallery-card:hover img {
  transform: scale(1.1);
}

/* FIX ABOUT SECTION */
#about {
  display: flex;
  flex-direction: column;   /* stack items vertically */
  justify-content: center;  /* center vertically */
  align-items: center;      /* center horizontally */
  text-align: center;
  padding: 120px 20px;
}
#about .section__inner {
  max-width: 700px;
  margin: 0 auto;
}
/* ===== ABOUT IMAGE SECTION ===== */
.about-hero {
  margin-bottom: 150px;
  position: relative;
  min-height: 70vh;
  background: url("../images/group.png") center/cover no-repeat;
  background-position: center;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  text-align: center;
  padding: 140px 20px 80px;
}
/* Dark overlay */
.about-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.1), #0a0a0a);
  
}
/* Content */
 .about-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  
  display: flex;
  flex-direction: column;
  align-items: center;   /* center horizontally */
  justify-content: center;

  text-align: center;
}

/* Text styles */
.about-content .section__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.1rem);
  letter-spacing: 1px;
  color: var(--gold);

  text-shadow:
    0 2px 10px rgba(0,0,0,0.6),
    0 6px 30px rgba(0,0,0,0.8);
}

.about-content .section__text {
  font-size: 17px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.85);
  max-width: 1000px;
  margin: 20px auto 0;
}
.about-content {
  
  backdrop-filter: blur();
  padding: 40px;
  border-radius: 1px;

}

.team-section {
  margin-top: 80px;
  text-align: center;
  margin-bottom: 150px;
  padding: 0 20px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.team-title {
  font-family: 'Playfair Display';
  font-size: 28px;
  color: #9a7a2e;
  margin-bottom: 40px;
}

/* GRID */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARD */
.team-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,168,76,0.3);
  padding: 25px;
  border-radius: 12px;
  transition: 0.4s;
}

.team-card:hover {
  transform: translateY(-10px);
  border-color: var(--gold);
}

/* IMAGE */
.team-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}

/* NAME */
.team-card h4 {
  font-family: 'Playfair Display';
  margin-bottom: 5px;
}

/* ROLE */
.role {
  color: var(--gold);
  font-size: 13px;
  margin-bottom: 10px;
}

/* DESC */
.desc {
  font-size: 13px;
  opacity: 0.7;
}

.restaurant-hero {
  position: relative;
  height: 85vh;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 80px;
}

/* VIDEO styles merged above with .hero-video */

/* DARK LUXURY OVERLAY */
.restaurant-overlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      to bottom,
      rgba(0,0,0,0.72),
      rgba(0,0,0,0.82)
    );

  z-index: 1;
}

/* CONTENT */
.restaurant-content {
  position: relative;
  z-index: 2;

  max-width: 850px;
  padding: 0 20px;

  text-align: center;
}

/* TITLE */
.restaurant-content .section__title {
  color: var(--gold);

  text-shadow:
    0 4px 20px rgba(0,0,0,0.7);

  margin-bottom: 20px;
}

/* TEXT */
.restaurant-content .section__text {
  color: rgba(255,255,255,0.88);

  line-height: 1.9;

  text-shadow:
    0 2px 12px rgba(0,0,0,0.7);
}

/* SMOOTH FADE TO NEXT SECTION */
.restaurant-hero::after {
  content: "";

  position: absolute;
  left: 0;
  bottom: 0;

  width: 100%;
  height: 140px;

  background:
    linear-gradient(
      to bottom,
      rgba(10,10,10,0),
      #0a0a0a
    );

  z-index: 2;
}

/* ===== MENU SECTION ===== */
.menu-section {
  position: relative;

  padding: 80px 20px 200px;

  text-align: center;

  background: #0a0a0a;

  overflow: hidden;
}

.menu-section::after {
  content: "";

  position: absolute;

  left: 0;
  bottom: 0;

  width: 100%;
  height: 180px;

  background: linear-gradient(
    to bottom,
    rgba(10,10,10,0),
    rgba(10,10,10,0.65),
    rgba(10,10,10,0.92)
  );

  z-index: 1;
}

.menu-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  max-width: 900px;
  margin: auto;
  height: auto;
}
.menu-toggle {
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
}

.toggle-slider {
  position: relative;
  display: flex;
  width: 220px;
  border-radius: 50px;
  border: 1px solid rgba(201,168,76,0.4);
  overflow: hidden;
}

.slider {
  position: absolute;
  top: 3px;
  left: 3px;
  width: calc(50% - 6px);
  height: calc(100% - 6px);
  box-shadow: 0 0 15px rgba(201,168,76,0.5);
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 50px;

  transition: transform 0.4s ease;
  z-index: 0;
}

.toggle-btn {
  flex: 1;
  padding: 10px 0;
  background: none;
  border: none;
  color: var(--gold);
  cursor: pointer;
  z-index: 1;
}
.toggle-btn.active {
  color: black;
}

/* Cards */
.menu-card {
  width: 100%;
  height: 260px;
  position: relative;
  align-items: center;
  overflow: hidden;
  display: block;
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 18px;
  transition: 0.4s;

}

/* Image */
.menu-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 1;
  transition:transform 0.5s ease;
  border-radius: 18px;
  object-position: center right;

}

/* Overlay content */
.menu-info {
  opacity: 1;
  transform: translateY(10px);
  transition: 0.4s;
  position: absolute;
  bottom: 0;
  left:0;
  width: 100px;
  padding: 20px;
  background: linear-gradient(to top,rgba(0,0,0,0.9),rgba(0,0,0,0.2),transparent);
  backdrop-filter: blur(8px);
  z-index: 2;
  border-radius:0 0 18px 18px;
}

/* Hover effect */
.menu-card:hover img {
  transform: scale(1.1);
}

.menu-card:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
}
.menu-card:hover .menu-info
{
  opacity: 1;
  transform: translateY(0);

}
.menu-card h3 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 10px;

  font-size: 1.2rem;
  color: white;
  margin: 0;

}

.menu-card p {
  font-size: 14px;
  opacity: 0.7;
}

.menu-card span {
  display: block;
  margin-top: 10px;
  color: var(--gold);
  font-weight: bold;
}
.menu-info h3 {
  max-width: 0;
  font-size: 1.3rem;
  font-family: 'Playfair Display', serif;
  color: white;
}

.menu-info p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.);
}

.menu-info span {
  color: var(--gold);
  font-weight: bold;
}

.reviews-section {
  position: relative;

  min-height: 100vh;

  background:
    linear-gradient(
      to bottom,
      rgba(0,0,0,0.35),
      rgba(0,0,0,0.58),
      rgba(10,10,10,0.92)
    ),
    url("/static/images/custcontact.jpg");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  flex-direction: column;

  align-items: center;
  justify-content: center;

  text-align: center;

  padding: 120px 20px;

  overflow: hidden;
}

.reviews-section::before {
  content: "";

  position: absolute;
  inset: 0;

  background:
    radial-gradient(
      circle at center,
      rgba(201,168,76,0.08),
      transparent 70%
    );

  z-index: 0;
}


.review-hero-content {
  position: relative;
  z-index: 2;

  max-width: 980px;

  padding: 55px 50px;


}

.reviews-section::after {
  content: "";

  position: absolute;

  left: 0;
  bottom: 0;

  width: 100%;
  height: 180px;

  background:
    linear-gradient(
      to bottom,
      rgba(10,10,10,0),
      #0a0a0a
    );

  z-index: 1;
}

.review-hero {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.review-hero-content .section__title {
  font-family: 'Playfair Display', serif;

  font-size: 40px;

  font-weight: 600;

  letter-spacing: 1px;

  line-height: 1.15;

  color: var(--gold);

  margin-bottom: 22px;

  text-shadow:
    0 2px 12px rgba(0,0,0,0.45);
}

.review-hero-content .section__text {
  font-size: 17px;

  line-height: 1.9;

  font-weight: 400;

  color: rgba(255,255,255,0.82);

  max-width: 760px;

  margin: auto;

  text-shadow:
    0 2px 10px rgba(0,0,0,0.45);
}

.review-hero-content::before {
  content: "GUEST STORIES | LUXURY EXPERIENCES | 2025";

  display: block;

  margin-bottom: 28px;

  font-size: 13px;

  letter-spacing: 4px;

  font-weight: 400;

  color: rgba(255,255,255,0.55);
}

.reviews-slider {
  position: relative;
  z-index: 2;
  margin-top: 120px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 40px 20px;
}

.guest-section {
    background: #0a0a0a;

    padding: 120px 20px;

    text-align: center;
}

/* Card */
.review-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  min-height: 260px;
  min-width: 300px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,168,76,0.3);
  padding: 30px;
  border-radius: 12px;
  backdrop-filter: blur(10px);
  transition: 0.4s;
  align-items: center;
  text-align: center;
}

.review-card:hover {
  transform: translateY(-10px);
  border-color: var(--gold);
}

/* Image */
.review-img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin-bottom: 15px;
}

/* Name */
.review-card h3 {
  font-family: 'Playfair Display';
}


/* Location */
.location {
  font-size: 12px;
  opacity: 0.6;
}

/* Stars */
.stars {
  color: var(--gold);
  margin: 10px 0;
}

/* Text */
.review-text {
  font-size: 14px;
  opacity: 0.8;
}

  .review-card h3 {
  margin-bottom: 5px;
}

.location {
  margin-bottom: 10px;
}



.contact-hero {
  position: relative;
  min-height: 60vh;
  background:
    linear-gradient(
      to bottom,
      rgba(0,0,0,0.45),
      rgba(0,0,0,0.55),
      rgba(10,10,10,0.88)
    ),
    url("../images/mycontactimg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 120px 20px;
}

.contact-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.contact-hero::after {
  content: "";

  position: absolute;

  left: 0;
  bottom: 0;

  width: 100%;
  height: 220px;

  background:
    linear-gradient(
      to bottom,
      rgba(10,10,10,0),
      rgba(10,10,10,0.45),
      #0a0a0a
    );

  z-index: 1;
}

/* Dark overlay for readability */
.contact-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);

}

.contact-section {
  padding: 100px 20px;
  text-align: center;
}

/* GRID SAME AS REVIEWS */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 900px;
  margin: 50px auto;
}

/* CARDS */
.contact-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,168,76,0.3);
  padding: 30px;
  border-radius: 12px;

  display: flex;
  flex-direction: column;
  justify-content: center;

  min-height: 200px;

  transition: 0.4s;
}

/* HOVER */
.contact-card:hover {
  transform: translateY(-10px);
  border-color: var(--gold);
}

/* TITLE */
.contact-card h3 {
  font-family: 'Playfair Display';
  margin-bottom: 10px;
}

/* TEXT */
.contact-card p {
  font-size: 14px;
  opacity: 0.8;
}

/* ===== AWARD SECTION ===== */

.award {
  padding: 40px 20px 80px;
  background: #0a0a0a;
}

.award-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* TOP CONTENT */
.award .section__inner {
  text-align: center;
  margin:0;
  max-width: 900px;
}

.award .section__title {
  font-size: 40px;
  color: var(--gold);
  margin-bottom: 20px;
}

.award .section__text {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
  color: rgba(255,255,255,0.75);
}

/* GRID */
.awards-grid {
  position: relative;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;

  width: 100%;
  max-width: 1200px;

  margin: 5px auto 0;

  align-items: stretch;

  padding-top: 0;
}

/* KEEP CARDS ABOVE EFFECT */
.award-card {
  position: relative;
  z-index: 2;
}

/* CARD */
.award-card {
  background: #0a0a0a;
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 18px;

  padding: 45px 30px;

  text-align: center;

  transition: 0.4s;
  box-shadow: 0 0 25px rgba(0,0,0,0.4);
}

/* HOVER */
.award-card:hover {
  transform: translateY(-10px);
  border-color: var(--gold);
}

/* TITLE */
.award-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  margin-bottom: 15px;
  color: white;
}

/* TEXT */
.award-card p {
  font-size: 18px;
  color: rgba(255,255,255,0.8);
}

/* YEAR */
.award-card span {
  display: block;
  margin-top: 20px;

  color: var(--gold);

  font-size: 26px;
  font-weight: bold;
}

/* IMAGE AREA */
.award-images{
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 22px;

    margin-bottom: 30px;
}

/* BIG CENTER CIRCLE */
.main-award{
    width: 135px;
    height: 135px;

    object-fit: cover;

    border-radius: 50%;

    border: 2px solid rgba(212,175,55,0.35);

    opacity: 0.9;

    filter:
      brightness(0.9)
      contrast(1.05);

    box-shadow:
      0 0 30px rgba(212,175,55,0.15);

    margin-bottom: 15px;

    transition: 0.4s ease;
}

.small-award{
    width: 48px;
    height: 48px;

    object-fit: cover;

    border-radius: 50%;

    border: 2px solid rgba(212,175,55,0.25);

    opacity: 0.85;

    transition: 0.4s ease;
}

/* SMALL CIRCLE CONTAINER */
/* SMALL CIRCLES */

/* HOVER EFFECT */
.award-card:hover .main-award{
    transform: scale(1.05);

    box-shadow:
      0 0 40px rgba(212,175,55,0.25);
}

.award-card:hover .small-images img{
    transform: scale(1.08);
}

/* ---------- Sections (placeholder) ---------- */
.section {
  padding: 6rem 2rem;
  background: var(--dark);
  padding: 90px 20px;
}

.section__inner {
  max-width: 900px;
  text-align: center;
}

.section__badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--glass-border);
  padding: 8px 24px;
  margin-bottom: 20px;
  border-radius: 2px;
  font-size: 11px;
  letter-spacing: 4px;
  padding: 6px 22px;
  color: #c9a84c;

  border: 1px solid rgba(201,168,76,0.4);
  background: rgba(0,0,0,0.3);

  backdrop-filter: blur(6px);

}

.section__title {
  text-align: top;
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--gold-dark);
  margin: 10px 0 20px;
  margin-bottom: 1rem;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-size: 50px;

  letter-spacing: 1px;
  color: var(--gold-dark);

  margin-bottom: 15px;

  /* premium look */
  text-shadow: 0 2px 15px rgba(0,0,0,0.6);
}

.section__text {
  font-size: 1rem;
  line-height: 1.8;
  color: rgb(255, 255, 255);
  max-width: 650px;
  margin: 0 auto;
  text-align: center;
  line-height: 1.8;
}

/* ---------- Footer ---------- */
/* =========================
   LUXURY FOOTER
========================= */

.footer {
  position: relative;

  background: #050505;

  padding-top: 90px;

  border-top: 1px solid rgba(201,168,76,0.15);

  overflow: hidden;
}

/* subtle gold glow */
.footer::before {
  content: "";

  position: absolute;
  top: 0;
  left: 50%;

  transform: translateX(-50%);

  width: 500px;
  height: 1px;

  background: linear-gradient(
    to right,
    transparent,
    rgba(201,168,76,0.7),
    transparent
  );
}

/* MAIN CONTAINER */
.footer-container {
  max-width: 1200px;

  margin: auto;

  padding: 0 20px 60px;

  display: grid;
  grid-template-columns: 2fr 1fr 1fr;

  gap: 80px;
}

/* COLUMN */
.footer-col h3 {
  font-family: 'Playfair Display', serif;

  color: var(--gold);

  margin-bottom: 25px;

  font-size: 24px;
}

/* BRAND */
.footer-brand h2 {
  font-family: 'Playfair Display', serif;

  font-size: 42px;

  color: var(--gold);

  margin-bottom: 20px;

  letter-spacing: 2px;
}

.footer-brand span {
  color: white;
}

.footer-brand p {
  color: rgba(255,255,255,0.72);

  line-height: 1.9;

  max-width: 420px;
}

/* LINKS */
.footer-col ul {
  display: flex;
  flex-direction: column;

  gap: 14px;
}

.footer-col ul li a {
  color: rgba(255,255,255,0.7);

  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: var(--gold);

  padding-left: 5px;
}

/* CONTACT */
.footer-col p {
  color: rgba(255,255,255,0.72);

  margin-bottom: 14px;

  line-height: 1.7;
}

/* SOCIALS */
.footer-socials {
  margin-top: 25px;

  display: flex;
  gap: 18px;

  flex-wrap: wrap;
}

.footer-socials a {
  color: rgba(255,255,255,0.65);

  transition: 0.3s;
}

.footer-socials a:hover {
  color: var(--gold);
}

/* BOTTOM */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);

  padding: 25px 20px;

  text-align: center;
}

.footer-bottom p {
  color: rgba(255,255,255,0.45);

  font-size: 14px;

  letter-spacing: 1px;
}

/* ========================================
   Responsive Design
   ======================================== */

/* Tablet & below — switch to hamburger menu */
@media (max-width: 1280px) {
  .navbar {
    height: 70px;
  }

  .navbar__hamburger {
    display: flex;
  }

  .navbar__menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    background: rgba(10, 10, 10, 0.96);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-left: 1px solid var(--glass-border);
    transition: right var(--transition);
    padding: 2rem;
  }

  .navbar__menu.active {
    right: 0;
  }

  .navbar__link {
    font-size: 0.9rem;
    letter-spacing: 3px;
  }

  /* Hamburger → X */
  .navbar__hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .navbar__hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .navbar__hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .hero__content::before {
    margin-bottom: 1.2rem;
  }

  .btn-book {
    padding: 14px 36px;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .navbar__logo {
    font-size: 1.3rem;
  }

  .hero__subtitle {
    font-size: 0.7rem;
    letter-spacing: 3px;
  }

  .hero__tagline {
    font-size: 0.95rem;
  }

  .navbar__menu {
    width: 100%;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }

  .footer-brand h2 {
    font-size: 28px;
  }

  .menu-section {
    padding-bottom: 120px;
  }
}

/* Tablet layouts */
@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 220px;
  }

  .team-grid,
  .awards-grid,
  .contact-grid,
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .reviews-slider {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-hero {
    min-height: 55vh;
    padding-top: 110px;
  }

  .restaurant-hero {
    height: 70vh;
  }
}

/* Mobile layouts */
@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
    padding: 0 16px;
  }

  .team-grid,
  .awards-grid,
  .contact-grid,
  .footer-container,
  .reviews-slider {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .team-section,
  .guest-section,
  .menu-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .contact-grid {
    margin: 40px 16px;
    padding: 0;
  }

  .footer-container {
    padding: 0 16px 40px;
    gap: 32px;
  }

  .award .section__title {
    font-size: clamp(1.6rem, 6vw, 2.2rem);
  }

  .about-content {
    padding: 24px;
  }

  .about-content .section__text {
    font-size: 15px;
  }

  .menu-grid {
    grid-template-columns: 1fr;
  }

  .menu-card,
  .menu-card img {
    height: 220px;
  }

  .reviews-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding: 20px 16px;
    -webkit-overflow-scrolling: touch;
  }

  .review-card {
    min-width: min(85vw, 320px);
    scroll-snap-align: start;
    flex-shrink: 0;
  }

  .contact-hero {
    min-height: 50vh;
    padding: 100px 16px 60px;
  }

  .restaurant-hero {
    height: 60vh;
    min-height: 360px;
  }
}
