/* 
   i Brottìn - Design System & Custom Stylesheet
   Educazione Parentale in Natura
*/

/* Google Fonts Imports */
@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@300;400;500;600;700&family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

/* CSS Variables */
:root {
  --primary: #2d5a27;         /* Deep Forest Green */
  --primary-light: #46843c;   /* Leafy Green */
  --primary-dark: #1b3d17;    /* Very Dark Green */
  --accent: #e67e22;          /* Warm Terracotta / Orange */
  --accent-light: #f39c12;    /* Amber */
  --bg-primary: #fbfaf5;      /* Natural Cream White */
  --bg-secondary: #f3f0e2;    /* Warm Soft Sand */
  --bg-dark: #1b2619;         /* Charcoal Green for Footer */
  --text-dark: #2c3531;       /* Dark Olive/Charcoal for standard text */
  --text-light: #fbfaf5;      /* Cream text for dark backgrounds */
  --text-muted: #626d68;      /* Slate green for secondary texts */
  --border-color: #dfdaca;    /* Soft beige borders */
  
  --font-headers: 'Fredoka', 'Fredoka One', cursive, sans-serif;
  --font-body: 'Plus Jakarta Sans', 'Open Sans', sans-serif;
  
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 8px 24px rgba(45, 90, 39, 0.08);
  --shadow-lg: 0 16px 32px rgba(45, 90, 39, 0.12);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-round: 50%;
  
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s ease;
  
  --header-height: 80px;
}

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

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

body {
  background-color: var(--bg-primary);
  color: var(--text-dark);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headers);
  color: var(--primary-dark);
  font-weight: 600;
  line-height: 1.25;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 1.5rem;
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 1.25rem;
  position: relative;
  display: inline-block;
}

/* Decorative leaf underline for h2 */
h2::after {
  content: '';
  display: block;
  width: 60%;
  height: 4px;
  background: var(--primary-light);
  margin-top: 8px;
  border-radius: 2px;
}

h3 {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
  font-weight: 400;
}

p:last-child {
  margin-bottom: 0;
}

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

a:hover {
  color: var(--primary-dark);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-sm);
}

/* Utility Classes */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

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

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

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

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Grid Layouts */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 2rem;
  font-family: var(--font-headers);
  font-size: 1.1rem;
  font-weight: 500;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition-normal);
  box-shadow: var(--shadow-sm);
}

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

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

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

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

.btn-outline {
  background-color: transparent;
  border-color: var(--primary);
  color: var(--primary);
}

.btn-outline:hover {
  background-color: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

/* Sticky Header */
header {
  height: var(--header-height);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(251, 250, 245, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(223, 218, 202, 0.3);
  transition: var(--transition-normal);
}

header.scrolled {
  background-color: var(--bg-primary);
  box-shadow: var(--shadow-sm);
  border-bottom-color: var(--border-color);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-container img {
  height: 54px;
  width: auto;
  border-radius: 0;
}

.logo-text {
  font-family: var(--font-headers);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-dark);
}

.logo-text span {
  color: var(--primary-light);
}

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

.nav-link {
  font-family: var(--font-headers);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-dark);
  position: relative;
  padding: 0.5rem 0;
}

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

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

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

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

/* Mobile Nav Toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1100;
  padding: 0.5rem;
}

.hamburger-line {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  background-color: var(--primary-dark);
  transition: var(--transition-normal);
  border-radius: 2px;
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background-color: var(--bg-primary);
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    transition: var(--transition-normal);
    z-index: 1050;
  }
  
  .nav-menu.open {
    right: 0;
  }
  
  /* Animate Hamburger to Close Icon */
  .nav-toggle.active .hamburger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  
  .nav-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
  }
  
  .nav-toggle.active .hamburger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}

/* Hero Section */
.hero {
  padding-top: calc(var(--header-height) + 5rem);
  padding-bottom: 8rem;
  background: linear-gradient(135deg, #eef5ee 0%, #e1ebe1 100%);
  position: relative;
  overflow: hidden;
}

.hero-content {
  max-width: 650px;
  position: relative;
  z-index: 5;
}

.hero-quote-author {
  font-family: var(--font-headers);
  font-size: 1.25rem;
  color: var(--primary-light);
  margin-top: -1rem;
  margin-bottom: 2rem;
  display: block;
}

/* Floating Leaves */
.decor-leaf {
  position: absolute;
  font-size: 2.2rem;
  opacity: 0.12;
  pointer-events: none;
  z-index: 1;
  animation: float-leaf 8s ease-in-out infinite;
}

.leaf-1 {
  top: 15%;
  left: 4%;
  animation-delay: 0s;
}

.leaf-2 {
  top: 72%;
  left: 42%;
  font-size: 2.8rem;
  animation-delay: 2s;
}

.leaf-3 {
  top: 22%;
  right: 8%;
  font-size: 2.4rem;
  animation-delay: 4s;
}

@keyframes float-leaf {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(12deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

/* Hero Contact Pill */
.hero-contact-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background-color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  margin-top: 1.5rem;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
}

.hero-contact-pill:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-light);
}

