/* Fonts */
@font-face {
  font-family: "Helvetica Neue";
  src: url("../fonts/HelveticaNeue-Ultralight.otf") format("opentype");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Helvetica Neue";
  src: url("../fonts/HelveticaNeue-Thin.otf") format("opentype");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Helvetica Neue";
  src: url("../fonts/HelveticaNeue-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Helvetica Neue";
  src: url("../fonts/HelveticaNeue-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Helvetica Neue";
  src: url("../fonts/HelveticaNeue-RegularItalic.otf") format("opentype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Helvetica Neue";
  src: url("../fonts/HelveticaNeue-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Helvetica Neue";
  src: url("../fonts/HelveticaNeue-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* Design tokens - Fixed white theme */
:root {
  --color-bg: #ffffff;
  --color-surface: #ffffff;
  --color-muted: #e5e7eb; /* borders / subtle backgrounds */
  --color-text: #000000;
  --color-text-muted: rgb(164, 164, 164);
  --color-primary: #0ea5e9;
  --color-primary-ink: #dbeafe;

  --radius: 6px;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.2);
  --shadow-md: 0 6px 20px rgba(2,6,23,0.35);

  --container: 1200px;
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
}

/* Force white theme - override any theme switching */
html, html[data-theme="dark"], html[data-theme="light"] {
  --color-bg: #ffffff !important;
  --color-surface: #ffffff !important;
  --color-muted: #e5e7eb !important;
  --color-text: #000000 !important;
  --color-text-muted: rgb(164, 164, 164) !important;
  --color-primary: #0ea5e9 !important;
  --color-primary-ink: #dbeafe !important;
}

/* Modern CSS reset */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body { margin: 0; font-family: "Helvetica Neue", Helvetica, Arial, system-ui, -apple-system, Segoe UI, Roboto, "Apple Color Emoji", "Segoe UI Emoji"; background: var(--color-bg); color: var(--color-text); line-height: 22px; font-size: 17px; font-weight: 400; -webkit-font-smoothing: antialiased; word-break: break-word; text-wrap-style: pretty; text-wrap-mode: wrap; }
img, picture, video, canvas, svg { display: block; max-width: 100%; }
input, button, textarea, select { font: inherit; }
a { color: rgb(164, 164, 164); text-decoration: none; }
a:hover, a:focus { color: #000000; }
a:focus-visible { outline: 2px solid rgba(0,0,0,0.2); outline-offset: 2px; border-radius: 4px; }

/* Primitives */
.container { margin: 0 40px; }

/* Mobile container margins */
@media (max-width: 767px) {
  .container { margin: 0 16px; }
}
.grid { display: grid; }
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: var(--space-2); }
.gap-3 { gap: var(--space-3); }
.gap-4 { gap: var(--space-4); }
.gap-6 { gap: var(--space-6); }
.gap-8 { gap: var(--space-8); }
.p-5 { padding: var(--space-5); }
.py-3 { padding-block: var(--space-3); }
.py-12 { padding-block: var(--space-12); }
.mb-2 { margin-bottom: var(--space-2); }
.mb-3 { margin-bottom: var(--space-3); }
.mb-6 { margin-bottom: var(--space-6); }
.mt-12 { margin-top: var(--space-12); }

.rounded { border-radius: var(--radius); }
.shadow-sm { box-shadow: var(--shadow-sm); }
.bg-muted { background: #ffffff; }
.bg-surface { background: var(--color-surface); }
.border-top { border-top: 1px solid var(--color-muted); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.hidden { display: none; }
.stack { display: grid; align-content: start; }
.cols-1 { grid-template-columns: 1fr; }
.sm\:cols-2 { grid-template-columns: 1fr; }
.md\:cols-2 { grid-template-columns: 1fr; }
.lg\:cols-3 { grid-template-columns: 1fr; }
.flex-1 { flex: 1; }
.flex-wrap { flex-wrap: wrap; }

@media (min-width: 640px) { .sm\:cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 768px) { .md\:cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); } .md\:flex { display: flex; } }
@media (min-width: 1024px) { .lg\:cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

/* Typography */
.h1 { font-size: clamp(2rem, 4vw + 1rem, 3rem); line-height: 1.1; letter-spacing: -0.02em; margin: 0; font-weight: 700; }
.h2 { font-size: clamp(1.5rem, 1.5vw + 1rem, 2.25rem); line-height: 1.2; margin: 0; font-weight: 700; }
.h3 { font-size: 1.25rem; margin: 0; font-weight: 700; }
.h4 { font-size: 1.125rem; margin: 0; font-weight: 700; }
.lead { font-size: 1.125rem; color: rgb(164, 164, 164); font-weight: 400; }
.muted { color: rgb(164, 164, 164); }

/* Components */
.site-header { 
  position: sticky; 
  top: 0; 
  z-index: 1001; 
  background: #ffffff; 
  border-bottom: none;
  transition: transform 0.2s ease-out, background-color 0.2s ease;
  padding: 20px 0;
}

.site-header.nav-collapsed {
  transform: translateY(-90%);
  background: #ffffff;
  border-bottom: none;
}

.site-header.nav-collapsed:hover {
  transform: translateY(0);
  border-bottom: none;
}
/* Navigation */
.logo { font-weight: 700; letter-spacing: 0.08em; display: block; }
.logo img { display: block; height: auto; max-width: 100%; }

/* Header layout */
.site-header .container {
  display: flex;
  align-items: center;
}

.nav-main {
  display: flex;
  margin-left: 3rem;
  flex: 1;
}

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

.nav-link { 
  color: rgb(164, 164, 164); 
  font-weight: 400;
  font-size: 17px;
  text-decoration: none;
  transition: color 0.2s ease;
}
.nav-link:hover, .nav-link:focus { color: #000000; }
.nav-link:focus-visible { outline: 2px solid rgba(0,0,0,0.2); outline-offset: 2px; border-radius: 4px; }

.nav-actions { 
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-left: auto;
}

.menu-button { 
  background: transparent; 
  color: var(--color-text); 
  border: none; 
  padding: 0;
  font-size: 17px;
  cursor: pointer;
  height: 20px;
  display: flex;
  align-items: center;
}
.menu-text {
  color: var(--color-text);
  font-weight: 400;
}
.menu-button:hover .menu-text { 
  color: rgb(164, 164, 164); 
}

/* Overlay Navigation */
.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #bedeec;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
}

.nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

body.nav-overlay-open .site-header {
  display: none;
}

.nav-overlay-content {
  width: 100%;
  height: 100%;
  padding: 40px;
  display: flex;
  flex-direction: column;
}

.nav-overlay-search {
  margin-bottom: 60px;
  padding-bottom: 8px; /* Tighter to search text */
  border-bottom: 1px solid #000000;
  width: 50%; /* Width of first two columns */
  position: absolute;
  top: 25px; /* Match close button top position exactly */
  left: 40px;
}

.search-input {
  background: transparent;
  border: none;
  font-size: 17px;
  color: var(--color-text);
  outline: none;
  width: 200px;
}

.search-input::placeholder {
  color: var(--color-text);
}

.nav-overlay-close {
  position: fixed;
  top: 25px;
  right: 40px;
  background: transparent;
  border: none;
  font-size: 17px;
  color: var(--color-text);
  cursor: pointer;
  font-weight: 400;
  z-index: 1002;
  height: 20px;
  display: flex;
  align-items: center;
}

.nav-overlay-close:hover {
  color: rgb(164, 164, 164);
}

.nav-overlay-menu {
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: 80px;
  align-items: start;
  justify-content: start;
  margin-top: 50px; /* Reduced spacing before navigation text */
}

.nav-column h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 12px;
}

.nav-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-column li {
  margin-bottom: 2px;
}

.nav-column a {
  color: var(--color-text);
  text-decoration: none;
  font-size: 17px;
  font-weight: 400;
  transition: color 0.2s ease;
  line-height: 20px;
  display: block;
}

.nav-column a:hover {
  color: rgb(164, 164, 164);
}

.nav-overlay-logo {
  position: absolute;
  bottom: 40px;
  left: 40px;
}

/* Mobile overlay navigation */
@media (max-width: 1023px) {
  .nav-main {
    display: none;
  }
  /* Keep checkout visible on mobile, hide other nav-links if any */
  
.nav-overlay-menu {
    grid-template-columns: repeat(2, auto);
    gap: 40px;
    justify-content: start;
  }
  
  .nav-overlay-content {
    padding: 20px;
  }
  
  .nav-overlay-search {
    width: 60%; /* Limited width on mobile, not full width */
    position: absolute;
    top: 25px; /* Match close button top position exactly on mobile */
    left: 20px;
    padding-bottom: 8px; /* Tighter to search text on mobile */
  }
  
  .nav-overlay-close {
    top: 25px;
    right: 20px; /* Adjust for mobile padding */
  }
  
  .nav-overlay-menu {
    margin-top: 40px; /* Proportionally reduced space on mobile */
  }
  
  .nav-overlay-logo {
    bottom: 20px;
    left: 20px;
  }
}

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; padding: 0.65rem 1rem; border-radius: 6px; border: 1px solid transparent; text-decoration: none; cursor: pointer; transition: background-color 120ms ease, color 120ms ease; }
.btn.primary { background: #bedeec; color: #000000; }
.btn.primary:hover { background: #000000; color: #bedeec; }
.btn.ghost { background: transparent; color: var(--color-text); border-color: var(--color-muted); }
.btn.ghost:hover, .btn.ghost:focus { color: var(--color-text); border-color: var(--color-text); }

.input { width: 100%; padding: 0.65rem 0.8rem; background: var(--color-surface); color: var(--color-text); border: none; border-radius: 6px; }

.aspect-16-10 { position: relative; padding-top: calc(10 / 16 * 100%); }
.aspect-16-10 > * { position: absolute; inset: 0; }

.skip-link { position: absolute; left: -999px; top: auto; width: 1px; height: 1px; overflow: hidden; }
.skip-link:focus { left: 0; width: auto; height: auto; padding: 0.5rem 1rem; background: var(--color-primary); color: var(--color-primary-ink); z-index: 100; }

/* Helpers */
.hero-media { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); }

/* Album Hero Section */
.album-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.video-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.album-artwork {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}

.artwork-image {
  max-width: 533px;
  max-height: 533px;
  width: auto;
  height: auto;
  display: block;
}

/* Mobile responsive artwork */
@media (max-width: 767px) {
  .artwork-image {
    max-width: 373px;
    max-height: 373px;
  }
}

/* Album Details Section */
.album-details {
  padding: 40px 0;
  background: var(--color-background);
}

.album-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

/* Image Carousel */
.carousel-container {
  position: relative;
  width: 100%;
}

.image-carousel {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
}

.carousel-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.carousel-image.active {
  opacity: 1;
}

/* Album Info */
.album-info {
  padding: 0;
}

.artist-name {
  font-size: 32px; /* Same as announcement text */
  font-weight: 400;
  color: var(--color-text);
  margin: 0 0 4px 0;
  line-height: 1.2;
}

.album-title {
  font-size: 32px; /* Same as announcement text */
  font-weight: 400;
  color: var(--color-text);
  margin: 0 0 4px 0;
  line-height: 1.2;
}

.release-date {
  font-size: 18px;
  font-weight: 400;
  color: var(--color-text-muted);
  margin: 0 0 20px 0;
  line-height: 1.4;
}

.buy-links {
  text-align: left;
}

.buy-links-title {
  font-size: 16px;
  font-weight: 400;
  color: var(--color-text);
  margin: 0 0 12px 0;
  line-height: 1.4;
}

.buy-links-columns {
  overflow: hidden; /* Clearfix for floated elements */
}

.buy-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
  float: left;
  width: 50%;
}

.buy-links-physical {
  padding-right: 20px;
}

.buy-links-digital {
  padding-left: 20px;
}

.buy-links-list li {
  margin-bottom: 12px;
}

.buy-links-list li:last-child {
  margin-bottom: 0;
}

.buy-link {
  display: inline-block;
  font-size: 16px;
  font-weight: 400;
  color: var(--color-text);
  text-decoration: none;
  border-bottom: 1px solid #000000;
  padding-bottom: 2px;
  transition: color 0.2s ease, border-bottom-color 0.2s ease;
}

.buy-link:hover {
  color: var(--color-text-muted);
  border-bottom-color: var(--color-text-muted);
}

/* Mobile responsive */
@media (max-width: 767px) {
  .album-details {
    padding: 20px 0;
  }
  
  .album-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .album-info {
    padding: 0;
    order: 1; /* Text comes first on mobile */
  }
  
  .carousel-container {
    order: 2; /* Image comes second on mobile */
  }
  
  .artist-name {
    font-size: 24px; /* Match announcement text mobile size */
  }
  
  .album-title {
    font-size: 24px; /* Match announcement text mobile size */
  }
  
  .release-date {
    font-size: 16px;
    margin-bottom: 15px;
  }
  
  /* Keep two columns on mobile with adjusted spacing */
  .buy-links-physical {
    padding-right: 10px; /* Reduced padding for mobile */
  }
  
  .buy-links-digital {
    padding-left: 10px; /* Reduced padding for mobile */
  }
}

/* Album Announcement Section */
.album-announcement {
  padding: 40px 0;
  background: var(--color-background);
}

.announcement-text {
  font-size: 32px; /* Twice the usual 16px text size */
  font-weight: 400;
  color: var(--color-text);
  text-align: center;
  line-height: 1.4;
  margin: 0;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Mobile responsive */
@media (max-width: 767px) {
  .album-announcement {
    padding: 30px 0;
  }
  
  .announcement-text {
    font-size: 24px; /* Proportionally smaller on mobile */
  }
}

/* Video Section */
.video-section {
  padding: 80px 0;
  background: var(--color-background);
}

.video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Mobile responsive */
@media (max-width: 767px) {
  .video-section {
    padding: 60px 0;
  }
  
  .video-section .container {
    padding-left: 0;
    padding-right: 0;
  }
}

/* Newsletter Signup Section */
.newsletter-signup {
  padding: 40px 0;
  background: var(--color-background);
}

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

.newsletter-text {
  font-size: 32px; /* Same size as announcement text */
  font-weight: 400;
  color: var(--color-text);
  line-height: 1.4;
  margin: 0 0 30px 0;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
}

.newsletter-form-fields {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-input {
  flex: 1;
  padding: 0.65rem 0.8rem;
  background: rgb(242, 242, 242); /* Match footer background */
  color: #000000; /* Black text for contrast */
  border: none;
  border-radius: 6px;
  font-size: 16px;
}

.newsletter-input::placeholder {
  color: var(--color-text-muted);
}

/* Mobile responsive */
@media (max-width: 767px) {
  .newsletter-signup {
    padding: 30px 0;
  }
  
  .newsletter-text {
    font-size: 24px; /* Match announcement text mobile size */
  }
  
  .newsletter-form-fields {
    flex-direction: row;
    gap: 10px;
    max-width: 100%;
  }
  
  .newsletter-input {
    flex: 1;
  }
}

/* Events Section */
.events-section {
  padding: 80px 0;
  background: var(--color-background);
}

.events-title {
  font-size: 32px; /* Same as announcement text */
  font-weight: 400;
  color: var(--color-text);
  text-align: center;
  line-height: 1.4;
  margin: 0 0 60px 0;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 60px;
}

.events-table {
  max-width: 100%;
}

.event-row {
  display: grid;
  grid-template-columns: 200px 1fr 200px auto;
  gap: 40px;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.event-row:last-child {
  border-bottom: none;
}

.event-date {
  font-size: 16px;
  font-weight: 400;
  color: var(--color-text);
  line-height: 1.4;
}

.event-venue {
  font-size: 16px;
  font-weight: 400;
  color: var(--color-text);
  line-height: 1.4;
}

.event-country {
  font-size: 16px;
  font-weight: 400;
  color: var(--color-text-muted);
  line-height: 1.4;
}

.ticket-btn {
  background: #bedeec; /* Match primary button color */
  color: #000000; /* Match primary button text */
  padding: 0.65rem 1rem; /* Match primary button padding */
  border-radius: 6px; /* Match primary button border-radius */
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 1px;
  transition: background-color 0.2s ease, color 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.ticket-btn:hover {
  background: #000000; /* Match primary button hover */
  color: #bedeec; /* Match primary button hover text */
}

/* Mobile responsive */
/* Hide mobile inline tickets on desktop, show desktop tickets */
.mobile-inline {
  display: none;
}

.desktop-only {
  display: block;
}

@media (max-width: 767px) {
  .events-section {
    padding: 60px 0;
  }
  
  .events-title {
    font-size: 24px; /* Match announcement text mobile size */
    margin-bottom: 40px;
  }
  
  .event-row {
    grid-template-columns: 1fr;
    gap: 8px;
    text-align: left;
    align-items: start;
  }
  
  .event-date {
    font-weight: 600;
    margin-bottom: 4px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .event-venue {
    margin-bottom: 2px;
  }
  
  .event-country {
    margin-bottom: 8px;
  }
  
  /* Show mobile inline tickets, hide desktop tickets */
  .mobile-inline {
    display: block;
  }
  
  .desktop-only {
    display: none;
  }
  
  .ticket-btn {
    margin: 0;
  }
}

/* Other Releases Section */
.other-releases {
  padding: 80px 0;
  background: var(--color-background);
}

.releases-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.release-item {
  text-align: left;
}

.release-link {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s ease;
}

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

.release-image {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
  margin-bottom: 12px;
}

.release-title {
  font-size: 16px; /* Regular font size */
  font-weight: 400;
  color: var(--color-text);
  margin: 0;
  line-height: 1.4;
}

/* Mobile responsive */
@media (max-width: 767px) {
  .other-releases {
    padding: 60px 0;
  }
  
  .releases-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

/* Footer */
.site-footer { 
  background: rgb(242, 242, 242); 
  border-bottom: 3px solid rgba(0, 0, 0, 0.1);
  padding: 40px 0;
}
.footer-top { margin-bottom: var(--space-8); }
.footer-location h3 { font-weight: 700; color: var(--color-text); }
.footer-address { 
  color: var(--color-text); 
  line-height: 1.4; 
  font-weight: 400;
  margin: 0;
}
.footer-newsletter { text-align: right; }
.footer-newsletter h3 { font-weight: 700; color: var(--color-text); }
.footer-bottom { }
.footer-links ul { list-style: none; padding: 0; margin: 0; }
.footer-links a,
.footer-follow-btn,
.footer-legal-btn { 
  color: var(--color-text); 
  font-weight: 400;
  transition: color 0.2s ease;
  background: transparent;
  border: none;
  padding: 0;
  font-size: inherit;
  font-family: inherit;
  cursor: pointer;
  text-decoration: none;
}
.footer-links a:hover,
.footer-follow-btn:hover,
.footer-legal-btn:hover { color: rgb(164, 164, 164); }

/* Mobile footer layout */
@media (max-width: 767px) {
  .footer-newsletter { 
    text-align: left; 
  }
  .footer-top { 
    grid-template-columns: 1fr; 
    gap: var(--space-6);
    margin-bottom: var(--space-6);
  }
  .footer-bottom { 
    flex-direction: column; 
    align-items: flex-start;
    gap: var(--space-4);
  }
  .footer-meta { 
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-2); /* Match the spacing of footer links */
    order: 1;
  }
  .footer-logo {
    order: 2;
    margin-top: var(--space-4);
  }
  .footer-links ul { 
    flex-direction: column;
    gap: var(--space-2);
  }
  /* Social media links */
  .footer-social {
    display: flex;
    justify-content: flex-end;
    width: 100%;
  }
  .social-links {
    display: flex !important;
  }
  .social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: currentColor;
    transition: opacity 0.2s ease, transform 0.2s ease;
    text-decoration: none;
  }
  .social-link i {
    font-size: 3rem;
  }
  .social-link:hover {
    opacity: 0.7;
    transform: translateY(-2px);
  }
  
  /* Reorder footer meta content on mobile */
  .footer-meta {
    display: flex;
    flex-direction: column;
  }
  .footer-meta p {
    order: 2; /* Copyright comes after links */
    margin: 0; /* Remove default paragraph margin */
  }
  .footer-links {
    order: 1; /* Links come first */
  }
}


