/* The Golden Crown Premium Hotel - Master Stylesheet */
@import url("https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700&family=Poppins:wght@300;400;500;600;700&display=swap");

/* CSS Variables for Golden Theme */
:root {
  --primary-gold: #ffd700;
  --deep-black: #000000;
  --champagne-gold: #c0a060;
  --pure-white: #ffffff;
  --dark-gold: #b8860b;
  --light-gold: #fff8dc;
  --glass-bg: rgba(255, 215, 0, 0.1);
  --glass-border: rgba(255, 215, 0, 0.2);
  --shadow-gold: 0 0 20px rgba(255, 215, 0, 0.3);
  --gradient-gold: linear-gradient(135deg, #ffd700, #c0a060);
  --gradient-dark: linear-gradient(135deg, #000000, #1a1a1a);
}

/* Global Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: "Poppins", sans-serif;
  background: var(--gradient-dark);
  color: var(--pure-white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Cinzel", serif;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--primary-gold);
}

h1 {
  font-size: 3.5rem;
}
h2 {
  font-size: 2.8rem;
}
h3 {
  font-size: 2.2rem;
}
h4 {
  font-size: 1.8rem;
}
h5 {
  font-size: 1.4rem;
}
h6 {
  font-size: 1.2rem;
}

p {
  margin-bottom: 1rem;
  font-weight: 300;
}

/* Golden Page Loader */
.page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-dark);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  transition: opacity 0.5s ease-out;
}

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

.golden-spinner {
  width: 80px;
  height: 80px;
  border: 4px solid transparent;
  border-top: 4px solid var(--primary-gold);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 20px;
  position: relative;
}

.golden-spinner::before {
  content: "";
  position: absolute;
  top: -8px;
  left: -8px;
  right: -8px;
  bottom: -8px;
  border: 2px solid transparent;
  border-top: 2px solid var(--champagne-gold);
  border-radius: 50%;
  animation: spin 2s linear infinite reverse;
}

.loader-text {
  font-family: "Cinzel", serif;
  font-size: 1.5rem;
  color: var(--primary-gold);
  margin-top: 20px;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--glass-border);
  z-index: 1000;
  transition: all 0.3s ease;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#particles-js {
  position: absolute;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: 0;
  top: 0;
  left: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
}


.logo {
  font-family: "Cinzel", serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-gold);
  text-decoration: none;
  transition: all 0.3s ease;
}

@media (min-width: 1024px) {
  .logo {
font-size: 1.8rem;
  }
}

.logo:hover {
  text-shadow: var(--shadow-gold);
  transform: scale(1.05);
}



.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  color: var(--pure-white);
  text-decoration: none;
  font-weight: 400;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link-Active {

    color: var(--primary-gold);
  text-decoration: none;
  font-weight: 400;
  transition: all 0.3s ease;
  position: relative;

}

