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

:root {
  --font-display: "Inter", sans-serif;
  --font-sans: "Inter", sans-serif;
  --color-brand: #FACC15; /* GodNation Gold */
  --color-dark: #AA2B24; /* GodNation Red */
  --color-light: #F4F4F4;
  --color-gray: #d1d5db;
  --color-gray-dark: #9ca3af;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--color-dark);
  color: var(--color-light);
  font-family: var(--font-sans);
  overflow-x: hidden;
  line-height: 1.5;
  min-height: 100vh;
}

::selection {
  background-color: var(--color-brand);
  color: #000;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--color-dark);
}
::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.3);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-brand);
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

/* Typography */
.font-display {
  font-family: var(--font-display);
  font-weight: 900;
}

.text-stroke {
  -webkit-text-stroke: 1px var(--color-light);
  color: transparent;
  transition: all 0.3s ease;
}
.text-stroke:hover {
  color: var(--color-light);
  -webkit-text-stroke: 0px;
}

.text-brand {
  color: var(--color-brand);
}

.uppercase {
  text-transform: uppercase;
}

.tracking-widest {
  letter-spacing: 0.1em;
}

.tracking-tight {
  letter-spacing: -0.02em;
}

/* Layout & Components */
.container {
  padding: 0 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .container {
    padding: 0 3rem;
  }
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 50;
}

.header-logo {
  display: flex;
  align-items: center;
}
.header-logo img {
  height: 140px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
  transition: transform 0.3s ease;
}
.header-logo:hover img {
  transform: scale(1.05);
}

.header-lang {
  display: flex;
  gap: 1rem;
  font-size: 0.875rem;
  font-weight: 600;
}
.header-lang a:hover {
  color: var(--color-brand);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 8rem;
  padding-bottom: 3rem;
}

.hero-bg-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 150%;
  max-width: 1000px;
  z-index: 0;
  pointer-events: none;
  animation: pulse-logo 8s infinite alternate ease-in-out;
}

.hero-bg-logo img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 0 20px var(--color-brand));
}

@keyframes pulse-logo {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.05;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.05);
    opacity: 0.15;
  }
}

.hero-content {
  position: relative;
  z-index: 10;
}

.hero h1 {
  font-size: 15vw;
  line-height: 0.8;
  margin: 0;
}

.hero-scroll {
  position: absolute;
  bottom: 3rem;
  right: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  z-index: 10;
}
@media (min-width: 768px) {
  .hero-scroll {
    right: 3rem;
  }
}
.hero-scroll:hover {
  color: var(--color-brand);
}

/* About Section */
.about {
  padding-top: 6rem;
  padding-bottom: 6rem;
  max-width: 64rem;
}
@media (min-width: 768px) {
  .about {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
}

.about-title {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .about-title {
    font-size: 2.25rem;
  }
}
@media (min-width: 1024px) {
  .about-title {
    font-size: 3rem;
  }
}

.about-text {
  margin-top: 2rem;
  font-size: 1.125rem;
  color: var(--color-gray);
  max-width: 48rem;
}
@media (min-width: 768px) {
  .about-text {
    font-size: 1.25rem;
  }
}

.about-subtitle {
  margin-top: 2rem;
  font-size: 1.125rem;
  font-weight: 600;
}
@media (min-width: 768px) {
  .about-subtitle {
    font-size: 1.25rem;
  }
}

/* Media Break */
.media-break {
  width: 100%;
  height: 60vh;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .media-break {
    height: 80vh;
  }
}

.media-break img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
  transition: transform 1s ease;
}
.media-break:hover img {
  transform: scale(1.05);
}

.media-break-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: white;
  backdrop-filter: blur(4px);
  cursor: pointer;
  transition: all 0.3s ease;
}
.media-break:hover .media-break-btn {
  background: white;
  color: var(--color-dark);
  transform: translate(-50%, -50%) scale(1.1);
}

/* Section Grid Layout */
.section-grid {
  padding-top: 6rem;
  padding-bottom: 6rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 768px) {
  .section-grid {
    padding-top: 8rem;
    padding-bottom: 8rem;
    grid-template-columns: repeat(12, 1fr);
  }
  .section-grid > .col-4 {
    grid-column: span 4 / span 4;
  }
  .section-grid > .col-8 {
    grid-column: span 8 / span 8;
  }
}

.sticky-title {
  font-size: 3rem;
  line-height: 0.85;
}
@media (min-width: 768px) {
  .sticky-title {
    position: sticky;
    top: 6rem;
    font-size: 4.5rem;
  }
}

/* Lineup List */
.lineup-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.lineup-item {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
@media (min-width: 768px) {
  .lineup-item {
    flex-direction: row;
  }
}

.lineup-number {
  font-size: 2.25rem;
  transition: transform 0.3s ease;
}
@media (min-width: 768px) {
  .lineup-number {
    width: 4rem;
    flex-shrink: 0;
  }
}
.lineup-item:hover .lineup-number {
  transform: translateX(0.5rem);
}

.lineup-image-wrapper {
  width: 8rem;
  height: 10rem;
  flex-shrink: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  position: relative;
}
@media (min-width: 768px) {
  .lineup-image-wrapper {
    width: 9rem;
    height: 12rem;
  }
}

.lineup-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: all 0.7s ease;
}
.lineup-item:hover .lineup-image-wrapper img {
  filter: grayscale(0%);
  transform: scale(1.05);
}

