/* ==========================================================================
   LAKE RELAX BUDEASA - CUSTOM STYLE STYLESHEET
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. VARIABLES & GENERAL CONFIGURATION (LANDIO COLOR THEME)
   -------------------------------------------------------------------------- */
:root {
  --color-primary-dark: #0a2a62;    /* Landio Deep Navy Blue */
  --color-primary-dark-rgb: 10, 42, 98;
  --color-accent: #1b3bee;          /* Landio Vibrant Modern Blue Accent */
  --color-accent-rgb: 27, 59, 238;
  --color-accent-light: #ecf1ff;    /* Soft Light Blue */
  --color-contrast-highlight: #f4ca74; /* Highly legible Glowing Gold/Sand for dark overlays */
  --color-bg-light: #ffffff;
  --color-bg-section: #f4f7ff;      /* Light Blue tint for alternating sections */
  --color-text-body: #444444;       /* Dark charcoal gray */
  --color-text-muted: #777777;
  --font-primary: 'Plus Jakarta Sans', sans-serif;
  --font-heading: 'Playfair Display', serif;
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px; /* Offset for sticky header */
}

body {
  font-family: var(--font-primary);
  color: var(--color-text-body);
  background-color: var(--color-bg-light);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .font-heading {
  font-family: var(--font-heading);
  color: var(--color-primary-dark);
  font-weight: 700;
}

/* Custom text and background utilities */
.text-accent {
  color: var(--color-accent) !important;
}

.text-accent-light {
  color: var(--color-accent-light) !important;
}

.bg-accent {
  background-color: var(--color-accent) !important;
  color: #fff !important;
}

.bg-light-section {
  background-color: var(--color-bg-section);
}

.max-width-600 {
  max-width: 600px;
}

.divider {
  width: 60px;
  height: 3px;
  background-color: var(--color-accent);
  margin: 15px auto 0;
}

.sub-title {
  display: block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 8px;
}

/* --------------------------------------------------------------------------
   2. BUTTONS
   -------------------------------------------------------------------------- */
.btn-primary-custom, .btn-secondary-custom, .btn-accent, .btn-outline-accent {
  padding: 12px 30px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
  transition: var(--transition-smooth);
  text-decoration: none;
  display: inline-block;
}

.btn-primary-custom {
  background-color: var(--color-accent);
  color: #fff !important;
  border: 2px solid var(--color-accent);
}

.btn-primary-custom:hover {
  background-color: #0d28cf;
  border-color: #0d28cf;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(var(--color-accent-rgb), 0.2);
}

.btn-secondary-custom {
  background-color: transparent;
  color: #fff !important;
  border: 2px solid #fff;
}

.btn-secondary-custom:hover {
  background-color: #fff;
  color: var(--color-primary-dark) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.1);
}

.btn-accent {
  background-color: var(--color-accent);
  color: #fff;
  border: none;
}

.btn-accent:hover {
  background-color: #0d28cf;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(var(--color-accent-rgb), 0.3);
}

.btn-outline-accent {
  background-color: transparent;
  color: var(--color-accent);
  border: 2px solid var(--color-accent);
}

.btn-outline-accent:hover {
  background-color: var(--color-accent);
  color: #fff !important;
  transform: translateY(-2px);
}

/* --------------------------------------------------------------------------
   3. HEADER / NAVIGATION
   -------------------------------------------------------------------------- */
.header {
  height: 85px;
  background-color: transparent;
  transition: var(--transition-smooth);
  z-index: 997;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header.scrolled {
  height: 70px;
  background-color: var(--color-primary-dark);
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
  border-bottom: none;
}

.header .logo h1 {
  font-family: var(--font-heading);
  font-size: 26px;
  margin: 0;
  padding: 0;
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-decoration: none;
}

.header .logo h1 span {
  font-family: var(--font-primary);
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-top: -2px;
}

/* Nav Menu Desktop styling */
.navmenu ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navmenu li {
  position: relative;
}

.navmenu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 18px;
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  white-space: nowrap;
  transition: 0.3s;
  text-decoration: none;
}

