/* ========================================
   SEEHAUS RIEDERAU - Globale Styles
   ======================================== */

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

:root {
  --bg-light: #E8E4DE;
  --bg-cream: #F2EFEA;
  --gold: #9A7B4F;
  --gold-light: #B8956C;
  --gold-dark: #7D6340;
  --text-dark: #121212;
  --text-gray: #121212;
  --text-light: #121212;
  --white: #FFFFFF;
  --dark-overlay: rgba(0, 0, 0, 0.4);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', sans-serif;
  font-weight: 300;
  background-color: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
}

.font-display {
  font-family: 'Open Sans', sans-serif;
}

/* ========================================
   NAVIGATION
   ======================================== */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.5rem 0;
  transition: all 0.5s ease;
}

.nav::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 4%;
  right: 4%;
  height: 1px;
  background: currentColor;
  opacity: 0.3;
}

.nav.light {
  color: var(--white);
}

.nav.dark {
  color: var(--text-dark);
  background: rgba(232, 228, 222, 0.97);
  backdrop-filter: blur(10px);
}

.nav.dark .seahorse-path {
  fill: var(--gold);
}

.nav.dark .logo-text {
  color: var(--gold);
}

.nav.scrolled {
  background: rgba(232, 228, 222, 0.97);
  backdrop-filter: blur(10px);
  color: var(--text-dark);
  padding: 1rem 0;
}

.nav.scrolled .seahorse-path {
  fill: var(--gold);
}

.nav.scrolled .logo-text {
  color: var(--gold);
}

.nav-container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 4%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.seahorse-logo {
  width: 40px;
  height: 50px;
}

.seahorse-logo-large {
  width: 80px;
  height: 100px;
}

.logo-text {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  color: inherit;
  margin-top: 0.25rem;
  transition: color 0.3s;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 2.5rem;
}

@media (min-width: 1200px) {
  .nav-links {
    display: flex;
    margin-top: 60px;
  }
}

.nav-link {
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-link:hover {
  opacity: 0.7;
}

.nav-link.active {
  color: var(--gold);
}

/* Mobile Menu Button */
.menu-btn {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
}

@media (min-width: 1200px) {
  .menu-btn {
    display: none;
  }
}

.menu-btn span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: #ffffff;
  transition: all 0.3s;
}

.spandark span{
  background: #000;
}



.menu-btn.open span:first-child {
  transform: rotate(45deg) translate(4px, 5px);
  background: #000;
}

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

.menu-btn.open span:last-child {
  transform: rotate(-45deg) translate(4px, -5px);
  background: #000;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg-light);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.mobile-menu.open {
  display: flex;
}

.mobile-link {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.5rem;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.1em;
  background: none;
  border: none;
  cursor: pointer;
}

/* ========================================
   PAGE HEADER (Subpages)
   ======================================== */


   .logoleiste {
       width: 100vw!important;
       text-align: center;
       margin-top: 13vh;
       display: flex;
       justify-content: center;
       align-items: center;
       gap: 50px;
       margin-left:auto;
       margin-right:auto;
   }

.page-header {
  position: relative;
  height: 60vh;
  min-height: 800px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  color: var(--white);
}

.page-header-overlay {
  position: absolute;
  inset: 0;
  background: var(--dark-overlay);
}

.page-header-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 2rem;
}

.page-title {
  font-family: 'Open Sans', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform:uppercase;
}

.page-subtitle {
  font-size: 0.85rem;
  font-weight: 300;
  letter-spacing: 0.3em;
  margin-top: 1rem;
  opacity: 0.8;
}

/* ========================================
   HERO SECTION (Homepage)
   ======================================== */

.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to bottom, #6B8E9F, #8BA5B5);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(107, 142, 159, 0.3) 0%, rgba(139, 165, 181, 0.5) 100%);
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: var(--white);
}

.hero-content .seahorse-path {
  fill: var(--white);
}

.hero-title {
  font-family: 'Open Sans', sans-serif;
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 300;
  letter-spacing: 0.15em;
  margin-top: 1rem;
}

