/* ===== VARIABLES ===== */
:root {
    --primary-color: #d4af37;
    --primary-dark: #b8941f;
    --secondary-color: #2c3e50;
    --text-color: #333;
    --text-light: #666;
    --text-lighter: #999;
    --bg-color: #fff;
    --bg-light: #f9f9f9;
    --bg-dark: #222;
    --border-color: #e0e0e0;
    --success-color: #27ae60;
    --error-color: #e74c3c;
    --font-primary: 'Playfair Display', serif;
    --font-secondary: 'Poppins', sans-serif;
    --transition: all 0.3s ease;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --shadow-dark: 0 5px 15px rgba(0, 0, 0, 0.2);
    --container-width-lg: 80%;
    --container-width-md: 90%;
  }
  
  /* Dark Mode Variables */
  .dark-mode {
    --primary-color: #ffd700;
    --primary-dark: #e6c200;
    --secondary-color: #34495e;
    --text-color: #f0f0f0;
    --text-light: #ccc;
    --text-lighter: #aaa;
    --bg-color: #121212;
    --bg-light: #1e1e1e;
    --bg-dark: #000;
    --border-color: #333;
  }
  
  /* ===== RESET & BASE STYLES ===== */
  *,
  *::before,
  *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
  }
  
  html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
  }
  
  body {
    font-family: var(--font-secondary);
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
  }
  
  h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
  }
  
  h1 {
    font-size: 3.5rem;
  }
  
  h2 {
    font-size: 2.5rem;
  }
  
  h3 {
    font-size: 1.75rem;
  }
  
  p {
    margin-bottom: 1rem;
  }
  
  a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
  }
  
  ul {
    list-style: none;
  }
  
  img {
    max-width: 100%;
    display: block;
  }
  
  button, input, select, textarea {
    font-family: inherit;
  }
  
  .container {
    width: var(--container-width-lg);
    max-width: 1200px;
    margin: 0 auto;
  }
  
  section {
    padding: 5rem 0;
  }
  
  .section-header {
    text-align: center;
    margin-bottom: 3rem;
  }
  
  .section-header h2 {
    display: inline-block;
    position: relative;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
  }
  
  .divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem 0 2rem;
  }
  
  .divider::before,
  .divider::after {
    content: '';
    height: 1px;
    background-color: var(--primary-color);
    flex: 1;
    opacity: 0.5;
  }
  
  .divider i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin: 0 1rem;
  }
  
  /* ===== BUTTONS ===== */
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
  }
  
  .btn i {
    margin-left: 0.5rem;
  }
  
  .btn-primary {
    background-color: var(--primary-color);
    color: var(--bg-dark);
  }
  
  .btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
  }
  
  .btn-secondary {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
  }
  
  .btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--bg-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
  }
  
  .btn-block {
    width: 100%;
  }
  
  /* ===== LOADER ===== */
  .loader-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-color);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
  }
  
  .loader-container.hidden {
    opacity: 0;
    visibility: hidden;
  }
  
  .loader {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--primary-color);
    animation: pulse 1.5s infinite ease-in-out;
  }
  
  .loader i {
    font-size: 2rem;
    color: var(--bg-dark);
    animation: spin 2s infinite linear;
  }
  
  @keyframes pulse {
    0% {
      transform: scale(0.8);
      opacity: 0.8;
    }
    50% {
      transform: scale(1);
      opacity: 1;
    }
    100% {
      transform: scale(0.8);
      opacity: 0.8;
    }
  }
  
  @keyframes spin {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  
  /* ===== DARK MODE TOGGLE ===== */
  .dark-mode-toggle {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--bg-dark);
    border: none;
    cursor: pointer;
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
  }
  
  .dark-mode-toggle:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-dark);
  }
  
  .dark-mode-toggle .fa-sun {
    display: none;
  }
  
  .dark-mode .dark-mode-toggle .fa-moon {
    display: none;
  }
  
  .dark-mode .dark-mode-toggle .fa-sun {
    display: block;
  }
  
  /* ===== FLOATING CTA ===== */
  .floating-cta {
    position: fixed;
    bottom: 20px;
    left: 20px;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    background-color: var(--primary-color);
    color: var(--bg-dark);
    font-weight: 500;
    box-shadow: var(--shadow);
    z-index: 100;
    display: flex;
    align-items: center;
    transition: var(--transition);
  }
  
  .floating-cta i {
    margin-right: 0.5rem;
  }
  
  .floating-cta:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-dark);
    background-color: var(--primary-dark);
  }
  
  /* ===== HEADER & NAVIGATION ===== */
  header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: transparent;
    z-index: 1000;
    transition: var(--transition);
    padding: 1rem 0;
  }
  
  header.scrolled {
    background-color: var(--bg-color);
    box-shadow: var(--shadow);
    padding: 0.5rem 0;
  }
  
  header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .logo a {
    display: flex;
    align-items: center;
    font-family: var(--font-primary);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
  }
  
  .logo i {
    margin-left: 0.5rem;
  }
  
  nav {
    display: flex;
    align-items: center;
  }
  
  .nav-links {
    display: flex;
    gap: 1.5rem;
  }
  
  .nav-links a {
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
  }
  
  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
  }
  
  .nav-links a:hover::after,
  .nav-links a.active::after {
    width: 100%;
  }
  
  .hamburger {
    display: none;
    cursor: pointer;
  }
  
  .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--text-color);
    transition: var(--transition);
  }
  
  /* ===== HERO SECTION ===== */
  .hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('/placeholder.svg?height=1080&width=1920') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding-top: 80px;
  }
  
  .hero-content {
    max-width: 800px;
    padding: 0 1rem;
  }
  
  .hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: fadeInDown 1s ease;
  }
  
  .hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.3s;
    animation-fill-mode: both;
  }
  
  .hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    animation: fadeInUp 1s ease 0.6s;
    animation-fill-mode: both;
  }
  
  @keyframes fadeInDown {
    from {
      opacity: 0;
      transform: translateY(-30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* ===== ABOUT SECTION ===== */
  .about {
    background-color: var(--bg-light);
  }
  
  .about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
  }
  
  .about-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
  }
  
  .about-image::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border: 2px solid var(--primary-color);
    z-index: -1;
    transition: var(--transition);
  }
  
  .about-image:hover::before {
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
  }
  
  .about-text h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
  }
  
  .about-features {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
  }
  
  .feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  .feature i {
    color: var(--primary-color);
    font-size: 1.2rem;
  }
  
  /* ===== MENU SECTION ===== */
  .menu-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
  }
  
  .menu-tab {
    padding: 0.75rem 1.5rem;
    background-color: transparent;
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    color: var(--text-color);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
  }
  
  .menu-tab.active,
  .menu-tab:hover {
    background-color: var(--primary-color);
    color: var(--bg-dark);
  }
  
  .menu-category {
    display: none;
  }
  
  .menu-category.active {
    display: block;
    animation: fadeIn 0.5s ease;
  }
  
  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  
  .menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
  }
  
  .menu-item {
    background-color: var(--bg-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
  }
  
  .menu-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-dark);
  }
  
  .menu-item-image {
    height: 200px;
    overflow: hidden;
  }
  
  .menu-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
  }
  
  .menu-item:hover .menu-item-image img {
    transform: scale(1.1);
  }
  
  .menu-item-info {
    padding: 1.5rem;
  }
  
  .menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
  }
  
  .menu-item-header h3 {
    margin-bottom: 0;
    font-size: 1.3rem;
  }
  
  .price {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.2rem;
  }
  
  .badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background-color: var(--primary-color);
    color: var(--bg-dark);
    border-radius: 50px;
    font-size: 0.8rem;
    margin-top: 0.5rem;
  }
  
  /* ===== GALLERY SECTION ===== */
  .gallery {
    background-color: var(--bg-light);
  }
  
  .carousel-container {
    position: relative;
    margin-bottom: 3rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
  }
  
  .carousel {
    position: relative;
    height: 500px;
  }
  
  .carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
  }
  
  .carousel-slide.active {
    opacity: 1;
  }
  
  .carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
  }
  
  .carousel-btn:hover {
    background-color: var(--primary-color);
  }
  
  .carousel-btn.prev {
    left: 20px;
  }
  
  .carousel-btn.next {
    right: 20px;
  }
  
  .carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
  }
  
  .carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
  }
  
  .carousel-dot.active,
  .carousel-dot:hover {
    background-color: var(--primary-color);
  }
  
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
  }
  
  .gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 200px;
    cursor: pointer;
  }
  
  .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
  }
  
  .gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
  }
  
  .gallery-overlay i {
    color: #fff;
    font-size: 2rem;
  }
  
  .gallery-item:hover img {
    transform: scale(1.1);
  }
  
  .gallery-item:hover .gallery-overlay {
    opacity: 1;
  }
  
  /* Lightbox */
  .lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
  }
  
  .lightbox.active {
    opacity: 1;
    visibility: visible;
  }
  
  .lightbox-content {
    max-width: 90%;
    max-height: 80%;
    object-fit: contain;
  }
  
  .lightbox-caption {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    text-align: center;
    color: #fff;
    padding: 1rem;
  }
  
  .lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition);
  }
  
  .lightbox-close:hover {
    color: var(--primary-color);
  }
  
  /* ===== BOOKING SECTION ===== */
  .booking-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
  }
  
  .booking-info h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
  }
  
  .booking-details {
    margin-top: 2rem;
  }
  
  .booking-detail {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .booking-detail i {
    font-size: 1.5rem;
    color: var(--primary-color);
  }
  
  .booking-detail h4 {
    margin-bottom: 0.25rem;
  }
  
  .booking-form-container {
    background-color: var(--bg-color);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: var(--shadow);
  }
  
  .booking-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  
  label {
    font-weight: 500;
  }
  
  input, select, textarea {
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    background-color: var(--bg-color);
    color: var(--text-color);
    transition: var(--transition);
  }
  
  input:focus, select:focus, textarea:focus {
    border-color: var(--primary-color);
  }
  
  textarea {
    resize: vertical;
    min-height: 100px;
  }
  
  .error-message {
    color: var(--error-color);
    font-size: 0.85rem;
    display: none;
  }
  
  .form-group.error input,
  .form-group.error select {
    border-color: var(--error-color);
  }
  
  .form-group.error .error-message {
    display: block;
  }
  
  .booking-confirmation {
    text-align: center;
    display: none;
  }
  
  .booking-confirmation.active {
    display: block;
    animation: fadeIn 0.5s ease;
  }
  
  .booking-confirmation i {
    font-size: 3rem;
    color: var(--success-color);
    margin-bottom: 1rem;
  }
  
  /* ===== MAP SECTION ===== */
  .map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
  }
  
  .map-container iframe {
    width: 100%;
    height: 450px;
    border: 0;
  }
  
  /* ===== CONTACT SECTION ===== */
  .contact {
    background-color: var(--bg-light);
  }
  
  .contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
  
  .contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
  }
  
  .contact-card {
    background-color: var(--bg-color);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
  }
  
  .contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-dark);
  }
  
  .contact-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
  }
  
  .contact-card h3 {
    margin-bottom: 0.5rem;
  }
  
  .contact-form-container {
    background-color: var(--bg-color);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: var(--shadow);
  }
  
  .contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  
  /* ===== FOOTER ===== */
  .footer {
    background-color: var(--bg-dark);
    color: #fff;
    padding: 5rem 0 2rem;
  }
  
  .footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
  }
  
  .footer-logo a {
    display: flex;
    align-items: center;
    font-family: var(--font-primary);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
  }
  
  .footer-logo i {
    margin-left: 0.5rem;
  }
  
  .footer h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
  }
  
  .footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .footer-links a:hover {
    color: var(--primary-color);
  }
  
  .footer-hours ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .footer-hours span {
    font-weight: 500;
    color: var(--primary-color);
  }
  
  .newsletter-form {
    display: flex;
    margin-top: 1rem;
  }
  
  .newsletter-form input {
    flex: 1;
    border-radius: 5px 0 0 5px;
    border: none;
  }
  
  .newsletter-form button {
    background-color: var(--primary-color);
    color: var(--bg-dark);
    border: none;
    padding: 0 1rem;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    transition: var(--transition);
  }
  
  .newsletter-form button:hover {
    background-color: var(--primary-dark);
  }
  
  .footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .social-icons {
    display: flex;
    gap: 1rem;
  }
  
  .social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: var(--transition);
  }
  
  .social-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
  }
  
  .copyright {
    color: var(--text-lighter);
    text-align: center;
  }
  
  /* ===== RESPONSIVE STYLES ===== */
  @media screen and (max-width: 1024px) {
    :root {
      --container-width-lg: var(--container-width-md);
    }
    
    h1 {
      font-size: 3rem;
    }
    
    h2 {
      font-size: 2rem;
    }
    
    .hero h1 {
      font-size: 3.5rem;
    }
    
    .about-content,
    .booking-content,
    .contact-content {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
    
    .about-image::before {
      display: none;
    }
  }
  
  @media screen and (max-width: 768px) {
    .hamburger {
      display: block;
    }
    
    .nav-links {
      position: fixed;
      top: 80px;
      left: -100%;
      width: 100%;
      flex-direction: column;
      background-color: var(--bg-color);
      box-shadow: var(--shadow);
      padding: 2rem;
      transition: var(--transition);
      z-index: 999;
    }
    
    .nav-links.active {
      left: 0;
    }
    
    .hamburger.active .bar:nth-child(1) {
      transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(2) {
      opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(3) {
      transform: translateY(-8px) rotate(-45deg);
    }
    
    .hero h1 {
      font-size: 2.5rem;
    }
    
    .hero p {
      font-size: 1rem;
    }
    
    .hero-buttons {
      flex-direction: column;
      gap: 1rem;
    }
    
    .carousel {
      height: 300px;
    }
    
    .form-row {
      grid-template-columns: 1fr;
    }
    
    .floating-cta span {
      display: none;
    }
    
    .floating-cta {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      justify-content: center;
    }
    
    .floating-cta i {
      margin-right: 0;
    }
  }
  
  @media screen and (max-width: 480px) {
    h1 {
      font-size: 2.5rem;
    }
    
    h2 {
      font-size: 1.8rem;
    }
    
    section {
      padding: 3rem 0;
    }
    
    .hero h1 {
      font-size: 2rem;
    }
    
    .menu-tab {
      padding: 0.5rem 1rem;
      font-size: 0.9rem;
    }
    
    .carousel-btn {
      width: 40px;
      height: 40px;
    }
    
    .booking-form-container,
    .contact-form-container {
      padding: 1.5rem;
    }
  }
  
