/* ==========================================================================
   Design System & Tokens (Gold & Dark Theme)
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;1,700&display=swap');
:root {
  --bg-dark: #0a0a0a;
  --bg-darker: #050505;
  --bg-panel: rgba(20, 20, 20, 0.7);
  --glass-border: rgba(255, 255, 255, 0.05);
  
  --accent-gold: #d4af37;
  --accent-gold-hover: #f3ce56;
  --accent-gold-muted: rgba(212, 175, 55, 0.15);
  
  --text-primary: #ffffff;
  --text-secondary: #a0a0a0;
  --text-muted: #666666;
  
  --font-heading: 'Josefin Sans', sans-serif;
  --font-body: 'Outfit', sans-serif;
  
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

ul {
  list-style: none;
}

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

/* ==========================================================================
   Typography Utilities
   ========================================================================== */
.gradient-text {
  background: linear-gradient(135deg, #f9f295 0%, #e0aa3e 50%, #e0aa3e 50%, #b38728 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

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

.section-header h2 {
  font-size: 2.5rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--text-secondary);
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 4px;
  transition: all var(--transition-normal);
  cursor: pointer;
  border: none;
  outline: none;
}

.btn-primary {
  background: var(--accent-gold);
  color: var(--bg-darker);
  box-shadow: 0 4px 14px var(--accent-gold-muted);
}

.btn-primary:hover {
  background: var(--accent-gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.25);
}

.btn-secondary {
  background: transparent;
  color: var(--accent-gold);
  border: 1px solid var(--accent-gold);
}

.btn-secondary:hover {
  background: var(--accent-gold-muted);
}

/* ==========================================================================
   Navigation
   ========================================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem 0;
  transition: all var(--transition-normal);
  background: rgba(5, 5, 5, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--glass-border);
}

.navbar.scrolled {
  /* Keep same styling so it remains static */
  padding: 1rem 0;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-link {
  text-decoration: none;
  display: inline-block;
}

.logo-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.logo-top, .logo-bottom, .logo-flourish {
  font-family: 'Playfair Display', serif;
  background: linear-gradient(to bottom, #fff2b2 0%, #d4af37 50%, #997a00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0px 3px 3px rgba(0,0,0,0.8));
}

.logo-top {
  font-size: 2.2rem;
  letter-spacing: 2px;
  font-weight: 700;
  margin-bottom: -4px;
}

.logo-bottom {
  font-size: 1.8rem;
  letter-spacing: 1px;
  font-weight: 700;
}

.logo-flourish {
  font-size: 1.2rem;
  margin-top: 4px;
  letter-spacing: 4px;
}

/* Adjust sizes for header */
.navbar .logo-top { font-size: 1.8rem; }
.navbar .logo-bottom { font-size: 1.4rem; }
.navbar .logo-flourish { font-size: 0.9rem; }

/* Adjust sizes for footer */
.footer-brand .logo-top { font-size: 2.4rem; }
.footer-brand .logo-bottom { font-size: 2rem; }
.footer-brand .logo-flourish { font-size: 1.3rem; margin-top: 8px; }

.nav-menu {
  display: flex;
  gap: 2.5rem;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-secondary);
  position: relative;
}

.nav-link:hover, .nav-link.active {
  color: var(--accent-gold);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-gold);
  transition: width var(--transition-normal);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-login {
  font-family: var(--font-heading);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9375rem;
}

.nav-login:hover {
  color: var(--accent-gold);
}

.hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  width: 30px;
  height: 30px;
  cursor: pointer;
  z-index: 1100;
}

.hamburger svg {
  fill: currentColor;
  width: 100%;
  height: 100%;
}

/* Mobile Nav */
.mobile-nav-panel {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: var(--bg-darker);
  z-index: 1050;
  padding: 6rem 2rem 2rem;
  transition: right var(--transition-normal);
  border-left: 1px solid var(--glass-border);
  display: flex;
  flex-direction: column;
}

.mobile-nav-panel.open {
  right: 0;
}

.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(4px);
  z-index: 1040;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.mobile-overlay.open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.mobile-link {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.mobile-link:hover {
  color: var(--accent-gold);
}

.mobile-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: auto;
}

@media (max-width: 992px) {
  .nav-menu, .nav-actions { display: none; }
  .hamburger { display: block; }
}

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

.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(10,10,10,0.4) 0%, rgba(5,5,5,0.9) 100%);
  z-index: 1;
}

@keyframes kenBurns {
  0% { transform: scale(1) translate(0, 0); }
  50% { transform: scale(1.1) translate(-1%, -1%); }
  100% { transform: scale(1) translate(0, 0); }
}

.hero-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
  z-index: 0;
  filter: contrast(1.1);
  animation: kenBurns 40s ease-in-out infinite;
  transform-origin: center center;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 750px;
  margin: 0 auto;
}

