/* ===== Base Reset ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Helvetica Neue', sans-serif;
  background-color: #000;
  color: #fff;
}


/* ===== NAVIGATION BAR ===== */
.navbar {
  width: 100%;
  background-image: url('images/background1.png');
  background-size: cover;
  background-position: top center;
  position: fixed;
  top: 0;
  z-index: 9999;
  box-shadow: 0 0 20px #000;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ===== LOGO ===== */
.logo {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: bold;
  color: #d4af37;
  text-shadow: 0 0 10px #d4af37, 0 0 25px #d4af37;
  letter-spacing: 1px;
}

.logo span {
  color: #fff;
  text-shadow: 0 0 8px #fff;
}

/* ===== NAV LINKS ===== */
.nav-links {
  list-style: none;
  display: flex;
  gap: 3rem;
}

.nav-links li a {
  text-decoration: none;
  color: #ffffff;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  transition: color 0.3s ease;
}

.nav-links li a:hover {
  color: #d4af37;
}

/* ===== MOBILE TOGGLE ICON ===== */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 10000;
  position: relative;
}

.menu-toggle span {
  width: 30px;
  height: 3px;
  background-color: #fff;
  transition: all 0.3s ease;
}

/* ===== FULLSCREEN MOBILE MENU ===== */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  background-image: url('images/background2.png');
  background-size: cover;
  background-position: top center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center; /* CHANGED: This ensures vertical centering */
  z-index: 9998;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  padding-top: 80px; /* ADDED: Gives space from top */
  padding-bottom: 80px; /* ADDED: Gives space at bottom */
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu ul {
  list-style: none;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%; /* ADDED: Ensures full width for centering */
  display: flex;
  flex-direction: column;
  justify-content: center; /* ADDED: Helps with vertical distribution */
  flex-grow: 1; /* ADDED: Allows vertical space distribution */
}

/* CHANGED: Adjusted margins for better vertical spacing */
.mobile-menu ul li {
  margin: 1.5rem 0;
  flex-shrink: 0; /* ADDED: Prevents item squishing */
}

.mobile-menu ul li a {
  text-decoration: none;
  font-size: 2rem;
  color: #fff;
  font-weight: bold;
  transition: color 0.3s ease;
  display: inline-block; /* ADDED: Better click area */
  padding: 0.5rem 1rem; /* ADDED: Better touch target */
}

.mobile-menu ul li a:hover {
  color: #d4af37;
}

/* ===== MOBILE STYLES ===== */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  body.menu-open {
    overflow: hidden;
  }
}








/* ===== Hero Section Container ===== */
.hero-carousel {
  width: 100%;
  margin-top: 80px; /* Ensures hero starts below fixed nav */
  background-color: #000;
  overflow: hidden;
  box-sizing: border-box;
}

/* ===== Carousel Slide Layout ===== */
.carousel-slide {
  display: none !important;
  opacity: 0 !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  transition: opacity 0.8s ease-in-out;
}

/* ===== Active Slide (Visible) ===== */
.carousel-slide.active {
  display: flex !important;
  opacity: 1 !important;
}

/* ===== Image Container ===== */
.carousel-image {
  width: 100%;
  max-height: 90vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
}

.carousel-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

/* ===== Text Block ===== */
.carousel-text {
  margin-top: 2rem;
  max-width: 800px;
}

.carousel-text p {
  font-size: 1.6rem;
  font-weight: bold;
  color: #ffffff;
  text-shadow: 0 0 10px #000;
  line-height: 1.6;
}

