/*
Theme Name: Ebo Stinger
Theme URI: https://ebostinger.com
Author: Ebo Stinger
Author URI: https://ebostinger.com
Description: A beautiful one-page WordPress theme for Contemporary Christian artist Ebo Stinger, featuring warm organic design, album showcase, and contact form. All content is customizable through the WordPress Customizer.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ebo-stinger
Tags: one-column, custom-colors, custom-menu, featured-images, theme-options, translation-ready
*/

/* 
 * Design Philosophy: Organic Modernism with Southern Gospel Warmth
 * Color Palette: Warm creams, golden honey, sage green, deep earth browns
 * Typography: Playfair Display (serif) + Inter (sans-serif)
 */

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

:root {
  --color-background: #FAF8F5;
  --color-foreground: #3E2723;
  --color-primary: #D4A574;
  --color-secondary: #8B9D83;
  --color-muted: #F0EDE6;
  --color-border: #E0DDD5;
  --font-serif: 'Playfair Display', serif;
  --font-sans: 'Inter', sans-serif;
}

body {
  font-family: var(--font-sans);
  color: var(--color-foreground);
  background-color: var(--color-background);
  line-height: 1.6;
  font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.2;
}

h1 { font-size: 4rem; }
h2 { font-size: 3rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  opacity: 0.8;
}

img {
  max-width: 100%;
  height: auto;
}

/* Container */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.hero-background {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(250, 248, 245, 0.6), rgba(250, 248, 245, 0.8), rgba(250, 248, 245, 1));
}

.hero-content {
  position: relative;
  z-index: 10;
  padding: 2rem;
  animation: fadeInUp 1s ease-out;
}

.hero-title {
  font-size: clamp(3rem, 8vw, 6rem);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: #6B5D54;
  margin-bottom: 2rem;
  font-weight: 500;
}

.hero-album-box {
  display: inline-block;
  background: rgba(212, 165, 116, 0.1);
  backdrop-filter: blur(10px);
  padding: 2rem 3rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(212, 165, 116, 0.2);
  margin-bottom: 2rem;
}

.hero-album-title {
  font-size: 2rem;
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--color-primary);
  font-weight: 600;
}

.hero-album-meta {
  font-size: 0.875rem;
  color: #6B5D54;
  margin-top: 0.5rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-size: 1.125rem;
  font-weight: 600;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-decoration: none;
}

.btn-primary {
  background-color: var(--color-primary);
  color: #3E2723;
}

.btn-primary:hover {
  background-color: #C49564;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(212, 165, 116, 0.3);
}

.btn-outline {
  background-color: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.btn-outline:hover {
  background-color: rgba(212, 165, 116, 0.1);
}

/* Section Styles */
section {
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  margin-bottom: 1.5rem;
}

.section-divider {
  width: 6rem;
  height: 0.25rem;
  background-color: var(--color-primary);
  margin: 1.5rem auto;
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1.25rem;
  color: #6B5D54;
  max-width: 48rem;
  margin: 0 auto;
}

/* About Section */
.about-section {
  background-color: white;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
}

.about-text {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--color-foreground);
}

.about-text p {
  margin-bottom: 1.5rem;
}

.about-text strong {
  color: var(--color-primary);
  font-weight: 600;
}

.about-image-wrapper {
  position: relative;
}

.about-image {
  aspect-ratio: 1;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  border: 4px solid rgba(212, 165, 116, 0.2);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background-color: var(--color-secondary);
  color: white;
  padding: 1.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(139, 157, 131, 0.2);
}

.about-badge-title {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.about-badge-subtitle {
  font-size: 0.75rem;
  opacity: 0.8;
}

.quote-card {
  background-color: var(--color-muted);
  border: 1px solid rgba(212, 165, 116, 0.2);
  padding: 3rem;
  border-radius: 0.5rem;
  text-align: center;
}

.quote-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.75rem;
  color: var(--color-foreground);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.quote-author {
  color: #6B5D54;
  font-weight: 500;
}

/* Music Section */
.music-section {
  background-color: var(--color-background);
}

.music-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 80rem;
  margin: 0 auto;
}