.nav-link:hover {
  color: var(--primary-gold);

}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-gold);
  transition: width 0.3s ease;
}

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

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--primary-gold);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 30px;
  background: var(--gradient-gold);
  color: var(--deep-black);
  text-decoration: none;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn1 {
  position: relative;
  top: 20px;
  display: inline-block;
  padding: 12px 30px;
  background: var(--gradient-gold);
  color: var(--deep-black);
  text-decoration: none;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.btn:hover::before {
  left: 100%;
}

.btn-outline {
    padding: 6px 15px;
    position: relative;
    bottom: 17px;
    text-decoration: none;

    border-radius: 20px;
  background: transparent;
  color: var(--primary-gold);
  border: 2px solid var(--primary-gold);
}


.btn-outline1 {
    padding: 6px 15px;
    position: relative;
    bottom: 1px;
    text-decoration: none;

    border-radius: 20px;
  background: transparent;
  color: var(--primary-gold);
  border: 2px solid var(--primary-gold);
}

@media (min-width: 1024px) {
  .btn-outline {
    padding: 12px 15px;
    bottom: 19px;
    border-radius: 50px;
  }
}
.btn-outline:hover {
  background: var(--primary-gold);
  color: var(--deep-black);
}


.footer {
  background: #111;
  padding: 30px 0;
  text-align: center;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 15px; /* gap thoda kam kiya */
}

.social {
  width: 40px;         /* circle chhota */
  height: 40px;        /* circle chhota */
  border-radius: 50%;  
  border: 2px solid var(--primary-gold, #FFD700);
  color: var(--primary-gold, #FFD700);
  display: flex;
  align-items: center;   /* icon vertical center */
  justify-content: center; /* icon horizontal center */
  font-size: 16px;       /* icon size thoda chhota */
  transition: all 0.3s ease;
  cursor: pointer;
}

/* Hover Animation */
.social:hover {
  transform: scale(1.15);
  color: #fff;
  box-shadow: 0 0 12px currentColor;
}

/* Brand Hover Colors */
.facebook:hover { background: #1877f2; border-color: #1877f2; }
.twitter:hover { background: #1da1f2; border-color: #1da1f2; }
.instagram:hover { background: #e4405f; border-color: #e4405f; }
.linkedin:hover { background: #0077b5; border-color: #0077b5; }
.youtube:hover { background: #ff0000; border-color: #ff0000; }




/* Glass Cards */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.glass-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-gold);
  border-color: var(--primary-gold);
}

/* Container and Layout */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 100px 0;
  position: relative;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-subtitle {
  text-align: center;
  color: var(--champagne-gold);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

/* Grid Layouts */
.grid {
  display: grid;
  gap: 2rem;
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

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

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes glow {
  0%,
  100% {
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
  }
  50% {
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.6);
  }
}

.animate-fadeInUp {
  animation: fadeInUp 0.8s ease-out;
}
.animate-fadeInLeft {
  animation: fadeInLeft 0.8s ease-out;
}
.animate-fadeInRight {
  animation: fadeInRight 0.8s ease-out;
}
.animate-zoomIn {
  animation: zoomIn 0.8s ease-out;
}
.animate-glow {
  animation: glow 2s ease-in-out infinite;
}

/* Floating Elements */
.floating {
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

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

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("/placeholder.svg?height=1080&width=1920");
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.hero-content h1 {
  font-size: 4rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  color: var(--champagne-gold);
}

/* Form Styles */
.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--primary-gold);
  font-weight: 500;
}

.form-input {
  width: 100%;
  padding: 12px 15px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  color: var(--pure-white);
  font-family: "Poppins", sans-serif;
  transition: all 0.3s ease;
}

.form-input:focus {
  outline: none;
  border-color: var(--primary-gold);
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.form-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

/* Footer */
.footer {
  background: var(--deep-black);
  padding: 50px 0 20px;
  border-top: 1px solid var(--glass-border);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  margin-bottom: 1rem;
  color: var(--primary-gold);
}

.footer-section p,
.footer-section a {
  color: var(--pure-white);
  text-decoration: none;
  margin-bottom: 0.5rem;
  display: block;
  transition: color 0.3s ease;
}

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

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid var(--glass-border);
  color: var(--champagne-gold);
}

/* Responsive Design */
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    flex-direction: column;
    padding: 1rem;
    gap: 1rem;
  }

  .nav-menu.active {
    display: flex;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  h1 {
    font-size: 2.5rem;
  }
  h2 {
    font-size: 2rem;
  }
  h3 {
    font-size: 1.8rem;
  }

  .container {
    padding: 0 1rem;
  }

  .section {
    padding: 60px 0;
  }

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 2rem;
  }

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

  .glass-card {
    padding: 1.5rem;
  }
}

/* Dark/Light Mode Toggle */
.theme-toggle {
  position: fixed;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  padding: 10px;
  cursor: pointer;
  z-index: 1000;
  transition: all 0.3s ease;
}

.theme-toggle:hover {
  background: var(--primary-gold);
  color: var(--deep-black);
}

/* Light Mode Overrides */
body.light-mode {
  background: linear-gradient(135deg, #fff8dc, #f5f5dc);
  color: var(--deep-black);
}

body.light-mode .navbar {
  background: rgba(255, 248, 220, 0.9);
}

body.light-mode .nav-link {
  color: var(--deep-black);
}

body.light-mode .glass-card {
  background: rgba(255, 215, 0, 0.1);
  border-color: rgba(192, 160, 96, 0.3);
}

/* Floating AI Assistant */
.ai-assistant {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background: var(--gradient-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1000;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-gold);
}

.ai-assistant:hover {
  transform: scale(1.1);
  animation: glow 1s ease-in-out infinite;
}

.ai-assistant::before {
  content: "🤖";
  font-size: 1.5rem;
}

/* Page Transition */
.page-transition {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-dark);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.page-transition.active {
  opacity: 1;
  pointer-events: all;
}

/* Utility Classes */
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.mb-1 {
  margin-bottom: 0.5rem;
}
.mb-2 {
  margin-bottom: 1rem;
}
.mb-3 {
  margin-bottom: 1.5rem;
}
.mb-4 {
  margin-bottom: 2rem;
}
.mt-1 {
  margin-top: 0.5rem;
}
.mt-2 {
  margin-top: 1rem;
}
.mt-3 {
  margin-top: 1.5rem;
}
.mt-4 {
  margin-top: 2rem;
}
.hidden {
  display: none;
}
.visible {
  display: block;
}

/* Specific styles for home and about pages */

/* Floating Booking Widget */
.floating-booking-widget {
  position: absolute;
  top: 50%;
  right: 50px;
  transform: translateY(-50%);
  width: 300px;
  z-index: 100;
}

.floating-booking-widget h3 {
  margin-bottom: 1.5rem;
  text-align: center;
}

.booking-form .form-group {
  margin-bottom: 1rem;
}

/* Room Cards */
.room-card {
  overflow: hidden;
  transition: all 0.3s ease;
}

.room-image {
  position: relative;
  overflow: hidden;
  height: 250px;
}

.room-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.room-card:hover .room-img {
  transform: scale(1.1);
}

.room-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.room-card:hover .room-overlay {
  opacity: 1;
}

.room-info {
  padding: 1.5rem;
}

.room-price {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-top: 1rem;
}

.price-amount {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-gold);
}

.price-period {
  color: var(--champagne-gold);
}

.room-actions {
  display: flex;
  gap: 1rem;
}

/* Rooms Page Specific Styles */

/* Price Toggle */
.price-toggle-container {
  text-align: center;
  margin-bottom: 2rem;
}

.toggle-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1rem 2rem;
}

.toggle-label {
  font-weight: 500;
  color: var(--champagne-gold);
}

.price-toggle-switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 30px;
}

.price-toggle {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.2);
  transition: 0.4s;
  border-radius: 30px;
  border: 1px solid var(--glass-border);
}

.toggle-slider:before {
  position: absolute;
  content: "";
  height: 22px;
  width: 22px;
  left: 4px;
  bottom: 3px;
  background: var(--primary-gold);
  transition: 0.4s;
  border-radius: 50%;
}

.price-toggle:checked + .toggle-slider {
  background: var(--gradient-gold);
}

.price-toggle:checked + .toggle-slider:before {
  transform: translateX(30px);
  background: var(--deep-black);
}

/* Room Showcase */
.rooms-grid {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.room-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.room-gallery {
  position: relative;
}

.room-main-image {
  margin-bottom: 1rem;
  border-radius: 15px;
  overflow: hidden;
}

.room-main-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.room-showcase:hover .room-main-image img {
  transform: scale(1.05);
}

.room-thumbnails {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
}

.thumbnail {
  width: 100%;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.thumbnail:hover {
  border-color: var(--primary-gold);
  transform: scale(1.05);
}

.room-details {
  padding: 1rem;
}

.room-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.room-rating {
  font-size: 1.2rem;
}

.room-description {
  margin-bottom: 2rem;
  line-height: 1.7;
}

.room-amenities {
  margin-bottom: 2rem;
}

.room-amenities h4 {
  margin-bottom: 1rem;
  color: var(--primary-gold);
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 0.5rem;
}

.amenity {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--champagne-gold);
}

.room-pricing {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid var(--glass-border);
}

.price-display {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.price-amount {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-gold);
}

.price-period {
  color: var(--champagne-gold);
}

.room-actions {
  display: flex;
  gap: 1rem;
}

/* Dining Page Specific Styles */

/* Restaurant Cards */
.restaurants-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 2rem;
}

.restaurant-card {
  overflow: hidden;
}

.restaurant-image {
  position: relative;
  height: 250px;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.restaurant-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.restaurant-card:hover .restaurant-img {
  transform: scale(1.1);
}

.restaurant-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--gradient-gold);
  color: var(--deep-black);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.restaurant-info h3 {
  margin-bottom: 0.5rem;
}

.restaurant-type {
  color: var(--champagne-gold);
  font-weight: 500;
  margin-bottom: 1rem;
}

.restaurant-details {
  margin: 1.5rem 0;
  padding: 1rem 0;
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}

.detail-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.detail-label {
  color: var(--primary-gold);
  font-weight: 500;
}

.restaurant-actions {
  display: flex;
  gap: 1rem;
}

/* Chef's Special */
.chefs-special {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.special-image {
  border-radius: 15px;
  overflow: hidden;
}

.special-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.special-content h3 {
  margin-bottom: 1rem;
  font-size: 2rem;
}

.special-description {
  margin-bottom: 2rem;
  line-height: 1.7;
}

.special-details {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding: 1rem 0;
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}

.special-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-gold);
}