/* ===== Hero Button ===== */
.hero-button {
  margin-top: 1rem;
  padding: 0.5rem 1.25rem;
  font-size: 1rem;
  font-weight: 600;
  color: #000;
  background-color: #d4af37;
  border: none;
  border-radius: 4px;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.hero-button:hover {
  background-color: #fff;
  color: #000;
}
/* ===== Hero Section Mobile Queries (Max Width: 768px) ===== */
/* ===== Hero Mobile Queries (768px) ===== */
@media (max-width: 768px) {
  .hero-carousel {
    margin-top: 70px; /* Adjusted for mobile nav height */
  }

  .carousel-slide {
    padding: 1rem; /* Reduced padding on mobile */
  }

  .carousel-image {
    max-height: 60vh; /* Smaller height on mobile */
  }

  .carousel-text {
    margin-top: 1rem;
    padding: 0 1rem; /* Added side padding */
  }

  .carousel-text p {
    font-size: 1.2rem; /* Smaller text on mobile */
    line-height: 1.4;
  }

  .hero-button {
    padding: 0.4rem 1rem; /* Slightly smaller button */
    font-size: 0.9rem;
  }
}







/* ===== Books Section ===== */
.books-section {

  background-image: url('images/background1.png');
  background-size: cover;
  background-position: center;
  padding: 5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
  color: #fff;
  text-align: center;
}

/* ===== Main Title ===== */
.section-main-title {
  font-family: 'Playfair Display', serif;
  font-size: 3.2rem;
  color: #d4af37;
  text-shadow: 0 0 10px #000;
  margin: 0;
  letter-spacing: 1.5px;
}

/* ===== Grid of Book Blocks ===== */
.books-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2.5rem;
  max-width: 1400px;
}

/* ===== Individual Book Block ===== */
.book-block {
  background-color: rgba(0, 0, 0, 0.65);
  padding: 2rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 0 20px #000;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  transition: transform 0.3s ease;
}

.book-block:hover {
  transform: translateY(-8px);
}

/* ===== Book Images ===== */
.book-img {
  width: 100%;
  max-width: 240px;
  height: auto;
  box-shadow: 0 0 12px #000;
}

/* ===== Subtitle for Each Book ===== */
.book-subtitle {
  font-size: 1.5rem;
  color: #d4af37;
  margin: 0;
  font-family: 'Playfair Display', serif;
  text-shadow: 0 0 5px #000;
}

/* ===== Book Description Text ===== */
.book-block p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #e8e8e8;
  font-family: 'Georgia', serif;
}


/* ===== Books Mobile Queries (768px) ===== */
@media (max-width: 768px) {
  .books-section {
    padding: 3rem 1rem; /* Reduced padding */
    gap: 2rem; /* Smaller gap */
  }

  .section-main-title {
    font-size: 2.4rem; /* Smaller title */
  }

  .books-grid {
    gap: 1.5rem; /* Tighter grid spacing */
  }

  .book-block {
    max-width: 300px; /* Slightly narrower blocks */
    padding: 1.5rem 1rem; /* Reduced padding */
  }

  .book-img {
    max-width: 200px; /* Smaller book images */
  }

  .book-subtitle {
    font-size: 1.3rem; /* Smaller subtitles */
  }

  .book-block p {
    font-size: 0.95rem; /* Slightly smaller text */
    line-height: 1.5;
  }
}









/* ===== Author Section Background and Layout ===== */
.author-section {
  background-image: url('images/background4.png');
  background-size: cover;
  background-position: center;
  padding: 5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
  text-align: center;
}

/* ===== Section Title ===== */
.section-main-title {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  color: #d4af37;
  text-shadow: 0 0 10px #000;
  margin-bottom: 3rem;
  letter-spacing: 1.5px;
}

/* ===== Author Content Layout ===== */
.author-content {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  gap: 3rem;
  flex-wrap: wrap;
  text-align: left;
}

/* ===== Author Image ===== */
.author-img {
  width: 100%;
  max-width: 280px;
  height: auto;
  box-shadow: 0 0 15px #000;
  border-radius: 6px;
}

/* ===== Divider Line ===== */
.author-divider {
  width: 2px;
  height: 200px;
  background-color: #d4af37;
  opacity: 0.7;
}

/* ===== Author Description Text ===== */
.author-description {
  max-width: 600px;
  font-size: 1.1rem;
  line-height: 1.65;
  font-family: 'Georgia', serif;
  color: #e6e6e6;
}