.hero-subtitle {
  font-size: 0.8rem;
  font-weight: 300;
  letter-spacing: 0.35em;
  margin-top: 0.75rem;
  opacity: 0.9;
}

/* ========================================
   SECTIONS
   ======================================== */

section {
  position: relative;
}

.section-light {
  background: var(--bg-light);
}

.section-cream {
  background: var(--bg-cream);
}

.section-padding {
  padding: 6rem 4%;
}

@media (min-width: 1024px) {
  .section-padding {
    padding: 8rem 8%;
  }
}

.section-container {
  max-width: 1400px;
  margin: 0 auto;
}

/* Split Section Layout */
.split-section {
  display: grid;
  min-height: 80vh;
}

@media (min-width: 1024px) {
  .split-section {
    grid-template-columns: 1fr 1fr;
  }
}

.split-image {
  position: relative;
  min-height: 50vh;
  background-size: cover;
  background-position: center;
}

@media (min-width: 1024px) {
  .split-image {
    min-height: 80vh;
  }
}

.split-image-placeholder {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #4A5568 0%, #2D3748 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.split-image-placeholder span {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.split-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 8%;
}

@media (min-width: 1024px) {
  .split-content {
    padding: 4rem 10%;
  }
}

/* ========================================
   PARALLAX SPLIT SECTION (Scroll-gesteuert)
   ======================================== */

.parallax-split {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

/* Fullwidth Hintergrundbild */
.parallax-split-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 1;
  /* Breiter als Container für Verschiebe-Effekt */
  left: -10%;
  right: -10%;
  width: 120%;
  will-change: transform;
}

/* Platzhalter für Hintergrundbild */
.parallax-split-bg-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.parallax-split-bg-placeholder span {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.parallax-split-bg-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Container für das Panel */
.parallax-split-panel {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  z-index: 10;
  display: flex;
  align-items: center;
  pointer-events: none;
}

/* Panel von links */
.parallax-split-panel.from-left {
  left: 0;
  justify-content: flex-start;
}

/* Panel von rechts */
.parallax-split-panel.from-right {
  right: 0;
  justify-content: flex-end;
}

/* Die farbige Fläche - volle Höhe */
.parallax-split-content {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 8%;
  background: var(--bg-light);
  pointer-events: auto;

  /* Start-Position: komplett außerhalb */
  transform: translateX(-100%);
  will-change: transform;
}

.parallax-split-panel.from-right .parallax-split-content {
  transform: translateX(100%);
}

/* Desktop: Panel nur halbe Breite */
@media (min-width: 1024px) {
  .parallax-split-content {
    width: 55%;
    padding: 5rem 6%;
  }
}

/* Cream-Variante */
.parallax-split-content.cream {
  background: var(--bg-cream);
}

/* Dunkle Variante */
.parallax-split-content.dark {
  background: #2C3E50;
  color: var(--white);
}

.parallax-split-content.dark .section-title {
  color: var(--gold-light);
}

.parallax-split-content.dark .section-text {
  color: rgba(255, 255, 255, 0.8);
}

/* Text-Elemente - Fade basierend auf Panel-Position */
.parallax-split-content .section-title,
.parallax-split-content .section-text,
.parallax-split-content .section-quote,
.parallax-split-content .btn {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

/* Wenn Panel sichtbar ist (gesteuert via JS) */
.parallax-split-content.is-visible .section-title {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.1s;
}

.parallax-split-content.is-visible .section-text {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}

.parallax-split-content.is-visible .section-quote {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}

.parallax-split-content.is-visible .btn {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.4s;
}

/* Schatten für Tiefe */
.parallax-split-panel.from-left .parallax-split-content {
  box-shadow: 20px 0 60px rgba(0, 0, 0, 0.2);
}

.parallax-split-panel.from-right .parallax-split-content {
  box-shadow: -20px 0 60px rgba(0, 0, 0, 0.2);
}

/* Section Typography */
.section-title {
  font-family: 'Open Sans', sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 300;
  color: var(--gold);
  letter-spacing: 0.05em;
  line-height: 1.3;
  margin-bottom: 2rem;
  text-transform: uppercase;
}

.section-text {
  font-size: 1.2rem;
  color: var(--text-gray);
  line-height: 1.9;
  margin-bottom: 1.5rem;
}

.section-text.with-border {
  padding-left: 1.5rem;
  border-left: 2px solid var(--gold);
}

.section-quote {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--gold);
  margin-top: 1rem;
}

/* ========================================
   FULLSCREEN SECTIONS
   ======================================== */

.fullscreen-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  color: var(--white);
}