.special-chef {
  color: var(--champagne-gold);
  font-style: italic;
}

.special-actions {
  display: flex;
  gap: 1rem;
}

/* Interactive Menu */
.menu-categories {
  max-width: 1000px;
  margin: 0 auto;
}

.category-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.category-tab {
  background: transparent;
  border: 2px solid var(--glass-border);
  color: var(--pure-white);
  padding: 12px 24px;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
}

.category-tab:hover,
.category-tab.active {
  background: var(--gradient-gold);
  color: var(--deep-black);
  border-color: var(--primary-gold);
}

.menu-category {
  display: none;
}

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

.menu-item {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding: 1.5rem;
}

.item-image {
  flex-shrink: 0;
  width: 120px;
  height: 100px;
  border-radius: 10px;
  overflow: hidden;
}

.item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.item-details {
  flex: 1;
}

.item-details h4 {
  margin-bottom: 0.5rem;
  color: var(--primary-gold);
}

.item-details p {
  margin-bottom: 1rem;
  color: var(--champagne-gold);
  font-size: 0.9rem;
}

.item-price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-gold);
}

/* Private Dining */
.private-dining-features {
  margin: 2rem 0;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.feature-icon {
  font-size: 1.5rem;
}

.private-dining-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Feature Cards */
.feature-card {
  text-align: center;
  padding: 2rem 1rem;
}

.feature-card .feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

/* Virtual Tour Modal Styles */
.virtual-tour-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10001;
}