.hero-contact-pill .pill-icon {
  font-size: 1.2rem;
  color: var(--primary-light);
  line-height: 1;
}

.hero-contact-pill .pill-text {
  font-family: var(--font-headers);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-dark);
}

.hero-contact-pill .pill-text a {
  color: var(--primary-light);
  text-decoration: underline;
  font-weight: 600;
}

.hero-contact-pill .pill-text a:hover {
  color: var(--primary-dark);
}

/* Hero Image & Blob Frame */
.hero-image-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 5;
}

.hero-blob-wrapper {
  position: relative;
  width: 100%;
  max-width: 440px;
  height: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-blob-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--primary-light);
  opacity: 0.12;
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  animation: blob-animate-bg 15s ease-in-out infinite alternate;
}

.hero-blob-image {
  position: absolute;
  width: 90%;
  height: 90%;
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--white);
  animation: blob-animate-img 15s ease-in-out infinite alternate;
}

.hero-blob-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  transform: scale(1.02);
  transition: transform var(--transition-slow);
}

.hero-blob-image:hover img {
  transform: scale(1.08);
}

@keyframes blob-animate-bg {
  0% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; transform: rotate(0deg); }
  50% { border-radius: 45% 55% 45% 55% / 50% 60% 40% 50%; }
  100% { border-radius: 50% 50% 70% 30% / 60% 40% 50% 60%; transform: rotate(120deg); }
}

@keyframes blob-animate-img {
  0% { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; }
  50% { border-radius: 55% 45% 40% 60% / 55% 45% 55% 45%; }
  100% { border-radius: 50% 50% 60% 40% / 40% 60% 50% 60%; }
}

.hero-badge {
  position: absolute;
  bottom: -10px;
  left: -10px;
  background-color: var(--white);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 1rem;
  border: 1px solid var(--border-color);
  z-index: 10;
}

.hero-badge img {
  height: 40px;
  width: auto;
  box-shadow: none;
}

.hero-badge-text {
  font-family: var(--font-headers);
  font-size: 1rem;
  line-height: 1.2;
}

/* SVG Wave Divider */
.wave-divider {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
  z-index: 4;
}

.wave-divider svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 70px;
}

.wave-divider .shape-fill {
  fill: var(--bg-primary); /* Matches #fbfaf5 - Chi Siamo background */
}

@media (max-width: 992px) {
  .hero {
    padding-top: calc(var(--header-height) + 2rem);
    padding-bottom: 6rem;
  }
  .hero-image-container {
    margin-top: 3.5rem;
  }
  .hero-blob-wrapper {
    max-width: 380px;
    height: 380px;
  }
  .hero-badge {
    left: 20px;
  }
  .wave-divider svg {
    height: 45px;
  }
}



.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 3rem auto;
}


/* Chi Siamo Section */
.chisiamo-text {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  text-align: justify;
}

.chisiamo-highlight {
  font-size: 1rem;
  background-color: var(--bg-secondary);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  border-left: 5px solid var(--primary-light);
  margin-top: 2rem;
}

.chisiamo-highlight h4 {
  font-family: var(--font-headers);
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

/* Interactive Image Grid */
.gallery-section {
  background-color: var(--bg-primary);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: transform var(--transition-normal);
}

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

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(27, 38, 25, 0.8) 0%, rgba(27, 38, 25, 0.2) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.gallery-overlay span {
  color: var(--white);
  font-family: var(--font-headers);
  font-size: 1.2rem;
  transform: translateY(10px);
  transition: transform var(--transition-normal);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.gallery-overlay span::before {
  content: '🔍';
  font-size: 1rem;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

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

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

.gallery-item:hover .gallery-overlay span {
  transform: translateY(0);
}

/* Custom Lightbox Styles */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(27, 38, 25, 0.95);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
}

.lightbox.open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 85%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  border: 4px solid var(--white);
}

.lightbox-caption {
  color: var(--white);
  font-family: var(--font-headers);
  font-size: 1.2rem;
  margin-top: 1rem;
  text-align: center;
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  background: none;
  border: none;
  font-family: monospace;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  pointer-events: none;
  padding: 0 1rem;
}

.lightbox-btn {
  background-color: rgba(255, 255, 255, 0.15);
  color: var(--white);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: var(--radius-round);
  cursor: pointer;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  backdrop-filter: blur(5px);
  transition: var(--transition-fast);
}

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

/* Scopo & Obiettivi Cards */
.scopo-section {
  background-color: var(--bg-secondary);
}

.cards-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

.scopo-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(223, 218, 202, 0.4);
  position: relative;
  overflow: hidden;
}