/* ===== Author Mobile Queries (768px) ===== */
@media (max-width: 768px) {
  .author-section {
    padding: 3rem 1rem; /* Reduced padding */
  }

  .section-main-title {
    font-size: 2.2rem; /* Smaller title */
    margin-bottom: 2rem; /* Reduced spacing */
  }

  .author-content {
    flex-direction: column; /* Stack vertically */
    gap: 1.5rem; /* Smaller gap */
    text-align: center; /* Center aligned */
  }

  .author-divider {
    height: 2px; /* Horizontal divider */
    width: 80%; /* Full width */
    margin: 1rem 0; /* Added spacing */
  }

  .author-description {
    font-size: 1rem; /* Slightly smaller text */
    padding: 0 1rem; /* Added side padding */
    text-align: center; /* Center aligned */
  }

  .author-img {
    max-width: 220px; /* Slightly smaller image */
  }
}







/* ===== Atleantis Section Background & Layout ===== */
.atleantis-section {
  background: url('images/background3.png') no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
  padding: 5rem 2rem;
  text-align: center;
  color: #fff;
  width: 100%;
  box-sizing: border-box;
}

/* ===== Section Title ===== */
.atleantis-section .section-main-title {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  color: #d4af37;
  text-shadow: 0 0 8px #000;
  margin-bottom: 3rem;
  letter-spacing: 1px;
}

/* ===== Grid Layout for Chapters ===== */
.atleantis-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

/* ===== Chapter Block ===== */
.atleantis-window {
  background-color: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 0 15px #000;
  max-width: 280px;
  flex: 1 1 260px;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%; /* Keep vertical consistency */
}

/* ===== Fix Image Size Consistency ===== */
.atleantis-window img {
  width: 100%;
  height: 200px; /* Force uniform height */
  object-fit: cover; /* Crops as needed while keeping proportion */
  display: block;
}

/* ===== Hover Lift Effect ===== */
.atleantis-window:hover {
  transform: translateY(-10px);
}

/* ===== Chapter Label ===== */
.chapter-label {
  font-size: 1rem;
  padding: 1rem;
  font-family: 'Georgia', serif;
  color: #d4af37;
  text-shadow: 0 0 4px #000;
  background-color: rgba(0, 0, 0, 0.75);
  margin: 0;
  width: 100%;
}


/* ===== Atleantis Mobile Queries (768px) ===== */
@media (max-width: 768px) {
  .atleantis-section {
    padding: 3rem 1rem; /* Reduced padding */
    background-attachment: scroll; /* Remove parallax on mobile */
  }

  .atleantis-section .section-main-title {
    font-size: 2.2rem; /* Smaller title */
    margin-bottom: 2rem; /* Reduced spacing */
  }

  .atleantis-grid {
    gap: 1.5rem; /* Tighter grid spacing */
    padding: 0 1rem; /* Added side padding */
  }

  .atleantis-window {
    max-width: 100%; /* Full width cards */
    flex: 1 1 100%; /* Single column layout */
    margin-bottom: 1rem; /* Added bottom spacing */
  }

  .atleantis-window img {
    height: 180px; /* Slightly smaller images */
  }

  .chapter-label {
    font-size: 0.9rem; /* Smaller text */
    padding: 0.8rem; /* Tighter padding */
  }
}




/* ===== Blog Preview Section ===== */
.blog-preview-section {
  background: url('images/background4.png') no-repeat top center fixed; /* Start from top */
  background-size: cover;
  padding: 6rem 2rem;
  text-align: center;
  color: #fff;
}

/* ===== Section Title ===== */
.blog-preview-section .section-main-title {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  color: #d4af37;
  text-shadow: 0 0 10px #000;
  margin-bottom: 4rem;
  letter-spacing: 1.5px;
}

/* ===== Quote Grid Layout ===== */
.quote-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

/* ===== Quote Box Style ===== */
.quote-box {
  background: radial-gradient(circle at center, rgba(30, 30, 30, 0.8), rgba(10, 10, 10, 0.8));
  padding: 2.5rem 2rem;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 12px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.8);
  max-width: 420px;
  flex: 1 1 320px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.quote-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.6);
}

/* ===== Quote Text Style ===== */
.quote-text {
  font-family: 'Georgia', serif;
  font-size: 1.4rem;
  font-style: italic;
  font-weight: 500;
  color: #d4af37;
  line-height: 1.8;
  letter-spacing: 0.5px;
  text-shadow: 0 0 8px #000;
  margin: 0;
}

/* ===== Blog Button ===== */
.blog-button {
  margin-top: 1rem;
  padding: 0.6rem 1.5rem;
  font-size: 1rem;
}

