/* ==========================================================================
   Ludmila Rab - Modern Redesign CSS Design System
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
  /* HSL Color Palette - Seaside Premium Aesthetic */
  --primary-color: #0f2942;      /* Deep Adriatic Slate Blue */
  --primary-light: #1d4263;      /* Secondary Ocean Blue */
  --accent-color: #cc0000;       /* Logo Red */
  --accent-hover: #990000;       /* Darker Red on Hover */
  --bg-color: #fbfaf7;           /* Warm Linen White/Sand */
  --card-bg: #ffffff;            /* Pure White for Content Cards */
  --text-main: #2b3a4a;          /* Soft Dark Blue-Slate for Text */
  --text-muted: #607386;         /* Calm Secondary Text */
  --border-color: #e5e0d3;       /* Warm border sand */
  --overlay-bg: rgba(15, 41, 66, 0.4); /* Overlay for Hero/Images */
  
  /* Shadows */
  --shadow-sm: 0 4px 6px -1px rgba(15, 41, 66, 0.05), 0 2px 4px -1px rgba(15, 41, 66, 0.03);
  --shadow-md: 0 10px 15px -3px rgba(15, 41, 66, 0.08), 0 4px 6px -2px rgba(15, 41, 66, 0.04);
  --shadow-lg: 0 20px 25px -5px rgba(15, 41, 66, 0.12), 0 10px 10px -5px rgba(15, 41, 66, 0.04);
  
  /* Fonts & Transitions */
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --transition-smooth: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.2s ease;
  
  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
}

/* Modern CSS Reset & General Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-color);
  color: var(--text-main);
  line-height: 1.7;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

/* Header & Glassmorphic Sticky Navigation */
.header-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(251, 250, 247, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition-smooth);
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.8rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.logo-img {
  height: 64px;
  width: auto;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  background-color: #ffffff; /* Clean white background around the logo image */
  padding: 6px; /* Increased padding to show the white background clearly */
  transition: var(--transition-smooth);
}

.logo-text {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary-color);
  letter-spacing: 0.5px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-main);
  position: relative;
  padding: 0.5rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-color);
  transition: var(--transition-smooth);
}

.nav-link:hover, .nav-link.active {
  color: var(--primary-light);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

/* Language Toggle Switcher */
.lang-selector {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-left: 1rem;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.3rem 0.6rem;
  border: 1px solid var(--border-color);
  background: var(--card-bg);
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.lang-btn svg {
  width: 16px;
  height: 12px;
  border-radius: 2px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

.lang-btn:hover, .lang-btn.active {
  border-color: var(--accent-color);
  color: var(--primary-color);
  background: rgba(204, 0, 0, 0.08);
}

/* Mobile Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 44px;
  height: 44px;
  padding: 13px 10px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1010;
}

.hamburger span {
  width: 100%;
  height: 2px;
  background-color: var(--primary-color);
  border-radius: 2px;
  transition: var(--transition-smooth);
}

/* Responsive Mobile Navigation Drawer */
@media (max-width: 900px) {
  .hamburger {
    display: flex;
    margin-left: auto;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--bg-color);
    box-shadow: var(--shadow-lg);
    flex-direction: column;
    align-items: flex-start;
    padding: 6rem 2.5rem 2rem 2.5rem;
    gap: 1.5rem;
    z-index: 1005;
    transition: var(--transition-smooth);
  }

  .nav-menu.open {
    right: 0;
  }

  .lang-selector {
    margin-left: 0;
    margin-top: 1rem;
    width: 100%;
    justify-content: flex-start;
    border-top: 1px solid var(--border-color);
    padding-top: 1.5rem;
  }

  /* Hamburger Animation */
  .hamburger.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.open span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}

/* Hero Section Styles (Smooth Crossfade & Ken Burns) */
.hero-section {
  position: relative;
  height: 75vh;
  margin-top: 85px;
  overflow: hidden;
  background: var(--primary-color);
}

.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  z-index: 1;
}

.hero-slide.active {
  opacity: 1;
  z-index: 2;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 12s linear;
}

.hero-slide.active img {
  transform: scale(1.15); /* Ken Burns Zoom Effect */
}

.hero-slide::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent; /* Zatamljeni efekt uklonjen po zahtjevu korisnika / Dimmed overlay removed by request */
  z-index: 3;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 800px;
  text-align: center;
  color: #ffffff;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.hero-subtitle {
  font-size: 1rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent-color);
  font-weight: 600;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
  animation: fadeInDown 1s ease;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.2;
  text-shadow: 0 2px 10px rgba(0,0,0,0.4);
  animation: fadeInUp 1s ease 0.2s both;
}