.fullscreen-overlay {
  position: absolute;
  inset: 0;
  background: var(--dark-overlay);
}

.fullscreen-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 2rem;
  max-width: 900px;
}

.fullscreen-title {
  font-family: 'Open Sans', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300;
  letter-spacing: 0.08em;
  line-height: 1.3;
}

.fullscreen-text {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.1rem;
  font-style: italic;
  margin-top: 2rem;
  padding: 0 1.5rem;
  border-left: 2px solid var(--white);
  text-align: left;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
}

/* ========================================
   BUTTONS
   ======================================== */

.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-family: 'Open Sans', sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: all 0.4s ease;
  border: none;
  width:auto;
  max-width:350px;
}

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

.btn-gold:hover {
  background: var(--gold-dark);
}

.btn-dark {
  background: #4A4A4A;
  color: var(--white);
}

.btn-dark:hover {
  background: #333;
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
}

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

.btn-outline-white {
    background: transparent;
    border: 1px solid var(--white);
    color: var(--white);
}

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

/* ========================================
   GALLERY
   ======================================== */

.gallery-section {
  padding: 6rem 0;
}

.gallery-grid {
  display: grid;
  gap: 1.5rem;
  padding: 0 4%;
}

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

.gallery-item {
  aspect-ratio: 1;
  background: linear-gradient(135deg, #6B8E9F 0%, #4A5568 100%);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
}

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

.gallery-item span {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* ========================================
   HORIZONTAL SCROLL GALLERY
   ======================================== */

.horiz-gallery-section {
  position: relative;
  background: var(--bg-cream);
}

.horiz-gallery-section.light-bg {
  background: var(--bg-light);
}

.horiz-gallery-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.horiz-gallery-header {
  padding: 3rem 4% 1.5rem;
  text-align: center;
  flex-shrink: 0;
}

.horiz-gallery-header .section-title {
  margin-top: 120px;
}

.horiz-gallery-strip {
  display: flex;
  flex-wrap: nowrap;
  will-change: transform;
  flex: 1;
  align-items: center;
  padding: 0 2rem;
  gap: 1.5rem;
}

.horiz-gallery-item {
  flex: 0 0 calc(33.333vw - 2rem);
  max-width: calc(33.333vw - 2rem);
  height: auto;
}

@media (max-width: 768px) {
  .horiz-gallery-item {
    flex: 0 0 calc(80vw - 2rem);
    max-width: calc(80vw - 2rem);
  }

  .logoleiste {
      width: 80vw!important;
      text-align: center;
      margin-top: 15vh;
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 20px;
      margin-left:auto;
      margin-right:auto;
  }
  .logo{margin-left:20px;}

  .logo-not{display:none!important;}

  .logo-left, .logo-middle, .logo-right{width:100vw;text-align:center;}

  .footer-image {
  height:150px!important;
    min-height: 150px!important;

    position: relative;
}
}

.horiz-gallery-item img {
  width: 100%;
  height: 100%;
  max-height: 60vh;
  object-fit: cover;
  display: block;
}

.horiz-gallery-footer {
  padding: 1.5rem 4% 3rem;
  text-align: center;
  flex-shrink: 0;
}

/* ========================================
   MENU / SPEISEKARTE
   ======================================== */

.menu-category {
  margin-bottom: 3rem;
}

.menu-category-title {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--gold);
}

.menu-item {
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
}

.menu-item-info {
  flex: 1;
}

.menu-item-name {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-dark);
}

.menu-item-desc {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 0.25rem;
}