.virtual-tour-content {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 2rem;
  max-width: 800px;
  width: 90%;
  text-align: center;
}

.virtual-tour-content h3 {
  margin-bottom: 1rem;
  color: var(--primary-gold);
}

.virtual-tour-content p {
  margin-bottom: 2rem;
  color: var(--champagne-gold);
}

.tour-placeholder {
  background: rgba(255, 215, 0, 0.1);
  border: 2px dashed var(--primary-gold);
  border-radius: 10px;
  padding: 3rem;
  margin-bottom: 2rem;
}

.close-tour {
  background: var(--gradient-gold);
  color: var(--deep-black);
  border: none;
  padding: 12px 24px;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
}

/* Booking Page Specific Styles */

/* Booking Container */
.booking-container {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Booking Steps */
.booking-steps {
  position: sticky;
  top: 120px;
  height: fit-content;
}

.step {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  margin-bottom: 1rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 15px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.step.active {
  background: var(--gradient-gold);
  color: var(--deep-black);
  border-color: var(--primary-gold);
  box-shadow: var(--shadow-gold);
}

.step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--glass-bg);
  border: 2px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  transition: all 0.3s ease;
}

.step.active .step-number {
  background: var(--deep-black);
  color: var(--primary-gold);
  border-color: var(--deep-black);
}

