/* ================================================
   Architectural Studio - Midnight Indigo & Amber Gold Theme
   Primary: #1A237E | Secondary: #FFB300
   ================================================ */

/* ===== ROOT VARIABLES ===== */
:root {
  --primary-color: #1A237E;
  --secondary-color: #FFB300;
  --primary-dark: #0D1642;
  --primary-light: #3949AB;
  --secondary-dark: #FF8F00;
  --secondary-light: #FFC947;
  --text-dark: #212529;
  --text-light: #F8F9FA;
  --glass-bg: rgba(26, 35, 126, 0.85);
  --transition-speed: 0.3s;
}

/* ===== GLOBAL STYLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-dark) !important;
  background-color: #FAFAFA !important;
  overflow-x: hidden;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  color: var(--primary-color) !important;
}

a {
  text-decoration: none;
  transition: all var(--transition-speed) ease;
}

/* ===== NAVIGATION ===== */
.navbar {
  background: transparent !important;
  transition: all 0.4s ease !important;
  padding: 1.5rem 0 !important;
}

.navbar.scrolled {
  background: var(--glass-bg) !important;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 30px rgba(26, 35, 126, 0.3) !important;
  padding: 0.8rem 0 !important;
}

.glass-nav {
  background: var(--glass-bg) !important;
  backdrop-filter: blur(15px);
  box-shadow: 0 8px 32px rgba(26, 35, 126, 0.2) !important;
}

.navbar-brand {
  font-size: 1.8rem !important;
  color: var(--secondary-color) !important;
  font-weight: 700 !important;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.navbar-brand:hover {
  color: var(--secondary-light) !important;
  transform: scale(1.05);
}

.navbar-dark .navbar-nav .nav-link {
  color: #FFFFFF !important;
  font-weight: 500 !important;
  margin: 0 0.8rem;
  padding: 0.5rem 1rem !important;
  position: relative;
  font-size: 1.05rem;
  transition: all var(--transition-speed) ease !important;
}

.navbar-dark .navbar-nav .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: var(--secondary-color);
  transition: width var(--transition-speed) ease;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
  color: var(--secondary-color) !important;
  transform: translateY(-2px);
}

.navbar-dark .navbar-nav .nav-link:hover::before,
.navbar-dark .navbar-nav .nav-link.active::before {
  width: 80%;
}

.navbar-toggler {
  border: 2px solid var(--secondary-color) !important;
  padding: 0.5rem 0.75rem !important;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.25rem rgba(255, 179, 0, 0.25) !important;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23FFB300' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* ===== HERO VIDEO SECTION ===== */
.hero-video-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 50%, var(--primary-light) 100%);
  position: relative;
  min-height: 100vh;
}

.hero-video-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(13, 22, 66, 0.7);
  z-index: 1;
}

.hero-video-section video {
  object-fit: cover;
  filter: brightness(0.6);
}

.hero-video-section .container {
  position: relative;
  z-index: 2;
}

.hero-video-section .display-1 {
  font-size: 4.5rem !important;
  font-weight: 800 !important;
  color: #FFFFFF !important;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
  line-height: 1.2 !important;
}

.hero-video-section .lead {
  font-size: 1.8rem !important;
  color: var(--secondary-color) !important;
  font-weight: 500 !important;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-video-section .text-white {
  color: #FFFFFF !important;
}

/* ===== BUTTONS ===== */
.btn {
  font-weight: 600 !important;
  border-radius: 8px !important;
  transition: all var(--transition-speed) ease !important;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-width: 2px !important;
}

.btn-primary {
  background-color: var(--secondary-color) !important;
  border-color: var(--secondary-color) !important;
  color: var(--primary-dark) !important;
}

.btn-primary:hover {
  background-color: var(--secondary-dark) !important;
  border-color: var(--secondary-dark) !important;
  color: #FFFFFF !important;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 179, 0, 0.4) !important;
}

.btn-outline-primary {
  border-color: var(--secondary-color) !important;
  color: var(--secondary-color) !important;
  background: transparent !important;
}

.btn-outline-primary:hover {
  background-color: var(--secondary-color) !important;
  border-color: var(--secondary-color) !important;
  color: var(--primary-dark) !important;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 179, 0, 0.4) !important;
}

.btn-outline-light {
  border-color: #FFFFFF !important;
  color: #FFFFFF !important;
  background: transparent !important;
  border-width: 2px !important;
}

