/**
 * Main Styles
 * IndoLightAudio Theme - Dark Design
 */

/* ==========================================================================
   HEADER STYLES
   ========================================================================== */

/* Header */
.main-header {
  background: #0a0a0a;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar {
  padding: 0 40px;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
}

/* Logo */
.logo a {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-image {
  height: 40px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
}

.logo-text {
  color: #ffffff;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.5px;
}

/* Navigation Wrapper */
.nav-wrapper {
  display: flex;
  align-items: center;
  gap: 50px;
}

/* Navigation Menu */
.nav-menu {
  display: flex;
  list-style: none;
  gap: 40px;
  margin: 0;
  padding: 0;
  align-items: center;
}

.nav-item {
  position: relative;
}

.nav-link {
  text-decoration: none;
  color: #ffffff;
  font-weight: 500;
  font-size: 0.875rem;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
  padding: 8px 0;
  position: relative;
}

.nav-link:hover {
  color: #10b981;
}

.nav-link.active {
  color: #10b981;
}

/* Navigation Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.search-btn {
  background: transparent;
  border: none;
  color: #ffffff;
  cursor: pointer;
  padding: 8px;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
}

.search-btn:hover {
  color: #10b981;
}

/* Contact Button */
.btn-contact {
  background: linear-gradient(180deg, #19b356 0%, #1f7045 100%);
  color: #ffffff !important;
  padding: 12px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-contact:hover {
  background: linear-gradient(180deg, #19b356 0%, #1f7045 100%);
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(25, 179, 86, 0.4);
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.bar {
  width: 25px;
  height: 3px;
  background: #ffffff;
  transition: all 0.3s ease;
  border-radius: 3px;
}

.hamburger.active .bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.active .bar:nth-child(2) {
  opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ==========================================================================
   HERO SECTION STYLES
   ========================================================================== */

.hero-section {
  position: relative;
  padding: 100px 40px 120px;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Hero Background with Dark Overlay */
.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #0a0a0a;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.95) 0%,
    rgba(10, 10, 10, 0.85) 100%
  );
  background-image: radial-gradient(
      at 20% 30%,
      rgba(16, 185, 129, 0.08) 0px,
      transparent 50%
    ),
    radial-gradient(at 80% 70%, rgba(16, 185, 129, 0.05) 0px, transparent 50%);
}

.hero-container {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
}

.hero-content {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

/* Hero Text Column */
.hero-text {
  color: white;
  animation: fadeInUp 0.8s ease;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 28px;
  color: #ffffff;
}

.highlight-text {
  background: linear-gradient(180deg, #19b356 0%, #1f7045 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  display: inline-block;
}

.hero-description {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 35px;
  color: rgba(255, 255, 255, 0.85);
  animation: fadeInUp 0.8s ease 0.2s backwards;
}

.hero-button {
  animation: fadeInUp 0.8s ease 0.4s backwards;
}

/* CTA Button */
.btn-cta {
  display: inline-block;
  background: linear-gradient(180deg, #19b356 0%, #1f7045 100%);
  color: #ffffff;
  padding: 16px 36px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(25, 179, 86, 0.3);
}

.btn-cta:hover {
  background: linear-gradient(180deg, #19b356 0%, #1f7045 100%);
  color: #ffffff !important;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(25, 179, 86, 0.4);
}

/* Hero Media Column */
.hero-media {
  position: relative;
  animation: fadeInRight 0.8s ease 0.4s backwards;
}

.image-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6);
  transition: transform 0.3s ease;
}

.image-wrapper:hover {
  transform: translateY(-5px);
}

.hero-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}

/* Shimmer Effect */
.shimmer-effect {
  position: relative;
  overflow: hidden;
}

.shimmer-overlay {
  position: absolute;
  top: -100%;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.15),
    transparent
  );
  animation: shimmer 4s infinite;
}

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */

@keyframes shimmer {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }
  100% {
    transform: translateX(300%) translateY(300%) rotate(45deg);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ==========================================================================
   TENTANG KAMI SECTION
   ========================================================================== */

.tentang-kami-section {
  padding: 100px 40px;
  background: #f8f9fa;
}

.tentang-kami-container {
  max-width: 1400px;
  margin: 0 auto;
}

.tentang-kami-content {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}

/* Gallery Grid - Kiri */
.tentang-kami-gallery {
  position: relative;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(3, 200px);
  gap: 15px;
}

.gallery-item {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-5px);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-item-1 {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
}

.gallery-item-2 {
  grid-column: 2 / 3;
  grid-row: 1 / 3;
}

.gallery-item-3 {
  grid-column: 1 / 2;
  grid-row: 2 / 3;
}

.gallery-item-4 {
  grid-column: 1 / 2;
  grid-row: 3 / 4;
}

.gallery-item-5 {
  grid-column: 2 / 3;
  grid-row: 3 / 4;
}

/* Text Content - Kanan */
.tentang-kami-text {
  padding-left: 20px;
}

.section-subtitle {
  color: #19b356;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 15px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: #0a0a0a;
  margin-bottom: 25px;
}

.about-description {
  margin-bottom: 30px;
}

.about-description p {
  font-size: 1rem;
  line-height: 1.8;
  color: #666;
  margin-bottom: 0;
}

.about-description strong {
  color: #0a0a0a;
}

/* Features List */
.about-features {
  margin-bottom: 35px;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 30px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.check-icon {
  flex-shrink: 0;
}

.feature-item span {
  font-size: 1rem;
  color: #333;
  font-weight: 500;
}

/* Experience Badges Wrapper */
.experience-badges-wrapper {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Experience Badge */
.experience-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 25px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  flex: 1;
  min-width: 280px;
}

.badge-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.badge-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #19b356;
  line-height: 1;
  margin-bottom: 5px;
}

.badge-label {
  font-size: 0.9rem;
  color: #666;
  font-weight: 500;
  line-height: 1.3;
}

/* Button */
.btn-about {
  display: inline-block;
  background: linear-gradient(180deg, #19b356 0%, #1f7045 100%);
  color: #ffffff;
  padding: 16px 36px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(25, 179, 86, 0.3);
}

.btn-about:hover {
  background: linear-gradient(180deg, #19b356 0%, #1f7045 100%);
  color: #ffffff !important;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(25, 179, 86, 0.4);
}

/* ==========================================================================
   KEUNGGULAN SECTION
   ========================================================================== */

.keunggulan-section {
  padding: 100px 40px;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.keunggulan-section::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 1000px;
  height: 500px;
  background-image: url("../images/keunggulan-top.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top left;
  z-index: 0;
  opacity: 0.8;
}

.keunggulan-section::after {
  content: "";
  position: absolute;
  bottom: 0px;
  right: 0px;
  width: 1000px;
  height: 600px;
  background-image: url("../images/keunggulan-bottom.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom right;
  z-index: 0;
  opacity: 0.8;
}

.keunggulan-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

/* Keunggulan Grid */
.keunggulan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Keunggulan Card */
.keunggulan-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
}

.keunggulan-card:hover {
  border-color: #19b356;
  box-shadow: 0 10px 30px rgba(25, 179, 86, 0.15);
  transform: translateY(-5px);
}

/* Icon */
.keunggulan-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 25px;
}

.keunggulan-icon svg {
  transition: transform 0.3s ease;
}

.keunggulan-card:hover .keunggulan-icon svg {
  transform: scale(1.1);
}

/* Title */
.keunggulan-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0a0a0a;
  margin-bottom: 15px;
  line-height: 1.3;
}

/* Description */
.keunggulan-description {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #666;
  margin: 0;
}

/* ==========================================================================
   LAYANAN SECTION
   ========================================================================== */

.layanan-section {
  padding: 100px 40px;
  background: #0a0a0a;
}

.layanan-container {
  max-width: 1400px;
  margin: 0 auto;
}

/* Layanan Header */
.layanan-header {
  text-align: center;
  margin-bottom: 60px;
}

.layanan-header .section-subtitle {
  color: #19b356;
}

.layanan-header .section-title {
  color: #ffffff;
  margin-bottom: 20px;
}

.layanan-intro {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
  max-width: 900px;
  margin: 0 auto;
}

/* Layanan Grid */
.layanan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* Layanan Card */
.layanan-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 350px;
  transition: transform 0.3s ease;
}

.layanan-card:hover {
  transform: translateY(-10px);
}

/* Layanan Image */
.layanan-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.layanan-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Overlay */
.layanan-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0.8) 100%
  );
  transition: background 0.3s ease;
}

.layanan-card:hover .layanan-overlay {
  background: linear-gradient(
    180deg,
    rgba(25, 179, 86, 0.3) 0%,
    rgba(0, 0, 0, 0.85) 100%
  );
}

/* Layanan Content */
.layanan-content {
  position: relative;
  z-index: 1;
  padding: 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.layanan-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.3;
}

/* Button Layanan */
.btn-layanan {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #19b356;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
  width: fit-content;
}

.btn-layanan:hover {
  color: #ffffff;
  gap: 12px;
}

/* ==========================================================================
   GALERY SECTION
   ========================================================================== */

.galery-section {
  padding: 100px 40px;
  background: #f8f9fa;
}

.galery-container {
  max-width: 1400px;
  margin: 0 auto;
}

/* Galery Header */
.galery-header {
  text-align: center;
  margin-bottom: 60px;
}

.galery-intro {
  font-size: 1rem;
  line-height: 1.8;
  color: #666;
  max-width: 900px;
  margin: 20px auto 0;
}

/* Galery Grid */
.galery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 50px;
}

/* Galery Item */
.galery-item {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  height: 300px;
  cursor: pointer;
}

/* Galery Image Wrapper */
.galery-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.galery-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.galery-item:hover .galery-image-wrapper img {
  transform: scale(1.1);
}

/* Galery Overlay */
.galery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(25, 179, 86, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.galery-item:hover .galery-overlay {
  opacity: 1;
}

/* Galery Icon */
.galery-icon {
  transform: scale(0.8);
  transition: transform 0.3s ease;
}

.galery-item:hover .galery-icon {
  transform: scale(1);
}

/* Galery CTA */
.galery-cta {
  text-align: center;
  margin-top: 50px;
}

.btn-galery {
  display: inline-block;
  background: linear-gradient(180deg, #19b356 0%, #1f7045 100%);
  color: #ffffff;
  padding: 16px 36px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(25, 179, 86, 0.3);
}

.btn-galery:hover {
  background: linear-gradient(180deg, #19b356 0%, #1f7045 100%);
  color: #ffffff !important;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(25, 179, 86, 0.4);
}

/* ==========================================================================
   ARTIKEL SECTION
   ========================================================================== */

.artikel-section {
  background: #f8f9fa;
  padding: 100px 40px;
  position: relative;
}

.artikel-container {
  max-width: 1400px;
  margin: 0 auto;
}

/* Artikel Header */
.artikel-header {
  text-align: center;
  margin-bottom: 60px;
}

.artikel-intro {
  max-width: 800px;
  margin: 0 auto;
  color: #666;
  font-size: 1rem;
  line-height: 1.8;
}

/* Artikel Grid */
.artikel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

/* Artikel Card */
.artikel-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.artikel-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

/* Artikel Image */
.artikel-image {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.artikel-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.artikel-card:hover .artikel-image img {
  transform: scale(1.1);
}

.artikel-category {
  position: absolute;
  top: 16px;
  left: 16px;
  background: linear-gradient(180deg, #19b356 0%, #1f7045 100%);
  color: #ffffff;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Artikel Content */
.artikel-content {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.artikel-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.artikel-date {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #999;
  font-size: 0.875rem;
}

.artikel-date svg {
  flex-shrink: 0;
}

.artikel-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 12px;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.artikel-card:hover .artikel-title {
  color: #19b356;
}

.artikel-excerpt {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
  flex: 1;
}

.artikel-link {
  display: inline-flex;
  align-items: center;
  color: #19b356;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.artikel-link:hover {
  color: #1f7045;
  gap: 8px;
}

/* Artikel CTA */
.artikel-cta {
  text-align: center;
}

.btn-artikel {
  display: inline-block;
  background: linear-gradient(180deg, #19b356 0%, #1f7045 100%);
  color: #ffffff;
  padding: 16px 36px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(25, 179, 86, 0.3);
}

.btn-artikel:hover {
  background: linear-gradient(180deg, #19b356 0%, #1f7045 100%);
  color: #ffffff !important;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(25, 179, 86, 0.4);
}

/* ==========================================================================
   TESTIMONI SECTION
   ========================================================================== */

.testimoni-section {
  background: #0a0a0a;
  padding: 100px 40px;
  position: relative;
}

.testimoni-container {
  max-width: 1400px;
  margin: 0 auto;
}

/* Testimoni Header */
.testimoni-header {
  text-align: center;
  margin-bottom: 60px;
}

.testimoni-intro {
  max-width: 800px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  line-height: 1.8;
}

/* Testimoni Grid */
.testimoni-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Testimoni Card */
.testimoni-card {
  background: #1a1a1a;
  border-radius: 12px;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.testimoni-card:hover {
  transform: translateY(-5px);
  border-color: rgba(25, 179, 86, 0.5);
  box-shadow: 0 8px 30px rgba(25, 179, 86, 0.15);
}

/* Testimoni Rating */
.testimoni-rating {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}

/* Testimoni Text */
.testimoni-text {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 24px;
  flex: 1;
  position: relative;
}

.testimoni-text::before {
  content: '"';
  font-size: 4rem;
  color: #19b356;
  position: absolute;
  top: -20px;
  left: -10px;
  opacity: 0.2;
  font-family: Georgia, serif;
  line-height: 1;
}

/* Testimoni Author */
.testimoni-author {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.author-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid rgba(25, 179, 86, 0.3);
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-info {
  flex: 1;
}

.author-name {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.author-event {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
}

/* ==========================================================================
   FOOTER STYLES
   ========================================================================== */

.main-footer {
  background: #0a0a0a;
  color: rgba(255, 255, 255, 0.7);
  padding: 50px 40px;
  margin-top: 0;
  border-top: 1px solid #1a1a1a;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
}

.footer-content {
  text-align: center;
}

.footer-content p {
  margin: 8px 0;
  font-size: 0.95rem;
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
}
