/*
Theme Name: JohananKohl Portfolio
Theme URI: https://johanankohl.com
Author: Kohl Hosein
Author URI: https://johanankohl.com
Description: A dual-identity portfolio theme showcasing web development and music.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: johanankohl
Tags: portfolio, one-column, custom-menu, custom-logo, featured-images
*/

/* ===== BRAND STYLES ===== */
/* Brand Colors: Blue #007BFF, Purple #673AB7 */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&display=swap');

/* CSS Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --brand-blue: #007BFF;
  --brand-purple: #673AB7;
  --brand-dark: #1a1a2e;
  --text-primary: #1a1a2e;
  --text-secondary: #6b7280;
  --text-light: #9ca3af;
  --bg-light: #f8fafc;
  --white: #ffffff;
  --transition: all 0.3s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--white);
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 2rem;
  backdrop-filter: blur(10px);
  transition: var(--transition);
}

.nav--gradient {
  background: linear-gradient(90deg, rgba(0,123,255,0.95) 0%, rgba(103,58,183,0.95) 100%);
}

.nav--blue {
  background: rgba(0,123,255,0.95);
}
.nav--blue .nav__links--open {
  background: var(--brand-blue);
}

.nav--purple .nav__links--open {
  background: var(--brand-purple);
}

.nav--purple {
  background: rgba(103,58,183,0.95);
}

.nav__container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav__logo-icon {
  width: auto;
  height: 40px;
  border-radius: 8px;
}

.nav__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.nav__logo-text span:first-child {
  font-size: 0.75rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 0.05em;
}

.nav__logo-text span:last-child {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.05em;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
}

.nav__link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  color: var(--white);
  font-weight: 500;
  transition: var(--transition);
}

.nav__link:hover {
  background: rgba(255,255,255,0.2);
}

.nav__link--active {
  background: var(--white);
  color: var(--brand-blue);
  font-weight: 600;
}

.nav__cta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.5rem;
  background: var(--white);
  color: var(--brand-blue);
  border-radius: 8px;
  font-weight: 600;
  margin-left: 1rem;
  transition: var(--transition);
}

.nav__cta:hover {
  background: rgba(255,255,255,0.9);
}

/* Mobile Menu */
.nav__mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
}

@media (max-width: 768px) {
  .nav__links {
    display: none;
  }
  
  .nav__mobile-toggle {
    display: block;
  }
  
  .nav__links--open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--brand-dark);
    padding: 1rem;
    gap: 0.5rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  }
}

/* ===== LANDING PAGE ===== */
.landing {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.landing__main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0a0a1a 0%, #1a1a3e 50%, #2a1a4a 100%);
}

/* Animated background orbs */
.landing__bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: pulse 4s ease-in-out infinite;
}

.landing__bg-orb--blue {
  width: 400px;
  height: 400px;
  background: rgba(0,123,255,0.2);
  top: 20%;
  left: 20%;
}

.landing__bg-orb--purple {
  width: 400px;
  height: 400px;
  background: rgba(103,58,183,0.2);
  bottom: 20%;
  right: 20%;
  animation-delay: 1s;
}

@keyframes pulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.1); }
}

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.landing__content {
  position: relative;
  z-index: 10;
  max-width: 1200px;
  width: 100%;
}

.landing__logo {
  text-align: center;
  margin-bottom: 1.5rem;
}

.landing__logo img {
  width: auto;
  height: 80px;
}

.landing__header {
  text-align: center;
  margin-bottom: 3rem;
}