.navmenu a:hover, .navmenu li:hover > a, .navmenu a.active {
  color: var(--color-contrast-highlight);
}

.btn-book-now {
  background-color: var(--color-accent);
  color: #fff;
  padding: 8px 22px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.btn-book-now:hover {
  background-color: #0d28cf;
  color: #fff;
  transform: translateY(-1px);
}

/* Mobile Nav Toggle styling */
.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  line-height: 0;
  transition: 0.5s;
}

/* Mobile Navigation Styles */
@media (max-width: 1199px) {
  .mobile-nav-active {
    overflow: hidden;
  }
  .mobile-nav-active .navmenu {
    left: 0;
  }
  .mobile-nav-active .mobile-nav-toggle {
    color: var(--color-contrast-highlight);
  }
  .navmenu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 280px;
    height: 100vh;
    background-color: var(--color-primary-dark);
    box-shadow: 5px 0 30px rgba(0, 0, 0, 0.3);
    transition: 0.4s ease-in-out;
    padding: 60px 20px 20px;
    z-index: 9999;
    overflow-y: auto;
  }
  .navmenu ul {
    display: block;
  }
  .navmenu a {
    padding: 12px 10px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }
}

/* --------------------------------------------------------------------------
   4. HERO SECTION
   -------------------------------------------------------------------------- */
.hero {
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 120px 0 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  overflow: hidden;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Water drift animation is active on static backgrounds, disabled for carousel slides to ensure perfect transition stability */
.hero-bg:not(.carousel) img {
  transform-origin: center center;
  animation: water-drift 22s ease-in-out infinite;
}

.hero-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* Reduced opacity of overlay drastically to make carousel images much more luminous and visible */
  background: linear-gradient(rgba(var(--color-primary-dark-rgb), 0.15), rgba(var(--color-primary-dark-rgb), 0.4));
  z-index: 2;
}

.hero .container {
  position: relative;
  z-index: 3;
}

.hero-subtitle {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 4px;
  color: var(--color-contrast-highlight); /* High contrast warm gold sand */
  text-transform: uppercase;
  display: block;
  margin-bottom: 15px;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
}

.hero-title {
  font-size: 52px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.2;
  /* Text shadow added to maintain perfect legibility on top of brighter luminous images */
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.7);
}

.hero-text {
  font-size: 18px;
  color: #ffffff;
  max-width: 750px;
  margin: 0 auto;
  /* Text shadow added to maintain perfect legibility on top of brighter luminous images */
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.75);
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 34px;
  }
  .hero-text {
    font-size: 15px;
  }
}

/* Animated Water Waves at Hero Bottom */
.waves-container {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 12vh;
  min-height: 80px;
  max-height: 150px;
  z-index: 4;
}

.waves {
  position: relative;
  width: 100%;
  height: 100%;
  margin-bottom: -10px; /* Fix gap */
}

.parallax-waves > use {
  animation: move-forever 25s cubic-bezier(.55,.5,.45,.5) infinite;
}

.parallax-waves > use:nth-child(1) {
  animation-delay: -2s;
  animation-duration: 7s;
}

.parallax-waves > use:nth-child(2) {
  animation-delay: -3s;
  animation-duration: 10s;
}

.parallax-waves > use:nth-child(3) {
  animation-delay: -4s;
  animation-duration: 13s;
}

.parallax-waves > use:nth-child(4) {
  animation-delay: -5s;
  animation-duration: 20s;
}

/* Water Drift Animation for Background Image */
@keyframes water-drift {
  0% {
    transform: scale(1.05) translate(0, 0);
  }
  50% {
    transform: scale(1.12) translate(-1%, 1.5%);
  }
  100% {
    transform: scale(1.05) translate(0, 0);
  }
}

/* Wave Movement Animation */
@keyframes move-forever {
  0% {
    transform: translate3d(-90px, 0, 0);
  }
  100% {
    transform: translate3d(85px, 0, 0);
  }
}

@media (max-width: 768px) {
  .waves-container, .waves {
    height: 40px;
    min-height: 40px;
  }
}

/* --------------------------------------------------------------------------
   5. ABOUT SECTION
   -------------------------------------------------------------------------- */