.lineup-image-border {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: border-color 0.5s ease;
}
.lineup-item:hover .lineup-image-border {
  border-color: var(--color-brand);
}

.lineup-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.lineup-name {
  font-size: 1.875rem;
}
@media (min-width: 768px) {
  .lineup-name {
    font-size: 2.25rem;
  }
}

.lineup-role {
  font-size: 0.875rem;
  font-family: var(--font-sans);
  display: block;
  margin-top: 0.5rem;
}
@media (min-width: 768px) {
  .lineup-role {
    display: inline;
    margin-top: 0;
    margin-left: 1rem;
  }
}

.lineup-desc {
  font-size: 1.125rem;
  color: var(--color-gray);
  margin-top: 1rem;
}

/* Domination Section */
.bg-darker {
  background-color: rgba(0, 0, 0, 0.2);
}
.domination-text {
  font-size: 1.25rem;
  color: #f3f4f6;
}
@media (min-width: 768px) {
  .domination-text {
    font-size: 1.5rem;
  }
}
.domination-text p {
  margin-bottom: 2rem;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem 2rem;
}
@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.feature-title {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  color: white;
}
.feature-desc {
  color: var(--color-gray);
}

/* Location Section */
.location {
  padding-top: 6rem;
  padding-bottom: 6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}
@media (min-width: 768px) {
  .location {
    flex-direction: row;
    align-items: center;
  }
}

.location-title {
  font-size: 3rem;
  line-height: 0.85;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .location-title {
    font-size: 4.5rem;
    margin-bottom: 0;
  }
}

.location-info {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.5rem;
  font-weight: 500;
}
@media (min-width: 768px) {
  .location-info {
    text-align: right;
  }
}

/* CTA Section */
.cta {
  background-color: var(--color-brand);
  color: black;
  padding-top: 6rem;
  padding-bottom: 6rem;
}
@media (min-width: 768px) {
  .cta {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
}

.cta-content {
  max-width: 56rem;
}

.cta-title {
  font-size: 3.75rem;
  line-height: 0.85;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .cta-title {
    font-size: 6rem;
  }
}

.cta-text {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .cta-text {
    font-size: 1.875rem;
  }
}

.cta-text a {
  text-decoration: underline;
}
.cta-text a:hover {
  color: white;
}

.cta-subtext {
  font-size: 1.25rem;
  font-weight: 500;
  opacity: 0.8;
}

/* Legacy Section */
.legacy {
  padding-top: 6rem;
  padding-bottom: 6rem;
}
@media (min-width: 768px) {
  .legacy {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
}

.legacy-title {
  font-size: 3rem;
  line-height: 0.85;
  margin-bottom: 4rem;
}
@media (min-width: 768px) {
  .legacy-title {
    font-size: 4.5rem;
  }
}

.legacy-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  margin: 0 -1rem;
  transition: background-color 0.3s ease;
}
@media (min-width: 768px) {
  .legacy-item {
    flex-direction: row;
    align-items: center;
  }
}
.legacy-item:hover {
  background-color: rgba(255, 255, 255, 0.05);
}

.legacy-item-title {
  font-size: 1.875rem;
  transition: color 0.3s ease;
}
@media (min-width: 768px) {
  .legacy-item-title {
    font-size: 3rem;
  }
}
.legacy-item:hover .legacy-item-title {
  color: var(--color-brand);
}

.legacy-item-info {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 1rem;
}
@media (min-width: 768px) {
  .legacy-item-info {
    margin-top: 0;
  }
}

.legacy-year {
  font-size: 1.25rem;
  font-family: monospace;
  color: var(--color-gray);
}

.legacy-icon {
  opacity: 0;
  color: var(--color-brand);
  transition: opacity 0.3s ease;
}
.legacy-item:hover .legacy-icon {
  opacity: 1;
}

/* Footer */
footer {
  padding-top: 3rem;
  padding-bottom: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}
@media (min-width: 768px) {
  footer {
    flex-direction: row;
  }
}

.footer-links {
  display: flex;
  gap: 2rem;
  font-size: 1.25rem;
}
.footer-links a:hover {
  color: var(--color-brand);
}

.footer-copy {
  font-size: 0.875rem;
  color: var(--color-gray);
  font-weight: 500;
  text-align: center;
}
@media (min-width: 768px) {
  .footer-copy {
    text-align: right;
  }
}
.footer-copy p {
  margin-bottom: 0.5rem;
}

/* Animations */
.fade-up {
  opacity: 0;
  transform: translateY(2rem);
  transition: opacity 1s ease-out, transform 1s ease-out;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in {
  opacity: 0;
  transition: opacity 1s ease-out;
}
.fade-in.visible {
  opacity: 1;
}

.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }
.delay-400 { transition-delay: 400ms; }
.delay-500 { transition-delay: 500ms; }