.landing__title {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 900;
  background: linear-gradient(90deg, var(--brand-blue) 0%, var(--brand-purple) 50%, var(--brand-blue) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite;
  margin-bottom: 1rem;
}

.landing__subtitle {
  font-size: 1.5rem;
  font-weight: 300;
  color: rgba(255,255,255,0.8);
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.landing__subtitle span {
  font-weight: 700;
  background: linear-gradient(90deg, var(--brand-blue), var(--brand-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Profile Cards */
.landing__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

@media (max-width: 768px) {
  .landing__cards {
    grid-template-columns: 1fr;
  }
}

.profile-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  border: 1px solid rgba(255,255,255,0.1);
}

.profile-card:hover {
  transform: scale(1.02);
}

.profile-card--blue:hover {
  box-shadow: 0 25px 50px -12px rgba(0,123,255,0.5);
}

.profile-card--purple:hover {
  box-shadow: 0 25px 50px -12px rgba(103,58,183,0.5);
}

.profile-card__image {
  aspect-ratio: 3/4;
  position: relative;
}

.profile-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.profile-card:hover .profile-card__image img {
  transform: scale(1.1);
}

.profile-card__overlay {
  position: absolute;
  inset: 0;
  transition: opacity 0.5s ease;
}

.profile-card--blue .profile-card__overlay {
  background: linear-gradient(to top, rgba(0,123,255,0.95) 0%, rgba(0,123,255,0.4) 50%, transparent 100%);
  opacity: 0.7;
}

.profile-card--purple .profile-card__overlay {
  background: linear-gradient(to top, rgba(103,58,183,0.95) 0%, rgba(103,58,183,0.4) 50%, transparent 100%);
  opacity: 0.7;
}

.profile-card:hover .profile-card__overlay {
  opacity: 0.85;
}

.profile-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  color: var(--white);
}

.profile-card__icon {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.profile-card__icon-bg {
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.profile-card__title {
  font-size: 2rem;
  font-weight: 900;
}

.profile-card__desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 1rem;
  font-weight: 300;
}

.profile-card__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: var(--white);
  border-radius: 9999px;
  font-weight: 700;
  transition: var(--transition);
}

.profile-card--blue .profile-card__btn {
  color: var(--brand-blue);
}

.profile-card--purple .profile-card__btn {
  color: var(--brand-purple);
}

.profile-card__btn:hover {
  background: rgba(255,255,255,0.9);
}

.landing__hint {
  text-align: center;
  margin-top: 3rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.875rem;
  font-weight: 300;
  letter-spacing: 0.1em;
}

/* ===== HERO SECTIONS ===== */


.hero {
  min-height: 600px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 6rem 2rem 4rem;
}

.hero--blue {
  background: linear-gradient(135deg, var(--brand-blue) 0%, #0056b3 50%, #003d80 100%);
}

/*.hero--purple {
  background: linear-gradient(135deg, var(--brand-purple) 0%, #5e35b1 50%, #4527a0 100%);
}*/

/* Music hero with background image for desktop/tablet */
.hero--purple {
  background: linear-gradient(135deg, var(--brand-purple) 0%, #5e35b1 50%, #4527a0 100%);
}

.hero--purple::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(103, 58, 183, 0.95) 35%, rgba(94, 53, 177, 0.5) 55%, rgba(69, 39, 160, 0.85) 100%);
    z-index: 0;
  }
  
  .hero--purple > * {
    position: relative;
    z-index: 1;
  }

@media (min-width: 769px) {
  .hero--purple {
    background: url('https://kohlhosein.com/wp-content/uploads/2026/03/wynbass.jpg') center center / cover no-repeat;
  }
}

.hero__container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 768px) {
  .hero__container {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.hero__content {
  color: var(--white);
}

.hero__title {
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 1rem;
}

.hero__role {
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  opacity: 0.9;
}

.hero__desc {
  font-size: 1.25rem;
  font-weight: 300;
  margin-bottom: 2rem;
  opacity: 0.8;
  line-height: 1.8;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.hero__meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.9;
}

.hero__buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: nowrap;
}

@media (max-width: 768px) {
  .hero__buttons {
    justify-content: center;
    display: flex;
    align-items: center;  
    flex-direction: column;
    gap: 1rem;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 700;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 1rem;
}

.btn--white {
  background: var(--white);
  color: var(--brand-blue);
}

.btn--white-purple {
  background: var(--white);
  color: var(--brand-purple);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.3);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.hero__image {
  position: relative;
}

.hero__image-wrapper {
  position: relative;
  max-width: 400px;
  margin: 0 auto;
}

.hero__image-bg {
  position: absolute;
  inset: 0;
  border-radius: 24px;
  transform: rotate(6deg);
}

.hero--blue .hero__image-bg {
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-purple));
}

.hero--purple .hero__image-bg {
  background: linear-gradient(135deg, var(--brand-purple), var(--brand-blue));
}

.hero__image-main {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5);
  transform: rotate(-3deg);
  transition: transform 0.5s ease;
}

.hero__image-main:hover {
  transform: rotate(0deg);
}

.hero__image-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== SECTIONS ===== */
.section {
  padding: 5rem 2rem;
}

.section--light {
  background: var(--bg-light);
}

.section__container {
  max-width: 1200px;
  margin: 0 auto;
}

.section__header {
  text-align: center;
  margin-bottom: 3rem;
}

.section__title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

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

/* ===== ABOUT SECTION ===== */
.about__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (max-width: 768px) {
  .about__stats {
    grid-template-columns: 1fr;
  }
}

.stat-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
  transition: var(--transition);
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px -5px rgba(0,0,0,0.1);
}

