/* Architectural Studio - Midnight Raven & Antique Bronze Theme */

:root {
  --primary-color: #1A1F3A;
  --secondary-color: #8B7355;
  --accent-light: #C4A87C;
  --accent-dark: #0D1120;
  --text-light: #F5F5F5;
  --text-muted: #B8B8B8;
  --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.15);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.25);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.35);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: var(--primary-color) !important;
  color: var(--text-light) !important;
  line-height: 1.7;
  overflow-x: hidden;
}

/* Navbar Styles */
.navbar {
  background-color: rgba(26, 31, 58, 0.95) !important;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-md);
  transition: var(--transition-smooth);
  padding: 1rem 0;
  z-index: 1030;
}

.navbar.fixed-top {
  border-bottom: 2px solid var(--secondary-color);
}

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

.navbar-brand:hover {
  color: var(--secondary-color) !important;
  transform: translateY(-2px);
}

.navbar-brand .bi {
  color: var(--secondary-color) !important;
  margin-right: 0.5rem;
  font-size: 1.3rem;
}

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

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(139, 115, 85, 0.3) !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='%238B7355' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

.navbar-nav {
  align-items: center;
}

.nav-item {
  position: relative;
}

.nav-link {
  color: var(--text-light) !important;
  font-weight: 500;
  padding: 0.5rem 1.25rem !important;
  transition: var(--transition-smooth);
  position: relative;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

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

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

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

/* Hero Section */
.position-relative {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-dark) 100%);
  overflow: hidden;
}

.position-absolute.w-100.h-100 {
  background: radial-gradient(circle at 20% 50%, rgba(139, 115, 85, 0.15) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(139, 115, 85, 0.1) 0%, transparent 50%);
  z-index: 1;
}

.particle {
  position: absolute;
  background: var(--secondary-color);
  border-radius: 50%;
  opacity: 0.3;
  animation: float 20s infinite ease-in-out;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(30px, -30px) rotate(120deg); }
  66% { transform: translate(-20px, 20px) rotate(240deg); }
}

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

.display-1 {
  font-size: clamp(2.5rem, 8vw, 5rem) !important;
  font-weight: 800 !important;
  color: var(--text-light) !important;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  margin-bottom: 1.5rem !important;
  letter-spacing: -1px;
}

.display-3 {
  font-size: clamp(2rem, 5vw, 3.5rem) !important;
  color: var(--text-light) !important;
  font-weight: 700 !important;
}

.display-4 {
  font-size: clamp(1.75rem, 4vw, 2.5rem) !important;
  color: var(--text-light) !important;
  font-weight: 700 !important;
}

.display-5 {
  font-size: clamp(1.5rem, 3vw, 2rem) !important;
  color: var(--text-light) !important;
  font-weight: 600 !important;
}

.display-6 {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem) !important;
  color: var(--text-light) !important;
  font-weight: 600 !important;
}

.lead {
  font-size: clamp(1rem, 2vw, 1.35rem) !important;
  color: var(--text-muted) !important;
  line-height: 1.8 !important;
  max-width: 800px;
  margin: 0 auto 2rem !important;
}

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

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

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

/* Buttons */
.btn {
  border-radius: 50px !important;
  font-weight: 600 !important;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition-smooth) !important;
  border: 2px solid transparent !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-lg {
  background-color: var(--secondary-color) !important;
  color: var(--text-light) !important;
  padding: 1rem 2.5rem !important;
  font-size: 1.1rem !important;
  box-shadow: var(--shadow-md);
  border-color: var(--secondary-color) !important;
}