.about-content h3 {
  font-size: 32px;
  line-height: 1.3;
}

.about-feature-box {
  background-color: var(--color-bg-light);
  padding: 18px;
  border-radius: 8px;
  border-left: 4px solid var(--color-accent);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
  transition: var(--transition-smooth);
}

.about-feature-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(var(--color-primary-dark-rgb), 0.05);
}

.about-image-wrapper {
  padding: 15px;
}

.about-image-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100% - 30px);
  height: calc(100% - 30px);
  border: 10px solid var(--color-accent-light);
  z-index: 0;
  transform: translate(30px, 30px);
  border-radius: 6px;
}

.about-image-wrapper img {
  position: relative;
  z-index: 1;
}

.experience-badge {
  position: absolute;
  bottom: 40px;
  left: -20px;
  background-color: var(--color-primary-dark);
  color: #fff;
  padding: 20px 30px;
  border-radius: 4px;
  z-index: 2;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border-left: 5px solid var(--color-accent);
}

.experience-badge .number {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 800;
  color: var(--color-accent);
  line-height: 1;
}

.experience-badge .text {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

@media (max-width: 991px) {
  .about-image-wrapper {
    margin-top: 40px;
  }
}

/* --------------------------------------------------------------------------
   6. ACCOMMODATION CARDS
   -------------------------------------------------------------------------- */
.accommodation-card {
  transition: var(--transition-smooth);
  border-radius: 8px;
}

.accommodation-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(var(--color-primary-dark-rgb), 0.08) !important;
}

.img-zoom-container {
  overflow: hidden;
  height: 280px;
}

.img-zoom-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.accommodation-card:hover .img-zoom-container img {
  transform: scale(1.08);
}

.accommodation-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 6px 14px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
  z-index: 2;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.accommodation-features li {
  margin-bottom: 10px;
  font-size: 14px;
  color: var(--color-text-body);
}

.accommodation-features i {
  font-size: 16px;
  margin-right: 8px;
}

/* --------------------------------------------------------------------------
   7. FACILITIES & ACTIVITIES
   -------------------------------------------------------------------------- */
.facility-box {
  transition: var(--transition-smooth);
  border: 1px solid rgba(var(--color-primary-dark-rgb), 0.03) !important;
}

.facility-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(var(--color-primary-dark-rgb), 0.06) !important;
  border-color: rgba(var(--color-accent-rgb), 0.15) !important;
}

.facility-icon {
  width: 70px;
  height: 70px;
  background-color: var(--color-bg-section);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto;
  transition: var(--transition-smooth);
}

.facility-box:hover .facility-icon {
  background-color: var(--color-primary-dark);
}

.facility-box:hover .facility-icon i {
  color: var(--color-accent) !important;
}

.facility-box h5 {
  font-size: 18px;
  transition: var(--transition-smooth);
}

.facility-box:hover h5 {
  color: var(--color-accent);
}

/* --------------------------------------------------------------------------
   8. EVENTS SECTION
   -------------------------------------------------------------------------- */
.events-parallax-bg {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  width: 100%;
}

/* Support for touch screens where parallax doesn't work well */
@media (max-width: 1024px) {
  .events-parallax-bg {
    background-attachment: scroll;
  }
}

.events-list .bi {
  background-color: rgba(255, 255, 255, 0.08);
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--transition-smooth);
}

.events-list .d-flex:hover .bi {
  background-color: var(--color-accent);
  color: #fff !important;
}

.events-cta-card {
  border-left: 5px solid var(--color-accent);
}

/* High contrast golden-sand highlight for events subtitles and event titles list */
.evenimente .sub-title {
  color: var(--color-contrast-highlight) !important;
}

