/* style.css – Premium Physician Hub - Kintsugi Aesthetic */

/* Reset & base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #0a0a0a;
  color: #d4d4d4;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .font-display {
  font-family: 'Playfair Display', serif;
}

/* Glassmorphism hero */
.hero {
  position: relative;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(212,175,55,0.05) 0%, #0a0a0a 70%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 2rem;
}

.hero-title {
  font-size: 4rem;
  color: #ffffff;
  font-weight: 700;
  line-height: 1.1;
  text-shadow: 0 0 40px rgba(212, 175, 55, 0.2);
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-top: 1rem;
  color: #a3a3a3;
  font-weight: 300;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.05em;
}

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

.cta-btn {
  background: #D4AF37;
  color: #000;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
  border: 1px solid transparent;
}

.cta-btn:hover {
  transform: translateY(-3px);
  background: #b5952f;
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.4);
}

/* Floating portrait */
.portrait {
  position: absolute;
  bottom: 0;
  right: 5%;
  width: 320px;
  height: auto;
  opacity: 1;
  z-index: 0;
  filter: grayscale(20%) contrast(1.1);
}

/* Sections */
.section {
  padding: 6rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.section h2 {
  font-size: 3rem;
  margin-bottom: 3rem;
  text-align: center;
  color: #ffffff;
  position: relative;
}

.section h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: #D4AF37;
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.article-card {
  background: rgba(20, 20, 20, 0.6);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 16px;
  padding: 3rem;
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  transition: all 0.4s ease;
}

.article-card:hover {
  border-color: rgba(212, 175, 55, 0.5);
  box-shadow: 0 10px 40px rgba(212, 175, 55, 0.15);
  transform: translateY(-5px);
}

.article-card h3 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  color: #ffffff;
  line-height: 1.3;
}

.article-card p {
  font-size: 1.1rem;
  color: #a3a3a3;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.read-more {
  display: inline-block;
  color: #D4AF37;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: color 0.2s;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.read-more:hover {
  color: #ffffff;
}

.script-preview {
  margin-top: 2rem;
  background: rgba(212, 175, 55, 0.05);
  border-left: 3px solid #D4AF37;
  padding: 1.5rem;
  border-radius: 0 12px 12px 0;
}

.script-preview h4 {
  color: #ffffff;
  margin-bottom: 0.5rem;
}

/* Footer */
.footer {
  background: #050505;
  border-top: 1px solid rgba(212, 175, 55, 0.1);
  text-align: center;
  padding: 3rem 1rem;
  font-size: 0.9rem;
  color: #737373;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-title {font-size: 2.8rem;}
  .portrait {display: none;}
  .section {padding: 4rem 1.5rem;}
  .article-card {padding: 2rem;}
  .article-card h3 {font-size: 1.8rem;}
}