.step-info h4 {
  margin-bottom: 0.25rem;
  font-size: 1.1rem;
}

.step-info p {
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Booking Form Container */
.booking-form-container {
  min-height: 600px;
  position: relative;
}

.booking-step {
  display: none;
  animation: fadeInUp 0.5s ease-out;
}

.booking-step.active {
  display: block;
}

.booking-step h3 {
  margin-bottom: 2rem;
  text-align: center;
  color: var(--primary-gold);
}

/* Date Selection */
.date-inputs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.stay-summary {
  background: rgba(255, 215, 0, 0.05);
  padding: 1.5rem;
  border-radius: 10px;
  margin-bottom: 2rem;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.summary-label {
  color: var(--champagne-gold);
  font-weight: 500;
}

.summary-value {
  color: var(--primary-gold);
  font-weight: 600;
}

/* Room Options */
.room-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.room-option {
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
  overflow: hidden;
}

.room-option:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-gold);
}

.room-option.selected {
  border-color: var(--primary-gold);
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
}

.room-option-image {
  height: 200px;
  overflow: hidden;
}

.room-option-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.room-option:hover .room-option-image img {
  transform: scale(1.1);
}

.room-option-info {
  padding: 1.5rem;
}

.room-option-info h4 {
  margin-bottom: 0.5rem;
  color: var(--primary-gold);
}

.room-option-info p {
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: var(--champagne-gold);
}

.room-option-price {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-gold);
  margin-bottom: 1rem;
}

.room-option-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.room-option-features span {
  background: rgba(255, 215, 0, 0.1);
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-size: 0.8rem;
  color: var(--champagne-gold);
}

.room-radio {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 20px;
  height: 20px;
  accent-color: var(--primary-gold);
}

/* Guest Details Form */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.preferences-section {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--glass-border);
}

.preferences-section h4 {
  margin-bottom: 1rem;
  color: var(--primary-gold);
}

.preference-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.preference-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  padding: 0.75rem;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.preference-option:hover {
  background: rgba(255, 215, 0, 0.05);
}

.preference-option input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--primary-gold);
}

/* Booking Summary */
.booking-summary {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.summary-section {
  background: rgba(255, 215, 0, 0.05);
  padding: 1.5rem;
  border-radius: 10px;
  border: 1px solid var(--glass-border);
}

.summary-section h4 {
  margin-bottom: 1rem;
  color: var(--primary-gold);
  border-bottom: 1px solid var(--glass-border);
  padding-bottom: 0.5rem;
}

.summary-details {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.detail-row span:first-child {
  color: var(--champagne-gold);
  font-weight: 500;
}

.detail-row span:last-child {
  color: var(--pure-white);
  font-weight: 600;
}

.selected-room {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.selected-room-info h5 {
  margin-bottom: 0.25rem;
  color: var(--primary-gold);
}

.selected-room-info p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--champagne-gold);
}

.selected-room-price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-gold);
}

.pricing-summary {
  border: 2px solid var(--primary-gold);
}

.pricing-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pricing-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
}

.pricing-row.total {
  border-top: 2px solid var(--primary-gold);
  padding-top: 1rem;
  font-size: 1.2rem;
  font-weight: 700;
}

.pricing-row.total span {
  color: var(--primary-gold);
}

/* Booking Navigation */
.booking-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--glass-border);
}

.btn-next,
.btn-prev,
.btn-confirm {
  min-width: 150px;
}

.btn-confirm {
  background: var(--gradient-gold);
  color: var(--deep-black);
  font-weight: 700;
  padding: 15px 40px;
  font-size: 1.1rem;
}

/* Services Page Specific Styles */

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
}

