/* Arctic Frost Architecture Studio - Custom CSS */

/* ===== ROOT VARIABLES ===== */
:root {
  --primary-color: #1e3a5f;
  --secondary-color: #b8d4f0;
  --accent-frost: #c5e3ff;
  --dark-frost: #0f1f35;
  --light-frost: #e8f4ff;
  --white: #ffffff;
  --text-dark: #2c3e50;
  --transition: all 0.3s ease;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text-dark) !important;
  background-color: var(--light-frost) !important;
  overflow-x: hidden;
  line-height: 1.6;
}

/* ===== NAVBAR STYLES ===== */
.navbar {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-frost) 100%) !important;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 30px rgba(30, 58, 95, 0.3);
  padding: 1rem 0 !important;
  transition: var(--transition);
}

.navbar.fixed-top {
  z-index: 1030;
}

.navbar-dark .navbar-brand {
  color: var(--white) !important;
  font-size: 1.5rem !important;
  font-weight: 700 !important;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: var(--transition);
}

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

.navbar-dark .navbar-nav .nav-link {
  color: var(--secondary-color) !important;
  font-weight: 500 !important;
  margin: 0 0.5rem;
  padding: 0.5rem 1rem !important;
  position: relative;
  transition: var(--transition);
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
  color: var(--white) !important;
  background-color: rgba(184, 212, 240, 0.15) !important;
  border-radius: 8px;
}

.navbar-dark .navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--accent-frost);
  transition: var(--transition);
  transform: translateX(-50%);
}

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

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

.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='rgba(184, 212, 240, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* ===== HERO SECTION ===== */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--dark-frost) 0%, var(--primary-color) 50%, #2a4d75 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(184,212,240,0.3)"/></svg>');
  background-size: 50px 50px;
  animation: snowfall 20s linear infinite;
  opacity: 0.3;
}

@keyframes snowfall {
  0% { transform: translateY(0); }
  100% { transform: translateY(100px); }
}

.hero-section .hero-image {
  width: 100%;
  padding: 2rem;
  z-index: 2;
}

.hero-section .display-2 {
  font-weight: 800 !important;
  color: var(--white) !important;
  text-shadow: 2px 4px 20px rgba(0, 0, 0, 0.3);
  margin-bottom: 1.5rem !important;
  letter-spacing: 2px;
  animation: fadeInDown 1s ease-out;
}

.hero-section .lead {
  color: var(--secondary-color) !important;
  font-weight: 400 !important;
  margin-bottom: 3rem !important;
  text-shadow: 1px 2px 10px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease-out 0.3s 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);
  }
}

.bi-chevron-down {
  color: var(--secondary-color) !important;
  animation: bounce 2s infinite;
  cursor: pointer;
  transition: var(--transition);
}

.bi-chevron-down:hover {
  color: var(--white) !important;
  transform: scale(1.2);
}

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

/* ===== BOOKING WIDGET ===== */
.booking-widget {
  background: rgba(255, 255, 255, 0.98) !important;
  backdrop-filter: blur(20px);
  border: 2px solid var(--secondary-color) !important;
  box-shadow: 0 10px 50px rgba(30, 58, 95, 0.3) !important;
  animation: fadeInUp 1s ease-out 0.6s both;
  max-width: 1200px;
}

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

.booking-widget .form-control,
.booking-widget .form-select {
  border: 2px solid var(--secondary-color) !important;
  background-color: var(--light-frost) !important;
  color: var(--primary-color) !important;
  padding: 0.75rem 1rem !important;
  font-weight: 500 !important;
  transition: var(--transition);
  border-radius: 8px !important;
}

.booking-widget .form-control:focus,
.booking-widget .form-select:focus {
  border-color: var(--primary-color) !important;
  box-shadow: 0 0 0 0.25rem rgba(30, 58, 95, 0.15) !important;
  background-color: var(--white) !important;
  outline: none !important;
}

.booking-widget .form-control::placeholder {
  color: rgba(30, 58, 95, 0.5) !important;
}