.album-artwork-wrapper {
  position: sticky;
  top: 2rem;
}

.album-artwork {
  aspect-ratio: 1;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  border: 4px solid rgba(212, 165, 116, 0.2);
  margin-bottom: 1.5rem;
}

.album-artwork img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.album-meta {
  text-align: center;
  margin-bottom: 1rem;
}

.album-release-date {
  font-size: 0.875rem;
  color: #6B5D54;
  margin-bottom: 1rem;
}

.streaming-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.streaming-link {
  padding: 0.5rem 1rem;
  border: 1px solid rgba(212, 165, 116, 0.4);
  border-radius: 0.375rem;
  font-size: 0.875rem;
  color: var(--color-foreground);
  transition: all 0.3s ease;
}

.streaming-link:hover {
  background-color: rgba(212, 165, 116, 0.1);
  border-color: var(--color-primary);
}

.tracklist-wrapper h3 {
  margin-bottom: 1.5rem;
}

.track-list {
  list-style: none;
}

.track-item {
  background-color: white;
  border: 1px solid var(--color-border);
  padding: 1rem;
  border-radius: 0.5rem;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
}

.track-item:hover {
  background-color: rgba(212, 165, 116, 0.05);
  border-color: rgba(212, 165, 116, 0.4);
}

.track-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.track-number {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background-color: rgba(212, 165, 116, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--color-primary);
  font-size: 0.875rem;
  flex-shrink: 0;
}

.track-title {
  font-weight: 600;
  color: var(--color-foreground);
}

.track-duration {
  font-size: 0.875rem;
  color: #6B5D54;
  font-family: monospace;
}

.album-stats {
  margin-top: 2rem;
  padding: 1.5rem;
  background-color: var(--color-muted);
  border-radius: 0.5rem;
  border: 1px solid rgba(212, 165, 116, 0.2);
  text-align: center;
  font-size: 0.875rem;
  color: #6B5D54;
}

/* Contact Section */
.contact-section {
  background-color: white;
}

.contact-form-wrapper {
  max-width: 42rem;
  margin: 0 auto;
}

.contact-form {
  background-color: white;
  padding: 3rem;
  border-radius: 0.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(212, 165, 116, 0.2);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-weight: 600;
  color: var(--color-foreground);
  margin-bottom: 0.5rem;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: 0.375rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.1);
}

.form-textarea {
  resize: vertical;
  min-height: 150px;
}

.form-submit {
  width: 100%;
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.contact-email {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.875rem;
  color: #6B5D54;
}

.contact-email a {
  color: var(--color-primary);
  font-weight: 600;
}

/* Footer */
.site-footer {
  background-color: var(--color-foreground);
  color: var(--color-background);
  padding: 3rem 0;
  text-align: center;
}

.footer-content {
  margin-bottom: 1rem;
}

.footer-title {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.footer-tagline {
  color: rgba(250, 248, 245, 0.8);
  margin-bottom: 1rem;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  padding-top: 1rem;
  flex-wrap: wrap;
}

.footer-link {
  color: rgba(250, 248, 245, 0.6);
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--color-background);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(250, 248, 245, 0.2);
}

.footer-copyright {
  font-size: 0.875rem;
  color: rgba(250, 248, 245, 0.6);
  margin-bottom: 0.5rem;
}

.footer-motto {
  font-size: 0.75rem;
  color: rgba(250, 248, 245, 0.5);
  font-family: var(--font-serif);
  font-style: italic;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }

  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.5rem; }

  .about-grid,
  .music-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-badge {
    position: static;
    margin-top: 1rem;
    display: inline-block;
  }

  .hero-buttons {
    flex-direction: column;
  }

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

  section {
    padding: 3rem 0;
  }

  .contact-form {
    padding: 2rem;
  }
}
