/*
 *    File: css/main.css
 *
 *    Main stylesheet for QRS-DFW website with professional design
 *
 *    Created on: 2 December 2025 00:00 CST
 *    Last edited on: 2 December 2025 15:00 CST
 *
 *    Version: 1.0.0
 *
 *    Author: R. Andrew Ballard "Andwardo"
 *    (c) 2025 R. A. Ballard & Andy Ballard Piano Service. ALL RIGHTS RESERVED.
 *
 */

:root {
  --primary-burgundy: #8B2635;
  --primary-gold: #D4AF37;
  --text-primary: #1d1d1f;
  --text-secondary: #6e6e73;
  --cream: #F5F1E8;
  --cream-light: #FAF8F3;
  --border-color: #d2d2d7;
  --hover-burgundy: #6B1825;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: var(--text-primary);
  background: #FAF8F3;
  line-height: 1.6;
}

html {
  scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; margin-bottom: 1rem; }
h3 { font-size: 1.75rem; }

nav {
  position: sticky;
  top: 0;
  background: rgba(245, 241, 232, 0.98);
  backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  z-index: 1000;
  padding: 1rem 0;
}

nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.logo {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary-burgundy);
  letter-spacing: 0.05em;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

nav a {
  color: #1d1d1f;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s;
  font-weight: 500;
}

nav a:hover {
  color: #8B2635;
}

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

.hero {
  text-align: center;
  padding: 6rem 2rem 5rem;
  background: #FAF8F3;
}

.hero h1 {
  line-height: 1.2;
  margin-bottom: 1rem;
  color: #8B2635;
}

.hero .tagline {
  font-size: 1.5rem;
  color: #1d1d1f;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.hero .subtext {
  font-size: 1.1rem;
  color: #6e6e73;
  margin-bottom: 2rem;
}

.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary {
  background: var(--primary-burgundy);
  color: white;
}

.btn-primary:hover {
  background: var(--hover-burgundy);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(139, 38, 53, 0.3);
}

.btn-secondary {
  background: transparent;
  color: #8B2635;
  border: 2px solid #8B2635;
}

.btn-secondary:hover {
  background: #8B2635;
  color: white;
}

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

section {
  padding: 5rem 0;
}

.services {
  background: #F5F1E8;
}

.services h2, .faq h2, .contact h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background: linear-gradient(135deg, #FAF8F3 0%, #F5F1E8 100%);
  padding: 2.5rem 2rem;
  border-radius: 1rem;
  text-align: center;
  transition: all 0.3s;
  border: 1px solid rgba(139, 38, 53, 0.2);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(139, 38, 53, 0.15);
}

.service-card h3 {
  margin-bottom: 1rem;
  color: #8B2635;
}

.service-card p {
  color: var(--text-secondary);
  line-height: 1.6;
}

.faq-item {
  background: #FAF8F3;
  padding: 2rem;
  margin-bottom: 1.5rem;
  border-radius: 0.75rem;
  border-left: 6px solid #D4AF37;
  box-shadow: 0 4px 15px rgba(139, 38, 53, 0.15);
}

.faq-item h3 {
  color: var(--primary-burgundy);
  margin-bottom: 1rem;
}

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

.faq-item strong {
  color: var(--primary-burgundy);
}

.contact {
  background: #F5F1E8;
}

.contact h2 {
  color: #8B2635;
}

.contact-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
  color: #6e6e73;
  font-size: 1.1rem;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  background: #FAF8F3;
  padding: 3rem;
  border-radius: 0.75rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

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

label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text-primary);
}

input, textarea, select {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid var(--border-color);
  border-radius: 0.5rem;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.2s;
}

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--primary-burgundy);
}

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

.contact-form .btn {
  width: 100%;
  margin-top: 1rem;
}

footer {
  background: linear-gradient(135deg, #1d1d1f 0%, #2d0a10 100%);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  margin-bottom: 1rem;
  color: var(--primary-gold);
  font-size: 1.1rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-section a:hover {
  color: var(--primary-gold);
}

.footer-section p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.footer-bottom {
  border-top: 2px solid #D4AF37;
  padding-top: 2rem;
  text-align: center;
}

.legal-disclaimer {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1rem;
  line-height: 1.5;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.copyright {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }
  
  nav ul {
    gap: 1rem;
  }
  
  nav a {
    font-size: 0.85rem;
  }
  
  .hero {
    padding: 4rem 1.5rem 3rem;
  }
  
  .hero .tagline {
    font-size: 1.2rem;
  }
  
  section {
    padding: 3rem 0;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-form {
    padding: 2rem 1.5rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .btn {
    width: 100%;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