.form-control-lg {
  padding: 1rem 1.25rem !important;
  font-size: 1.1rem !important;
}

.form-select-lg {
  padding: 1rem 1.25rem !important;
  font-size: 1.1rem !important;
}

/* ===== BUTTONS ===== */
.btn {
  font-weight: 600 !important;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.75rem 2rem !important;
  border-radius: 50px !important;
  transition: var(--transition);
  border: none !important;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

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

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

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-frost) 100%) !important;
  color: var(--white) !important;
  box-shadow: 0 4px 15px rgba(30, 58, 95, 0.4);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--dark-frost) 0%, var(--primary-color) 100%) !important;
  color: var(--white) !important;
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(30, 58, 95, 0.5);
}

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

.btn-outline-primary:hover {
  background-color: var(--primary-color) !important;
  color: var(--white) !important;
  border-color: var(--primary-color) !important;
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(30, 58, 95, 0.4);
}

.btn-light {
  background-color: var(--white) !important;
  color: var(--primary-color) !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-light:hover {
  background-color: var(--secondary-color) !important;
  color: var(--primary-color) !important;
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}

.btn-outline-light {
  border: 2px solid var(--white) !important;
  background-color: transparent !important;
  color: var(--white) !important;
}

.btn-outline-light:hover {
  background-color: var(--white) !important;
  color: var(--primary-color) !important;
  border-color: var(--white) !important;
  transform: translateY(-3px);
}

.btn-outline-dark {
  border: 2px solid var(--primary-color) !important;
  background-color: transparent !important;
  color: var(--primary-color) !important;
}

.btn-outline-dark:hover {
  background-color: var(--primary-color) !important;
  color: var(--white) !important;
  border-color: var(--primary-color) !important;
  transform: translateY(-3px);
}

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

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

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

.btn-sm {
  padding: 0.5rem 1.5rem !important;
  font-size: 0.875rem !important;
}

/* ===== CARDS ===== */
.card {
  border: none !important;
  border-radius: 16px !important;
  overflow: hidden;
  transition: var(--transition);
  background-color: var(--white) !important;
  box-shadow: 0 4px 20px rgba(30, 58, 95, 0.1) !important;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(30, 58, 95, 0.25) !important;
}

.card-img-top {
  height: 250px;
  object-fit: cover;
  transition: var(--transition);
}

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

.card-body {
  padding: 2rem !important;
  background-color: var(--white) !important;
}

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

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

.card-footer {
  background-color: transparent !important;
  border-top: 1px solid var(--secondary-color) !important;
  padding: 1.5rem 2rem !important;
}

/* ===== ICONS ===== */
[class^="bi-"],
[class*=" bi-"] {
  transition: var(--transition);
}

.bi-house-heart,
.bi-compass,
.bi-heart-pulse,
.bi-cup-hot,
.bi-calendar-event,
.bi-snow2,
.bi-snow3,
.bi-star-fill,
.bi-telephone-fill,
.bi-envelope-fill,
.bi-geo-alt-fill,
.bi-facebook,
.bi-instagram,
.bi-twitter,
.bi-chat-dots-fill,
.bi-send-fill,
.bi-info-circle-fill,
.bi-car-front-fill,
.bi-check-circle-fill,
.bi-airplane-fill,
.bi-clock-fill,
.bi-chat-left-dots-fill,
.bi-translate,
.bi-calendar-check-fill,
.bi-people-fill,
.bi-arrows-fullscreen,
.bi-moisture,
.bi-fire,
.bi-house-door-fill,
.bi-cup-hot-fill,
.bi-controller,
.bi-search,
.bi-calendar-check,
.bi-piggy-bank,
.bi-flower1,
.bi-sun,
.bi-brightness-high,
.bi-moon-stars,
.bi-snow,
.bi-briefcase,
.bi-check2,
.bi-person-check,
.bi-book,
.bi-gift,
.bi-wifi,
.bi-p-square,
.bi-shop,
.bi-cup-straw,
.bi-shield-check,
.bi-cash-coin,
.bi-universal-access-circle,
.bi-geo-alt,
.bi-telephone,
.bi-envelope,
.bi-tree,
.bi-clock,
.bi-people,
.bi-currency-dollar,
.bi-thermometer-snow,
.bi-camera,
.bi-speedometer2,
.bi-heart,
.bi-lightning,
.bi-tag {
  color: var(--primary-color) !important;
}

.text-white .bi-star-fill,
.text-white [class^="bi-"],
.text-white [class*=" bi-"] {
  color: var(--white) !important;
}

.fs-1 { font-size: calc(1.375rem + 1.5vw) !important; }
.fs-4 { font-size: calc(1.275rem + 0.3vw) !important; }
.fs-5 { font-size: 1.25rem !important; }
.fs-6 { font-size: 1rem !important; }

/* ===== SECTIONS ===== */
.py-5 {
  padding-top: 5rem !important;
  padding-bottom: 5rem !important;
}

.container {
  position: relative;
  z-index: 1;
}

.img-fluid {
  border-radius: 16px !important;
  box-shadow: 0 10px 30px rgba(30, 58, 95, 0.2);
  transition: var(--transition);
}

.img-fluid:hover {
  transform: scale(1.02);
  box-shadow: 0 15px 40px rgba(30, 58, 95, 0.3);
}

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

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

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

.shadow {
  box-shadow: 0 10px 30px rgba(30, 58, 95, 0.15) !important;
}

.shadow-sm {
  box-shadow: 0 4px 15px rgba(30, 58, 95, 0.1) !important;
}

.shadow-lg {
  box-shadow: 0 15px 50px rgba(30, 58, 95, 0.3) !important;
}

/* ===== TYPOGRAPHY ===== */
.display-2 {
  font-size: calc(1.725rem + 5.7vw) !important;
  font-weight: 800 !important;
  line-height: 1.2 !important;
}

.display-3 {
  font-size: calc(1.625rem + 4.5vw) !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
}

.display-4 {
  font-size: calc(1.525rem + 3.3vw) !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
}

.display-5 {
  font-size: calc(1.425rem + 2.1vw) !important;
  font-weight: 600 !important;
  line-height: 1.2 !important;
}

.display-6 {
  font-size: calc(1.325rem + 0.9vw) !important;
  font-weight: 600 !important;
  line-height: 1.2 !important;
}

.text-primary {
  color: var(--primary-color) !important;
}

.text-white {
  color: var(--white) !important;
}

.text-dark {
  color: var(--text-dark) !important;
}

.text-muted {
  color: rgba(30, 58, 95, 0.6) !important;
}

.fw-bold {
  font-weight: 700 !important;
}

.fw-semibold {
  font-weight: 600 !important;
}

.fw-normal {
  font-weight: 400 !important;
}

.fst-italic {
  font-style: italic !important;
}

.lead {
  font-size: 1.25rem !important;
  font-weight: 400 !important;
}

/* ===== BACKGROUND COLORS ===== */
.bg-white {
  background-color: var(--white) !important;
}

.bg-light {
  background-color: var(--light-frost) !important;
}

.bg-success {
  background-color: #28a745 !important;
}

.bg-transparent {
  background-color: transparent !important;
}

/* ===== SPACING UTILITIES ===== */
.px-0 { padding-left: 0 !important; padding-right: 0 !important; }
.px-3 { padding-left: 1rem !important; padding-right: 1rem !important; }
.px-4 { padding-left: 1.5rem !important; padding-right: 1.5rem !important; }
.px-5 { padding-left: 3rem !important; padding-right: 3rem !important; }
.py-2 { padding-top: 0.5rem !important; padding-bottom: 0.5rem !important; }
.py-3 { padding-top: 1rem !important; padding-bottom: 1rem !important; }
.py-5 { padding-top: 3rem !important; padding-bottom: 3rem !important; }
.p-3 { padding: 1rem !important; }
.p-4 { padding: 1.5rem !important; }
.p-5 { padding: 3rem !important; }
.pt-3 { padding-top: 1rem !important; }
.pt-4 { padding-top: 1.5rem !important; }
.pt-5 { padding-top: 3rem !important; }
.pb-3 { padding-bottom: 1rem !important; }
.pb-4 { padding-bottom: 1.5rem !important; }
.ps-4 { padding-left: 1.5rem !important; }
.ps-lg-5 { padding-left: 3rem !important; }
.pe-lg-5 { padding-right: 3rem !important; }
.m-3 { margin: 1rem !important; }
.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 0.25rem !important; }
.mb-2 { margin-bottom: 0.5rem !important; }
.mb-3 { margin-bottom: 1rem !important; }
.mb-4 { margin-bottom: 1.5rem !important; }
.mb-5 { margin-bottom: 3rem !important; }
.mb-lg-0 { margin-bottom: 0 !important; }
.mt-1 { margin-top: 0.25rem !important; }
.mt-2 { margin-top: 0.5rem !important; }
.mt-3 { margin-top: 1rem !important; }
.mt-4 { margin-top: 1.5rem !important; }
.mt-5 { margin-top: 3rem !important; }
.mt-auto { margin-top: auto !important; }
.mt-lg-0 { margin-top: 0 !important; }
.ms-2 { margin-left: 0.5rem !important; }
.ms-3 { margin-left: 1rem !important; }
.ms-4 { margin-left: 1.5rem !important; }
.ms-auto { margin-left: auto !important; }
.me-2 { margin-right: 0.5rem !important; }
.me-3 { margin-right: 1rem !important; }
.my-4 { margin-top: 1.5rem !important; margin-bottom: 1.5rem !important; }

