/* ===========================
   Jamon Maple EPK Styles
   Elegant, Professional, Luxury
   =========================== */

/* CSS Variables */
:root {
  --primary: #d4af37;
  --primary-dark: #b8941f;
  --secondary: #3b82f6;
  --secondary-dark: #2563eb;
  --text-dark: #1a1a1a;
  --text-light: #4a4a4a;
  --neutral-light: #f8f9fa;
  --neutral-dark: #6b7280;
  --white: #ffffff;
  --black: #000000;
  --gradient-gold: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
  --gradient-blue: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text-dark);
  line-height: 1.7;
  background: var(--white);
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
  margin-bottom: 1.2rem;
  font-size: 1.1rem;
  line-height: 1.8;
}

.lead {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.8;
  color: var(--text-dark);
}

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

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.header-line {
  width: 80px;
  height: 4px;
  background: var(--gradient-gold);
  margin: 0 auto 1.5rem;
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--neutral-dark);
  font-style: italic;
}

/* ===========================
   Hero Section
   =========================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  background-image: 
    linear-gradient(135deg, rgba(26, 26, 26, 0.25) 0%, rgba(45, 45, 45, 0.35) 100%),
    url('../images/J1.jpeg');
  background-size: cover;
  background-position: center 30%;
  background-attachment: scroll;
  color: var(--white);
}

/* Mobile optimization */
@media (max-width: 768px) {
  .hero {
    background-attachment: scroll;
    background-size: cover;
    background-position: center top;
  }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
}

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

.hero-title {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

.hero-subtitle {
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 400;
  margin-bottom: 1rem;
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
}

.hero-tagline {
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-style: italic;
  margin-bottom: 2.5rem;
  color: rgba(255, 255, 255, 0.9);
  font-family: 'Playfair Display', serif;
}

.hero-cta {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
  font-family: 'Montserrat', sans-serif;
}

.btn-primary {
  background: var(--gradient-gold);
  color: var(--black);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(212, 175, 55, 0.6);
}

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

.btn-secondary:hover {
  background: var(--white);
  color: var(--black);
  transform: translateY(-3px);
}

/* ===========================
   Quick Facts Bar
   =========================== */
.quick-facts {
  background: var(--white);
  padding: 3rem 0;
  box-shadow: var(--shadow-md);
  position: relative;
  z-index: 10;
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  text-align: center;
}

.fact-item i {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
  display: block;
}

.fact-item h3 {
  font-size: 1.5rem;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.fact-item p {
  font-size: 1rem;
  color: var(--neutral-dark);
  margin: 0;
}

/* ===========================
   Bio Section
   =========================== */
.bio-section {
  padding: 6rem 0;
  background: var(--neutral-light);
}

.bio-content {
  max-width: 900px;
  margin: 0 auto;
}

.bio-text p {
  text-align: justify;
}

/* ===========================
   Videos Section
   =========================== */
.videos-section {
  padding: 6rem 0;
  background: var(--white);
}

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

.video-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  background: var(--black);
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-card h3 {
  padding: 1.5rem 1.5rem 0.5rem;
  font-size: 1.3rem;
  color: var(--text-dark);
}

.video-card p {
  padding: 0 1.5rem 1.5rem;
  font-size: 0.95rem;
  color: var(--neutral-dark);
  margin: 0;
}

/* ===========================
   Achievements Section
   =========================== */
.achievements-section {
  padding: 6rem 0;
  background: var(--neutral-light);
}

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

.achievement-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.achievement-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.achievement-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: var(--gradient-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.achievement-icon i {
  font-size: 2rem;
  color: var(--white);
}

.achievement-card h3 {
  font-size: 1.4rem;
  color: var(--text-dark);
  margin-bottom: 0.8rem;
}

.achievement-card p {
  font-size: 1rem;
  color: var(--neutral-dark);
  margin: 0;
}

/* ===========================
   Testimonials Section
   =========================== */
.testimonials-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(59, 130, 246, 0.05) 100%);
}

.testimonial-card {
  max-width: 900px;
  margin: 0 auto;
  background: var(--white);
  padding: 3rem;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  position: relative;
}

.quote-icon {
  font-size: 3rem;
  color: var(--primary);
  opacity: 0.3;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-size: 1.3rem;
  font-style: italic;
  line-height: 1.8;
  color: var(--text-dark);
  margin-bottom: 2rem;
}

.testimonial-author h4 {
  font-size: 1.3rem;
  color: var(--text-dark);
  margin-bottom: 0.3rem;
}

.testimonial-author p {
  font-size: 1rem;
  color: var(--neutral-dark);
  margin-bottom: 0.2rem;
}

.author-credit {
  font-size: 0.95rem;
  color: var(--primary-dark);
  font-weight: 600;
}

/* ===========================
   Repertoire Section
   =========================== */
.repertoire-section {
  padding: 6rem 0;
  background: var(--white);
}

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

.repertoire-card {
  background: var(--neutral-light);
  padding: 2rem;
  border-radius: 12px;
  border-left: 4px solid var(--primary);
}

.repertoire-card h3 {
  font-size: 1.3rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.repertoire-card h3 i {
  color: var(--primary);
}

.repertoire-card ul {
  list-style: none;
  padding: 0;
}

.repertoire-card li {
  padding: 0.5rem 0;
  color: var(--text-light);
  position: relative;
  padding-left: 1.5rem;
}

.repertoire-card li:before {
  content: "♪";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}

.repertoire-note {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  border: 2px solid var(--primary);
}

.repertoire-note p {
  margin: 0;
  font-size: 1.1rem;
  color: var(--text-dark);
}

/* ===========================
   Photos Section
   =========================== */
.photos-section {
  padding: 6rem 0;
  background: var(--neutral-light);
}

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

.photo-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease;
}

.photo-item:hover {
  transform: scale(1.03);
}

.photo-item img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  display: block;
}