.service-card {
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(255, 215, 0, 0.4);
}

.service-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.service-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.service-card:hover .service-img {
  transform: scale(1.1);
}

.service-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover .service-overlay {
  opacity: 1;
}

.service-content {
  padding: 2rem;
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  text-align: center;
}

.service-content h3 {
  margin-bottom: 1rem;
  text-align: center;
}

.service-content p {
  margin-bottom: 1.5rem;
  text-align: center;
  line-height: 1.6;
}

.service-features {
  margin-bottom: 1.5rem;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.5rem;
}

.feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--champagne-gold);
  padding: 0.25rem 0;
}

.service-hours {
  text-align: center;
  padding: 1rem;
  background: rgba(255, 215, 0, 0.05);
  border-radius: 8px;
  color: var(--champagne-gold);
  font-size: 0.9rem;
}

/* Event Planning */
.event-planning-content {
  max-width: 1000px;
  margin: 0 auto;
}

.event-types {
  margin: 2rem 0;
}

.event-type {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: rgba(255, 215, 0, 0.05);
  border-radius: 10px;
  border: 1px solid var(--glass-border);
}

.event-icon {
  font-size: 2rem;
  width: 60px;
  text-align: center;
}

.event-info h4 {
  margin-bottom: 0.25rem;
  color: var(--primary-gold);
}

.event-info p {
  margin: 0;
  color: var(--champagne-gold);
  font-size: 0.9rem;
}

.event-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

/* Additional Services */
.additional-service {
  text-align: center;
  padding: 2rem 1rem;
}

.additional-service .service-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.additional-service h3 {
  margin-bottom: 1rem;
}

.additional-service p {
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.service-link {
  display: inline-block;
  padding: 10px 20px;
  background: var(--gradient-gold);
  color: var(--deep-black);
  text-decoration: none;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.service-link:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

/* Booking Confirmation Animation */
.booking-confirmation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10001;
}

.confirmation-content {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 3rem;
  text-align: center;
  max-width: 500px;
  animation: zoomIn 0.5s ease-out;
}

.confirmation-icon {
  font-size: 4rem;
  color: var(--primary-gold);
  margin-bottom: 1rem;
  animation: bounce 1s ease-in-out;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-20px);
  }
  60% {
    transform: translateY(-10px);
  }
}

.confirmation-content h3 {
  margin-bottom: 1rem;
  color: var(--primary-gold);
}

.confirmation-content p {
  margin-bottom: 2rem;
  color: var(--champagne-gold);
}

.confirmation-details {
  background: rgba(255, 215, 0, 0.05);
  padding: 1.5rem;
  border-radius: 10px;
  margin-bottom: 2rem;
  text-align: left;
}

.confirmation-details h4 {
  margin-bottom: 1rem;
  color: var(--primary-gold);
  text-align: center;
}

/* Responsive Design for Booking and Services */
@media (max-width: 768px) {
  .booking-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .booking-steps {
    position: static;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
  }

  .step {
    flex-direction: column;
    padding: 1rem 0.5rem;
    text-align: center;
  }

  .step-info h4 {
    font-size: 0.9rem;
  }

  .step-info p {
    font-size: 0.8rem;
  }

  .date-inputs {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .room-options {
    grid-template-columns: 1fr;
  }

  .booking-navigation {
    flex-direction: column;
    gap: 1rem;
  }

  .btn-next,
  .btn-prev,
  .btn-confirm {
    width: 100%;
  }

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

  .service-card {
    margin-bottom: 1rem;
  }

  .event-actions {
    flex-direction: column;
    gap: 0.5rem;
  }

  .event-actions .btn {
    width: 100%;
  }

  .preference-options {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .booking-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .step {
    padding: 0.75rem 0.25rem;
  }

  .step-number {
    width: 30px;
    height: 30px;
    font-size: 0.8rem;
  }

  .confirmation-content {
    padding: 2rem 1rem;
    margin: 1rem;
  }

  .service-features .feature-list {
    grid-template-columns: 1fr;
  }
}