/* ===== POSITIONING ===== */
.position-relative {
  position: relative !important;
}

.position-absolute {
  position: absolute !important;
}

.fixed-top {
  position: fixed !important;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}

.sticky-top {
  position: sticky !important;
  top: 0;
  z-index: 1020;
}

.top-0 { top: 0 !important; }
.top-50 { top: 50% !important; }
.bottom-0 { bottom: 0 !important; }
.start-0 { left: 0 !important; }
.start-50 { left: 50% !important; }
.end-0 { right: 0 !important; }

.translate-middle {
  transform: translate(-50%, -50%) !important;
}

.translate-middle-x {
  transform: translateX(-50%) !important;
}

/* ===== DISPLAY & FLEX ===== */
.d-flex {
  display: flex !important;
}

.flex-column {
  flex-direction: column !important;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

.align-items-center {
  align-items: center !important;
}

.align-items-start {
  align-items: flex-start !important;
}

.align-items-end {
  align-items: flex-end !important;
}

.align-items-stretch {
  align-items: stretch !important;
}

.align-self-start {
  align-self: flex-start !important;
}

.justify-content-center {
  justify-content: center !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

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

.g-0 { gap: 0 !important; }
.g-2 { gap: 0.5rem !important; }
.g-3 { gap: 1rem !important; }
.g-4 { gap: 1.5rem !important; }
.g-5 { gap: 3rem !important; }

/* ===== OVERFLOW ===== */
.overflow-hidden {
  overflow: hidden !important;
}

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

/* ===== BORDERS ===== */
.border {
  border: 1px solid var(--secondary-color) !important;
}

.border-0 {
  border: 0 !important;
}

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

.border-white {
  border-color: var(--white) !important;
}

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

/* ===== ALERT ===== */
.alert {
  border-radius: 12px !important;
  border: none !important;
  padding: 1.25rem !important;
  background-color: var(--light-frost) !important;
  color: var(--primary-color) !important;
  border-left: 4px solid var(--primary-color) !important;
}

/* ===== BADGE ===== */
.badge {
  padding: 0.5rem 1rem !important;
  border-radius: 20px !important;
  font-weight: 600 !important;
  background-color: var(--primary-color) !important;
  color: var(--white) !important;
}

/* ===== LIST STYLES ===== */
.list-unstyled {
  padding-left: 0 !important;
  list-style: none !important;
}

.list-unstyled li {
  padding: 0.5rem 0 !important;
  transition: var(--transition);
}

.list-unstyled li:hover {
  padding-left: 0.5rem !important;
  color: var(--primary-color) !important;
}

/* ===== LINKS ===== */
a {
  color: var(--primary-color) !important;
  text-decoration: none !important;
  transition: var(--transition);
}

a:hover {
  color: var(--dark-frost) !important;
  text-decoration: underline !important;
}

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

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

/* ===== FORM CHECK ===== */
.form-check-input {
  border: 2px solid var(--secondary-color) !important;
  background-color: var(--light-frost) !important;
  transition: var(--transition);
}

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

.form-check-input:focus {
  box-shadow: 0 0 0 0.25rem rgba(30, 58, 95, 0.15) !important;
  border-color: var(--primary-color) !important;
}

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

/* ===== RATIO ===== */
.ratio {
  position: relative;
  width: 100%;
}

.ratio::before {
  display: block;
  padding-top: var(--bs-aspect-ratio);
  content: "";
}

.ratio > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ratio-21x9 {
  --bs-aspect-ratio: calc(9 / 21 * 100%);
}

/* ===== RESPONSIVE GRID ===== */
.row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 1.5rem;
}

.col-12 { flex: 0 0 auto; width: 100%; }
.col-6 { flex: 0 0 auto; width: 50%; }

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@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);
  }
}

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