.stat-card__icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-purple));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
}

.stat-card__number {
  font-size: 2.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-card__label {
  color: var(--text-secondary);
  font-weight: 500;
}

.about__text {
  background: var(--white);
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
}

.about__text p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.about__text p:last-child {
  margin-bottom: 0;
}

/* ===== EXPERIENCE TIMELINE ===== */
.timeline {
  position: relative;
  padding-left: 2rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--brand-blue), var(--brand-purple));
}

.timeline__item {
  position: relative;
  padding-bottom: 3rem;
}

.timeline__item:last-child {
  padding-bottom: 0;
}

.timeline__dot {
  position: absolute;
  left: -2rem;
  top: 0;
  width: 16px;
  height: 16px;
  background: var(--brand-blue);
  border-radius: 50%;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 3px var(--brand-blue);
  transform: translateX(-7px);
}

.timeline__card {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 16px;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
  margin-left: 1rem;
}

.timeline__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.timeline__position {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.timeline__company {
  color: var(--brand-blue);
  font-weight: 600;
}

.timeline__period {
  color: var(--text-secondary);
  font-size: 0.875rem;
}

.timeline__type {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: rgba(0,123,255,0.1);
  color: var(--brand-blue);
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
}

.timeline__desc {
  color: var(--text-secondary);
  margin-bottom: 1rem;
  line-height: 1.7;
}

.timeline__highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.timeline__highlight {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.5rem;
  background: var(--bg-light);
  border-radius: 6px;
  font-size: 0.75rem;
  color: var(--text-secondary);
}

/* ===== SKILLS GRID ===== */
.skills-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@media (max-width: 992px) {
  .skills-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .skills-grid {
    grid-template-columns: 1fr;
  }
}

.skill-category {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 16px;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
}

.skill-category__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.skill-category__icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-purple));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

.skill-category__title {
  font-weight: 700;
  color: var(--text-primary);
}

.skill-category__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.skill-tag {
  padding: 0.375rem 0.75rem;
  background: var(--bg-light);
  border-radius: 6px;
  font-size: 0.875rem;
  color: var(--text-secondary);
  transition: var(--transition);
}

.skill-tag:hover {
  background: var(--brand-blue);
  color: var(--white);
}

/* ===== PROJECTS GRID ===== */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

@media (max-width: 768px) {
  .projects-grid {
    grid-template-columns: 1fr;
  }
}

.project-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
  transition: var(--transition);
}

.project-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -10px rgba(0,0,0,0.15);
}

.project-card__header {
  padding: 1.5rem;
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-purple));
  color: var(--white);
}

.project-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.project-card__client {
  opacity: 0.9;
  font-size: 0.875rem;
}

