/* ==========================================================================
   CSS Design System: Döbra Mountain Retreat – Premium Forest
   ========================================================================== */

/* Cormorant Garamond – lokal gehostet */
@font-face {
    font-family: 'Cormorant Garamond';
    src: url('assets/fonts/CormorantGaramond-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Cormorant Garamond';
    src: url('assets/fonts/CormorantGaramond-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Cormorant Garamond';
    src: url('assets/fonts/CormorantGaramond-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

/* Lato – lokal gehostet */
@font-face {
    font-family: 'Lato';
    src: url('assets/fonts/Lato-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Lato';
    src: url('assets/fonts/Lato-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Lato';
    src: url('assets/fonts/Lato-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

:root {
  /* Colors - Noble Mountain Forest Green */
  --color-primary: #212d24; /* Tiefes Waldgrün */
  --color-secondary: #eaa37a; /* Warmes Kupfer / Bronze */
  --color-sand: #fbfaf8; /* Warm White */
  --color-sand-dark: #eeeae5;
  --color-white: #ffffff;
  --color-text: #3a3a3a;
  --color-text-muted: #767676;
  --color-border: #e6e6e6;

  /* Typography */
  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'Lato', sans-serif;
  
  /* Spacing */
  --spacing-sm: 1rem;
  --spacing-md: 2.5rem;
  --spacing-lg: 5rem;
  --spacing-xl: 8rem;

  --transition-smooth: all 0.5s ease;
}

/* ==========================================================================
   Base
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background-color: var(--color-white);
  line-height: 1.7;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}

/* ==========================================================================
   Typography
   ========================================================================== */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 400;
  color: var(--color-primary);
  line-height: 1.2;
}

h1 { font-size: clamp(3rem, 6vw, 4.5rem); margin-bottom: 1rem; }
h2 { font-size: clamp(2.5rem, 4.5vw, 3.5rem); margin-bottom: 2rem; }
h3 { font-size: 2rem; margin-bottom: 1rem; }
h4 { font-size: 1.2rem; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; font-family: var(--font-body); margin-bottom: 1rem; }

p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  max-width: 75ch;
}

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

.text-center p,
.container-narrow p {
  margin-left: auto;
  margin-right: auto;
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: var(--transition-smooth);
}

.text-gold {
  color: var(--color-secondary);
}

.subtitle {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.85rem;
  color: var(--color-secondary);
  display: block;
  margin-bottom: 1rem;
}

/* ==========================================================================
   Components
   ========================================================================== */
.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-family: var(--font-body);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  border: 1px solid var(--color-primary);
  cursor: pointer;
  transition: var(--transition-smooth);
  background: transparent;
  color: var(--color-primary);
}

.btn:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

.btn-gold {
  background: var(--color-secondary);
  border-color: var(--color-secondary);
  color: var(--color-white);
}

.btn-gold:hover {
  background: #d4895f;
  border-color: #d4895f;
}

/* Sticky Booking Button */
.sticky-booking-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
}

.btn-sm {
  padding: 0.8rem 1.5rem;
}

.sticky-booking {
  position: fixed;
  bottom: 0;
  right: 0;
  width: 100%;
  background: rgba(33, 45, 36, 0.95); /* Döbra Waldgrün */
  backdrop-filter: blur(10px);
  color: var(--color-white);
  padding: 1rem;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2.5rem; /* Zwingender Abstand, damit Text und Button NIEMALS Ã¼berlappen */
  transform: translateY(150px); /* Pushes it totally off-screen beyond the 2rem bottom gap */
  opacity: 0;
  pointer-events: none;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s ease;
}

.sticky-booking.show {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

@media (min-width: 768px) {
  .sticky-booking {
    width: auto;
    bottom: 2rem;
    right: 2rem;
    padding: 1rem 2rem;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  }
}

/* ==========================================================================
   Layout & Utilities
   ========================================================================== */
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.container-narrow {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.section {
  padding: var(--spacing-xl) 0;
}

.bg-sand {
  background-color: var(--color-sand);
}

/* ==========================================================================
   Navigation
   ========================================================================== */
.navbar {
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 999;
  padding: var(--spacing-md) 0;
  transition: var(--transition-smooth);
}

.navbar.scrolled {
  position: fixed;
  background: var(--color-white);
  padding: 1rem 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand img {
  height: 65px;
  transition: var(--transition-smooth);
}

.navbar.scrolled .brand img {
  height: 55px;
}

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

.nav-links a {
  color: var(--color-white);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

.navbar:not(.scrolled) .nav-links a {
  text-shadow: 0 2px 10px rgba(0,0,0,0.7);
}

.navbar:not(.scrolled) .dropdown-menu a {
  text-shadow: none;
}

.navbar.scrolled .nav-links a {
  color: var(--color-primary);
  text-shadow: none;
}

.nav-links a:hover {
  color: var(--color-secondary);
}

/* Dropdown Menu */
.dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--color-white);
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  list-style: none;
  padding: 1rem;
  min-width: 200px;
  border-radius: 4px;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu li {
  margin-bottom: 0.8rem;
}

.dropdown-menu li:last-child {
  margin-bottom: 0;
}

.dropdown-menu a {
  color: var(--color-primary) !important;
  font-size: 0.85rem;
}

.dropdown-menu a:hover {
  color: var(--color-secondary) !important;
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  height: 100vh;
  min-height: 700px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
  transition: transform 0.5s ease-out; /* For parallax script smoothness */
}

.hero-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  /* Cinematic Gradient Overlay: dunkler an den RÃ¤ndern und Textbereichen */
  background: linear-gradient(to bottom, rgba(15, 25, 18, 0.6) 0%, rgba(0,0,0,0.2) 40%, rgba(15, 25, 18, 0.7) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  color: var(--color-white);
  padding: 0 2rem;
  max-width: 1000px;
  /* Starker, weicher Schatten fÃ¼r optimale Lesbarkeit auf unruhigem Hintergrund */
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.9), 0 1px 3px rgba(0,0,0,0.5);
}

.hero-content h1 {
  color: var(--color-white);
  margin-bottom: 2rem;
}

.hero-content .subtitle {
  color: #fff;
}

/* ==========================================================================
   Feature Grid & Split Layout
   ========================================================================== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
  max-width: 1400px;  /* Added for distance to edges */
  margin: 0 auto;     /* Centering */
  gap: var(--spacing-lg); /* Spacer between image and text */
  padding: 0 var(--spacing-lg); /* Padding on the sides */
  align-items: center; /* Center vertically */
  margin-bottom: var(--spacing-xl);
}

.split-image {
  background-size: cover;
  background-position: center;
  height: 600px; /* Fixed height for image */
  border-radius: 4px; /* Slight elegance */
}

.split-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--spacing-md);
  background: var(--color-white);
}

.split.reverse .split-content {
  order: -1;
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: var(--spacing-lg);
}

.image-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 1s ease;
}

.image-card {
  overflow: hidden;
  position: relative;
}

.image-card:hover img {
  transform: scale(1.05);
}

/* ==========================================================================
   Animations
   ========================================================================== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  background-color: #344b3b; /* Mittleres Waldgrün */
  color: var(--color-white);
  padding: var(--spacing-xl) 0 var(--spacing-md);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-lg);
}

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