.menu-item-price {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gold);
  white-space: nowrap;
}

/* ========================================
   TEAM
   ======================================== */

.team-grid {
  display: grid;
  gap: 2rem;
}

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

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

.team-photo {

  margin-bottom: 1.5rem;
  background-size: cover;
  background-position: center;
}

.team-role {
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
}

.team-name {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.2rem;
  color: var(--gold);
  margin-top: 0.5rem;
  letter-spacing: 0.05em;
}

/* ========================================
   JOBS
   ======================================== */

.jobs-grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 768px) {
  .jobs-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.job-category h3 {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.2rem;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 1rem;
}

.job-category p {
  font-size: 0.9rem;
  color: var(--text-gray);
  line-height: 1.8;
}

/* ========================================
   CONTACT FORM
   ======================================== */

.contact-grid {
  display: grid;
  gap: 4rem;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1.5fr;
  }
}

.contact-info h3 {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.3rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

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

.contact-info a {
  color: var(--text-gray);
  text-decoration: none;
  transition: color 0.3s;
}

.contact-info a:hover {
  color: var(--gold);
}

.contact-form {
  max-width: 600px;
}

.form-row {
  display: grid;
  gap: 1.5rem;
}

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

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.form-input {
  width: 100%;
  padding: 0.75rem 0;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--text-dark);
  background: transparent;
  border: none;
  border-bottom: 1px dotted var(--text-light);
  outline: none;
  transition: border-color 0.3s;
}

.form-input:focus {
  border-bottom-color: var(--gold);
}

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

/* ========================================
   HOURS / ÖFFNUNGSZEITEN
   ======================================== */

.hours-list {
  margin: 2rem 0;
}

.hours-item {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.1);
  font-size: 0.95rem;
}

.hours-day {
  color: var(--text-dark);
  font-weight: 400;
}

.hours-time {
  color: var(--text-gray);
}

.hours-note {
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: var(--text-light);
  font-style: italic;
}

/* ========================================
   EVENTS
   ======================================== */

.event-types {
  display: grid;
  gap: 2rem;
  margin-top: 3rem;
}

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

.event-type {
  text-align: center;
  padding: 2rem;
  background: var(--bg-cream);
  transition: transform 0.3s ease;
}

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

.event-type-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.event-type h3 {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.event-type p {
  font-size: 0.85rem;
  color: var(--text-light);
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
  position: relative;
}

.footer-image {
  height: 35vh;
  min-height: 300px;
  background: linear-gradient(135deg, #4A7C8C 0%, #6B9DAD 50%, #3D6B7A 100%);
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.footer-image-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-image-placeholder span {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.footer-bar {
  background: #424242;
  color: var(--white);
  padding: 3rem 4%;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.footer-contact p {
  font-size: 0.85rem;
  margin-bottom: 0.35rem;
  opacity: 0.9;
}

.footer-contact a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s;
}

.footer-contact a:hover {
  opacity: 0.7;
}

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

.footer-legal a {
  display: block;
  font-size: 0.8rem;
  color: var(--white);
  text-decoration: none;
  margin-bottom: 0.5rem;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.footer-legal a:hover {
  opacity: 1;
}

.footer-legal .copyright {
  margin-top: 1rem;
  font-size: 0.75rem;
  opacity: 0.5;
}

.footer-social {
  text-align: right;
}

.footer-social a {
  display: block;
  font-size: 0.8rem;
  color: var(--white);
  text-decoration: none;
  margin-bottom: 0.5rem;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.footer-social a:hover {
  opacity: 1;
}

/* ========================================
   ANIMATIONS
   ======================================== */

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

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

.fade-in-delay-1 { animation-delay: 0.2s; opacity: 0; }
.fade-in-delay-2 { animation-delay: 0.4s; opacity: 0; }
.fade-in-delay-3 { animation-delay: 0.6s; opacity: 0; }

/* ========================================
   UTILITIES
   ======================================== */

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

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.two-columns {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .two-columns {
    grid-template-columns: 1fr 1fr;
  }
}