.btn-outline-light:hover {
  background-color: var(--secondary-color) !important;
  border-color: var(--secondary-color) !important;
  color: var(--primary-dark) !important;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 179, 0, 0.4) !important;
}

.btn-outline-secondary {
  border-color: var(--primary-color) !important;
  color: var(--primary-color) !important;
  background: transparent !important;
}

.btn-outline-secondary:hover {
  background-color: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
  color: #FFFFFF !important;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(26, 35, 126, 0.4) !important;
}

.btn-lg {
  padding: 1rem 2.5rem !important;
  font-size: 1.1rem !important;
}

.btn-sm {
  padding: 0.5rem 1.2rem !important;
  font-size: 0.9rem !important;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

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

.animate-fade-in {
  animation: fadeIn 1s ease-out;
}

.animate-bounce {
  animation: bounce 2s infinite;
}

/* ===== SCROLL INDICATOR ===== */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  color: var(--secondary-color) !important;
  cursor: pointer;
  transition: all var(--transition-speed) ease;
}

.scroll-indicator:hover {
  color: var(--secondary-light) !important;
  transform: translateX(-50%) scale(1.2);
}

/* ===== SECTIONS ===== */
section {
  padding: 5rem 0;
  position: relative;
}

.section-title {
  color: var(--primary-color) !important;
  font-weight: 800 !important;
  margin-bottom: 3rem;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60%;
  height: 4px;
  background: var(--secondary-color);
  border-radius: 2px;
}

.display-1 {
  font-size: 3.5rem !important;
  font-weight: 800 !important;
}

.display-3 {
  font-size: 2.8rem !important;
  font-weight: 700 !important;
}

.display-4 {
  font-size: 2.5rem !important;
  font-weight: 700 !important;
}

.display-5 {
  font-size: 2rem !important;
  font-weight: 700 !important;
}

/* ===== CARDS ===== */
.card {
  border: none !important;
  border-radius: 12px !important;
  overflow: hidden;
  transition: all var(--transition-speed) ease !important;
  background: #FFFFFF !important;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(26, 35, 126, 0.2) !important;
}

.card-img-top {
  height: 250px;
  object-fit: cover;
  transition: all 0.5s ease;
}

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

.card-body {
  padding: 1.5rem !important;
}

.card-title {
  color: var(--primary-color) !important;
  font-weight: 700 !important;
  font-size: 1.4rem !important;
}

.card-text {
  color: var(--text-dark) !important;
  line-height: 1.7;
}

.contact-card {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%) !important;
  color: #FFFFFF !important;
  padding: 2rem;
  border-radius: 12px;
  transition: all var(--transition-speed) ease;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(26, 35, 126, 0.4) !important;
}

.contact-card .card-title {
  color: var(--secondary-color) !important;
}

/* ===== ROOM/PROJECT CARDS ===== */
.room-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
}

.room-card img {
  transition: all 0.5s ease;
}

.room-card:hover img {
  transform: scale(1.15);
  filter: brightness(0.7);
}

.room-card .position-absolute {
  transition: all var(--transition-speed) ease;
}

.room-card:hover .position-absolute {
  background: rgba(26, 35, 126, 0.9) !important;
}

/* ===== ICONS ===== */
.bi {
  color: var(--secondary-color) !important;
}

.bi-building,
.bi-cup-hot,
.bi-flower1,
.bi-person-check,
.bi-briefcase,
.bi-airplane,
.bi-shield-check,
.bi-people,
.bi-lock,
.bi-cookie,
.bi-hand-thumbs-up,
.bi-clock-history,
.bi-globe,
.bi-person-x,
.bi-arrow-repeat,
.bi-arrows-angle-expand,
.bi-universal-access,
.bi-wifi,
.bi-tv,
.bi-droplet,
.bi-snow2,
.bi-safe,
.bi-info-circle,
.bi-check-circle,
.bi-pin-map-fill,
.bi-chat-dots,
.bi-file-earmark-pdf {
  font-size: 3rem !important;
  color: var(--secondary-color) !important;
  transition: all var(--transition-speed) ease;
}

.card:hover .bi {
  transform: scale(1.2) rotate(10deg);
  color: var(--primary-color) !important;
}

/* ===== IMAGES ===== */
.img-fluid {
  border-radius: 12px;
  transition: all 0.5s ease;
}