.project-card__body {
  padding: 1.5rem;
}

.project-card__desc {
  color: var(--text-secondary);
  margin-bottom: 1rem;
  line-height: 1.7;
}

.project-card__tech {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.project-card__tech span {
  padding: 0.25rem 0.5rem;
  background: rgba(0,123,255,0.1);
  color: var(--brand-blue);
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
}

.project-card__impact {
  padding: 1rem;
  background: var(--bg-light);
  border-radius: 8px;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

/* ===== PERFORMANCES (MUSIC) ===== */
.performances {
  margin-bottom: 3rem;
}

.year-section {
  margin-bottom: 3rem;
}

.year-section__title {
  font-size: 2rem;
  font-weight: 900;
  color: var(--brand-purple);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.year-section__title::after {
  content: '';
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, var(--brand-purple), transparent);
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.event-card {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 16px;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
  border-left: 4px solid var(--brand-purple);
  transition: var(--transition);
}

.event-card:hover {
  transform: translateX(4px);
  box-shadow: 0 10px 25px -5px rgba(103,58,183,0.2);
}

.event-card__date {
  font-size: 0.875rem;
  color: var(--brand-purple);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.event-card__name {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.event-card__artists {
  color: var(--text-secondary);
  font-size: 0.875rem;
}

/* ===== SOCIAL LINKS ===== */
.social-section {
  padding: 4rem 2rem;
  text-align: center;
  background: linear-gradient(180deg, transparent, rgba(103,58,183,0.05));
}

.social-section__title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.social-section__desc {
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

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

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.125rem;
  color: var(--white);
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.social-btn:hover {
  transform: scale(1.05);
}

.social-btn--instagram {
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
}

.social-btn--facebook {
  background: linear-gradient(135deg, #1877f2, #3b5998);
}

.social-btn--discog {
  background: linear-gradient(90deg, #673AB7, #3b5998);
}

/* ===== CONTACT FORM ===== */
.contact {
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-purple));
  padding: 5rem 2rem;
}

.contact__container {
  max-width: 800px;
  margin: 0 auto;
}

.contact__header {
  text-align: center;
  color: var(--white);
  margin-bottom: 3rem;
}

.contact__title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.contact__subtitle {
  opacity: 0.9;
}

.contact__form {
  background: var(--white);
  padding: 2rem;
  border-radius: 24px;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

@media (max-width: 576px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

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

.form-group:last-child {
  margin-bottom: 0;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 3px rgba(0,123,255,0.1);
}

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

.form-submit {
  width: 100%;
  padding: 1rem;
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-purple));
  color: var(--white);
  border: none;
  border-radius: 12px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px -5px rgba(0,123,255,0.4);
}

.contact__info {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
  color: var(--white);
  flex-wrap: wrap;
}

.contact__info-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.9;
}

/* ===== WHATSAPP BUTTON ===== */
.whatsapp-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.75rem;
  box-shadow: 0 4px 15px rgba(37,211,102,0.4);
  transition: var(--transition);
  z-index: 1000;
}

.whatsapp-btn:hover {
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 6px 20px rgba(37,211,102,0.5);
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--brand-dark);
  color: var(--white);
  padding: 2rem;
}

.footer__container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer__logo img {
  width: auto;
  height: 40px;
  border-radius: 8px;
}

.footer__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.footer__logo-text span:first-child {
  font-size: 0.875rem;
  font-weight: 900;
  letter-spacing: 0.05em;
}

.footer__logo-text span:last-child {
  font-size: 0.875rem;
  font-weight: 600;
  opacity: 0.7;
}

.footer__copyright {
  color: rgba(255,255,255,0.6);
  font-size: 0.875rem;
}

.footer__links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.footer__link {
  color: rgba(255,255,255,0.6);
  font-size: 0.875rem;
  transition: var(--transition);
}

.footer__link:hover {
  color: var(--white);
}

/* ===== EDUCATION SECTION ===== */
.education-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (max-width: 768px) {
  .education-grid {
    grid-template-columns: 1fr;
  }
}

.education-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
}

.education-card__header {
  padding: 1.5rem;
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-purple));
  color: var(--white);
}

