/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* GLOBAL */
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Raleway', sans-serif;
  background: #000;
  color: #fff;
  line-height: 1.6;
}

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

a {
  text-decoration: none;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
}

.section {
  padding: 100px 8%;
}

.section-header {
  max-width: 760px;
  margin: 0 auto 50px;
  text-align: center;
}

.section-tag {
  display: inline-block;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #caa35c;
  margin-bottom: 12px;
  font-weight: 600;
}

.section-header h2 {
  font-size: 2.7rem;
  margin-bottom: 16px;
}

.section-intro {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.82);
}

.dark-section {
  background: #050505;
}

/* HEADER */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 40px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}


.logo-container img {
  height: 60px;
  width: auto;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.main-nav a {
  color: #fff;
  font-weight: 500;
  transition: color 0.3s ease;
}

.main-nav a:hover {
  color: #fbb74a;
}

.sound-btn {
  position: fixed;
  bottom: 90px;
  right: 20px;
  z-index: 1001;

  width: 50px;
  height: 50px;

  border: none;
  border-radius: 50%;

  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);

  color: #fff;
  font-size: 20px;
  cursor: pointer;

  box-shadow: 0 4px 15px rgba(0,0,0,0.4);
  transition: all 0.3s ease;
}

.sound-btn:hover {
  transform: scale(1.1);
  background: rgba(255, 255, 255, 0.15);
}

.order-btn {
  padding: 10px 20px;
  border: 1px solid #fbb74a;
  color: #fbb74a;
  border-radius: 25px;
  transition: 0.3s ease;
  font-weight: 600;
  white-space: nowrap;
}

.order-btn:hover {
  background: #fbb74a;
  color: #000;
}



/* HERO */
.hero {
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.hero video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.58);
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(90%, 700px);
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
}

.hero-content h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: #fbb74a;
  margin-bottom: 15px;
}

.hero-content p {
  font-size: 1.2rem;
  color: #f3f3f3;
}

.hero-btn {
  display: inline-block;
  margin-top: 24px;
  font-size: 1.05rem;
  padding: 14px 30px;
}

/* ABOUT */
.about-section {
  background: #000;
}

.team-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.team-card {
  background: #141414;
  padding: 25px;
  border-radius: 18px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.18);
}

.team-card img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 15px;
}

.team-card h3 {
  margin-bottom: 6px;
  font-size: 1.35rem;
}

.team-card .role {
  color: #fbb74a;
  font-weight: 700;
  margin-bottom: 10px;
}

.team-card p {
  color: #ccc;
  font-size: 0.97rem;
}

.about-closing {
  text-align: center;
  font-style: italic;
  color: #bbb;
  max-width: 900px;
  margin: 0 auto;
}

/* MENU */
.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 20px 0 35px;
}

.tab-btn {
  padding: 10px 20px;
  border: 1px solid #fbb74a;
  background: transparent;
  color: #fff;
  cursor: pointer;
  border-radius: 30px;
  transition: 0.3s ease;
}

.tab-btn.active,
.tab-btn:hover {
  background: #fbb74a;
  color: #000;
}

.menu-content {
  display: none;
}

.menu-content.active {
  display: block;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.menu-card {
  background: #141414;
  padding: 18px;
  border-radius: 16px;
  text-align: left;
  transition: transform 0.3s ease;
}

.menu-card:hover {
  transform: translateY(-5px);
}

.menu-card img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 16px;
}

.menu-card h3 {
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.menu-card p {
  color: #d3d3d3;
  margin-bottom: 12px;
}

.menu-card span {
  color: #fbb74a;
  font-weight: 700;
}

/* STAFF */
.staff-section {
  background: #000;
}

.staff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}

.staff-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  min-height: 480px;
  background: #111;
}

.staff-card img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.staff-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.92), rgba(0,0,0,0.12));
}

.staff-card:hover img {
  transform: scale(1.06);
}

.staff-info {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  text-align: left;
}

.staff-info h3 {
  margin-bottom: 8px;
  font-size: 1.5rem;
}

.staff-info p {
  color: #e0e0e0;
  font-size: 0.95rem;
}

/* EVENTS */
.events-page {
  background:
    linear-gradient(rgba(0,0,0,0.72), rgba(0,0,0,0.82)),
    url("images/events/events-bg.jpg") center/cover no-repeat;
  padding: 120px 8% 90px;
  color: #fff;
}

.events-page-header {
  max-width: 760px;
  margin: 0 auto 50px;
  text-align: center;
}

.events-eyebrow {
  color: #fbb74a;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 12px;
}

.events-page-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  margin-bottom: 16px;
}

