/* Google Fonts Import */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Playfair+Display:ital,wght@0,500;0,700;1,500&display=swap");

/* Design System & Variables */
:root {
  --bg-primary: #f9f7f2;
  --bg-surface: #ffffff;
  --bg-secondary: #f0ebe5;

  --text-heading: #222222;
  --text-body: #4a4a4a;
  --text-light: #888888;
  --text-on-dark: #ffffff;

  --accent-primary: #c62828;
  --accent-hover: #a52020;
  --accent-secondary: #2e7d32;
  --accent-gold: #c5a065;

  --border-color: #e6e1d8;

  /* Typography */
  --font-heading: "Playfair Display", serif;
  --font-body: "Inter", sans-serif;

  /* Spacing */
  --container-width: 1300px;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 2rem;
  --spacing-xl: 4rem;

  /* Shadows & Glass */
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  --glass-bg: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.1);
  --glass-blur: blur(10px);

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-smooth: 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-body);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-heading);
  letter-spacing: -0.02em;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

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

/* Utilities */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 6rem 0;
}

.text-center {
  text-align: center;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.1rem 2.5rem;
  font-weight: 500;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition-smooth);
  font-family: var(--font-body);
  border: none;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}

.btn-primary {
  background-color: var(--accent-primary);
  color: var(--text-on-dark);
}

.btn-primary:hover {
  background-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline {
  background-color: transparent;
  border: 1px solid var(--text-heading);
  color: var(--text-heading);
}

.btn-outline:hover {
  background-color: var(--text-heading);
  color: var(--text-on-dark);
}

.btn-static,
.btn-static:hover {
  transform: none !important;
  box-shadow: none !important;
  cursor: default !important;
}

.btn-static.btn-primary:hover {
  background-color: var(--accent-primary) !important;
}

.btn-static.btn-outline:hover {
  background-color: transparent !important;
  color: var(--text-heading) !important;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem 0;
  transition: all 0.4s ease;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Navigation & Logo */
.logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-heading);
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-img {
  height: 40px;
  width: auto;
  display: block;
}

.header.scrolled .logo,
.footer .logo {
  color: var(--text-heading);
}

.footer .logo {
  color: white;
}

.nav-container nav {
  margin-left: auto;
  margin-right: 2rem;
}

.nav-links {
  display: flex;
  gap: 3rem;
  align-items: center;
}

.nav-link {
  font-weight: 500;
  font-size: 1rem;
  color: var(--text-heading);
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  bottom: -4px;
  left: 0;
  background-color: var(--accent-primary);
  transition: var(--transition-smooth);
}

.nav-link:hover::after {
  width: 100%;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-heading);
}