.img-fluid:hover {
  transform: scale(1.02);
  box-shadow: 0 15px 40px rgba(26, 35, 126, 0.3);
}

.shadow-lg {
  box-shadow: 0 10px 30px rgba(26, 35, 126, 0.2) !important;
}

.shadow-sm {
  box-shadow: 0 2px 10px rgba(26, 35, 126, 0.1) !important;
}

.shadow {
  box-shadow: 0 5px 20px rgba(26, 35, 126, 0.15) !important;
}

.object-fit-cover {
  object-fit: cover !important;
}

/* ===== PARALLAX ===== */
.parallax-container {
  position: relative;
  overflow: hidden;
  height: 500px;
}

.parallax-section {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 400px;
  position: relative;
}

.parallax-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 35, 126, 0.7);
}

.parallax-img {
  position: absolute;
  width: 100%;
  height: 120%;
  object-fit: cover;
  transform: translateZ(0);
  will-change: transform;
}

/* ===== TIMELINE ===== */
.timeline-container {
  position: relative;
  padding: 2rem 0;
}

.timeline-line {
  position: absolute;
  left: 50px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--secondary-color);
}

.timeline-item {
  position: relative;
  padding-left: 100px;
  margin-bottom: 3rem;
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.6s ease;
}

.timeline-item.fade-in-timeline {
  opacity: 1;
  transform: translateX(0);
}

.timeline-dot {
  position: absolute;
  left: 38px;
  top: 5px;
  width: 25px;
  height: 25px;
  background: var(--secondary-color);
  border: 4px solid var(--primary-color);
  border-radius: 50%;
  z-index: 1;
}

/* ===== FORMS ===== */
.form-control {
  border: 2px solid #E0E0E0 !important;
  border-radius: 8px !important;
  padding: 0.75rem 1rem !important;
  transition: all var(--transition-speed) ease !important;
  background: #FFFFFF !important;
  color: var(--text-dark) !important;
  font-size: 1rem !important;
}

.form-control:focus {
  border-color: var(--secondary-color) !important;
  box-shadow: 0 0 0 0.25rem rgba(255, 179, 0, 0.25) !important;
  background: #FFFFFF !important;
  color: var(--text-dark) !important;
}

.form-control::placeholder {
  color: #9E9E9E !important;
}

.form-label {
  font-weight: 600 !important;
  color: var(--primary-color) !important;
  margin-bottom: 0.5rem !important;
  font-size: 1rem !important;
}

.form-select {
  border: 2px solid #E0E0E0 !important;
  border-radius: 8px !important;
  padding: 0.75rem 1rem !important;
  background: #FFFFFF !important;
  color: var(--text-dark) !important;
}

.form-select:focus {
  border-color: var(--secondary-color) !important;
  box-shadow: 0 0 0 0.25rem rgba(255, 179, 0, 0.25) !important;
}

.form-check-input {
  border: 2px solid #E0E0E0 !important;
  width: 1.5rem !important;
  height: 1.5rem !important;
}

.form-check-input:checked {
  background-color: var(--secondary-color) !important;
  border-color: var(--secondary-color) !important;
}

.form-check-input:focus {
  box-shadow: 0 0 0 0.25rem rgba(255, 179, 0, 0.25) !important;
}

.form-check-label {
  color: var(--text-dark) !important;
  margin-left: 0.5rem;
  font-size: 1rem !important;
}

.invalid-feedback {
  color: #DC3545 !important;
  font-weight: 500 !important;
  font-size: 0.9rem !important;
}

.form-control.is-invalid {
  border-color: #DC3545 !important;
}

/* ===== ALERTS ===== */
.alert {
  border-radius: 8px !important;
  border: none !important;
  padding: 1rem 1.5rem !important;
  font-weight: 500 !important;
}

.alert-success {
  background-color: #D4EDDA !important;
  color: #155724 !important;
}

/* ===== ACCORDION ===== */
.accordion-item {
  border: 2px solid #E0E0E0 !important;
  border-radius: 8px !important;
  margin-bottom: 1rem !important;
  overflow: hidden;
}

.accordion-button {
  background-color: var(--primary-color) !important;
  color: #FFFFFF !important;
  font-weight: 600 !important;
  padding: 1.25rem 1.5rem !important;
  font-size: 1.1rem !important;
}

.accordion-button:not(.collapsed) {
  background-color: var(--primary-light) !important;
  color: #FFFFFF !important;
  box-shadow: none !important;
}

