@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --piano-gold: #d97706;
  --piano-gold-light: #f59e0b;
  --piano-ebony: #1e293b;
  --piano-cream: #fef3c7;
}

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

body {
  font-family: 'Inter', system-ui, sans-serif;
  line-height: 1.6;
  color: #334155;
  background-color: #ffffff;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  line-height: 1.2;
  color: #1e293b;
}

.hero-section {
  background: linear-gradient(135deg, var(--piano-ebony) 0%, #334155 50%, var(--piano-gold) 100%);
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(30, 41, 59, 0.8);
  z-index: 1;
}

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

.service-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(30, 41, 59, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #f1f5f9;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(30, 41, 59, 0.15);
  border-color: var(--piano-gold);
}

.btn-primary {
  background: linear-gradient(135deg, var(--piano-gold) 0%, var(--piano-gold-light) 100%);
  color: #ffffff;
  border: none;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  white-space: nowrap;
  min-height: 44px;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #b45309 0%, var(--piano-gold) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(217, 119, 6, 0.3);
  color: #ffffff;
  text-decoration: none;
}

.btn-secondary {
  background: transparent;
  color: var(--piano-ebony);
  border: 2px solid var(--piano-ebony);
  padding: 12px 30px;
  border-radius: 8px;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  white-space: nowrap;
  min-height: 44px;
}

.btn-secondary:hover {
  background: var(--piano-ebony);
  color: #ffffff;
  transform: translateY(-2px);
  text-decoration: none;
}

.navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #e2e8f0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.navbar-brand {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--piano-ebony);
  text-decoration: none;
}

.nav-link {
  color: #475569;
  text-decoration: none;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.nav-link:hover {
  color: var(--piano-gold);
  background: rgba(217, 119, 6, 0.1);
  text-decoration: none;
}

.nav-link.active {
  color: var(--piano-gold);
  background: rgba(217, 119, 6, 0.15);
}

.footer {
  background: var(--piano-ebony);
  color: #cbd5e1;
  padding: 60px 0 40px 0;
}

.footer h3 {
  color: #ffffff;
  margin-bottom: 20px;
}

.footer a {
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.testimonial-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(30, 41, 59, 0.08);
  border-left: 4px solid var(--piano-gold);
}

.contact-form {
  background: #ffffff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(30, 41, 59, 0.1);
}

.form-group {
  margin-bottom: 24px;
}

.form-control {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-size: 16px;
  transition: all 0.3s ease;
  background: #ffffff;
  color: #334155;
}

.form-control:focus {
  outline: none;
  border-color: var(--piano-gold);
  box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.1);
}

.form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--piano-ebony);
}

.cookie-consent-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(30, 41, 59, 0.2);
  padding: 24px;
  max-width: 400px;
  z-index: 1000;
  border: 1px solid #e2e8f0;
}

.cookie-consent-banner h4 {
  font-size: 18px;
  margin-bottom: 12px;
  color: var(--piano-ebony);
}

.cookie-consent-banner p {
  font-size: 14px;
  color: #64748b;
  margin-bottom: 20px;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-accept {
  background: var(--piano-gold);
  color: #ffffff;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  min-height: 40px;
}

.cookie-accept:hover {
  background: #b45309;
}

.cookie-decline {
  background: transparent;
  color: #64748b;
  border: 2px solid #e2e8f0;
  padding: 8px 18px;
  border-radius: 6px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  min-height: 40px;
}

.cookie-decline:hover {
  background: #f1f5f9;
  color: #334155;
}

.section-spacing {
  padding: 80px 0;
}

.section-spacing-sm {
  padding: 60px 0;
}

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

.text-gradient {
  background: linear-gradient(135deg, var(--piano-gold) 0%, var(--piano-gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-title {
  font-size: 42px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 60px;
  color: var(--piano-ebony);
}

.mobile-menu {
  display: none;
}

@media (max-width: 768px) {
  .section-spacing {
    padding: 60px 0;
  }
  
  .section-spacing-sm {
    padding: 40px 0;
  }
  
  .section-title {
    font-size: 32px;
    margin-bottom: 40px;
  }
  
  .hero-content h1 {
    font-size: 42px;
  }
  
  .cookie-consent-banner {
    bottom: 10px;
    right: 10px;
    left: 10px;
    max-width: none;
  }
  
  .cookie-buttons {
    justify-content: stretch;
  }
  
  .cookie-accept,
  .cookie-decline {
    flex: 1;
    text-align: center;
  }
}

.expanded-content {
  display: none;
  margin-top: 20px;
  padding: 20px;
  background: #f8fafc;
  border-radius: 8px;
}

.read-more-btn {
  background: none;
  border: none;
  color: var(--piano-gold);
  font-weight: 600;
  cursor: pointer;
  text-decoration: underline;
  padding: 8px 0;
  font-size: 16px;
}

.read-more-btn:hover {
  color: #b45309;
}