.footer ul {
  list-style: none;
}

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

.footer a {
  color: var(--color-sand-dark);
  font-size: 0.9rem;
}

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

.footer-bottom {
  text-align: center;
  margin-top: 1rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.8rem;
  color: #888;
}

.footer-logo {
  height: 60px;
  margin-bottom: 1.5rem;
  display: block;
}

.footer-address {
  font-size: 0.9rem;
  color: #aaa;
  margin-bottom: 0;
}

.footer-tagline {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--color-white);
  margin-bottom: 1rem;
  letter-spacing: 1px;
}

.footer-copyright {
  opacity: 0.6;
}

.maps-link {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-secondary);
  text-decoration: none;
  font-weight: 500;
}

@media (max-width: 900px) {
  .split { 
    grid-template-columns: 1fr; 
    padding: 0 var(--spacing-md);
    gap: var(--spacing-md);
  }
  .split-image { height: 400px; }
  .split.reverse .split-content { order: 0; }
  .nav-links { display: none; }
}

/* ==========================================================================
   Wohnungs-Detailseiten (NEU)
   ========================================================================== */
.fact-bar {
  background-color: #344b3b;
  color: var(--color-white);
  padding: 1rem 0;
  text-align: center;
  font-family: var(--font-body);
  font-size: 0.95rem;
  letter-spacing: 1px;
}