.accordion-button:focus {
  box-shadow: 0 0 0 0.25rem rgba(255, 179, 0, 0.25) !important;
  border-color: var(--secondary-color) !important;
}

.accordion-button::after {
  filter: brightness(0) invert(1);
}

.accordion-body {
  padding: 1.5rem !important;
  background: #FAFAFA !important;
  color: var(--text-dark) !important;
  line-height: 1.8;
}

.accordion-collapse {
  border-top: 2px solid var(--secondary-color) !important;
}

/* ===== SOCIAL LINKS ===== */
.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: var(--primary-color);
  color: #FFFFFF !important;
  border-radius: 50%;
  margin: 0 0.5rem;
  transition: all var(--transition-speed) ease;
  font-size: 1.2rem;
}

.social-links a:hover {
  background: var(--secondary-color);
  color: var(--primary-dark) !important;
  transform: translateY(-5px) rotate(360deg);
  box-shadow: 0 10px 20px rgba(255, 179, 0, 0.4);
}

/* ===== FILTER BUTTONS ===== */
.filter-btn {
  padding: 0.6rem 1.5rem !important;
  margin: 0.5rem !important;
  background: transparent !important;
  border: 2px solid var(--primary-color) !important;
  color: var(--primary-color) !important;
  border-radius: 25px !important;
  font-weight: 600 !important;
  transition: all var(--transition-speed) ease !important;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--secondary-color) !important;
  border-color: var(--secondary-color) !important;
  color: var(--primary-dark) !important;
  transform: scale(1.05);
}

/* ===== MENU SECTION ===== */
.menu-section {
  background: #FFFFFF;
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(26, 35, 126, 0.1);
}

.menu-category {
  margin-bottom: 3rem;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 1.5rem 0;
  border-bottom: 1px solid #E0E0E0;
  transition: all var(--transition-speed) ease;
}

.menu-item:hover {
  transform: translateX(10px);
  border-bottom-color: var(--secondary-color);
}

.menu-item-name {
  font-weight: 700;
  color: var(--primary-color) !important;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.menu-item-desc {
  color: #757575 !important;
  font-size: 0.95rem;
  line-height: 1.6;
}

.menu-content {
  flex: 1;
}

/* ===== MODAL ===== */
.modal-content {
  border-radius: 12px !important;
  border: none !important;
  overflow: hidden;
}

.modal-header {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%) !important;
  color: #FFFFFF !important;
  border-bottom: none !important;
  padding: 1.5rem 2rem !important;
}

.modal-title {
  color: #FFFFFF !important;
  font-weight: 700 !important;
}

.modal-body {
  padding: 2rem !important;
}

.btn-close {
  filter: brightness(0) invert(1);
  opacity: 1 !important;
}

.btn-close:focus {
  box-shadow: 0 0 0 0.25rem rgba(255, 179, 0, 0.25) !important;
}

/* ===== CAROUSEL ===== */
.carousel-control-prev,
.carousel-control-next {
  width: 5% !important;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: var(--primary-color);
  border-radius: 50%;
  padding: 2rem;
}

.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon {
  background-color: var(--secondary-color);
}

/* ===== RESERVATION WIDGET ===== */
.reservation-widget-sticky {
  position: sticky;
  top: 100px;
  background: #FFFFFF;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(26, 35, 126, 0.15);
  z-index: 100;
}

.notification-dot {
  position: absolute;
  top: -5px;
  right: -5px;
  width: 20px;
  height: 20px;
  background: #DC3545;
  border-radius: 50%;
  border: 3px solid #FFFFFF;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.7;
  }
}

/* ===== HERO DINING ===== */
.hero-dining {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 50%, var(--primary-light) 100%);
  padding: 8rem 0 5rem 0;
  position: relative;
  overflow: hidden;
}

.hero-dining::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path fill="%23FFB300" fill-opacity="0.1" d="M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z"></path></svg>');
  background-repeat: repeat-x;
  background-size: contain;
  opacity: 0.3;
}

/* ===== FOOTER ===== */
footer {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
  color: #FFFFFF !important;
  padding: 3rem 0 1.5rem 0;
  margin-top: 5rem;
}

footer h5 {
  color: var(--secondary-color) !important;
  font-weight: 700 !important;
  margin-bottom: 1.5rem;
  font-size: 1.3rem !important;
}