.education-card__degree {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.education-card__school {
  opacity: 0.9;
}

.education-card__body {
  padding: 1.5rem;
}

.education-card__period {
  color: var(--text-secondary);
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.education-card__desc {
  color: var(--text-secondary);
  line-height: 1.7;
}

.certifications {
  background: var(--white);
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
}

.certifications__title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

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

.cert-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--bg-light);
  border-radius: 12px;
}

.cert-item__icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-purple));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}

.cert-item__info h4 {
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.cert-item__info p {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

/* WordPress Specific Overrides */
.wp-block-image img {
  border-radius: 16px;
}

.entry-content {
  max-width: 1200px;
  margin: 0 auto;
}
/* ===== DISCOGRAPHY PAGE ===== */
.discography-section {
  padding: 4rem 2rem;
  background: var(--bg-light);
}

.discography-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Studio / Producer Group */
.studio-group {
  margin-bottom: 2rem;
}

.studio-group__header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
  padding-left: 0.25rem;
  color: var(--text-primary);
}

.studio-group__title {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

/* Song grid inside each studio group */
.discography-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1rem;
}

/* Song Card */
.song-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--white);
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.song-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(103, 58, 183, 0.15);
}

.song-card__icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--brand-purple), #9c27b0);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}

.song-card__content {
  flex: 1;
  min-width: 0;
}

.song-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.1rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.song-card__artist {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--brand-purple);
  margin-bottom: 0;
}

/* Streaming Links */
.song-card__links {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}

.stream-link {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: transform 0.2s ease, opacity 0.2s ease;
  opacity: 0.85;
}

.stream-link:hover {
  transform: scale(1.15);
  opacity: 1;
}

.stream-link--youtube {
  background: #FF0000;
}

.stream-link--spotify {
  background: #1DB954;
}

.stream-link--apple {
  background: #FA243C;
}

/* Discography Note */
.discography-note {
  text-align: center;
  margin-top: 3rem;
  padding: 1.5rem;
  background: var(--white);
  border-radius: 12px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.discography-note p {
  color: var(--text-secondary);
  font-style: italic;
}

/* Responsive */
@media (max-width: 480px) {
  .discography-grid {
    grid-template-columns: 1fr;
  }

  .song-card {
    flex-wrap: wrap;
  }

  .song-card__links {
    width: 100%;
    justify-content: flex-start;
    padding-top: 0.5rem;
    margin-left: 60px;
  }
}

/* ===== GEAR PAGE ===== */
.gear-section { padding: 4rem 2rem; background: var(--bg-light); }
.gear-section .container { max-width: 1200px; margin: 0 auto; }
.gear-category { margin-bottom: 3rem; }
.gear-category__title { display: flex; align-items: center; gap: 0.75rem; font-size: 1.5rem; font-weight: 700; color: var(--text-primary); margin-bottom: 1.5rem; padding-bottom: 0.75rem; border-bottom: 2px solid var(--brand-purple); }
.gear-category__title i { color: var(--brand-purple); }
.gear-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1rem; }
.gear-item { display: flex; align-items: center; gap: 1rem; padding: 1.25rem; background: var(--white); border-radius: 12px; box-shadow: 0 2px 10px rgba(0,0,0,0.05); transition: transform 0.3s ease, box-shadow 0.3s ease; }
.gear-item:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(103, 58, 183, 0.12); }
.gear-item__icon { width: 48px; height: 48px; background: linear-gradient(135deg, var(--brand-purple), #9c27b0); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--white); flex-shrink: 0; }
.gear-item__info h4 { font-size: 1rem; font-weight: 600; color: var(--text-primary); margin-bottom: 0.25rem; }
.gear-item__info p { font-size: 0.875rem; color: var(--text-secondary); }