.download-btn {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background: var(--gradient-gold);
  color: var(--black);
  padding: 0.7rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  opacity: 0;
  transition: opacity 0.3s ease;
  box-shadow: var(--shadow-md);
}

.photo-item:hover .download-btn {
  opacity: 1;
}

.download-btn i {
  margin-right: 0.5rem;
}

/* ===========================
   Contact Section
   =========================== */
.contact-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  color: var(--white);
  text-align: center;
}

.contact-section .section-header h2 {
  color: var(--white);
}

.contact-section .header-line {
  background: var(--gradient-gold);
}

.contact-intro {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  color: rgba(255, 255, 255, 0.9);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3rem;
  align-items: center;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.3rem;
}

.contact-item i {
  color: var(--primary);
  font-size: 1.5rem;
}

.contact-item a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: var(--primary);
}

.social-links {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 2rem;
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.social-btn:hover {
  background: var(--white);
  color: var(--black);
  transform: translateY(-3px);
}

/* ===========================
   Footer
   =========================== */
.footer {
  background: var(--black);
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  padding: 2rem 0;
}

.footer p {
  margin: 0.5rem 0;
  font-size: 0.95rem;
}

.footer-tagline {
  font-style: italic;
  color: var(--primary);
}

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

  .hero {
    height: 80vh;
  }

  .hero-cta {
    flex-direction: column;
    gap: 1rem;
  }

  .facts-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .videos-grid,
  .achievements-grid,
  .repertoire-grid {
    grid-template-columns: 1fr;
  }

  .photos-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    padding: 2rem;
  }

  .testimonial-text {
    font-size: 1.1rem;
  }

  .social-links {
    flex-direction: column;
  }
}

/* Print Styles */
@media print {
  .hero-cta,
  .download-btn,
  .social-links {
    display: none;
  }

  .hero {
    height: auto;
    padding: 4rem 0;
    background-attachment: scroll;
  }

  .video-wrapper {
    border: 2px solid var(--neutral-dark);
  }

  body {
    font-size: 12pt;
  }
}