.scopo-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 6px;
  width: 100%;
  background-color: var(--primary);
}

.scopo-card:nth-child(2)::before {
  background-color: var(--accent);
}

.scopo-card h3 {
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.scopo-card h3 span {
  font-size: 1.75rem;
}

.scopo-card p {
  color: var(--text-muted);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .cards-container {
    grid-template-columns: 1fr;
  }
}

/* Objectives Section */
.obiettivi-container {
  margin-top: 4rem;
}

.obiettivi-header {
  margin-bottom: 3rem;
}

.obiettivi-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem 3rem;
}

.obiettivo-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background-color: var(--white);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(223, 218, 202, 0.3);
  transition: transform var(--transition-fast);
}

.obiettivo-item:hover {
  transform: translateX(5px);
  border-color: var(--primary-light);
}

.obiettivo-icon {
  font-size: 1.3rem;
  line-height: 1;
}

.obiettivo-text {
  font-size: 1.05rem;
  color: var(--text-dark);
  font-weight: 500;
}

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

/* Educazione in Natura blockquote sections */
.nature-quote-section {
  position: relative;
  background-color: var(--primary-dark);
  color: var(--text-light);
  overflow: hidden;
}

.nature-quote-section .container {
  max-width: 800px;
  text-align: center;
  z-index: 10;
}

.nature-quote-section blockquote {
  font-family: var(--font-headers);
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 2rem;
}

.nature-quote-section cite {
  font-family: var(--font-body);
  font-style: normal;
  font-size: 1.1rem;
  color: var(--bg-secondary);
  font-weight: 500;
}

/* Quote Carousel */
.quotes-slider-section {
  background-color: var(--bg-secondary);
}

.quotes-carousel {
  position: relative;
  max-width: 850px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background-color: var(--white);
  box-shadow: var(--shadow-md);
  padding: 4rem 3rem;
  border: 1px solid rgba(223, 218, 202, 0.5);
}

.carousel-track-container {
  position: relative;
  width: 100%;
}

.carousel-track {
  display: flex;
  transition: transform var(--transition-slow);
  list-style: none;
}

.carousel-slide {
  min-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 1.5rem;
}

.quote-icon {
  font-size: 3rem;
  color: var(--primary-light);
  margin-bottom: 1.5rem;
  opacity: 0.3;
}

.quote-text {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-style: italic;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.quote-author {
  font-family: var(--font-headers);
  font-size: 1.15rem;
  color: var(--primary);
  font-weight: 600;
}

.carousel-nav {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
}

.carousel-indicator {
  border: none;
  width: 12px;
  height: 12px;
  border-radius: var(--radius-round);
  background-color: var(--border-color);
  cursor: pointer;
  transition: var(--transition-fast);
}

.carousel-indicator.current-slide {
  background-color: var(--primary);
  width: 24px;
  border-radius: 6px;
}



/* Footer Styling */
footer {
  background-color: var(--bg-dark);
  color: var(--text-light);
  padding: 5rem 0 2rem 0;
  border-top: 6px solid var(--primary-light);
}

footer .grid-3 {
  align-items: start;
}

.footer-col h3 {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
  position: relative;
}

.footer-col h3::after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background-color: var(--accent);
  margin-top: 8px;
}

.footer-col p {
  font-size: 1rem;
  color: rgba(251, 250, 245, 0.8);
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
}

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

.footer-col ul li a {
  color: rgba(251, 250, 245, 0.8);
}

.footer-col ul li a:hover {
  color: var(--accent);
  padding-left: 5px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.footer-logo img {
  height: 60px;
  width: auto;
  border-radius: 0;
}

.footer-logo-text {
  font-family: var(--font-headers);
  font-size: 1.6rem;
  color: var(--white);
}

.footer-logo-text span {
  color: var(--primary-light);
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-round);
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--white);
  transition: var(--transition-fast);
}

.social-link:hover {
  background-color: var(--accent);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-bottom {
  margin-top: 4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.9rem;
  color: rgba(251, 250, 245, 0.5);
}

@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}
