/* Global Reset & Box Sizing */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--color-primary-dark);
}

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

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

/* Common Layout Containers */
.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.section {
  padding: 80px 0;
}

.section-title-wrapper {
  text-align: center;
  margin-bottom: 48px;
}

.section-subtitle {
  color: var(--color-primary);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
  display: block;
}

.section-title {
  font-size: 36px;
  font-weight: 800;
  color: var(--color-text-dark);
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background-color: var(--color-primary-light);
  border-radius: var(--radius-full);
}

/* Header & Glassmorphic Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(235, 247, 238, 0.92); /* Brand light pastel green */
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(126, 192, 128, 0.25); /* Faint green border */
  box-shadow: var(--shadow-sm);
  transition: background-color var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal);
}

header.home-header {
  background-color: rgba(235, 247, 238, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(126, 192, 128, 0.25);
  box-shadow: var(--shadow-sm);
}

header.home-header.scrolled {
  background-color: rgba(235, 247, 238, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(126, 192, 128, 0.25);
  box-shadow: var(--shadow-md);
}

header.scrolled {
  box-shadow: var(--shadow-md);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  transition: height var(--transition-normal);
}

header.scrolled .navbar {
  height: 70px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 24px;
  color: var(--color-text-dark); /* Dark charcoal text */
}

.logo img {
  height: 55px;
  width: auto;
}

.logo span {
  color: var(--color-primary); /* Saturated green for span */
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-link {
  font-weight: 500;
  font-size: 16px;
  position: relative;
  padding: 8px 0;
  color: var(--color-text-muted); /* Muted dark green-gray text */
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-primary); /* Active link underline brand green */
  transition: width var(--transition-normal);
}

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

.nav-link:hover,
.nav-link.active {
  color: var(--color-primary); /* Active/hover link brand green */
}

/* Action Button */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 15px;
  transition: all var(--transition-normal);
  cursor: pointer;
  border: none;
  font-family: var(--font-heading);
  gap: 8px;
}

.btn-primary {
  background-color: var(--color-primary-pastel);
  color: var(--color-primary-dark);
  border: 1px solid var(--color-primary-light);
  box-shadow: 0 4px 14px rgba(126, 192, 128, 0.15);
}

.btn-primary:hover {
  background-color: var(--color-primary-light);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(126, 192, 128, 0.3);
}

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

.btn-outline:hover {
  background-color: var(--color-primary-pastel);
  transform: translateY(-2px);
}

.btn-white {
  background-color: var(--color-white);
  color: var(--color-primary-dark);
  box-shadow: var(--shadow-md);
}

.btn-white:hover {
  background-color: var(--color-primary-pastel);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-icon {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* Mobile Nav Toggle */
.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1100;
}

.hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  margin: 6px auto;
  background-color: var(--color-text-dark);
  transition: transform var(--transition-normal), opacity var(--transition-normal);
}

/* Specific styling for header CTA button */
.nav-btn {
  background-color: var(--color-primary) !important;
  color: var(--color-white) !important;
  border: none !important;
  box-shadow: 0 4px 14px rgba(46, 125, 50, 0.25) !important;
}

.nav-btn:hover {
  background-color: var(--color-primary-dark) !important;
  color: var(--color-white) !important;
  box-shadow: 0 6px 20px rgba(46, 125, 50, 0.35) !important;
  transform: translateY(-2px) !important;
}

/* Footer Section */
footer {
  background-color: #152217; /* Very dark forest green */
  color: rgba(255, 255, 255, 0.85);
  padding: 80px 0 30px 0;
  border-top: 4px solid var(--color-primary);
}

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

.footer-brand .logo {
  color: var(--color-white);
  margin-bottom: 20px;
}

.footer-brand .logo span {
  color: var(--color-primary-light);
}

.footer-description {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 24px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-full);
  background-color: rgba(255, 255, 255, 0.08);
  color: var(--color-white);
  transition: all var(--transition-normal);
}

.social-icon:hover {
  background-color: var(--color-primary-light);
  color: var(--color-primary-dark);
  transform: translateY(-3px);
}

.footer-title {
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 8px;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--color-primary-light);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition-fast), padding-left var(--transition-fast);
}

.footer-links a:hover {
  color: var(--color-primary-light);
  padding-left: 6px;
}

