/* ============================================
   Dave Gunning Signature Guitar — Luxury Brand
   ============================================ */

:root {
  --pico-font-family: 'Raleway', sans-serif;
  --pico-font-size: 100%;
  --pico-border-radius: 0.5rem;
  --color-bg: #fafafa;
  --color-text: #1a1a1a;
  --color-muted: #666;
  --color-accent: #1a1a1a;
  --color-accent-hover: #333;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--color-bg);
  color: var(--color-text);
}

/* Announcement Overlay */
.announcement {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.announcement-card {
  position: relative;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-radius: 1rem;
  padding: 2.5rem 3rem;
  max-width: 500px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  color: #1a1a1a;
  font-size: 0.95rem;
  line-height: 1.6;
}

.announcement-card p {
  margin-bottom: 0.5rem;
}

.announcement-card a {
  color: #1a1a1a;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.announcement-close {
  position: absolute;
  top: 0.75rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #666;
  padding: 0.25rem 0.5rem;
  line-height: 1;
}

/* Hero */
.hero {
  padding: 3rem 0 2rem;
  text-align: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-image img {
  width: 100%;
  max-width: 400px;
  border-radius: 1rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.hero-text {
  text-align: left;
}

.hero-text h1 {
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.hero-byline {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-muted);
  margin-bottom: 0.75rem;
}

.windsong-logo {
  height: 128px;
  width: auto;
  opacity: 0.8;
}

/* Introduction */
.intro {
  padding: 3rem 0;
  background: #fff;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.intro-text h2 {
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1.5;
  margin-bottom: 2rem;
}

.intro-image img {
  width: 100%;
  border-radius: 1rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.cta-button {
  display: inline-block;
  background: var(--color-accent);
  color: #fff;
  padding: 1rem 2.5rem;
  border-radius: 100px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: background 0.2s ease;
}

.cta-button:hover {
  background: var(--color-accent-hover);
  color: #fff;
}

/* Values */
.values {
  padding: 4rem 0;
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url('/images/PictouWaterfront_%201920x1080.jpeg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #fff !important;
  text-align: center;
  --pico-color: #fff;
  --pico-h3-color: #fff;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.value h3 {
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: #fff !important;
}

.value p {
  font-weight: 300;
  line-height: 1.8;
  opacity: 0.9;
  color: #fff !important;
}

/* Feature Sections */
.feature {
  padding: 4rem 0;
}

.feature:nth-child(even) {
  background: #fff;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.feature-grid.reverse {
  direction: rtl;
}

.feature-grid.reverse > * {
  direction: ltr;
}

.feature-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 1rem;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
}

.feature-text h2 {
  font-size: 2.2rem;
  font-weight: 300;
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
}

.feature-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--color-muted);
}

/* Pre-order CTA */
.preorder {
  padding: 4rem 0;
  text-align: center;
  background: #1a1a1a;
  color: #fff !important;
}

.preorder h2 {
  font-size: 3rem;
  font-weight: 300;
  margin-bottom: 1.5rem;
  color: #fff !important;
}

.preorder p {
  font-size: 1.1rem;
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.85;
  color: #fff !important;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-grid,
  .intro-grid,
  .feature-grid,
  .feature-grid.reverse {
    grid-template-columns: 1fr;
    gap: 2rem;
    direction: ltr;
  }

  .hero {
    padding: 3rem 0 2rem;
  }

  .hero-text {
    text-align: center;
  }

  .hero-text h1 {
    font-size: 2.2rem;
  }

  .hero-image img {
    max-width: 280px;
    margin: 0 auto;
  }

  .values-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .intro,
  .feature,
  .values,
  .preorder {
    padding: 2rem 0;
  }

  .intro-text h2 {
    font-size: 1.3rem;
  }

  .feature-text h2 {
    font-size: 1.8rem;
  }

  .feature-image img {
    max-width: 100%;
  }

  .preorder h2 {
    font-size: 2rem;
  }
}