.events-subtext {
  color: rgba(255,255,255,0.82);
  font-size: 1.05rem;
  line-height: 1.8;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  max-width: 1300px;
  margin: 0 auto;
}

.event-card {
  background: rgba(20,20,20,0.9);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,0.28);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 36px rgba(0,0,0,0.35);
}

.event-image-wrap {
  height: 260px;
  overflow: hidden;
}

.event-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.event-card:hover .event-image {
  transform: scale(1.05);
}

.event-content {
  padding: 24px;
}

.event-date {
  color: #fbb74a;
  font-weight: 700;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.event-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  margin-bottom: 10px;
  line-height: 1.25;
}

.event-location {
  color: #ddd;
  font-weight: 600;
  margin-bottom: 12px;
}

.event-description {
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin-bottom: 18px;
}

.event-btn {
  display: inline-block;
  padding: 11px 20px;
  border: 1px solid #fbb74a;
  color: #fbb74a;
  border-radius: 999px;
  font-weight: 700;
  transition: all 0.3s ease;
}

.event-btn:hover {
  background: #fbb74a;
  color: #000;
}

@media (max-width: 900px) {
  .events-grid {
    grid-template-columns: 1fr;
  }

  .events-page-header h1 {
    font-size: 2.4rem;
  }
}

@media (max-width: 600px) {
  .events-page {
    padding: 110px 6% 80px;
  }

  .event-image-wrap {
    height: 220px;
  }

  .events-page-header h1 {
    font-size: 2rem;
  }

  .event-content h3 {
    font-size: 1.35rem;
  }
}

/* LOCATION */
.location-section {
  background: #000;
}

.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: stretch;
}

.hours-box,
.map-box {
  background: #141414;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
}

.hours-box {
  padding: 32px 30px;
  text-align: center;
}

.hours-box h3 {
  font-size: 1.8rem;
  margin-bottom: 18px;
  color: #fbb74a;
}

.hours-box p {
  margin-bottom: 10px;
  color: #ddd;
}

.foxcreek-brand {
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.foxcreek-brand img {
  width: 88px;
  height: auto;
  margin: 0 auto 12px;
}

.foxcreek-text {
  font-size: 0.98rem;
  line-height: 1.6;
  color: #e6e6e6;
}

.foxcreek-text a {
  color: #fbb74a;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.foxcreek-text a:hover {
  color: #ffd27a;
  text-decoration: underline;
}

.foxcreek-brand a img {
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.foxcreek-brand a:hover img {
  transform: scale(1.05);
  opacity: 0.9;
}
.map-box iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  display: block;
}

@media (max-width: 900px) {
  .visit-grid {
    grid-template-columns: 1fr;
  }

  .map-box iframe {
    min-height: 340px;
  }
}


/* CONTACT */
.contact-section {
  text-align: center;
  background: black;
}

.contact-section p {
  color: #ddd;
  font-size: 1.05rem;
  margin-bottom: 10px;
}

/* FOOTER */
footer {
  padding: 24px 20px;
  text-align: center;
  background: black;
  color: #aaa;
}

/* FLOATING ORDER BUTTON */
.floating-order {
  position: fixed;
  right: 25px;
  bottom: 25px;
  background: #fbb74a;
  color: #000;
  padding: 14px 22px;
  border-radius: 30px;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  z-index: 999;
  transition: transform 0.3s ease;
  animation: pulse 2.5s infinite;
}

.floating-order:hover {
  transform: translateY(-3px) scale(1.05);
}


@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.6); }
  70% { box-shadow: 0 0 0 12px rgba(212, 175, 55, 0); }
  100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .header {
    flex-direction: column;
    padding: 15px 20px;
  }

  .main-nav {
    gap: 14px;
  }
}

@media (max-width: 900px) {
  .team-cards {
    grid-template-columns: 1fr;
  }

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

  .section {
    padding: 90px 6%;
  }
}

@media (max-width: 768px) {
  .section-header h2 {
    font-size: 2.1rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .upcoming-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .upcoming-date {
    width: 80px;
    height: 80px;
  }

  .menu-card img {
    height: 280px;
  }

  .staff-card,
  .staff-card img {
    min-height: 420px;
  }
}

@media (max-width: 520px) {
  .header {
    padding: 12px 15px;
  }

  .logo-container img {
    height: 50px;
  }

  .main-nav {
    gap: 10px;
    font-size: 0.92rem;
  }

  .floating-order {
    right: 15px;
    bottom: 15px;
    padding: 12px 18px;
  }
}

/* ORDER BUTTON DISABLED STATE */
.order-btn.is-disabled,
.floating-order.is-disabled {
  cursor: default;
}

/* MENU BOARD LAYOUT */
#menus {
  background: #050505;
  color: #fff;
}