.hero h1 {
  font-size: clamp(3rem, 8vw, 5.5rem);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero p {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
  letter-spacing: 1px;
}

/* ==========================================================================
   Features Section (Why Choose Us)
   ========================================================================== */
.features {
  padding: 8rem 0;
  background-image: linear-gradient(rgba(10, 10, 10, 0.95), rgba(10, 10, 10, 0.95)), url('assets/bg_features.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
}

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

.feature-card {
  background: rgba(20, 20, 20, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(212,175,55,0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.feature-card:hover {
  transform: translateY(-10px);
  border-color: rgba(212,175,55,0.3);
  box-shadow: 0 15px 35px rgba(0,0,0,0.5), 0 0 20px rgba(212,175,55,0.1);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon-wrapper {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, rgba(212,175,55,0.2) 0%, rgba(212,175,55,0.05) 100%);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
  position: relative;
  z-index: 1;
  transition: transform 0.4s ease;
}

.feature-card:hover .feature-icon-wrapper {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 0 15px rgba(212,175,55,0.3);
}

.feature-icon-wrapper svg {
  width: 32px;
  height: 32px;
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  font-family: var(--font-heading);
  letter-spacing: 1px;
  color: #fff;
  position: relative;
  z-index: 1;
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

/* ==========================================================================
   Digital Stores Section
   ========================================================================== */
.stores {
  padding: 6rem 0;
  background-image: linear-gradient(rgba(10, 10, 10, 0.95), rgba(10, 10, 10, 0.95)), url('assets/bg_stores.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
}

.stores::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--glass-border), transparent);
}

.stores-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.store-card {
  background: var(--bg-panel);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 3rem 2rem;
  text-align: center;
  transition: all var(--transition-normal);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.store-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-gold);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.store-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--accent-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-normal);
}

.store-card:hover::after {
  transform: scaleX(1);
}

.store-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  transition: transform var(--transition-fast);
}

.store-card:hover .store-icon {
  transform: scale(1.1);
}

.store-name {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.store-desc {
  display: block;
  color: var(--text-secondary);
  font-size: 0.9375rem;
}

.about-bg {
  padding: 8rem 0;
  background-image: linear-gradient(rgba(10, 10, 10, 0.95), rgba(10, 10, 10, 0.90)), url('assets/bg_about.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.terms-bg {
  background-image: linear-gradient(rgba(10, 10, 10, 0.95), rgba(10, 10, 10, 0.95)), url('assets/bg_terms.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.faq-bg {
  background-image: linear-gradient(rgba(10, 10, 10, 0.95), rgba(10, 10, 10, 0.95)), url('assets/bg_faq.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.contact-bg {
  background-image: linear-gradient(rgba(10, 10, 10, 0.95), rgba(10, 10, 10, 0.95)), url('assets/bg_contact_page.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.privacy-bg {
  background-image: linear-gradient(rgba(10, 10, 10, 0.95), rgba(10, 10, 10, 0.95)), url('assets/bg_privacy.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.cookies-bg {
  background-image: linear-gradient(rgba(10, 10, 10, 0.95), rgba(10, 10, 10, 0.95)), url('assets/bg_stores.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.about-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-panel);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  box-shadow: 0 30px 60px rgba(0,0,0,0.6), 0 0 40px rgba(212, 175, 55, 0.1);
  max-width: 1100px;
  margin: 0 auto;
}

@media (min-width: 992px) {
  .about-card {
    /* Image on left, content on right */
    flex-direction: row;
  }
}

.about-visual {
  flex: 1;
  width: 100%;
  min-height: 400px;
}

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

.about-content {
  flex: 1;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-content h2 {
  font-size: 2.5rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  font-family: var(--font-heading);
}

.about-content p {
  color: var(--text-secondary);
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
  text-align: justify;
}

.about-content p:last-child {
  margin-bottom: 0;
  text-align: left;
  font-weight: 600;
  color: var(--accent-gold);
  font-size: 1.25rem;
  margin-top: 2rem;
}

@media (max-width: 992px) {
  .about-content { padding: 3rem 2rem; text-align: center; }
  .about-content p:last-child { text-align: center; }
}

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

.feature-box {
  background: var(--bg-panel);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 2.5rem;
  transition: transform var(--transition-normal);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.feature-box:hover {
  transform: translateY(-5px);
  border-color: var(--accent-gold-muted);
}

.feature-box h3 {
  color: var(--accent-gold);
  font-family: var(--font-heading);
  margin-bottom: 1rem;
  font-size: 1.25rem;
  letter-spacing: 1px;
}

.feature-box p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-panel);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.faq-question {
  color: var(--accent-gold);
  font-family: var(--font-heading);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.faq-answer {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
}

/* ==========================================================================
   Reviews Section
   ========================================================================== */
.reviews {
  padding: 6rem 0;
  background-image: linear-gradient(rgba(10, 10, 10, 0.85), rgba(10, 10, 10, 0.95)), url('assets/bg_reviews.jpg');
  background-size: cover;
  background-position: center center;
  position: relative;
  overflow: hidden;
}

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

.review-card {
  background: linear-gradient(145deg, rgba(30, 30, 30, 0.6), rgba(15, 15, 15, 0.8));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
  position: relative;
  backdrop-filter: blur(8px);
}

.review-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212,175,55,0.4);
  box-shadow: 0 20px 40px rgba(0,0,0,0.5), 0 0 20px rgba(212,175,55,0.15);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 1.5rem;
}

.reviewer-avatar {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d4af37, #997a00);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.reviewer-info {
  display: flex;
  flex-direction: column;
}

.review-author {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
  letter-spacing: 0.5px;
}

.review-role {
  font-size: 0.85rem;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 2px;
}

.stars {
  display: flex;
  gap: 6px;
  margin-bottom: 1.5rem;
}

.stars svg {
  width: 20px;
  height: 20px;
  color: #d4af37;
  filter: drop-shadow(0 0 4px rgba(212,175,55,0.5));
}

.review-text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #e0e0e0;
  font-style: italic;
  position: relative;
  padding-left: 10px;
  border-left: 3px solid rgba(212,175,55,0.5);
}

/* ==========================================================================
   Home Contact Section
   ========================================================================== */
.home-contact {
  padding: 6rem 0;
  background-image: linear-gradient(rgba(10, 10, 10, 0.95), rgba(10, 10, 10, 0.85)), url('assets/bg_contact.jpg');
  background-size: cover;
  background-position: center center;
  position: relative;
}

.home-contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--glass-border), transparent);
}

.home-contact-wrapper {
  max-width: 700px;
  margin: 0 auto;
  background: var(--bg-panel);
  padding: 4rem;
  border-radius: 16px;
  border: 1px solid var(--glass-border);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  text-align: center;
}

.home-contact-wrapper h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  margin-bottom: 1rem;
  letter-spacing: 1px;
}

.home-contact-wrapper p {
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
}

@media (max-width: 768px) {
  .home-contact-wrapper { padding: 3rem 2rem; }
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  background: var(--bg-darker);
  padding: 3rem 0 1rem;
  border-top: 1px solid var(--glass-border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand p {
  color: var(--text-secondary);
  margin-top: 1.5rem;
  max-width: 400px;
}

.footer-column h4 {
  font-size: 1rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--text-secondary);
  font-size: 0.9375rem;
}

.footer-links a:hover {
  color: var(--accent-gold);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid var(--glass-border);
  color: var(--text-muted);
  font-size: 0.875rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-legal-links {
  display: flex;
  gap: 1.5rem;
}

.footer-legal-links a:hover {
  color: var(--text-primary);
}

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ==========================================================================
   Standard Page Layout (Terms, FAQ, Contact, About)
   ========================================================================== */
.page-header {
  padding: 10rem 0 5rem;
  background: var(--bg-darker);
  text-align: center;
  border-bottom: 1px solid var(--glass-border);
}

.page-header h1 {
  font-size: 3rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.page-content {
  padding: 5rem 0;
  max-width: 800px;
  margin: 0 auto;
}

/* Text Content Styling */
.text-content h2 { margin: 2.5rem 0 1rem; font-size: 1.75rem; color: var(--accent-gold); }
.text-content h3 { margin: 2rem 0 1rem; font-size: 1.25rem; }
.text-content p { color: var(--text-secondary); margin-bottom: 1.5rem; }
.text-content ul { list-style: disc; padding-left: 1.5rem; margin-bottom: 1.5rem; color: var(--text-secondary); }
.text-content li { margin-bottom: 0.5rem; }
.text-content a { color: var(--accent-gold); text-decoration: underline; }

/* Contact Form */
.contact-form {
  background: var(--bg-panel);
  padding: 3rem;
  border-radius: 12px;
  border: 1px solid var(--glass-border);
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-secondary);
}

.form-input {
  width: 100%;
  padding: 1rem;
  background: rgba(0,0,0,0.5);
  border: 1px solid var(--glass-border);
  border-radius: 4px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: all var(--transition-fast);
}

.form-input:focus {
  outline: none;
  border-color: var(--accent-gold);
  background: rgba(0,0,0,0.8);
}

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

/* ==========================================================================
   Animations
   ========================================================================== */
[data-animate] {
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-animate="fade-up"] { transform: translateY(40px); }
[data-animate="fade-in"] { transform: translateY(0); }

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }

/* ==========================================================================
   Responsive Overrides for Mobile and Tablets (SEAMusic)
   ========================================================================== */

/* Fix giant headers on mobile */
.hero-content h1 {
    font-size: clamp(2rem, 6vw, 3.5rem) !important;
}

.page-header h1 {
    font-size: clamp(2rem, 6vw, 3rem) !important;
}

.about-content h2, .text-content h2, .section-title h2 {
    font-size: clamp(1.8rem, 5vw, 2.5rem) !important;
}

/* Hide logo when mobile menu is open */
.nav-menu.active ~ .logo,
.navbar.menu-open .logo {
    display: none !important;
}

/* Fix main container padding on mobile */
@media (max-width: 768px) {
    .container {
        padding: 0 1.25rem !important;
    }
    
    .page-content {
        padding: 2.5rem 0 !important;
    }
    
    .page-header {
        padding: 6rem 0 3rem !important;
    }
    
    /* Contact form spacing */
    .contact-form {
        padding: 1.5rem !important;
    }
    
    /* Ensure About page visual doesn't take too much height */
    .about-visual {
        min-height: 250px !important;
    }
}