.btn-lg:hover,
.btn-lg:focus {
  background-color: var(--accent-light) !important;
  color: var(--primary-color) !important;
  border-color: var(--accent-light) !important;
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

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

.btn-outline-dark:hover,
.btn-outline-dark:focus {
  background-color: var(--secondary-color) !important;
  color: var(--text-light) !important;
  border-color: var(--secondary-color) !important;
  transform: translateY(-2px);
}

/* Scroll Indicator */
.bottom-0 {
  animation: bounce 2s infinite;
}

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

.bi-chevron-down {
  font-size: 2rem;
  color: var(--secondary-color) !important;
}

/* Sections */
.py-5 {
  background-color: var(--primary-color) !important;
  padding: 4rem 0 !important;
}

.my-5 {
  margin: 4rem 0 !important;
}

/* Image Styles */
.img-fluid {
  max-width: 100%;
  height: auto;
  transition: var(--transition-smooth);
}

.rounded {
  border-radius: 1rem !important;
  border: 3px solid var(--secondary-color);
}

.rounded-circle {
  border: 4px solid var(--secondary-color) !important;
  padding: 0.25rem;
  background: var(--primary-color);
}

.shadow-lg {
  box-shadow: var(--shadow-lg) !important;
}

.shadow-sm {
  box-shadow: var(--shadow-sm) !important;
}

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

/* Icons */
.bi {
  display: inline-block;
  vertical-align: middle;
}

.bi-award-fill,
.bi-stars,
.bi-building,
.bi-cup-hot-fill,
.bi-flower2,
.bi-heart-fill,
.bi-compass-fill,
.bi-bell-fill,
.bi-star-fill,
.bi-check-circle-fill,
.bi-shield-check,
.bi-people-fill,
.bi-water,
.bi-badge-3d,
.bi-fire,
.bi-wifi,
.bi-moon-stars {
  color: var(--secondary-color) !important;
  font-size: 2.5rem;
  transition: var(--transition-smooth);
}

.bi-telephone-fill,
.bi-envelope-fill,
.bi-geo-alt-fill,
.bi-clock,
.bi-chat-dots,
.bi-calendar-check {
  color: var(--secondary-color) !important;
  font-size: 1.5rem;
}

/* Cards & Panels */
.p-3,
.p-4,
.p-5 {
  background: rgba(139, 115, 85, 0.1);
  border-radius: 1rem;
  border: 1px solid rgba(139, 115, 85, 0.3);
  transition: var(--transition-smooth);
  backdrop-filter: blur(10px);
}

.p-3:hover,
.p-4:hover,
.p-5:hover {
  background: rgba(139, 115, 85, 0.15);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--secondary-color);
}

/* Grid Styles */
.row {
  margin: 0;
}

.g-4 {
  gap: 1.5rem;
}

.g-5 {
  gap: 3rem;
}

/* Text Utilities */
.fw-bold {
  font-weight: 700 !important;
}

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

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

.text-decoration-none {
  text-decoration: none !important;
  color: var(--text-light) !important;
}

.text-decoration-none:hover {
  color: var(--secondary-color) !important;
}

/* Social Icons */
.bi-facebook,
.bi-instagram,
.bi-twitter,
.bi-linkedin {
  font-size: 1.5rem;
  color: var(--text-light) !important;
  transition: var(--transition-smooth);
  padding: 0.5rem;
  border-radius: 50%;
  background: rgba(139, 115, 85, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
}

.bi-facebook:hover {
  background: #1877F2;
  color: white !important;
  transform: translateY(-3px) rotate(5deg);
}

.bi-instagram:hover {
  background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF);
  color: white !important;
  transform: translateY(-3px) rotate(-5deg);
}

.bi-twitter:hover {
  background: #1DA1F2;
  color: white !important;
  transform: translateY(-3px) rotate(5deg);
}

.bi-linkedin:hover {
  background: #0A66C2;
  color: white !important;
  transform: translateY(-3px) rotate(-5deg);
}

/* Lists */
.list-unstyled {
  list-style: none;
  padding: 0;
}

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

/* Badge */
.badge {
  background-color: var(--secondary-color) !important;
  color: var(--text-light) !important;
  padding: 0.5rem 1rem !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
  font-size: 0.9rem !important;
  letter-spacing: 0.5px;
}

/* Contact Styles */
.contact-hero {
  background: linear-gradient(135deg, var(--accent-dark) 0%, var(--primary-color) 100%);
  padding: 6rem 0 4rem;
  margin-top: 70px;
}

.contact-main-section {
  background-color: var(--primary-color) !important;
  padding: 4rem 0;
}

.raven-animation-container {
  position: relative;
  height: 200px;
  overflow: hidden;
  margin-bottom: 2rem;
}

.raven-silhouette {
  position: absolute;
  width: 60px;
  height: 60px;
  background: var(--secondary-color);
  clip-path: polygon(50% 0%, 80% 30%, 100% 20%, 90% 50%, 100% 80%, 70% 70%, 50% 100%, 30% 70%, 0% 80%, 10% 50%, 0% 20%, 20% 30%);
  animation: ravenFly 15s linear infinite;
  opacity: 0.6;
}

