/* ================================================
   THAEGRIMCLAW — Shared Styles
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800&family=Inter:wght@400;500&display=swap');

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; background: #000; }
body {
  font-family: 'Manrope', sans-serif;
  background: #000;
  color: #fff;
  /* No max-width — section backgrounds must span 100vw */
}
img { display: block; }
a { text-decoration: none; color: inherit; }

/* ---- Variables ---- */
:root {
  --black: #000000;
  --near-black: #0d0d0d;
  --teal: #005765;
  --cyan: #00dcff;
  --white: #ffffff;
}

/* ================================================
   CONTAINER — centered content, max 1080px
   ================================================ */
.container {
  max-width: 1080px;
  margin: 0 auto;
  width: 100%;
}

/* ================================================
   HEADER
   ================================================ */
.site-header {
  background: var(--black);
  padding: 10px 0; /* no horizontal padding — container handles it */
}

.header-inner {
  max-width: 1080px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}

.logo img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  flex-shrink: 0;
}

.logo-text {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 30px;
  letter-spacing: 2.4px;
  line-height: 0.9;
  color: var(--white);
  text-transform: capitalize;
  white-space: nowrap;
}

.header-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}

.header-nav a {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.2;
  color: var(--white);
  text-transform: capitalize;
  white-space: nowrap;
  position: relative;
  transition: color 0.2s ease;
}

.header-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: var(--cyan);
  transition: width 0.25s ease;
}

.header-nav a:hover {
  color: var(--cyan);
}

.header-nav a:hover::after {
  width: 100%;
}

.burger-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
}

.burger-btn img {
  width: 26px;
  height: 12px;
  display: block;
}

/* Mobile navigation drawer */
.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 16px;
  padding: 20px;
  background: var(--black);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.mobile-nav a {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.2;
  color: var(--white);
  text-transform: capitalize;
}

/* ================================================
   BUTTON
   ================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--cyan);
  color: var(--black);
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.2;
  text-transform: capitalize;
  white-space: nowrap;
  border-radius: 30px;
  padding: 14px 40px;
  cursor: pointer;
  border: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(0, 220, 255, 0.4);
}

.btn-wide {
  padding: 14px 60px;
}

/* ================================================
   FOOTER
   ================================================ */
.site-footer {
  background: var(--black);
  padding: 40px 0; /* no horizontal padding — container handles it */
}

.site-footer > .container {
  display: flex;
  flex-direction: column;
  gap: 34px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.footer-right {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 24px;
  font-size: 14px;
  line-height: 1.2;
  color: var(--white);
  white-space: nowrap;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 24px;
  font-size: 14px;
  line-height: 1.2;
  color: var(--white);
  text-transform: capitalize;
  text-align: center;
  white-space: nowrap;
}

.footer-social {
  display: flex;
  gap: 15px;
  align-items: center;
}

.footer-social a {
  display: block;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.footer-social a:hover {
  transform: scale(1.15);
  opacity: 0.8;
}

.footer-social a img {
  width: 40px;
  height: 40px;
}

.footer-divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
}

.footer-copyright {
  text-align: center;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  white-space: nowrap;
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
}

/* ================================================
   COOKIE BANNER
   ================================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: linear-gradient(to bottom, #003d4a, #000000);
  padding: 40px 20px;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-banner__inner {
  max-width: 1080px;
  margin: 0 auto;
}

.cookie-banner__title {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 16px;
}

.cookie-banner__text {
  font-family: 'Manrope', sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 1.5;
  color: var(--white);
  margin-bottom: 10px;
}

.cookie-banner__actions {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}

.cookie-banner__decline {
  background: var(--teal);
  color: var(--white);
}

@media (max-width: 768px) {
  .cookie-banner__title {
    font-size: 28px;
  }

  .cookie-banner__actions {
    flex-direction: column;
    gap: 12px;
  }

  .cookie-banner__actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ================================================
   RESPONSIVE — MOBILE (<= 768px)
   ================================================ */
@media (max-width: 768px) {

  /* Container gets horizontal breathing room on mobile */
  .container {
    padding: 0 20px;
  }

  /* Header — keep 20px h-padding so nav/logo don't touch edges */
  .site-header {
    padding: 10px 0;
  }

  .header-inner {
    padding: 0 20px;
  }

  .logo-text {
    font-size: 24px;
    letter-spacing: 1.92px;
  }

  .header-nav {
    display: none;
  }

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

  /* Footer */
  .site-footer > .container {
    gap: 20px;
    align-items: stretch;
  }

  .footer-top {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }

  .footer-right {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }

  .footer-contact {
    gap: 10px;
    text-align: center;
    width: 100%;
    align-self: center;
  }

  .footer-links {
    flex-direction: row;
    gap: 24px;
    width: 100%;
    justify-content: center;
  }

  .footer-copyright {
    white-space: normal;
    text-align: center;
  }
}