.fact-bar span {
  display: inline-block;
  margin: 0 0.8rem;
}

.fact-separator {
  color: var(--color-secondary);
  opacity: 0.7;
}

/* Masonry Gallery */
.masonry-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  grid-auto-rows: 280px;
  grid-auto-flow: dense;
  gap: 15px;
  max-width: 1400px;
  margin: 0 auto;
}

.masonry-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}

.masonry-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.masonry-item:hover img {
  transform: scale(1.05);
}

.masonry-item.large {
  grid-column: span 2;
  grid-row: span 2;
}

@media (max-width: 768px) {
  .masonry-item.large {
    grid-column: span 1;
    grid-row: span 1;
  }
}

/* Minimalist Line Grid (Ausstattung) */
.amenities-grid {
  display: flex;
  flex-direction: column;
  max-width: 900px;
  margin: 0 auto;
}

.amenity-item {
  display: grid;
  grid-template-columns: 250px 1fr;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--color-border);
  gap: 2rem;
  text-align: left;
}

.amenity-item h5 {
  font-family: var(--font-heading);
  color: var(--color-primary);
  font-size: 1.4rem;
  font-weight: 500;
  margin: 0;
}

.amenity-item p {
  margin: 0;
  font-size: 1rem;
  color: var(--color-text-muted);
}

@media (max-width: 600px) {
  .amenity-item {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
}

/* Minimalist Pricing Table */
.pricing-table-container {
  max-width: 900px;
  margin: 0 auto;
  overflow-x: auto;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-family: var(--font-body);
}

.pricing-table th,
.pricing-table td {
  padding: 1rem 0;
  border-bottom: 1px solid var(--color-border);
}

.pricing-table th {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 1.25rem;
  color: var(--color-primary);
}

/* ==========================================================================
   Portfolio / Filter Grids
   ========================================================================== */

.subpage-header {
    position: relative;
    background-color: var(--color-primary); /* Fallback */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 55vh; /* Larger than 40vh, less than 100vh */
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-bottom: 1px solid rgba(203, 163, 109, 0.2);
    overflow: hidden;
}

.subpage-header::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    /* Cinematic Gradient Overlay for perfect text readability */
    background: linear-gradient(to bottom, rgba(15, 25, 18, 0.7) 0%, rgba(0,0,0,0.3) 40%, rgba(15, 25, 18, 0.8) 100%);
    z-index: 1;
}

.subpage-header .container {
    position: relative;
    z-index: 2;
    padding-top: 6rem; /* Ensure space for navbar */
}

.subpage-header h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem); /* slightly smaller */
    color: var(--color-white);
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.8);
}

.subpage-header p {
    color: var(--color-sand);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.subpage-header .subtitle {
    color: var(--color-secondary);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
    align-items: center;
}

.filter-btn {
    background: transparent;
    border: 1px solid rgba(52, 75, 59, 0.3);
    padding: 0.6rem 1.2rem;
    color: var(--color-primary);
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    border-radius: 4px;
}

.filter-btn:hover {
    background: rgba(52, 75, 59, 0.05);
}

.filter-btn.active {
    background: var(--color-secondary);
    color: var(--color-white);
    border-color: var(--color-secondary);
    font-weight: 500;
}

.filter-btn-gold {
    background: var(--color-secondary);
    border: 1px solid var(--color-secondary);
    padding: 0.6rem 1.5rem;
    color: var(--color-white);
    font-size: 0.9rem;
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition-smooth);
    border-radius: 4px;
}