@keyframes ravenFly {
  0% {
    left: -10%;
    top: 20%;
    transform: rotate(-15deg);
  }
  50% {
    left: 50%;
    top: 40%;
    transform: rotate(5deg);
  }
  100% {
    left: 110%;
    top: 10%;
    transform: rotate(-10deg);
  }
}

.contact-info-panel {
  background: rgba(139, 115, 85, 0.15);
  border-radius: 1rem;
  padding: 2rem;
  border: 2px solid var(--secondary-color);
  backdrop-filter: blur(10px);
}

.contact-method {
  background: rgba(26, 31, 58, 0.5);
  padding: 1.5rem;
  border-radius: 0.75rem;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(139, 115, 85, 0.3);
  transition: var(--transition-smooth);
}

.contact-method:hover {
  background: rgba(139, 115, 85, 0.2);
  transform: translateX(10px);
  border-color: var(--secondary-color);
}

.contact-method .bi-telephone,
.contact-method .bi-envelope,
.contact-method .bi-geo-alt {
  font-size: 2rem;
  margin-bottom: 1rem;
}

/* Team Styles */
.team-portraits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  padding: 2rem 0;
}

.team-member {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition-smooth);
  background: rgba(139, 115, 85, 0.1);
  border: 2px solid transparent;
}

.team-member:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: var(--shadow-lg);
  border-color: var(--secondary-color);
}

.team-member img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.team-member:hover img {
  transform: scale(1.1);
}

.member-tooltip {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(26, 31, 58, 0.95), transparent);
  padding: 2rem 1rem 1rem;
  transform: translateY(60%);
  transition: var(--transition-smooth);
}

.team-member:hover .member-tooltip {
  transform: translateY(0);
}

/* Form Styles */
.form-map-container {
  background: rgba(139, 115, 85, 0.05);
  border-radius: 1rem;
  overflow: hidden;
}

.contact-form-wrapper {
  background: rgba(26, 31, 58, 0.8);
  padding: 3rem;
  border-radius: 1rem;
  backdrop-filter: blur(10px);
}

.form-control,
.form-select {
  background-color: rgba(139, 115, 85, 0.1) !important;
  border: 2px solid rgba(139, 115, 85, 0.3) !important;
  color: var(--text-light) !important;
  padding: 0.75rem 1rem !important;
  border-radius: 0.5rem !important;
  transition: var(--transition-smooth) !important;
  font-size: 1rem !important;
}

.form-control::placeholder {
  color: rgba(245, 245, 245, 0.5) !important;
}

.form-control:focus,
.form-select:focus {
  background-color: rgba(139, 115, 85, 0.15) !important;
  border-color: var(--secondary-color) !important;
  box-shadow: 0 0 0 0.2rem rgba(139, 115, 85, 0.25) !important;
  color: var(--text-light) !important;
}

.form-select option {
  background-color: var(--primary-color) !important;
  color: var(--text-light) !important;
}

/* Map Styles */
.map-wrapper {
  position: relative;
  padding: 2rem;
  background: rgba(139, 115, 85, 0.1);
}

.map-container {
  width: 100%;
  height: 450px;
  border-radius: 1rem;
  overflow: hidden;
  border: 3px solid var(--secondary-color);
  box-shadow: var(--shadow-lg);
  background: rgba(26, 31, 58, 0.5);
  position: relative;
}

.mythical-marker {
  position: absolute;
  width: 40px;
  height: 40px;
  background: var(--secondary-color);
  border-radius: 50%;
  border: 3px solid var(--text-light);
  box-shadow: var(--shadow-md);
  cursor: pointer;
  transition: var(--transition-smooth);
  animation: pulse 2s infinite;
}

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

.mythical-marker:hover {
  transform: scale(1.3) !important;
  z-index: 10;
}

.marker-icon,
.marker-icon-small {
  color: var(--text-light) !important;
  font-size: 1.2rem;
}

.marker-tooltip,
.marker-tooltip-small {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  background: var(--primary-color);
  color: var(--text-light) !important;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
  border: 2px solid var(--secondary-color);
  font-size: 0.9rem;
  font-weight: 600;
}