footer a {
  color: #E0E0E0 !important;
  transition: all var(--transition-speed) ease;
  font-size: 1rem;
}

footer a:hover {
  color: var(--secondary-color) !important;
  transform: translateX(5px);
}

footer .list-unstyled li {
  margin-bottom: 0.8rem;
}

footer .bi {
  color: var(--secondary-color) !important;
  font-size: 1rem !important;
}

.text-white-50 {
  color: rgba(255, 255, 255, 0.6) !important;
}

/* ===== UTILITY CLASSES ===== */
.bg-white {
  background-color: #FFFFFF !important;
}

.text-muted {
  color: #757575 !important;
}

.text-white {
  color: #FFFFFF !important;
}

.text-decoration-none {
  text-decoration: none !important;
}

.rounded {
  border-radius: 8px !important;
}

.rounded-3 {
  border-radius: 12px !important;
}

.rounded-circle {
  border-radius: 50% !important;
}

.d-inline-flex {
  display: inline-flex !important;
}

.gap-3 {
  gap: 1rem !important;
}

.gap-5 {
  gap: 3rem !important;
}

/* ===== DOWNLOAD PDF BUTTON ===== */
.download-pdf-btn {
  position: relative;
  overflow: hidden;
}

.download-pdf-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.download-pdf-btn:hover::before {
  width: 300px;
  height: 300px;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
  .hero-video-section .display-1 {
    font-size: 3.5rem !important;
  }
  
  .display-3 {
    font-size: 2.5rem !important;
  }
}

@media (max-width: 992px) {
  .hero-video-section .display-1 {
    font-size: 3rem !important;
  }
  
  .hero-video-section .lead {
    font-size: 1.5rem !important;
  }
  
  .timeline-line {
    left: 20px;
  }
  
  .timeline-item {
    padding-left: 60px;
  }
  
  .timeline-dot {
    left: 8px;
  }
  
  .navbar-collapse {
    background: var(--glass-bg);
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
  }
  
  .reservation-widget-sticky {
    position: relative;
    top: 0;
    margin-bottom: 2rem;
  }
}

@media (max-width: 768px) {
  .hero-video-section .display-1 {
    font-size: 2.5rem !important;
  }
  
  .hero-video-section .lead {
    font-size: 1.2rem !important;
  }
  
  .display-3 {
    font-size: 2rem !important;
  }
  
  .display-4 {
    font-size: 1.8rem !important;
  }
  
  .display-5 {
    font-size: 1.5rem !important;
  }
  
  section {
    padding: 3rem 0;
  }
  
  .btn-lg {
    padding: 0.8rem 2rem !important;
    font-size: 1rem !important;
  }
  
  .card-img-top {
    height: 200px;
  }
  
  .menu-section {
    padding: 1.5rem;
  }
  
  .social-links a {
    width: 40px;
    height: 40px;
    font-size: 1rem;
    margin: 0 0.3rem;
  }
}

@media (max-width: 576px) {
  .hero-video-section .display-1 {
    font-size: 2rem !important;
  }
  
  .hero-video-section .lead {
    font-size: 1rem !important;
  }
  
  .navbar-brand {
    font-size: 1.4rem !important;
  }
  
  .btn-lg {
    padding: 0.7rem 1.5rem !important;
    font-size: 0.95rem !important;
  }
  
  .px-5 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  
  .me-3 {
    margin-right: 0.5rem !important;
  }
  
  .mb-3 {
    margin-bottom: 0.5rem !important;
  }
}

/* ===== SCROLLBAR STYLING ===== */
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: #F5F5F5;
}

::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 6px;
  border: 2px solid #F5F5F5;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--secondary-color);
}

/* ===== LOADING STATES ===== */
.loading {
  opacity: 0.6;
  pointer-events: none;
}

/* ===== ACCESSIBILITY ===== */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--secondary-color);
  color: var(--primary-dark) !important;
  padding: 0.5rem 1rem;
  text-decoration: none;
  font-weight: 600;
  z-index: 9999;
}

.skip-link:focus {
  top: 0;
}

/* ===== PRINT STYLES ===== */
@media print {
  .navbar,
  .btn,
  footer,
  .scroll-indicator {
    display: none !important;
  }
  
  body {
    color: #000000 !important;
    background: #FFFFFF !important;
  }
  
  a {
    color: #000000 !important;
    text-decoration: underline !important;
  }
}