.filter-btn-gold:hover {
    background: #d4895f;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .portfolio-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.portfolio-card {
    background: var(--color-white);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: var(--transition-smooth);
    border-bottom: 3px solid rgba(52, 75, 59, 0.3);
    display: flex;
    flex-direction: column;
}

.portfolio-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-bottom-color: var(--color-secondary);
}

.card-image {
    width: 100%;
    height: 220px;
    background-size: cover;
    background-position: center;
}

.card-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-content p:last-child {
    margin-top: auto !important;
    padding-top: 1rem;
}

.card-content h3 {
    margin-bottom: 0.3rem;
    font-size: 1.3rem;
}

.card-category {
    display: block;
    font-size: 0.8rem;
    color: #8899a6;
    margin-bottom: 1rem;
}

.card-content p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    margin: 0;
}

/* ==========================================================================
   Contact Page: Form & Arrival Styles
   ========================================================================== */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 1px solid rgba(33, 45, 36, 0.2);
    border-radius: 2px;
    background: var(--color-white);
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-primary);
    transition: border-color 0.2s ease;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-secondary);
}

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

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

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

.form-note {
    font-size: 0.8rem;
    color: #888;
    margin-top: 0.4rem;
}

.anreise-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

@media (max-width: 768px) {
    .anreise-grid { grid-template-columns: 1fr; gap: 2rem; }
}

.anreise-block h3 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.anreise-icon {
    width: 44px;
    height: 44px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: white;
    font-size: 1.2rem;
}

.anreise-block ol {
    padding-left: 1.2rem;
    color: var(--color-text);
    line-height: 1.9;
}

.anreise-block ol li {
    margin-bottom: 0.4rem;
}

.anreise-block p {
    color: var(--color-text);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.anreise-hint {
    margin-top: 1.2rem;
    padding: 1rem 1.2rem;
    background: var(--color-sand);
    border-left: 2px solid var(--color-secondary);
    font-size: 0.875rem;
    color: var(--color-text);
    line-height: 1.7;
}

.contact-info-box {
    background: var(--color-white);
    padding: 2.5rem;
    border-top: 2px solid var(--color-secondary);
    box-shadow: 0 4px 30px rgba(0,0,0,0.06);
}

.contact-info-box h3 {
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
}

.contact-info-box p {
    color: var(--color-text);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    line-height: 1.8;
}

.contact-info-box .coords {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(33,45,36,0.12);
    font-size: 0.8rem;
    color: #999;
    font-family: var(--font-body);
    letter-spacing: 0.5px;
    margin-bottom: 0;
}

.contact-info-box .booking-note {
    margin-top: 1.5rem;
    padding: 1rem 1.2rem;
    background: var(--color-sand);
    border-left: 2px solid var(--color-secondary);
    font-size: 0.85rem;
    color: var(--color-text);
    line-height: 1.7;
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    accent-color: var(--color-secondary);
    cursor: pointer;
}

.form-checkbox label {
    font-size: 0.85rem;
    color: var(--color-text);
    cursor: pointer;
    text-transform: none;
    letter-spacing: 0;
    font-weight: 400;
    margin-bottom: 0;
}

.form-checkbox label a {
    color: var(--color-secondary);
    text-decoration: underline;
}

.contact-form-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 4rem;
    align-items: start;
}

@media (max-width: 900px) {
    .contact-form-layout {
        grid-template-columns: 1fr;
    }
}

.btn-submit {
    padding: 1rem 3rem;
    border: none;
}

.form-feedback {
    padding: 1.25rem 1.5rem;
    border-radius: 4px;
    margin-bottom: 2.5rem;
    font-size: 1rem;
    line-height: 1.5;
    grid-column: 1 / -1;
}

.form-feedback--success {
    background-color: #e8f5e9;
    color: #2e7d32;
    border-left: 4px solid #43a047;
}

.form-feedback--error {
    background-color: #fdecea;
    color: #b71c1c;
    border-left: 4px solid #e53935;
}