.slide-in-left {
  animation: slideInLeft 1s ease-out;
}

.slide-in-right {
  animation: slideInRight 1s ease-out;
}

/* ===== HOVER EFFECTS ===== */
.hover-lift {
  transition: var(--transition);
}

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

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

::-webkit-scrollbar-track {
  background: var(--light-frost);
}

::-webkit-scrollbar-thumb {
  background: var(--secondary-color);
  border-radius: 6px;
  transition: var(--transition);
}

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

/* ===== MEDIA QUERIES ===== */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background: rgba(30, 58, 95, 0.98);
    padding: 1.5rem;
    border-radius: 12px;
    margin-top: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  }

  .navbar-nav .nav-link {
    padding: 1rem !important;
    border-bottom: 1px solid rgba(184, 212, 240, 0.2);
  }

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

  .hero-section .display-2 {
    font-size: 2.5rem !important;
  }

  .hero-section .lead {
    font-size: 1.1rem !important;
  }

  .booking-widget {
    margin-top: 2rem !important;
  }

  .btn {
    width: 100%;
    margin-top: 1rem !important;
  }

  .card-img-top {
    height: 200px;
  }

  .display-3 {
    font-size: 2rem !important;
  }

  .display-4 {
    font-size: 1.75rem !important;
  }

  .px-5 {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }
}