.hero-desc {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  font-weight: 300;
  text-shadow: 0 2px 5px rgba(0,0,0,0.3);
  animation: fadeInUp 1s ease 0.4s both;
}

.hero-cta {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  background-color: var(--accent-color);
  color: var(--primary-color);
  font-weight: 600;
  border-radius: 30px;
  box-shadow: var(--shadow-md);
  margin-top: 1rem;
  animation: fadeInUp 1s ease 0.6s both;
}

.hero-cta:hover {
  background-color: var(--accent-hover);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  color: var(--primary-color);
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 0.75rem;
  gap: 0.5rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.7;
  animation: bounce 2s infinite;
}

.scroll-indicator svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translate(-50%, 0);
  }
  40% {
    transform: translate(-50%, -10px);
  }
  60% {
    transform: translate(-50%, -5px);
  }
}

/* Main Container and Sidebar Layout */
.main-wrapper {
  max-width: 1200px;
  margin: 4rem auto;
  padding: 0 1.5rem;
}

.page-grid {
  display: grid;
  grid-template-columns: 8fr 4fr;
  gap: 3.5rem;
}

@media (max-width: 900px) {
  .page-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* Section Typography & Decorator */
.section-title {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: var(--primary-color);
  margin-bottom: 0.8rem;
  position: relative;
}

.title-decorator {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 2rem;
}

.title-decorator::after {
  content: '';
  flex-grow: 1;
  height: 1px;
  background-color: var(--border-color);
}

.title-decorator-dot {
  width: 8px;
  height: 8px;
  background-color: var(--accent-color);
  border-radius: 50%;
}

.content-block p {
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
  color: var(--text-main);
  text-align: justify;
}

/* Quick Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.feature-card {
  background-color: var(--card-bg);
  padding: 2rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-color);
}

.feature-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(204, 0, 0, 0.12);
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon svg {
  width: 24px;
  height: 24px;
}

.feature-card h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--primary-color);
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
  text-align: center;
  margin-bottom: 0;
}

/* Sidebar Designs */
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.sidebar-widget {
  background-color: var(--card-bg);
  padding: 2.2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
}

.widget-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  border-bottom: 2px solid var(--border-color);
  padding-bottom: 0.6rem;
}

/* Host Info Card */
.host-card {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.host-name {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--primary-color);
}

.host-details {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  font-size: 0.95rem;
}

.host-details li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  color: var(--text-main);
}

.host-details svg {
  width: 18px;
  height: 18px;
  color: var(--accent-color);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.host-details a:hover {
  color: var(--accent-hover);
  text-decoration: underline;
}

/* Spoken Languages Widget */
.languages-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  list-style: none;
}

.language-badge {
  font-size: 0.8rem;
  padding: 0.4rem 0.8rem;
  background-color: rgba(15, 41, 66, 0.05);
  border-radius: 20px;
  font-weight: 500;
  color: var(--primary-light);
}

/* Gallery & Accommodation Design */
.apartment-section {
  margin-bottom: 4.5rem;
}

.apartment-meta {
  display: flex;
  gap: 1.5rem;
  margin-top: -1.5rem;
  margin-bottom: 1.8rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  list-style: none;
}