.mythical-marker:hover .marker-tooltip,
.mythical-marker:hover .marker-tooltip-small {
  opacity: 1;
  transform: translateX(-50%) translateY(-15px);
}

/* Quick Info Section */
.quick-info-section {
  background: linear-gradient(135deg, rgba(139, 115, 85, 0.1) 0%, rgba(26, 31, 58, 0.8) 100%);
  padding: 3rem;
  border-radius: 1rem;
  border: 2px solid var(--secondary-color);
  backdrop-filter: blur(10px);
}

/* Accordion Styles */
.accordion {
  background: transparent !important;
}

.accordion-item {
  background: rgba(139, 115, 85, 0.1) !important;
  border: 2px solid rgba(139, 115, 85, 0.3) !important;
  margin-bottom: 1rem !important;
  border-radius: 0.75rem !important;
  overflow: hidden;
}

.accordion-header {
  border: none !important;
}

.accordion-button {
  background: rgba(26, 31, 58, 0.8) !important;
  color: var(--text-light) !important;
  font-weight: 600 !important;
  font-size: 1.1rem !important;
  padding: 1.25rem 1.5rem !important;
  border: none !important;
  transition: var(--transition-smooth) !important;
}

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

.accordion-button:focus {
  box-shadow: 0 0 0 0.2rem rgba(139, 115, 85, 0.25) !important;
  border: none !important;
}

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

.accordion-button:not(.collapsed)::after {
  filter: brightness(0) invert(1);
  transform: rotate(180deg);
}

.accordion-button.collapsed {
  background: rgba(139, 115, 85, 0.15) !important;
}

.accordion-button.collapsed:hover {
  background: rgba(139, 115, 85, 0.25) !important;
}

.accordion-collapse {
  background: rgba(26, 31, 58, 0.5) !important;
  border: none !important;
}

.accordion-body {
  color: var(--text-light) !important;
  padding: 1.5rem !important;
  background: transparent !important;
  line-height: 1.8;
  font-size: 1rem;
}

/* Suite Grid */
.suite-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.suite-card-wrapper {
  position: relative;
}

.suite-card {
  background: rgba(139, 115, 85, 0.1);
  border-radius: 1rem;
  overflow: hidden;
  border: 2px solid rgba(139, 115, 85, 0.3);
  transition: var(--transition-smooth);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.suite-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--secondary-color);
}

.suite-img {
  width: 100%;
  height: 250px;
  overflow: hidden;
  position: relative;
}

.suite-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

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

.suite-details {
  padding: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

/* Experiences Section */
.experiences-hero {
  background: linear-gradient(135deg, var(--accent-dark) 0%, var(--primary-color) 50%, rgba(139, 115, 85, 0.3) 100%);
  padding: 6rem 0 4rem;
  margin-top: 70px;
  position: relative;
  overflow: hidden;
}

.experiences-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle, rgba(139, 115, 85, 0.1) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.3;
}

.manuscript-chapter {
  position: relative;
  padding: 4rem 0;
}

.chapter-content {
  background: rgba(139, 115, 85, 0.08);
  padding: 3rem;
  border-radius: 1rem;
  border-left: 5px solid var(--secondary-color);
  backdrop-filter: blur(5px);
}

.wax-seal-btn-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
}

.wax-seal-btn {
  position: relative;
  background: var(--secondary-color) !important;
  color: var(--text-light) !important;
  border: 3px solid var(--accent-light) !important;
  padding: 1rem 2.5rem !important;
  border-radius: 50px !important;
  font-weight: 700 !important;
  text-transform: uppercase;
  letter-spacing: 2px;
  box-shadow: 0 0 20px rgba(139, 115, 85, 0.5);
  transition: var(--transition-smooth);
}

.wax-seal-btn::before {
  content: '★';
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  font-size: 1.2rem;
  color: var(--accent-light);
}

.wax-seal-btn:hover {
  background: var(--accent-light) !important;
  color: var(--primary-color) !important;
  transform: scale(1.05) rotate(2deg);
  box-shadow: 0 0 30px rgba(139, 115, 85, 0.8);
}

