/* === FONT IMPORT === */
@font-face {
  font-family: 'Space Grotesk';
  src: url('/Assets/Fonts/SpaceGrotesk-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Space Grotesk';
  src: url('/Assets/Fonts/SpaceGrotesk-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'Agrandir';
  src: url('/Assets/Fonts/Agrandir_Font_Family/agrandir-tight-bold.ttf') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Agrandir';
  src: url('/Assets/Fonts/Agrandir_Font_Family/agrandir-tight-heavy.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
}

@font-face {
  font-family: 'Agrandir';
  src: url('/Assets/Fonts//Agrandir_Font_Family/agrandir-tight-bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'Agrandir';
  src: url('/Assets/Fonts/Agrandir_Font_Family/agrandir-tight-medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Agrandir';
  src: url('/Assets/Fonts/Agrandir_Font_Family/agrandir-tight-light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'Agrandir';
  src: url('/Assets/Fonts/Agrandir_Font_Family/agrandir-tight-thin.ttf') format('truetype');
  font-weight: 100;
  font-style: normal;
}

/* === RESET & BASE === */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Agrandir', sans-serif;
  background-color: #fff;
  color: #000;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

.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;
}

.bold {
  font-weight: 900;
}

.tight {
  font-weight: 300;
}

.h2, .cta-button {
  font-weight: 700;
}

.subtitle, nav a {
  font-weight: 500;
}

p, .bio-text {
  font-weight: 300;
}

.caption, .footer-note {
  font-weight: 100;
}

/* === FOOTER === */
.footer {
  background-color: #000;
  color: #f4f4f4;
  padding: 1.5rem 1.5rem 2rem 1.5rem;
  font-size: 0.9rem;
  position: relative;
  z-index: 10;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 0 auto;
  gap: 2rem;
}

.footer-top {
  display: flex;
  align-items: center;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.footer-brand {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.footer-logo {
  height: 300px;
  margin-right: 5rem;
  margin-left: 2rem;
}

.footer-message {
  display: flex;
  flex-direction: column;
}

.footer-title {
  font-size: 4.5rem;
  font-weight: 700;
  margin: 0;
  padding-left: 1.5rem;
}

.footer-socials {
  display: flex;
}

.footer-socials img {
  height: 85px;
  width: 85px;
}

.footer-socials img:hover {
  transform: scale(1.15);
  transition: transform 0.3s ease;
}

.footer-store-buttons {
  display: flex;
  gap: 5rem;
  padding-left: 1.5rem;
}

.footer-store-buttons img {
  height: 56px;
  width: auto;
}

.store-badge {
  height: 60px;
  transition: transform 0.3s ease;
}

.store-badge:hover {
  transform: scale(1.15);
}

.footer-right {
  margin-right: 4rem;
  margin-top: 1rem;
}

.footer-right h3 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  font-size: 1.5rem;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #a86daa;
}

.footer-bottom {
  border-top: 1px solid #333;
  margin-top: 2rem;
  padding-top: 1rem;
  text-align: center;
  font-size: 0.8rem;
  color: #ccc;
}

.footer-bottom a {
  color: #ccc;
  text-decoration: none;
}

.footer-bottom a:hover {
  color: #a86daa;
}

@media (max-width: 1024px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding: 2rem 1rem;
  }

  .footer-top {
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 2rem;
  }

  .footer-logo {
    height: 180px;
    margin: 0 auto 1.5rem auto;
  }

  .footer-title {
    font-size: 3rem;
    margin-bottom: 1rem;
  }

  .footer-socials {
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer-socials img {
    height: 50px;
    width: 50px;
  }

  .footer-store-buttons {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;
  }

  .footer-right {
    text-align: center;
    margin: 0;
  }

  .footer-right h3 {
    font-size: 3rem;
    margin-bottom: 1rem;
  }

  .footer-links li {
    margin-bottom: 1rem;
  }

  .footer-bottom {
    font-size: 0.75rem;
    padding: 1rem 1rem 0;
  }
}