/* Import fonts from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&family=Boldonse&display=swap');

/* Define font variables */
:root {
  --accent-color: #FFA500;
  --light-accent: #FFD700;
  --overlay-dark: rgba(0, 0, 0, 0.75);
  --text-color: #fff;
  --font-main: 'Poppins', sans-serif;
  --font-display: 'Boldonse', sans-serif; /* Updated heading font */
  --profile-red: #ff2d2d;
}

/* Apply main font generally */
* {
  font-family: var(--font-main);
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Headings use Boldonse */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
}

/* Body background */
body {
  background: url('poster.png') no-repeat center center/cover;
  margin: 0;
  padding: 0;
}

.overlay {
  background-color: var(--overlay-dark);
  min-height: 100vh;
  padding-bottom: 50px;
}

/* Navigation bar text */
.navbar-dark .navbar-brand,
.navbar-dark .nav-link {
  color: var(--light-accent) !important;
  font-weight: 600;
}

/* Section headings */
h1, h2 {
  color: var(--light-accent);
  text-align: center;
  margin-bottom: 20px;
  text-shadow: 1px 1px 4px black;
}

/* Content boxes */
.box, .boxsm {
  background: rgba(18, 54, 67, 1);
  color: var(--text-color);
  padding: 30px;
  border-radius: 15px;
  margin: 30px 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.box h2, .boxsm h2 {
  color: var(--accent-color);
  font-weight: 600;
}

/* Footer */
footer {
  background-color: #111;
  color: var(--text-color);
  text-align: center;
  padding: 20px 0;
}

/* Contact button styling */
.contact-btn {
  background-color: var(--accent-color);
  color: #fff;
  border: none;
  padding: 10px 20px;
  font-size: 18px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-btn:hover {
  background-color: #ff8200;
}

/* Tagline styling */
.tagline {
  font-size: 14px;
  font-style: italic;
  margin-top: 10px;
  color: #ccc;
}

/* Image reset */
img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* Profile Section */
.profile-section {
  padding: 60px 4vw 20px;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.02), transparent 70%);
}
.profile-inner { width: 100%; margin: 0 auto; }
.profile-heading { margin: 0 0 25px 0; }
.person-name {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3.5vw, 3rem);
  line-height: .9;
  margin: 0;
  color: var(--profile-red);
  font-weight: 400;
  letter-spacing: 1px;
  text-align: left;
}
.person-role {
  font-family: var(--font-display);
  font-size: clamp(0.2rem, 1vw, 1rem);
  margin-top: .25rem;
  color: #d8d8d8;
  letter-spacing: 1px;
  text-align: left;
}
.profile-content {
  display: grid;
  grid-template-columns: minmax(150px, 280px) 1fr;
  gap: clamp(1.8rem, 3.5vw, 4.5rem);
  align-items: start;
}
.profile-photo-wrapper {
  margin: 0;
  border: 3px solid #000;
  background: #0f0f0f;
  position: relative;
  aspect-ratio: 3 / 4;
  max-width: 100%;
  overflow: hidden;
}
.profile-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(.9) contrast(1.05);
}
.profile-bio p {
  font-size: clamp(.82rem, .78rem + .35vw, .96rem);
  line-height: 1.45;
  letter-spacing: .3px;
  color: #d0d0d0;
  text-align: justify;
  max-width: 100%;
}

/* Responsive tweaks */
@media (max-width: 1100px) {
  .profile-content { grid-template-columns: minmax(140px, 240px) 1fr; }
}
@media (max-width: 900px) {
  .profile-content { grid-template-columns: 1fr; }
  .profile-photo-wrapper { max-width: 480px; margin: 0 0 25px; }
}
@media (max-width: 600px) {
  .profile-section { padding: 40px 5vw 10px; }
  .person-name { font-size: clamp(2.6rem, 13vw, 3.6rem); }
  .person-role { font-size: clamp(1rem, 6vw, 1.5rem); }
  .profile-photo-wrapper { margin: 0 auto 25px; }
  .profile-heading { text-align: center; }
  .person-name, .person-role { text-align: center; }
}
@media (max-width: 768px) {
  .box, .boxsm { padding: 20px; }
  .contact-btn { font-size: 16px; }
}

/* Producers Section */
.producers-section { padding: 40px 0 20px; }
.dual-profiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: start;
  position: relative;
}
.dual-profiles:before {
  content: "";
  position: absolute;
  top: 5%;
  bottom: 5%;
  left: 50%;
  width: 3px;
  background: var(--profile-red);
  transform: translateX(-50%);
}
.profile-col { text-align: center; max-width: 600px; margin: 0 auto; }
.producer-name {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.8vw, 3.2rem);
  color: var(--profile-red);
  margin: 0 0 .4rem;
  line-height: .9;
}
.producer-role { font-family: var(--font-display); font-size: clamp(1.1rem, 1.6vw, 1.6rem); color: #d8d8d8; margin-bottom: 1.2rem; }
.producer-photo-wrapper {
  margin: 0 auto 1.4rem;
  width: clamp(220px, 60%, 300px);
  aspect-ratio: 3/4;
  border: 3px solid #000;
  overflow: hidden;
  background: #0f0f0f;
}
.producer-photo { width: 100%; height: 100%; object-fit: cover; display: block; }
.producer-bio {
  font-size: clamp(.78rem, .78rem + .3vw, .95rem);
  line-height: 1.45;
  color: #d0d0d0;
  max-width: 520px;
  margin: 0 auto;
  text-align: justify;
}
@media (max-width: 1000px) {
  .dual-profiles { gap: clamp(2rem, 5vw, 4rem); }
}
@media (max-width: 860px) {
  .dual-profiles { grid-template-columns: 1fr; }
  .dual-profiles:before { display: none; }
  .profile-col + .profile-col { margin-top: 40px; }
  .producer-bio { text-align: left; }
}