.events-list h5 {
  color: var(--color-contrast-highlight) !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* --------------------------------------------------------------------------
   9. CONTACT SECTION
   -------------------------------------------------------------------------- */
.contact-info-wrapper {
  background-color: var(--color-bg-section) !important;
  color: var(--color-text-body) !important;
  border-left: 5px solid var(--color-accent);
  box-shadow: 0 10px 30px rgba(var(--color-primary-dark-rgb), 0.05);
}

.contact-info-wrapper h3 {
  color: var(--color-primary-dark) !important;
}

.contact-info-wrapper p {
  color: var(--color-text-body) !important;
}

.contact-info-wrapper .info-item span {
  color: var(--color-text-muted) !important;
}

.contact-info-wrapper a, .contact-info-wrapper .contact-val {
  color: var(--color-primary-dark) !important;
  font-weight: 700;
  transition: var(--transition-smooth);
}

.contact-info-wrapper a:hover {
  color: var(--color-accent) !important;
}

.contact-info-wrapper .info-icon {
  background-color: var(--color-bg-light) !important;
  border: 1px solid rgba(var(--color-accent-rgb), 0.15);
  transition: var(--transition-smooth);
  width: 50px;
  height: 50px;
  flex-shrink: 0;
}

.contact-info-wrapper .info-item:hover .info-icon {
  background-color: var(--color-accent) !important;
  border-color: var(--color-accent) !important;
}

.contact-info-wrapper .info-item:hover .info-icon i {
  color: #fff !important;
}

.contact-info-wrapper .contact-socials {
  border-top: 1px solid rgba(var(--color-primary-dark-rgb), 0.1) !important;
}

.social-icon {
  width: 40px;
  height: 40px;
  color: var(--color-accent) !important;
  border: 1px solid rgba(var(--color-accent-rgb), 0.15) !important;
  transition: var(--transition-smooth);
}

.social-icon i {
  color: var(--color-accent) !important;
  transition: var(--transition-smooth);
}

.social-icon:hover {
  background-color: var(--color-accent) !important;
  border-color: var(--color-accent) !important;
  transform: translateY(-2px);
}

.social-icon:hover i {
  color: #fff !important;
}

/* Floating labels design overrides */
.form-floating > .form-control:focus, .form-floating > .form-select:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 0.25rem rgba(var(--color-accent-rgb), 0.15);
}

.form-floating > label {
  color: var(--color-text-muted);
}

/* --------------------------------------------------------------------------
   10. FOOTER
   -------------------------------------------------------------------------- */
.footer {
  background-color: var(--color-primary-dark) !important; /* Landio Deep Blue */
  color: rgba(255, 255, 255, 0.8) !important;
  font-size: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer h5, .footer .footer-about .logo span {
  color: #ffffff !important;
}

.footer .logo h1 {
  color: #ffffff !important;
}

.footer .logo h1 span {
  color: var(--color-accent-light) !important;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.85) !important;
  transition: var(--transition-smooth);
  text-decoration: none;
}

.footer-links a:hover {
  color: #ffffff !important;
  padding-left: 6px;
}

.footer hr {
  border-color: rgba(255, 255, 255, 0.15) !important;
}

.footer-about p {
  color: rgba(255, 255, 255, 0.7) !important;
}

.footer-contact p {
  color: rgba(255, 255, 255, 0.8) !important;
}

.footer-contact i {
  color: var(--color-accent-light) !important;
}

.opacity-70 { opacity: 0.7; }
.opacity-80 { opacity: 0.8; }
.opacity-90 { opacity: 0.9; }

/* --------------------------------------------------------------------------
   11. SCROLL TO TOP & ANIMATIONS
   -------------------------------------------------------------------------- */
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  width: 40px;
  height: 40px;
  transition: var(--transition-smooth);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

.scroll-top:hover {
  background-color: var(--color-primary-dark) !important;
  transform: translateY(-3px);
}

.scroll-top i {
  font-size: 24px;
}

/* Custom Letter spacing utilities */
.letter-spacing-1 {
  letter-spacing: 1px;
}

/* --------------------------------------------------------------------------
   12. GALLERY SECTION (STAGE 1 Customization)
   -------------------------------------------------------------------------- */
.galerie {
  position: relative;
}

.btn-filter {
  background-color: transparent;
  color: var(--color-primary-dark);
  border: 2px solid rgba(var(--color-primary-dark-rgb), 0.15);
  font-family: var(--font-primary);
  font-weight: 700;
  padding: 8px 24px;
  border-radius: 30px;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: var(--transition-smooth);
}