/* Sticky Navigation */
.sticky-top {
  position: sticky !important;
  top: 90px;
  z-index: 1020;
  background: rgba(26, 31, 58, 0.95);
  padding: 1rem;
  border-radius: 0.75rem;
  border: 2px solid var(--secondary-color);
  backdrop-filter: blur(10px);
}

/* Spacing Utilities */
.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; }
.mb-0 { margin-bottom: 0 !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; }
.ms-2 { margin-left: 0.5rem !important; }
.ms-3 { margin-left: 1rem !important; }
.ms-4 { margin-left: 1.5rem !important; }
.me-2 { margin-right: 0.5rem !important; }
.me-3 { margin-right: 1rem !important; }
.mx-3 { margin-left: 1rem !important; margin-right: 1rem !important; }
.mx-auto { margin-left: auto !important; margin-right: auto !important; }
.pt-4 { padding-top: 1.5rem !important; }
.pb-5 { padding-bottom: 3rem !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; }
.pe-md-5 { padding-right: 3rem !important; }
.ps-md-5 { padding-left: 3rem !important; }
.pe-lg-5 { padding-right: 3rem !important; }
.ps-lg-5 { padding-left: 3rem !important; }

/* Responsive Utilities */
.fs-4 { font-size: 1.5rem !important; }
.fs-5 { font-size: 1.25rem !important; }
.small { font-size: 0.875rem !important; }

/* Media Queries */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background: rgba(26, 31, 58, 0.98);
    padding: 1.5rem;
    border-radius: 0.75rem;
    margin-top: 1rem;
    border: 2px solid var(--secondary-color);
  }
  
  .navbar-nav {
    gap: 0.5rem !important;
  }
  
  .nav-link {
    padding: 0.75rem 1rem !important;
    border-radius: 0.5rem;
  }
  
  .nav-link:hover {
    background: rgba(139, 115, 85, 0.2);
  }
  
  .display-1 {
    font-size: 2.5rem !important;
  }
  
  .display-3 {
    font-size: 2rem !important;
  }
  
  .suite-grid {
    grid-template-columns: 1fr;
  }
  
  .team-portraits {
    grid-template-columns: 1fr;
  }
  
  .contact-form-wrapper {
    padding: 2rem 1.5rem;
  }
  
  .map-container {
    height: 300px;
  }
  
  .chapter-content {
    padding: 2rem 1.5rem;
  }
  
  .sticky-top {
    position: relative !important;
    top: 0;
  }
}

@media (max-width: 767.98px) {
  .px-4 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  
  .py-5 {
    padding: 3rem 0 !important;
  }
  
  .btn-lg {
    padding: 0.875rem 2rem !important;
    font-size: 1rem !important;
  }
  
  .lead {
    font-size: 1.1rem !important;
  }
  
  .text-lg-end {
    text-align: center !important;
  }
  
  .flex-row-reverse {
    flex-direction: column !important;
  }
  
  .order-md-1,
  .order-md-2 {
    order: 0 !important;
  }
  
  .pe-md-5,
  .ps-md-5 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  
  .mb-md-0 {
    margin-bottom: 1rem !important;
  }
}

@media (max-width: 575.98px) {
  .container-fluid {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  
  .display-1 {
    font-size: 2rem !important;
  }
  
  .col-6 {
    width: 100% !important;
  }
  
  .bi-award-fill,
  .bi-stars,
  .bi-building,
  .bi-cup-hot-fill,
  .bi-flower2,
  .bi-heart-fill,
  .bi-compass-fill,
  .bi-bell-fill,
  .bi-star-fill {
    font-size: 2rem;
  }
  
  .quick-info-section {
    padding: 2rem 1.5rem;
  }
  
  .accordion-button {
    font-size: 1rem !important;
    padding: 1rem !important;
  }
}

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

@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 0.8s ease-out;
}

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

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

/* Scrollbar Styling */
::-webkit-scrollbar {
  width: 12px;
}

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

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

::-webkit-scrollbar-thumb:hover {
  background: var(--accent-light);
}

/* Selection */
::selection {
  background: var(--secondary-color);
  color: var(--text-light);
}

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

/* Focus Styles */
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
  outline: 2px solid var(--secondary-color) !important;
  outline-offset: 2px;
}

/* Print Styles */
@media print {
  .navbar,
  .btn,
  .social-icons {
    display: none !important;
  }
  
  body {
    background: white !important;
    color: black !important;
  }
}