/* Extended CSS for Arcane Overdrive website */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Montserrat+Alternates:wght@400;600;700&display=swap');

/* CSS Variables */
:root {
  --primary-bg: #1a1a1a;
  --text-light: #ffffff;
  --accent-gold: #f1e07a;
  --accent-dark: #3a2419;
  --brown-light: #d5b375;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat Alternates', sans-serif;
  background-color: var(--primary-bg);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Hero Section */
.hero {
  height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: url('/assets/background.webp') center/cover no-repeat;
  text-align: center;
  padding: 2rem;
  background-attachment: fixed;
}

.no-webp .hero {
  background: url('/assets/background.png') center/cover no-repeat;
  background-attachment: fixed;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 26, 26, 0.4),
    rgba(58, 36, 25, 0.3)
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 48px 0 25px;
}

.logo {
  max-width: 1060px;
  width: 100%;
  height: auto;
  margin-top: auto;
  flex-shrink: 0;
}

/* SEO H1 - Hidden for visual design but accessible */
.hero h1 {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Wishlist Section */
.wishlist-button {
  background-image: url('/assets/icons/wishlist.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  width: 80%;
  max-width: 962px;
  margin: 0 auto;
  height: 100px;
  transition: all 0.3s ease;
}

.wishlist-button:hover {
  transform: scale(1.05);
}
.wishlist-button:active {
  transform: scale(1.07);
}

/* Social Icons */
.social-icons {
  width: 50%;
  max-width: 430px;
  background-size: 100%;
  background-repeat: no-repeat;
  background-image: url(/assets/icons/bg-wrapper.svg);
  background-position: center;
  height: 70px;
  margin-left: auto;
  margin-right: 20px;
}

.social-icons-inner {
  width: calc(100% - 188px);

  height: 100%;
  margin: 0 auto;
  gap: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: rgba(241, 224, 122, 0.1);
  border-radius: 50%;
  color: var(--accent-gold);
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.social-icon:hover {
  background: var(--accent-gold);
  color: var(--accent-dark);
  transform: translateY(-3px) scale(1.1);
  border-color: var(--accent-dark);
  box-shadow: 0 8px 20px rgba(241, 224, 122, 0.4);
}

/* Content Sections */
.features-section,
.faq-section {
  padding: 3rem 0;
  background-color: var(--primary-bg);
  color: var(--text-light);

  display: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.features-section h2,
.faq-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2rem;
  color: var(--accent-gold);
  text-transform: uppercase;
}

.features-list {
  list-style: none;
  max-width: 800px;
  margin: 0 auto;
}

.features-list li {
  margin-bottom: 1rem;
  padding: 1rem;
  background: rgba(213, 179, 117, 0.1);
  border-radius: 8px;
  border-left: 4px solid var(--accent-gold);
}

.features-list strong {
  color: var(--accent-gold);
}

.faq-item {
  max-width: 800px;
  margin: 0 auto 2rem;
  padding: 1.5rem;
  background: rgba(213, 179, 117, 0.1);
  border-radius: 8px;
  border: 1px solid var(--brown-light);
}

.faq-item h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--accent-gold);
}

.faq-item p {
  line-height: 1.6;
  color: var(--text-light);
}

.footer {
  background-color: var(--accent-dark);
  padding: 2rem 0;
  text-align: center;
  display: none;
}

/* Copyright */
.copyright-bottom,
.hero-copyright-bottom {
  margin: 0 auto;
  color: var(--text-light);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  margin-bottom: 25px;
}

.hero-copyright-bottom {
  margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero {
    height: 100vh;
    padding: 1rem;
    background-attachment: scroll;
  }

  .hero-content {
    padding: 40px 0 20px;
    gap: 20px;
  }

  .logo {
    max-width: 90%;
    width: 100%;
  }

  .wishlist-button {
    width: 90%;
    max-width: 400px;
    height: 80px;
    background-size: contain;
  }

  .social-icons {
    width: 80%;
    max-width: 350px;
    height: 60px;
    margin-right: auto;
    margin-left: auto;
  }

  .social-icons-inner {
    width: calc(100% - 140px);
    gap: 8px;
  }

  .social-icon {
    width: 40px;
    height: 40px;
  }

  .social-icon img {
    width: 20px;
    height: 20px;
  }

  .copyright-bottom,
  .hero-copyright-bottom {
    font-size: 0.9rem;
    margin-top: 10px;
  }

  /* Content sections mobile */
  .features-section,
  .faq-section {
    padding: 2rem 0;
  }

  .container {
    padding: 0 1rem;
  }

  .features-section h2,
  .faq-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }

  .features-list li,
  .faq-item {
    padding: 1rem;
    margin-bottom: 1rem;
  }

  .faq-item h3 {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 0.5rem;
  }

  .hero-content {
    padding: 78px 0 4px;
    gap: 15px;
  }

  .logo {
    max-width: 95%;
  }

  .wishlist-button {
    width: 95%;
    max-width: 320px;
    height: 70px;
  }

  .social-icons {
    width: 90%;
    max-width: 280px;
    height: 50px;
  }

  .social-icons-inner {
    width: calc(100% - 120px);
    gap: 6px;
  }

  .social-icon {
    width: 35px;
    height: 35px;
  }

  .social-icon img {
    width: 18px;
    height: 18px;
  }

  .copyright-bottom,
  .hero-copyright-bottom {
    font-size: 0.8rem;
  }

  /* Small mobile content sections */
  .features-section h2,
  .faq-section h2 {
    font-size: 1.8rem;
  }

  .features-list li,
  .faq-item {
    padding: 0.8rem;
  }
}

@media (max-width: 360px) {
  .wishlist-button {
    width: 98%;
    max-width: 280px;
    height: 60px;
  }

  .social-icons {
    width: 95%;
    max-width: 240px;
    height: 45px;
  }

  .social-icons-inner {
    width: calc(100% - 100px);
    gap: 4px;
  }

  .social-icon {
    width: 30px;
    height: 30px;
  }

  .social-icon img {
    width: 16px;
    height: 16px;
  }
}

/* Tablet styles */
@media (min-width: 769px) and (max-width: 1024px) {
  .logo {
    max-width: 800px;
  }

  .wishlist-button {
    width: 70%;
    max-width: 700px;
    height: 90px;
  }

  .social-icons {
    width: 60%;
    max-width: 380px;
    height: 65px;
  }

  .social-icons-inner {
    width: calc(100% - 160px);
  }
}

/* Large screens */
@media (min-width: 1200px) {
  .hero-content {
    width: 70%;
  }

  .wishlist-button {
    max-width: 1000px;
    height: 110px;
  }

  .social-icons {
    max-width: 450px;
    height: 75px;
  }
}
