/* ============================================
   AWMP G-Seven Records - Gospel Music & Ministry
   Music. Ministry. Monetization.
   ============================================ */

:root {
  /* Palette: deep liturgical blues, warm gold, cream */
  --color-midnight: #0f172a;
  --color-deep-blue: #1e293b;
  --color-slate: #334155;
  --color-gold: #b8860b;
  --color-gold-light: #d4a84b;
  --color-cream: #faf8f5;
  --color-ivory: #f5f1eb;
  --color-white: #ffffff;
  
  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', system-ui, sans-serif;
  
  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  
  /* Transitions */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --transition: 0.4s var(--ease-out);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--color-slate);
  background: var(--color-cream);
  overflow-x: hidden;
}

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md) var(--space-lg);
  background: rgba(15, 23, 42, 0.278);
  backdrop-filter: blur(2px);
  transition: background var(--transition);
}

.nav.scrolled {
  background: rgba(15, 23, 42, 0.95);
}

.nav__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav__logo img {
  display: block;
  height: 28px;
  width: auto;
}

.nav__cta {
  padding: 0.5rem 1.25rem;
  font-size: 0.9rem;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-2xl) var(--space-lg);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-color: var(--color-midnight);
  background-image: url("img/G7-3.jpg");
  background-size: cover;
  background-position: center;
}

.hero__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.56);
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 80% 50% at 50% 20%, rgba(184, 135, 11, 0.193) 0%, transparent 50%),
    linear-gradient(180deg, rgba(15, 23, 42, 0.877) 0%, rgba(30, 41, 59, 0.614) 100%);
}

.hero__content {
  position: relative;
  text-align: center;
  max-width: 720px;
}

.hero__tagline {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-md);
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--color-white);
  margin-bottom: var(--space-lg);
}

.hero__title em {
  font-style: italic;
  color: var(--color-gold-light);
}

.hero__subtitle {
  font-size: 1.2rem;
  color: var(--color-ivory);
  opacity: 0.9;
  margin-bottom: var(--space-xl);
  font-weight: 300;
}

.hero__cta {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: var(--space-xl);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  color: var(--color-ivory);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  opacity: 0.7;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--color-gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.8); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.875rem 1.75rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}

.btn--primary {
  background: var(--color-gold);
  color: var(--color-midnight);
}

.btn--primary:hover {
  background: var(--color-gold-light);
  transform: translateY(-2px);
}

.btn--secondary {
  background: transparent;
  color: var(--color-white);
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn--secondary:hover {
  border-color: var(--color-gold);
  color: var(--color-gold-light);
}

.btn--full {
  width: 100%;
}

/* Sections */
.section {
  padding: var(--space-2xl) 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.section__label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-sm);
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--color-midnight);
  margin-bottom: var(--space-xl);
}

.section__title em {
  font-style: italic;
  color: var(--color-gold);
}

/* Section intro */
.section__intro {
  max-width: 680px;
  font-size: 1.1rem;
  color: var(--color-slate);
  margin-bottom: var(--space-xl);
  line-height: 1.7;
}

/* About preview */
.about-preview {
  background: var(--color-white);
}

/* Services */
.services {
  background: var(--color-ivory);
}

.services__genres {
  margin-bottom: var(--space-xl);
  color: var(--color-slate);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.service-card {
  background: var(--color-white);
  padding: var(--space-lg);
  border-radius: 8px;
  transition: transform var(--transition);
}

.service-card:hover {
  transform: translateY(-2px);
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--color-midnight);
  margin-bottom: var(--space-sm);
}

.service-card p {
  font-size: 0.95rem;
  color: var(--color-slate);
}

.services .stats {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xl);
  justify-content: center;
}

/* Impact / Projects */
.impact {
  background: var(--color-white);
}

.impact__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-xl);
}

.impact-card {
  text-align: center;
  transition: transform var(--transition);
}

.impact-card:hover {
  transform: translateY(-4px);
}

.impact-card__image {
  aspect-ratio: 4/3;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: var(--space-md);
  background: linear-gradient(135deg, var(--color-deep-blue), var(--color-slate));
}

.impact-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.impact-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--color-midnight);
  margin-bottom: var(--space-sm);
}

.impact-card p {
  font-size: 0.95rem;
  color: var(--color-slate);
}

/* What We Do */
.what-we-do {
  background: var(--color-ivory);
}

.what-we-do__list {
  max-width: 720px;
  list-style: none;
}

.what-we-do__list li {
  padding: var(--space-md) 0;
  padding-left: var(--space-lg);
  border-left: 3px solid var(--color-gold);
  margin-bottom: var(--space-md);
  color: var(--color-slate);
}

.what-we-do__list li:last-child {
  margin-bottom: 0;
}

.what-we-do__list strong {
  color: var(--color-midnight);
}

/* Why Join */
.join {
  background: var(--color-midnight);
  color: var(--color-ivory);
}

.join .section__label {
  color: var(--color-gold-light);
}

.join .section__title {
  color: var(--color-white);
}

.join .section__title em {
  color: var(--color-gold-light);
}

.join__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.join-card {
  padding: var(--space-lg);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  transition: background var(--transition);
}

.join-card:hover {
  background: rgba(255, 255, 255, 0.08);
}

.join-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-gold-light);
  margin-bottom: var(--space-sm);
}

.join-card p {
  font-size: 0.95rem;
  opacity: 0.9;
}

.join__quote {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--color-gold-light);
  margin: var(--space-xl) 0;
  padding-left: var(--space-lg);
  border-left: 4px solid var(--color-gold);
}