.hero-split {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  min-height: 80vh;
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.hero-text {
  z-index: 2;
  padding-right: 2rem;
  animation: fadeUp 1s ease-out;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-primary);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.hero-title {
  font-size: 5rem;
  line-height: 1.1;
  margin-bottom: 2rem;
  color: var(--text-heading);
}

.hero-title span {
  display: block;
  font-style: italic;
  font-weight: 400;
  color: var(--accent-gold);
}

.hero-desc {
  font-size: 1.25rem;
  color: var(--text-body);
  margin-bottom: 3rem;
  max-width: 500px;
}

.hero-buttons {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.hero-image-wrapper {
  position: relative;
  height: 600px;
  width: 600px;
  border-radius: 50%;
  z-index: 1;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  margin: 0 auto;
  transform: translateX(100vw) rotate(360deg);
  animation: rollInPizza 1.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.hero-image-wrapper::before {
  content: "";
  position: absolute;
  top: -30px;
  left: -30px;
  right: -30px;
  bottom: -30px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 87, 34, 0.6) 0%,
    rgba(255, 193, 7, 0) 70%
  );
  z-index: -1;
  animation: heatPulse 3s infinite alternate;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

@keyframes rollInPizza {
  0% {
    transform: translateX(500px) rotate(180deg);
    opacity: 0;
  }
  100% {
    transform: translateX(0) rotate(0deg);
    opacity: 1;
  }
}

@keyframes heatPulse {
  0% {
    opacity: 0.5;
    transform: scale(1);
  }
  100% {
    opacity: 0.8;
    transform: scale(1.1);
  }
}

/* Features Band */
.features-band {
  background-color: white;
  padding: 4rem 0;
  border-bottom: 1px solid var(--border-color);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}

.feature-item i {
  font-size: 2rem;
  color: var(--accent-gold);
  margin-bottom: 1rem;
}

.feature-item h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

/* Menu Toggle */
.menu-toggle-container {
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
  animation: fadeUp 1s ease-out;
}

.menu-toggle {
  background: #f0f0f0;
  padding: 5px;
  border-radius: 50px;
  display: inline-flex;
  position: relative;
  box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.05);
}

.toggle-btn {
  padding: 12px 30px;
  border-radius: 50px;
  border: none;
  background: transparent;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: #666;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  z-index: 2;
}

.toggle-btn.active {
  background-color: var(--text-heading);
  color: white;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.toggle-btn:hover:not(.active) {
  color: var(--accent-primary);
}

/* Menu Grid */
.menu-grid {
  display: none;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 3rem;
  margin-top: 2rem;
  animation: fadeUp 0.6s ease-out;
}

.menu-grid.active {
  display: grid;
}

.pizza-card {
  background: transparent;
  border-radius: 0;
  border: none;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.pizza-img-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.pizza-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.pizza-card:hover .pizza-img {
  transform: scale(1.03);
}

.pizza-price {
  font-family: var(--font-body);
  font-weight: 700;
  background-color: var(--accent-gold);
  color: white;
  padding: 0.35rem 1rem;
  border-radius: 50px;
  font-size: 1rem;
  white-space: nowrap;
  margin-left: 1rem;
  box-shadow: 0 4px 12px rgba(197, 160, 101, 0.4);
  letter-spacing: 0.5px;
  transition: transform 0.2s ease;
}

.pizza-card:hover .pizza-price {
  transform: translateY(-2px);
}

.pizza-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 0.5rem;
  gap: 1rem;
}

.pizza-title-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
}

@media (min-width: 500px) {
  .pizza-title-row {
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.8rem;
  }
}

.pizza-title {
  font-size: 1.4rem;
  margin: 0;
  line-height: 1.2;
  min-height: 2.4em;
  display: flex;
  align-items: center;
}

.product-badges-overlay {
  position: absolute;
  top: 1rem;
  left: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  z-index: 10;
  pointer-events: none;
}

.inline-badge {
  pointer-events: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px 6px 10px;
  background: white;
  border-radius: 4px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  font-size: 0.8rem;
  font-weight: 700;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: default;
  position: relative;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  overflow: hidden;
}

.inline-badge::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background-color: currentColor;
}

.inline-badge:hover {
  transform: translateX(4px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.inline-badge i {
  font-size: 0.9rem;
  margin-left: 4px;
}

.badge-text {
  display: inline-block;
}

.badge-spicy {
  color: #d32f2f;
}
.badge-spicy i {
  color: #d32f2f;
}

.badge-vegetarian {
  color: #2e7d32;
}
.badge-vegetarian i {
  color: #2e7d32;
}

.badge-chef {
  color: #f57f17;
}
.badge-chef i {
  color: #f57f17;
}

.inline-badge::after {
  display: none;
}

/* About Section */
.about-section {
  background-color: var(--bg-secondary);
  position: relative;
  overflow: hidden;
  padding: 8rem 0 10rem;
}

.story-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.section-eyebrow {
  color: var(--accent-primary);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-style: italic;
  display: block;
  margin-bottom: 0.5rem;
  animation: fadeUp 0.8s ease-out;
}

.section-title {
  font-size: 3.5rem;
  margin-bottom: 3rem;
  line-height: 1.1;
  animation: fadeUp 0.8s ease-out 0.2s backwards;
}

.story-content {
  text-align: left;
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-body);
}

.story-content p {
  margin-bottom: 1.5rem;
  animation: fadeUp 0.8s ease-out 0.4s backwards;
}

.story-lead {
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--text-heading);
  margin-bottom: 2rem !important;
  line-height: 1.6;
}

.story-highlight {
  background-color: white;
  padding: 3rem;
  margin: 3rem -2rem;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  position: relative;
  text-align: center;
  border: 1px solid var(--border-color);
  animation: fadeUp 0.8s ease-out 0.6s backwards;
}

.story-highlight i {
  font-size: 2rem;
  color: var(--accent-gold);
  margin-bottom: 1rem;
  display: block;
}