.menu-board-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 0.9fr;
  gap: 32px;
  align-items: start;
}

.menu-column {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.menu-group-title {
  font-size: 2rem;
  color: #fbb74a;
  margin: 0 0 6px;
  line-height: 1.1;
}

.menu-note {
  color: #f5cf74;
  font-style: italic;
  font-weight: 600;
  margin: -4px 0 10px;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(251, 183, 74, 0.14);
}

.menu-item h4 {
  margin: 0 0 6px;
  font-size: 1.7rem;
  line-height: 1.1;
  color: #fff;
}

.menu-item p {
  margin: 0;
  color: #e29a37;
  font-size: 0.98rem;
  line-height: 1.5;
}

.menu-item > span {
  color: #fbb74a;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  padding-top: 4px;
}

.menu-image-card {
  background: #111;
  border: 2px solid rgba(251, 183, 74, 0.35);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
}

.menu-image-card img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.menu-note-box {
  background: linear-gradient(145deg, #111, #1a1a1a);
  border: 1px solid rgba(255, 120, 0, 0.3);
  border-radius: 12px;
  padding: 20px;
  margin: 15px 0;
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(255, 80, 0, 0.15);
  transition: all 0.3s ease;
}

/* 🔥 subtle flame glow effect */
.menu-note-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(255,120,0,0.15), transparent 60%);
  opacity: 0.6;
  pointer-events: none;
}

/* hover = interactive fire glow */
.menu-note-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 25px rgba(255, 90, 0, 0.4);
  border-color: rgba(255, 120, 0, 0.6);
}

/* headings */
.menu-note-box h4 {
  margin-bottom: 8px;
  font-size: 1.2rem;
  color: #ff7a00;
  letter-spacing: 0.5px;
}

/* text */
.menu-note-box p {
  margin: 0;
  color: #ddd;
  font-size: 0.95rem;
}

/* phone link */
.menu-note-box a {
  color: #ffae42;
  font-weight: bold;
  text-decoration: none;
}

.menu-note-box a:hover {
  color: #fff;
  text-shadow: 0 0 8px rgba(255,140,0,0.8);
}

/* optional: slight variation between boxes */
.golfers-box {
  border-left: 4px solid #ff7a00;
}

.call-box {
  border-left: 4px solid #ff3c00;
}

.right-column {
  gap: 24px;
}

.toppings-box {
  background: #efe2cc;
  color: #111;
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.28);
}

.toppings-box h4 {
  margin: 0 0 12px;
  text-align: center;
  color: #ae7400;
  font-size: 1.5rem;
}

.toppings-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 14px;
  font-weight: 700;
  font-size: 0.95rem;
}

.toppings-grid span {
  color: #111;
}

.image-stack {
  gap: 18px;
}

.dessert-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-section a {
  color: #fbb74a;
}

.contact-section a:hover {
  color: #ffd27a;
}

.catering-section {
  background: #000;
  text-align: center;
  padding: 100px 20px;
}

.catering-container {
  max-width: 900px;
  margin: 0 auto;
}

.catering-title {
  font-size: 3rem;
  color: #f0b323;
  margin: 10px 0 20px;
}

.catering-subtext {
  color: #ccc;
  font-size: 1.1rem;
  margin-bottom: 40px;
}

/* BUTTONS */
.catering-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.catering-btn {
  background: #f0b323;
  color: #000;
  padding: 14px 28px;
  border-radius: 30px;
  font-weight: bold;
  transition: 0.3s;
}

.catering-btn:hover {
  background: #fff;
}

.catering-btn-outline {
  border: 2px solid #f0b323;
  color: #f0b323;
  padding: 14px 28px;
  border-radius: 30px;
  font-weight: bold;
  transition: 0.3s;
}

.catering-btn-outline:hover {
  background: #f0b323;
  color: #000;
}

/* IMAGE PREVIEW */
.catering-preview {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.catering-preview img {
  width: 250px;
  height: 200px;
  object-fit: cover;
  border-radius: 15px;
  border: 2px solid #f0b323;
  transition: 0.3s;
}

.catering-preview img:hover {
  transform: scale(1.05);
}

@media (max-width: 1100px) {
  .menu-board-grid {
    grid-template-columns: 1fr;
  }

  .menu-item h4 {
    font-size: 1.45rem;
  }

  .menu-item > span {
    font-size: 1.55rem;
  }

  .menu-group-title {
    font-size: 1.7rem;
  }
}

@media (max-width: 640px) {
  .menu-item {
    gap: 10px;
  }

  .menu-item h4 {
    font-size: 1.2rem;
  }

  .menu-item p {
    font-size: 0.92rem;
  }

  .menu-item > span {
    font-size: 1.25rem;
  }

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