.apartment-meta li {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.apartment-meta svg {
  width: 16px;
  height: 16px;
  color: var(--accent-color);
}

/* Clean CSS Grid Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.2rem;
}

.gallery-item {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  cursor: pointer;
  background: var(--primary-color);
}

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

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 41, 66, 0.65);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: var(--transition-smooth);
  backdrop-filter: blur(2px);
}

.gallery-zoom-icon {
  width: 44px;
  height: 44px;
  background: var(--accent-color);
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0.8);
  transition: var(--transition-smooth);
}

.gallery-zoom-icon svg {
  width: 20px;
  height: 20px;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item:hover .gallery-zoom-icon {
  transform: scale(1);
}

/* Custom Premium Vanilla Lightbox */
.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(15, 41, 66, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2000;
  display: none;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox-modal.open {
  display: flex;
  opacity: 1;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: lightboxZoomIn 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes lightboxZoomIn {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.lightbox-img {
  max-width: 100%;
  max-height: 70vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.lightbox-caption {
  color: #ffffff;
  margin-top: 1rem;
  font-size: 1.05rem;
  font-family: var(--font-serif);
  text-shadow: 0 1px 3px rgba(0,0,0,0.5);
  text-align: center;
}

.lightbox-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 3rem;
  cursor: pointer;
  line-height: 1;
  transition: var(--transition-fast);
  opacity: 0.7;
  z-index: 2020;
}

.lightbox-close:hover {
  opacity: 1;
  transform: scale(1.1);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(15, 41, 66, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-smooth);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  user-select: none;
  z-index: 2010;
}

.lightbox-nav:hover {
  background: var(--accent-color);
  color: #ffffff;
  border-color: var(--accent-color);
  transform: translateY(-50%) scale(1.08);
}

.lightbox-prev {
  left: 2rem;
}

.lightbox-next {
  right: 2rem;
}

.lightbox-title {
  color: #ffffff;
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 3.5vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-align: center;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
  position: relative;
  width: 100%;
}

@media (max-width: 900px) {
  .lightbox-nav {
    width: 44px;
    height: 44px;
  }
  .lightbox-prev {
    left: 1rem;
  }
  .lightbox-next {
    right: 1rem;
  }
  .lightbox-close {
    top: 1rem;
    right: 1rem;
    font-size: 2.5rem;
  }
  .lightbox-title {
    margin-bottom: 1rem;
    padding: 0 2rem;
  }
}

.lightbox-nav svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

/* Location Page Custom Styles */
.map-container {
  box-shadow: var(--shadow-md);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-color);
  margin-bottom: 2rem;
  aspect-ratio: 16 / 9;
}

.map-container iframe {
  width: 100%;
  height: 100%;
}

.map-caption {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 0.5rem;
}

.map-caption a {
  color: var(--accent-hover);
  font-weight: 500;
}

.map-caption a:hover {
  text-decoration: underline;
}

/* Premium Contact Form Styling */
.contact-form-container {
  background-color: var(--card-bg);
  padding: 3rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
}

@media (max-width: 600px) {
  .contact-form-container {
    padding: 1.8rem;
  }
}

.form-group-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

@media (max-width: 600px) {
  .form-group-grid {
    grid-template-columns: 1fr;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.form-group.no-margin {
  margin-bottom: 0;
}

.form-label {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary-light);
}

.form-input, .form-textarea {
  font-family: var(--font-sans);
  font-size: 1rem;
  padding: 0.9rem 1.2rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  background-color: var(--bg-color);
  color: var(--text-main);
  transition: var(--transition-smooth);
}

.form-input:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--accent-color);
  background-color: #ffffff;
  box-shadow: 0 0 0 4px rgba(204, 0, 0, 0.15);
}

select.form-input {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230f2942' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 1.2rem center;
  background-size: 16px;
  padding-right: 3rem;
  cursor: pointer;
}

.form-textarea {
  min-height: 150px;
  resize: vertical;
}

.submit-btn {
  background-color: var(--primary-color);
  color: #ffffff;
  border: none;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  padding: 1rem 2.5rem;
  border-radius: 30px;
  cursor: pointer;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-sm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
}

.submit-btn:hover {
  background-color: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.submit-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.form-status {
  margin-top: 1.5rem;
  padding: 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  display: none;
}

.form-status.success {
  display: block;
  background-color: rgba(52, 211, 153, 0.15);
  border: 1px solid rgb(52, 211, 153);
  color: rgb(4, 120, 87);
}

.form-status.error {
  display: block;
  background-color: rgba(248, 113, 113, 0.15);
  border: 1px solid rgb(248, 113, 113);
  color: rgb(185, 28, 28);
}

/* Footer Section */
.site-footer {
  background-color: var(--primary-color);
  color: #ffffff;
  padding: 4rem 1.5rem 2rem 1.5rem;
  margin-top: auto;
  border-top: 4px solid var(--accent-color);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.footer-links {
  list-style: none;
  display: flex;
  gap: 2rem;
  font-size: 0.95rem;
  opacity: 0.9;
}

.footer-link:hover {
  color: var(--accent-color);
}

.footer-divider {
  width: 100%;
  max-width: 400px;
  height: 1px;
  background: rgba(255,255,255,0.1);
}

.footer-copy {
  font-size: 0.85rem;
  opacity: 0.6;
  text-align: center;
  letter-spacing: 0.5px;
}