.story-highlight p {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--text-heading);
  margin-bottom: 0;
}

.delivery-area-box {
  margin-top: 5rem;
  padding-top: 4rem;
  border-top: 1px solid var(--border-color);
  text-align: center;
  animation: fadeUp 0.8s ease-out 0.8s backwards;
}

.delivery-area-box h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.delivery-area-box h3 i {
  color: var(--accent-primary);
}

.delivery-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 2rem;
}

.delivery-tags span {
  background-color: white;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.95rem;
  color: var(--text-body);
  border: 1px solid transparent;
  transition: var(--transition-fast);
  box-shadow: var(--shadow-sm);
}

.delivery-tags span:hover {
  border-color: var(--accent-gold);
  transform: translateY(-2px);
  color: var(--text-heading);
}

/* Footer */
.footer {
  background-color: #1a1a1a;
  color: #fff;
  padding: 5rem 0 2rem;
  border-top: 5px solid var(--accent-primary);
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-col h4 {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid #333;
  padding-bottom: 0.5rem;
  display: inline-block;
}

.footer p {
  color: #b0b0b0;
  margin-bottom: 0.8rem;
  line-height: 1.6;
}

.footer a {
  color: #b0b0b0;
  transition: var(--transition-fast);
}

.footer a:hover {
  color: #fff;
  padding-left: 5px;
}

.delivery-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.delivery-tag {
  background: #333;
  color: #ddd;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.85rem;
}

.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 2rem;
  text-align: center;
  color: #666;
  font-size: 0.9rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-legal-links {
  display: flex;
  gap: 1.5rem;
}

.footer-legal-links a {
  color: #888;
  font-size: 0.85rem;
  transition: color 0.2s ease;
}

.footer-legal-links a:hover {
  color: #fff;
}

@media (max-width: 992px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
  }
}

/* Legal Pages (Terms & Conditions, Privacy Policy) */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 0 4rem;
}

.legal-content h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: var(--text-heading);
}

.legal-updated {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 3rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-color);
}

.legal-section {
  margin-bottom: 2.5rem;
}

.legal-section h2 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--text-heading);
}

.legal-section p {
  margin-bottom: 1rem;
  line-height: 1.8;
  color: var(--text-body);
}

.legal-section ul {
  margin: 1rem 0 1rem 1.5rem;
  color: var(--text-body);
}

.legal-section ul li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
}

.legal-section ul li strong {
  color: var(--text-heading);
}

@media (max-width: 768px) {
  .legal-content {
    padding: 1rem 0 3rem;
  }

  .legal-content h1 {
    font-size: 2rem;
  }

  .legal-section h2 {
    font-size: 1.2rem;
  }
}

/* Animations */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes revealImage {
  from {
    opacity: 0;
    clip-path: inset(100% 0 0 0);
  }
  to {
    opacity: 1;
    clip-path: inset(0 0 0 0);
  }
}

/* Responsive */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-image-wrapper {
    height: 350px;
    width: 350px;
    border-radius: 50%;
    order: -1;
    margin-bottom: 2rem;
  }

  .hero-text {
    padding-right: 0;
    text-align: center;
  }

  .hero-title {
    font-size: 3.5rem;
  }
}