.footer-contact-list {
  list-style: none;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact-list a {
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact-list a:hover {
  color: var(--color-primary-light);
}

.footer-contact-icon {
  margin-top: 3px;
  color: var(--color-primary-light);
  flex-shrink: 0;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease forwards;
}

/* Responsive Media Queries */
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .footer-brand {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }
  
  .navbar {
    height: 70px;
  }
  
  .mobile-nav-toggle {
    display: block;
  }
  
  .nav-menu {
    position: fixed;
    top: 70px;
    left: 100%;
    width: 100%;
    height: calc(100vh - 70px);
    background-color: rgba(12, 15, 13, 0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    justify-content: flex-start;
    padding: 40px 24px;
    gap: 24px;
    transition: left var(--transition-normal);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.2);
    z-index: 1000;
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .nav-link {
    font-size: 18px;
    width: 100%;
    text-align: center;
    padding: 12px 0;
  }
  
  .nav-btn {
    width: 100%;
    margin-top: 10px;
  }
  
  .hamburger-active .hamburger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  
  .hamburger-active .hamburger-line:nth-child(2) {
    opacity: 0;
  }
  
  .hamburger-active .hamburger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-brand {
    grid-column: span 1;
  }
}

/* About Section Styles */
.about-section {
  padding: 100px 0;
  background-color: var(--color-white);
  border-top: 1px solid var(--color-border);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

@media (max-width: 991px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.about-logo-card {
  background: linear-gradient(135deg, #ffffff 0%, #f9faf9 100%);
  border: 1px solid rgba(46, 125, 50, 0.12);
  border-radius: 24px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(46, 125, 50, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.about-logo-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(46, 125, 50, 0.1);
  border-color: rgba(46, 125, 50, 0.25);
}

.about-logo-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(126, 192, 128, 0.08) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

.about-logo-wrapper {
  position: relative;
  z-index: 2;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 0 20px rgba(46, 125, 50, 0.15), 0 8px 24px rgba(0, 0, 0, 0.06);
}

.about-logo-wrapper::before {
  content: '';
  position: absolute;
  width: 160%;
  height: 160%;
  background: conic-gradient(from 0deg, transparent 40%, rgba(46, 125, 50, 0.2) 60%, var(--color-primary) 85%, #81C784 100%);
  animation: rotate-glow 2.5s linear infinite;
  border-radius: 50%;
  z-index: 1;
}

.about-logo-wrapper::after {
  content: '';
  position: absolute;
  top: 4px;
  left: 4px;
  right: 4px;
  bottom: 4px;
  background: #ffffff;
  border-radius: 50%;
  z-index: 2;
  box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.05);
}

.about-logo-card:hover .about-logo-wrapper {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(46, 125, 50, 0.25), 0 12px 30px rgba(0, 0, 0, 0.08);
}

.about-brand-logo {
  width: 80%;
  height: 80%;
  object-fit: contain;
  position: relative;
  z-index: 3;
}

@keyframes rotate-glow {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.about-badge {
  position: relative;
  z-index: 2;
  background: linear-gradient(135deg, #2e7d32 0%, #1b5e20 100%) !important;
  color: #ffffff !important;
  padding: 8px 20px !important;
  border-radius: 30px !important;
  font-size: 13.5px !important;
  font-weight: 600 !important;
  letter-spacing: 0.75px !important;
  margin-bottom: 24px !important;
  box-shadow: 0 4px 12px rgba(46, 125, 50, 0.2) !important;
  text-transform: uppercase;
}

.about-partner-logos {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-top: 1px dashed rgba(46, 125, 50, 0.15);
  width: 100%;
  padding-top: 24px;
}

.partner-title {
  font-size: 11px;
  color: #8c9e90;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
}

.partner-name {
  font-size: 20px;
  font-weight: 700;
  color: #1b5e20;
  letter-spacing: 0.5px;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-description {
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-text-muted);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-description strong {
  color: var(--color-text-dark);
}

/* Artist Showcase Styles */
.artist-showcase {
  border-top: 1px solid var(--color-border);
  padding-top: 60px;
  text-align: center;
}

.showcase-title {
  font-size: 24px;
  font-weight: 800;
  color: var(--color-text-dark);
  margin-bottom: 8px;
}

.showcase-subtitle {
  font-size: 15px;
  color: var(--color-text-muted);
  margin-bottom: 40px;
}

.artist-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.artist-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  padding: 14px 28px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  cursor: default;
}

.artist-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
  background-color: var(--color-primary-pastel);
}

.artist-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text-dark);
}

.artist-card:hover .artist-name {
  color: var(--color-primary);
}