/* ===== Blog Preview Mobile Queries (768px) ===== */
@media (max-width: 768px) {
  .blog-preview-section {
    padding: 4rem 1rem; /* Reduced padding */
    background-attachment: scroll; /* Remove fixed background */
  }

  .blog-preview-section .section-main-title {
    font-size: 2.2rem; /* Smaller title */
    margin-bottom: 2.5rem; /* Reduced spacing */
  }

  .quote-grid {
    gap: 1.5rem; /* Tighter grid spacing */
    margin-bottom: 2rem; /* Reduced spacing */
  }

  .quote-box {
    padding: 1.8rem 1.5rem; /* Reduced padding */
    flex: 1 1 100%; /* Full width boxes */
    max-width: 100%; /* Remove max-width constraint */
  }

  .quote-text {
    font-size: 1.2rem; /* Smaller text */
    line-height: 1.6; /* Tighter line spacing */
  }

  .blog-button {
    padding: 0.5rem 1.25rem; /* Slightly smaller button */
    font-size: 0.95rem;
  }
}




/* ===== Poems Section CSS ===== */
.poems-section {
  background: url('images/background4.png') no-repeat top center fixed;
  background-size: cover;
  padding: 6rem 2rem;
  text-align: center;
}

.section-main-title {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  color: #d4af37;
  margin-bottom: 4rem;
  text-shadow: 0 0 10px #000;
}

.poem-grid {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  align-items: center;
}

/* ===== Full Poem Card Window ===== */
.poem-window {
  display: flex;
  background: #fdf6e3;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.25);
  width: 100%;
  max-width: 1000px;
  height: 340px;
  align-items: center;
  position: relative;
}

/* ===== Image Column ===== */
.poem-image {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.poem-image img {
  width: 100%;
  max-width: 300px;
  height: 340px;
  object-fit: cover;
  border-radius: 0;
}

/* ===== Vertical Divider ===== */
.poem-divider {
  width: 2px;
  background-color: #d4af37;
  height: 70%;
  margin: 0 1rem;
}

/* ===== Text Column ===== */
.poem-text {
  flex: 2;
  padding: 2rem;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.poem-text h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #111;
}

.poem-text p {
  font-size: 1.05rem;
  color: #444;
  line-height: 1.7;
}

.read-more {
  margin-top: 1rem;
  padding: 0.4rem 1rem;
  font-size: 1rem;
  font-weight: 600;
  background-color: #d4af37;
  color: #000;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  width: fit-content;
}

.read-more:hover {
  background-color: #fff;
  color: #000;
}

/* ===== Modal for Full Poem ===== */
.poem-full {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.95);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
  padding: 2rem;
}

.poem-full-inner {
  background: #fff;
  color: #111;
  max-width: 800px;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 10px;
  padding: 2rem;
  position: relative;
  font-family: 'Georgia', serif;
  white-space: pre-wrap;
  line-height: 1.7;
  box-shadow: 0 0 25px #000;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 2rem;
  color: #000;
  cursor: pointer;
}

/* ===== Corrected Poems Mobile Queries (768px) ===== */
@media (max-width: 768px) {
  .poems-section {
    padding: 4rem 1rem;
    background-attachment: scroll;
  }

  .section-main-title {
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
  }

  .poem-window {
    flex-direction: column;
    height: auto;
    max-width: 100%;
  }

  .poem-image {
    width: 100%;
    height: auto; /* Let image height be natural */
  }

  .poem-image img {
    width: 100%;
    height: auto; /* Preserve aspect ratio */
    max-height: 300px; /* Reasonable max height */
    object-fit: contain; /* Show full image without cropping */
  }

  .poem-divider {
    width: 80%;
    height: 2px;
    margin: 1.5rem 0;
  }

  .poem-text {
    padding: 1.5rem;
    text-align: center;
  }

  .poem-text h2 {
    font-size: 1.5rem;
  }

  .poem-text p {
    font-size: 0.95rem;
  }

  .read-more {
    margin: 1.5rem auto 0;
  }

  .poem-full-inner {
    padding: 1.5rem;
    max-height: 85vh;
    width: 95%;
  }

  .close-btn {
    top: 5px;
    right: 15px;
    font-size: 1.8rem;
  }
}