@media (max-width: 768px) {
  .header {
    padding: 1rem 0;
  }

  .container {
    padding: 0 1.25rem;
  }

  .nav-container {
    position: relative;
    display: flex;
    align-items: center;
  }

  .logo {
    font-size: 1.1rem;
  }

  .logo-img {
    height: 35px;
  }

  .mobile-menu-btn {
    display: block;
    margin-left: 0.8rem;
    order: 3;
  }

  .nav-container::after {
    content: "";
    flex: 1;
    order: 1;
  }

  nav {
    order: 4;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: none;
    z-index: 100;
  }

  nav.active {
    display: block;
  }

  .nav-links {
    flex-direction: column;
    padding: 1.5rem;
    gap: 0;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links .nav-link {
    display: block;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 1.1rem;
  }

  .nav-links li:last-child .nav-link {
    border-bottom: none;
  }

  .hero-split {
    min-height: auto;
    padding: 100px 0 60px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 1.25rem;
  }

  .hero-text {
    text-align: center;
    padding: 0;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-desc {
    max-width: 100%;
  }

  .hero-buttons {
    justify-content: center;
    gap: 0.5rem;
    flex-direction: row;
    flex-wrap: nowrap;
    width: 100%;
    margin-top: 1rem;
  }

  .hero-buttons .btn {
    padding: 10px 14px;
    font-size: 0.8rem;
    white-space: nowrap;
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .events-hero-premium {
    padding: 8rem 0 4rem;
  }

  .events-hero-premium .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }

  .events-hero-premium .hero-content {
    order: 2;
  }

  .events-hero-premium .hero-image-frame {
    height: 350px;
    order: 1;
  }

  .events-hero-premium .cta-wrapper {
    align-items: center;
  }

  .events-hero-premium .cta-buttons {
    justify-content: center;
  }

  .hero-image-wrapper {
    display: block;
    height: 300px;
    width: 300px;
    margin: 0 auto 2rem;
    order: -1;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .feature-item {
    text-align: center;
  }

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

  .section-title {
    font-size: 2.2rem;
  }

  .story-highlight {
    margin: 2rem 0;
    padding: 2rem;
  }

  .story-highlight p {
    font-size: 1.15rem;
  }

  .delivery-tags {
    gap: 0.5rem;
  }

  .delivery-tags span {
    font-size: 0.85rem;
    padding: 6px 12px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  .details-grid {
    display: block;
    gap: 0;
  }

  .booking-cta {
    padding: 3rem 1.5rem;
  }
}

/* Events Page */
.events-hero-premium {
  padding: 12rem 0 8rem;
  background-color: var(--bg-primary);
  overflow: hidden;
}

.events-hero-premium .hero-container {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
  align-items: center;
}

.events-hero-premium .hero-content {
  position: relative;
  z-index: 2;
}

.eyebrow-accent {
  display: inline-block;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent-gold);
  font-weight: 700;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s ease-out forwards;
}

.display-title {
  font-size: 3rem;
  line-height: 1.15;
  margin-bottom: 2rem;
  color: var(--text-heading);
  opacity: 0;
  animation: fadeUp 0.8s ease-out 0.2s forwards;
}

.lead-text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-body);
  margin-bottom: 3rem;
  max-width: 90%;
  opacity: 0;
  animation: fadeUp 0.8s ease-out 0.3s forwards;
}

.cta-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  opacity: 0;
  animation: fadeUp 0.8s ease-out 0.4s forwards;
}

.cta-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-light);
  font-weight: 600;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-image-frame {
  position: relative;
  height: 480px;
  width: 100%;
  margin: 0;
}

.image-reveal-mask {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 4px;
  clip-path: inset(0 100% 0 0);
  animation: wipeRevealRight 1.4s cubic-bezier(0.77, 0, 0.175, 1) 0.2s forwards;
  z-index: 2;
}

.premium-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.2);
  animation: kenBurns 10s ease-out forwards;
}

.frame-accent {
  position: absolute;
  top: -15px;
  right: -15px;
  bottom: -15px;
  left: -15px;
  border: 1px solid var(--accent-gold);
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  animation: outlineFadeIn 1s ease-out 0.8s forwards;
}

.events-hero-premium .btn {
  cursor: pointer;
}

.events-hero-premium .btn i {
  margin-right: 12px;
}