.btn-filter:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  transform: translateY(-2px);
}

.btn-filter.active {
  background-color: var(--color-accent);
  border-color: var(--color-accent);
  color: #fff;
  box-shadow: 0 4px 15px rgba(var(--color-accent-rgb), 0.25);
}

.gallery-container {
  transition: var(--transition-smooth);
}

.gallery-item {
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.gallery-item.fade-out {
  opacity: 0;
  transform: scale(0.9);
}

.gallery-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  aspect-ratio: 4 / 3; /* Uniform aspect ratio for a clean grid */
  background-color: var(--color-primary-dark);
}

.gallery-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.gallery-info {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(var(--color-primary-dark-rgb), 0.85);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
  padding: 20px;
  text-align: center;
  z-index: 2;
}

.gallery-info h4 {
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 5px;
  transform: translateY(20px);
  transition: var(--transition-smooth);
}

.gallery-info p {
  color: var(--color-contrast-highlight);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  transform: translateY(20px);
  transition: var(--transition-smooth);
}

.gallery-links {
  transform: translateY(20px);
  transition: var(--transition-smooth);
}

.gallery-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background-color: #ffffff;
  color: var(--color-accent);
  border-radius: 50%;
  font-size: 20px;
  transition: var(--transition-smooth);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-decoration: none;
}

.gallery-links a:hover {
  background-color: var(--color-accent);
  color: #ffffff;
  transform: scale(1.1);
}

/* Hover Effects on Gallery Item */
.gallery-wrap:hover img {
  transform: scale(1.12);
}

.gallery-wrap:hover .gallery-info {
  opacity: 1;
  visibility: visible;
}

.gallery-wrap:hover .gallery-info h4,
.gallery-wrap:hover .gallery-info p,
.gallery-wrap:hover .gallery-links {
  transform: translateY(0);
}

/* --------------------------------------------------------------------------
   13. MAP INTEGRATION (STAGE 4 Customization)
   -------------------------------------------------------------------------- */
.map-wrapper {
  transition: var(--transition-smooth);
}

.map-wrapper:hover {
  box-shadow: 0 15px 35px rgba(var(--color-primary-dark-rgb), 0.08) !important;
  transform: translateY(-3px);
  border-color: rgba(var(--color-accent-rgb), 0.2) !important;
}

.map-info-bar {
  font-family: var(--font-primary);
}

.map-info-bar a {
  text-decoration: none;
  transition: var(--transition-smooth);
}

/* --------------------------------------------------------------------------
   14. WEATHER & LAKE STATUS WIDGET (STAGE 5 Customization)
   -------------------------------------------------------------------------- */
.status-lac {
  position: relative;
}

.status-card {
  transition: var(--transition-smooth);
  border: 1px solid rgba(var(--color-primary-dark-rgb), 0.08) !important;
}

.status-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(var(--color-primary-dark-rgb), 0.05) !important;
  border-color: rgba(var(--color-accent-rgb), 0.15) !important;
}

.status-icon {
  animation: pulse-soft 3s ease-in-out infinite;
  display: inline-block;
}

.status-value {
  font-family: var(--font-primary);
  letter-spacing: -1px;
}

@keyframes pulse-soft {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

#btn-refresh-status {
  transition: var(--transition-smooth);
}

#btn-refresh-status i {
  transition: transform 0.6s ease;
}

#btn-refresh-status:hover i {
  transform: rotate(180deg);
}

#btn-refresh-status.updating i {
  animation: spin-refresh 1s linear infinite;
}

@keyframes spin-refresh {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* --------------------------------------------------------------------------
   15. ACCESSIBILITY / WCAG SUPPORT (Sienna Screen Reader integration)
   -------------------------------------------------------------------------- */
.skip-link {
  position: absolute;
  top: -100px;
  left: 15px;
  background-color: var(--color-accent);
  color: #ffffff !important;
  padding: 10px 20px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.5px;
  border-radius: 0 0 4px 4px;
  z-index: 10000;
  transition: top 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
}

.skip-link:focus {
  top: 0;
  outline: 3px solid var(--color-contrast-highlight);
}