/* ===== Newsletter Signup Section ===== */
.newsletter-section {
  background: url('images/orangebackground.png') no-repeat top center fixed;
  background-size: cover;
  padding: 6rem 2rem;
  color: #fff;
  text-align: center;
}

.newsletter-overlay {
  max-width: 600px;
  margin: 0 auto;
  background-color: rgba(20, 20, 30, 0.9);
  padding: 2.5rem 2rem;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(0,0,0,0.6);
}

.newsletter-title {
  font-size: 1.6rem;
  color: #ffe600;
  margin-bottom: 2rem;
  font-family: 'Georgia', serif;
  line-height: 1.4;
}

.newsletter-form h3 {
  color: #ff4411;
  font-size: 1.4rem;
  margin-bottom: 1rem;
  font-family: 'Playfair Display', serif;
}

.newsletter-form label {
  display: block;
  text-align: left;
  font-size: 0.95rem;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}

.newsletter-form input,
.newsletter-form select,
.newsletter-form button {
  box-sizing: border-box;
  max-width: 100%;
}

.newsletter-form input,
.newsletter-form select {
  width: 100%;
  padding: 0.6rem;
  border-radius: 4px;
  border: none;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.checkbox-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  margin-top: 1rem;
  text-align: left;
  font-size: 0.9rem;
}

.newsletter-form input[type='checkbox'] {
  transform: scale(1.2);
  margin-top: 3px;
}

.newsletter-submit {
  margin-top: 1.5rem;
  background-color: #ff4411;
  color: white;
  font-weight: bold;
  font-size: 1rem;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  width: 100%;
  letter-spacing: 1px;
  transition: background-color 0.3s ease;
}

.newsletter-submit:hover {
  background-color: #fff;
  color: #000;
}

.privacy-link {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: #bbb;
  cursor: pointer;
  text-decoration: underline;
}

/* ===== Newsletter Mobile Queries (768px) ===== */
@media (max-width: 768px) {
  .newsletter-section {
    padding: 4rem 1rem;
    background-attachment: scroll;
  }

  .newsletter-overlay {
    padding: 2rem 1.5rem;
  }

  .newsletter-title {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
  }

  .newsletter-form h3 {
    font-size: 1.2rem;
  }

  .newsletter-form input,
  .newsletter-form select {
    padding: 0.5rem;
    font-size: 0.95rem;
  }

  .checkbox-row {
    font-size: 0.85rem;
  }

  .newsletter-submit {
    padding: 0.6rem;
    font-size: 0.95rem;
  }

  .privacy-link {
    font-size: 0.8rem;
  }
}







/* ===== Footer Section Styles ===== */
.site-footer {
  background: url('images/background4.png') no-repeat bottom center fixed; /* ✅ Focus on bottom of the background */
  background-size: cover;
  padding: 4rem 2rem;
  text-align: center;
  color: #fff;
}

.footer-content {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.social-icons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.social-icons a img {
  width: 40px;
  height: 40px;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.social-icons a img:hover {
  transform: scale(1.15);
  filter: brightness(1.3);
}

.footer-newsletter-btn {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: bold;
  background-color: #d4af37;
  color: #000;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  letter-spacing: 1px;
}

.footer-newsletter-btn:hover {
  background-color: #fff;
  color: #000;
}

copyright {
  font-size: 0.85rem;
  color: #ccc;
}
/* ===== Footer Mobile Queries (768px) ===== */
@media (max-width: 768px) {
  .site-footer {
    padding: 3rem 1rem;
    background-attachment: scroll; /* Remove fixed background */
  }

  .footer-content {
    gap: 1.5rem; /* Reduced spacing */
  }

  .social-icons {
    gap: 1rem; /* Tighter icon spacing */
  }

  .social-icons a img {
    width: 36px; /* Slightly smaller icons */
    height: 36px;
  }

  .footer-newsletter-btn {
    padding: 0.6rem 1.25rem; /* Smaller button */
    font-size: 0.95rem;
  }

  .copyright {
    font-size: 0.8rem; /* Smaller copyright text */
  }
}