/* --- Animations --- */
@keyframes wipeRevealRight {
  0% {
    clip-path: inset(0 100% 0 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}

@keyframes kenBurns {
  0% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes outlineFadeIn {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 0.3;
    transform: translateX(0);
  }
}

/* --- Responsive --- */
@media (max-width: 992px) {
  .events-hero-premium .hero-container {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .hero-image-frame {
    height: 400px;
    order: -1;
  }

  .cta-wrapper {
    align-items: center;
  }

  .cta-buttons {
    justify-content: center;
  }

  .frame-accent {
    display: none;
  }

  .lead-text {
    max-width: 100%;
  }
}

/* Event Types Grid */
.events-types-section {
  padding: 6rem 0;
  background-color: var(--bg-surface);
}

.event-type-card {
  background: var(--bg-primary);
  padding: 3rem 2rem;
  border-radius: 8px;
  text-align: center;
  transition: var(--transition-smooth);
  border: 1px solid var(--border-color);
}

.event-type-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-gold);
}

.event-icon-wrapper {
  width: 80px;
  height: 80px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  box-shadow: var(--shadow-sm);
}

.event-icon-wrapper i {
  font-size: 2rem;
  color: var(--accent-gold);
}

/* Event Details Split */
.events-details-section {
  padding: 6rem 0;
  background-color: var(--bg-secondary);
}

.details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

@media (max-width: 992px) {
  .details-grid {
    display: block;
    gap: 0;
  }
}

.details-list {
  list-style: none;
  margin: 2rem 0;
}

.details-list li {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.details-list li i {
  color: var(--accent-primary);
  margin-right: 1rem;
  width: 25px;
}

.details-image-wrapper {
  position: relative;
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
  background-color: transparent;
}

.details-img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}

@media (max-width: 992px) {
  .details-image-wrapper {
    display: none;
  }

  /* Center text content on mobile */
  .details-content {
    text-align: center;
    padding: 0 1rem;
  }

  .details-list li {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
  }

  .details-list li i {
    margin-right: 0;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
  }
}
.booking-cta {
  background: var(--text-heading);
  color: white;
  padding: 4rem 2rem;
  text-align: center;
  border-radius: 12px;
  margin-top: 4rem;
}

.booking-cta h3 {
  color: white;
  margin-bottom: 1rem;
}

.booking-phone {
  font-size: 1.6rem;
  font-family: var(--font-heading);
  color: var(--accent-gold);
  display: block;
  margin: 0.3rem 0;
  font-weight: 700;
  text-decoration: none;
}

.booking-phone:hover {
  color: var(--accent-gold);
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-desc {
        font-size: 1rem;
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .story-lead {
        font-size: 1.1rem;
    }
    
    .story-highlight p {
        font-size: 1rem;
    }
    
    .checkout-phone {
        font-size: 1.2rem;
    }
    
    /* Checkout mobile */
    .checkout-item {
        flex-wrap: wrap;
    }
    
    .checkout-item-img {
        width: 50px;
        height: 50px;
    }
    
    /* Menu toggle mobile */
    .menu-toggle {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .toggle-btn {
        width: 100%;
    }
}

.pizza-desc {
    margin-bottom: 1.5rem !important;
}

/* =============================================
   Phone Order CTA Banner
   ============================================= */

.phone-order-cta {
  background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  text-align: center;
  margin: 1.5rem 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.phone-cta-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--accent-gold);
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.phone-cta-header i {
  font-size: 1rem;
}

.phone-cta-message {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.phone-cta-numbers {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.phone-cta-display {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex: 1;
  min-width: 160px;
  max-width: 220px;
  padding: 0.65rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  color: var(--accent-gold);
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  font-family: var(--font-body);
  letter-spacing: 0.5px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition:
    background 0.2s ease,
    transform 0.2s ease;
  text-decoration: none;
  cursor: pointer;
}

.phone-cta-display:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-1px);
  color: var(--accent-gold);
}

.phone-cta-display i {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

.phone-cta-hours {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
  margin-top: 0.5rem;
  margin-bottom: 0;
}

/* Responsive: Tablets */
@media (max-width: 768px) {
  .phone-order-cta {
    padding: 1rem 1.25rem;
    margin: 1.25rem 0;
  }

  .phone-cta-header {
    font-size: 1.05rem;
    gap: 8px;
  }

  .phone-cta-message {
    font-size: 0.8rem;
  }

  .phone-cta-display {
    font-size: 1rem;
    padding: 0.55rem 0.75rem;
  }
}

/* Responsive: Mobile phones */
@media (max-width: 500px) {
  .phone-order-cta {
    padding: 0.875rem 1rem;
    margin: 1rem 0;
    border-radius: 10px;
  }

  .phone-cta-header {
    font-size: 0.95rem;
    gap: 6px;
    margin-bottom: 0.4rem;
  }

  .phone-cta-message {
    font-size: 0.75rem;
    margin-bottom: 0.5rem;
  }

  .phone-cta-numbers {
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
  }

  .phone-cta-display {
    font-size: 0.95rem;
    padding: 0.5rem 0.75rem;
    min-width: unset;
    max-width: unset;
    width: 100%;
    gap: 6px;
  }

  .phone-cta-hours {
    font-size: 0.7rem;
    margin-top: 0.35rem;
  }
}

.btn-block {
  width: 100%;
  text-align: center;
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.9rem;
}