.join__quote cite {
  font-size: 0.9rem;
  font-style: normal;
  opacity: 0.8;
}

.join__call {
  font-size: 1.05rem;
  opacity: 0.95;
}

/* Artists */
.artists {
  background: var(--color-white);
}

.artists__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-xl);
}

.artist-card {
  text-align: center;
  transition: transform var(--transition);
}

.artist-card:hover {
  transform: translateY(-4px);
}

.artist-card__image {
  aspect-ratio: 1;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: var(--space-md);
  background: linear-gradient(135deg, var(--color-deep-blue), var(--color-slate));
}

.artist-card__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--color-gold-light);
  opacity: 0.9;
}

.artist-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-midnight);
  margin-bottom: var(--space-xs);
}

.artist-card p {
  font-size: 0.95rem;
  color: var(--color-slate);
}

/* Releases */
.releases {
  background: var(--color-ivory);
}

.releases__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-xl);
}

.release-card {
  transition: transform var(--transition);
}

.release-card:hover {
  transform: translateY(-4px);
}

.release-card__cover {
  position: relative;
  aspect-ratio: 1;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: var(--space-md);
  background: linear-gradient(145deg, var(--color-midnight), var(--color-deep-blue));
}

.release-card__vinyl {
  position: absolute;
  inset: 12%;
  border-radius: 50%;
  background: 
    radial-gradient(circle at 30% 30%, var(--color-slate), var(--color-midnight));
  border: 3px solid var(--color-gold);
}

.release-card__vinyl::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 15%;
  height: 15%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: var(--color-cream);
}

.release-card__info h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--color-midnight);
  margin-bottom: var(--space-xs);
}

.release-card__artist {
  font-size: 0.9rem;
  color: var(--color-slate);
  margin-bottom: var(--space-xs);
}

.release-card__year {
  font-size: 0.8rem;
  color: var(--color-gold);
  font-weight: 500;
}

/* About */
.about {
  background: var(--color-midnight);
  color: var(--color-ivory);
}

.about .section__label {
  color: var(--color-gold-light);
}

.about .section__title {
  color: var(--color-white);
}

.about .section__title em {
  color: var(--color-gold-light);
}

.about__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.about__text {
  margin-bottom: var(--space-md);
  opacity: 0.9;
  font-size: 1.05rem;
}

.about__stats {
  display: flex;
  gap: var(--space-xl);
  margin-top: var(--space-xl);
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat__number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--color-gold);
  line-height: 1;
}

.stat__label {
  font-size: 0.85rem;
  opacity: 0.8;
  margin-top: var(--space-xs);
}

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

.about__stained-glass {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: 
    conic-gradient(from 0deg at 50% 50%,
      var(--color-gold) 0deg 60deg,
      var(--color-deep-blue) 60deg 120deg,
      var(--color-gold-light) 120deg 180deg,
      var(--color-slate) 180deg 240deg,
      var(--color-gold) 240deg 300deg,
      var(--color-deep-blue) 300deg 360deg);
  opacity: 0.4;
  filter: blur(1px);
}

@media (max-width: 768px) {
  .about__container {
    grid-template-columns: 1fr;
  }
  
  .about__visual {
    order: -1;
  }
  
  .about__stained-glass {
    width: 200px;
    height: 200px;
  }
}

/* Contact */
.contact {
  background: var(--color-cream);
}

.contact__intro {
  max-width: 540px;
  margin-bottom: var(--space-lg);
  color: var(--color-slate);
}

.contact__channels {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  align-items: center;
  margin-bottom: var(--space-xl);
}

.contact__link {
  color: var(--color-gold);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transition);
}

.contact__link:hover {
  color: var(--color-gold-light);
  text-decoration: underline;
}

.contact__form {
  max-width: 480px;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-top: var(--space-xl);
  padding-top: var(--space-xl);
  border-top: 1px solid #e2e8f0;
}

.contact__form h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--color-midnight);
  margin-bottom: var(--space-xs);
}

.form__hint {
  font-size: 0.9rem;
  color: var(--color-slate);
  margin-bottom: var(--space-md);
}

.form__group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-midnight);
  margin-bottom: var(--space-xs);
}

.form__group input,
.form__group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  background: var(--color-white);
  transition: border-color var(--transition);
}

.form__group input:focus,
.form__group textarea:focus {
  outline: none;
  border-color: var(--color-gold);
}

.form__group textarea {
  resize: vertical;
  min-height: 120px;
}

/* Footer */
.footer {
  background: var(--color-deep-blue);
  color: var(--color-ivory);
  padding: var(--space-xl) 0;
}

.footer__container {
  text-align: center;
}

.footer__logo {
  display: inline-block;
  text-decoration: none;
  margin-bottom: var(--space-xs);
}

.footer__logo img {
  display: block;
  height: 28px;
  width: auto;
}

.footer__tagline {
  font-size: 0.875rem;
  color: var(--color-gold);
  margin-bottom: var(--space-xs);
}

.footer__location {
  font-size: 0.9rem;
  opacity: 0.85;
  margin-bottom: var(--space-md);
}

.footer__links {
  display: flex;
  justify-content: center;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.footer__links a {
  color: var(--color-ivory);
  text-decoration: none;
  font-size: 0.9rem;
  opacity: 0.9;
  transition: color var(--transition);
}

.footer__links a:hover {
  color: var(--color-gold-light);
}

.footer__copy {
  font-size: 0.8rem;
  opacity: 0.6;
}