@media (max-width: 767.98px) {
  .hero-section {
    min-height: 100vh;
    padding-top: 80px;
  }

  .hero-section .display-2 {
    font-size: 2rem !important;
  }

  .display-5 {
    font-size: 1.5rem !important;
  }

  .booking-widget .col-md-3,
  .booking-widget .col-md-2 {
    width: 100%;
  }

  .btn-lg {
    padding: 0.875rem 2rem !important;
  }
}

@media (max-width: 575.98px) {
  .container-fluid {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  .hero-section .display-2 {
    font-size: 1.75rem !important;
  }

  .hero-section .lead {
    font-size: 1rem !important;
  }

  .py-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

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

@media (min-width: 992px) {
  .col-lg-2 { flex: 0 0 auto; width: 16.66666667%; }
  .col-lg-3 { flex: 0 0 auto; width: 25%; }
  .col-lg-4 { flex: 0 0 auto; width: 33.33333333%; }
  .col-lg-5 { flex: 0 0 auto; width: 41.66666667%; }
  .col-lg-6 { flex: 0 0 auto; width: 50%; }
  .col-lg-7 { flex: 0 0 auto; width: 58.33333333%; }
  .col-lg-8 { flex: 0 0 auto; width: 66.66666667%; }
  .col-lg-9 { flex: 0 0 auto; width: 75%; }
  .col-lg-10 { flex: 0 0 auto; width: 83.33333333%; }

  .offset-lg-1 { margin-left: 8.33333333%; }
  .offset-lg-2 { margin-left: 16.66666667%; }

  .flex-lg-row-reverse {
    flex-direction: row-reverse !important;
  }

  .order-lg-1 {
    order: 1 !important;
  }

  .order-lg-2 {
    order: 2 !important;
  }

  .text-lg-end {
    text-align: right !important;
  }

  .mb-lg-0 {
    margin-bottom: 0 !important;
  }

  .mt-lg-0 {
    margin-top: 0 !important;
  }

  .ps-lg-5 {
    padding-left: 3rem !important;
  }

  .pe-lg-5 {
    padding-right: 3rem !important;
  }
}

@media (min-width: 768px) {
  .col-md-2 { flex: 0 0 auto; width: 16.66666667%; }
  .col-md-3 { flex: 0 0 auto; width: 25%; }
  .col-md-4 { flex: 0 0 auto; width: 33.33333333%; }
  .col-md-6 { flex: 0 0 auto; width: 50%; }
  .col-md-8 { flex: 0 0 auto; width: 66.66666667%; }
}

@media (min-width: 576px) {
  .col-sm-6 { flex: 0 0 auto; width: 50%; }
}

/* ===== UTILITY CLASSES ===== */
.w-100 { width: 100% !important; }
.h-100 { height: 100% !important; }
.mx-auto { margin-left: auto !important; margin-right: auto !important; }
.text-center { text-align: center !important; }

/* ===== FOOTER ENHANCEMENTS ===== */
footer {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-frost) 100%) !important;
  color: var(--white) !important;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary-color), var(--accent-frost), var(--secondary-color));
}

footer a {
  color: var(--secondary-color) !important;
}

footer a:hover {
  color: var(--white) !important;
}

footer .list-unstyled li {
  color: var(--secondary-color) !important;
}

footer h5,
footer h6 {
  color: var(--white) !important;
}

/* ===== SOCIAL ICONS ===== */
.bi-facebook,
.bi-instagram,
.bi-twitter {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(184, 212, 240, 0.15);
  border-radius: 50%;
  transition: var(--transition);
  cursor: pointer;
}

.bi-facebook:hover,
.bi-instagram:hover,
.bi-twitter:hover {
  background-color: var(--white);
  color: var(--primary-color) !important;
  transform: translateY(-3px) scale(1.1);
}

/* ===== LOADING ANIMATION ===== */
@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* ===== FOCUS STATES ===== */
*:focus {
  outline: 2px solid var(--secondary-color) !important;
  outline-offset: 2px;
}

.btn:focus,
.form-control:focus,
.form-select:focus {
  outline: none !important;
}

/* ===== SELECTION STYLING ===== */
::selection {
  background-color: var(--secondary-color);
  color: var(--primary-color);
}

::-moz-selection {
  background-color: var(--secondary-color);
  color: var(--primary-color);
}

/* ===== PRINT STYLES ===== */
@media print {
  .navbar,
  .btn,
  .booking-widget {
    display: none !important;
  }

  body {
    background: white !important;
    color: black !important;
  }
}

/* ===== ACCESSIBILITY ===== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ===== ADDITIONAL ENHANCEMENTS ===== */
.container-fluid {
  position: relative;
  z-index: 1;
}

.small {
  font-size: 0.875rem !important;
}

.text-uppercase {
  text-transform: uppercase !important;
}

/* ===== SECTION BACKGROUNDS ===== */
section:nth-child(even) {
  background-color: var(--white);
}

section:nth-child(odd) {
  background-color: var(--light-frost);
}

/* ===== CUSTOM SCROLLING ===== */
html {
  scroll-behavior: smooth;
}

/* ===== END OF STYLESHEET ===== */