/* ========================================
   MACFRANS WEBSITE - COMPLETE REDESIGN
   Modern Gospel Music Duo Theme
   ======================================== */

/* ---------- RESET & BASE ---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Nunito', 'Inter', system-ui, sans-serif;
  line-height: 1.7;
  color: #2c2c2c;
  background: #fef9f0;
  overflow-x: hidden;
}

/* Custom scrollbar – gold accent */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #f1e6d9;
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #b8860b, #daa520);
  border-radius: 4px;
}

/* ---------- TYPOGRAPHY & GLOBAL ---------- */
h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.2;
}

.section-title {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  display: inline-block;
  width: 100%;
}
.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #b8860b, #daa520);
  border-radius: 3px;
}

/* ---------- HEADER (glassmorphism with warm tone) ---------- */
.main-header {
  background: rgba(255, 248, 240, 0.95);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(184, 134, 11, 0.2);
  padding: 1rem 3rem;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}
.main-header.scrolled {
  padding: 0.7rem 3rem;
  background: rgba(255, 248, 240, 0.98);
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #daa520;
  background: #fff;
  padding: 2px;
}
.logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.logo h2 {
  font-size: 1.8rem;
  font-weight: 800;
  background: linear-gradient(135deg, #8b4513, #daa520);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Header social icons */
.header-social {
  display: flex;
  gap: 1rem;
}
.header-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: rgba(184, 134, 11, 0.1);
  border-radius: 50%;
  color: #8b4513;
  font-size: 1.2rem;
  transition: all 0.3s;
}
.header-social a:hover {
  background: #daa520;
  color: white;
  transform: translateY(-3px);
}

/* Navigation */
.main-nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}
.main-nav a {
  text-decoration: none;
  color: #5a3e2b;
  font-weight: 600;
  transition: 0.3s;
  position: relative;
}
.main-nav a::before {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #daa520;
  transition: width 0.3s;
}
.main-nav a:hover::before {
  width: 100%;
}
.main-nav a:hover {
  color: #b8860b;
}

/* Dropdown */
.dropdown-menu {
  background: rgba(255, 248, 240, 0.98);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  border: 1px solid rgba(184, 134, 11, 0.3);
}

/* Mobile menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}
.menu-toggle span {
  width: 28px;
  height: 3px;
  background: #8b4513;
  border-radius: 2px;
  transition: 0.3s;
}
@media (max-width: 768px) {
  .main-header {
    padding: 0.8rem 1.5rem;
    flex-wrap: wrap;
  }
  .menu-toggle {
    display: flex;
  }
  .main-nav ul {
    display: none;
    flex-direction: column;
    width: 100%;
    background: white;
    padding: 1rem;
    margin-top: 1rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  }
  .main-nav.active ul {
    display: flex;
  }
  .header-social {
    display: none;
  }
  .logo h2 {
    font-size: 1.3rem;
  }
}

/* ---------- WELCOME BANNER ---------- */
.welcome-banner {
  margin-top: 85px;
  background: linear-gradient(135deg, #2c1a0e, #5a3e2b);
  padding: 3rem 1rem;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}
.banner-content {
  position: relative;
  z-index: 2;
}
.banner-text {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}
.banner-subtext {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 1.5rem;
}
.cta-button {
  display: inline-block;
  background: #daa520;
  color: #2c1a0e;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
}
.cta-button:hover {
  background: #f4c542;
  transform: scale(1.05);
}
@media (max-width: 768px) {
  .banner-text { font-size: 1.8rem; }
  .banner-subtext { font-size: 1rem; }
  .welcome-banner { margin-top: 70px; }
}

/* ---------- ABOUT SECTION ---------- */
.about-section {
  padding: 100px 5%;
  background: #ffffff;
}
.about-container {
  display: flex;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.artist-photo {
  flex: 1;
  min-width: 280px;
}
.artist-photo img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 30px rgba(0,0,0,0.1);
}
.artist-bio {
  flex: 2;
}
.artist-bio h2 {
  font-size: 2.5rem;
  color: #5a3e2b;
  margin-bottom: 1rem;
}
.artist-bio h2 span {
  color: #b8860b;
}
.artist-bio p {
  margin-bottom: 1rem;
  text-align: justify;
}
.btn-learn-more {
  background: linear-gradient(135deg, #b8860b, #daa520);
  color: white;
  padding: 10px 25px;
  border-radius: 30px;
  text-decoration: none;
  display: inline-block;
  transition: 0.3s;
}
.btn-learn-more:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(184,134,11,0.4);
}
@media (max-width: 768px) {
  .about-container { flex-direction: column; text-align: center; }
  .artist-bio p { text-align: center; }
}


/* ========== CAROUSEL - FULLY FIXED (Desktop shows top of images) ========== */
.hero-carousel {
  background: #1f1a15;
  padding: 60px 0;
}

.carousel-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.slides {
  position: relative;
  width: 100%;
}

.slide {
  position: absolute;
  top: 15;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.slide.active {
  opacity: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Default: show top of image (avoids cutting faces) */
  object-position: top;
}

/* DESKTOP (laptops and larger) */
@media (min-width: 769px) {
  .slides {
    height: 550px;
  }
  /* Optional: fine-tune vertical position – adjust percentage if needed */
  .slide img {
    object-position: top 50%; /* shows top part, adjust 0% to 20% as needed */
  }
}

/* TABLET (landscape and smaller laptops) */
@media (min-width: 481px) and (max-width: 768px) {
  .slides {
    height: 400px;
  }
  .slide img {
    object-position: top;
  }
}

/* MOBILE (phones) */
@media (max-width: 480px) {
  .slides {
    height: 300px;
  }
  .slide img {
    object-position: top;
  }
}

/* Carousel buttons */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  border: none;
  color: white;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 2;
  transition: all 0.3s ease;
}

.carousel-btn:hover {
  background: #daa520;
}

.carousel-btn.prev {
  left: 20px;
}

.carousel-btn.next {
  right: 20px;
}

/* Indicators */
.indicators {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 2;
}

.indicator {
  width: 12px;
  height: 12px;
  background: rgba(255,255,255,0.5);
  border-radius: 50%;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
}

.indicator.active {
  background: #daa520;
  transform: scale(1.2);
}


/* ---------- MUSIC & VIDEOS SECTIONS ---------- */
.music-section, .music-videos-section {
  padding: 80px 5%;
}
.music-section {
  background: linear-gradient(145deg, #fff5e8, #fff0e0);
}
.music-videos-section {
  background: #2c241a;
  color: white;
}
.section-title {
  font-size: 2.8rem;
  text-align: center;
  margin-bottom: 2rem;
}
.music-platforms, .videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.platform-card, .video-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0,0,0,0.08);
  transition: 0.3s;
}
.video-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(5px);
}
.platform-card:hover, .video-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 30px rgba(0,0,0,0.15);
}
.platform-header {
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  border-bottom: 1px solid #eee;
}
.platform-header i {
  font-size: 2rem;
  color: #b8860b;
}
.platform-player iframe {
  width: 100%;
  height: 280px;
  border: none;
}
.video-container iframe {
  width: 100%;
  height: 220px;
}
.video-info {
  padding: 1rem;
}
@media (max-width: 768px) {
  .music-platforms, .videos-grid { grid-template-columns: 1fr; }
}

/* ========== FEATURED SECTIONS (BLOG & DAILY WORD) ========== */
#featured-blog, #featured-dailyword {
  padding: 80px 5%;
  background: #fff;
}
#featured-dailyword {
  background: linear-gradient(120deg, #fef5e7, #fffaf2);
}
.featured-card {
  max-width: 1000px;
  margin: 0 auto;
  background: white;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}
.featured-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}
.featured-card-inner {
  padding: 2rem;
}
.featured-card h3 {
  font-size: 2rem;
  color: #5a3e2b;
  margin-bottom: 1rem;
  border-left: 5px solid #daa520;
  padding-left: 1rem;
}
.featured-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin: 1rem 0;
  color: #7a5a3a;
  font-size: 0.9rem;
}
.featured-meta i {
  margin-right: 6px;
  color: #b8860b;
}
.featured-content {
  margin: 1.5rem 0;
  line-height: 1.8;
  color: #2c2c2c;
}
.featured-image {
  width: 100%;
  max-height: 300px;
  object-fit: cover;
  border-radius: 20px;
  margin-bottom: 1rem;
}
.read-more-btn {
  display: inline-block;
  background: #daa520;
  color: #2c1a0e;
  padding: 10px 24px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}
.read-more-btn:hover {
  background: #b8860b;
  color: white;
}
/* Mobile adjustments for featured cards */
@media (max-width: 768px) {
  #featured-blog, #featured-dailyword { padding: 50px 5%; }
  .featured-card-inner { padding: 1.5rem; }
  .featured-card h3 { font-size: 1.5rem; }
  .featured-meta { flex-direction: column; gap: 0.5rem; }
}
@media (max-width: 480px) {
  .featured-card-inner { padding: 1rem; }
  .featured-card h3 { font-size: 1.3rem; }
}

/* ---------- BOOKING SECTION ---------- */
.booking-section {
  background: linear-gradient(135deg, #5a3e2b, #3e2a1c);
  color: white;
  padding: 80px 5%;
}
.booking-container {
  max-width: 1200px;
  margin: 0 auto;
}
.booking-header {
  text-align: center;
  margin-bottom: 3rem;
}
.booking-header h2 { font-size: 2.8rem; }
.booking-content {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2rem;
}
.info-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(5px);
  border-radius: 20px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
.info-card h3 { color: #f4c542; margin-bottom: 1rem; }
.booking-form-section {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  color: #2c2c2c;
}
.booking-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.booking-form input, .booking-form select, .booking-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 12px;
  margin-top: 5px;
}
.submit-btn {
  background: #b8860b;
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 40px;
  cursor: pointer;
  font-weight: bold;
}
@media (max-width: 768px) {
  .booking-content { grid-template-columns: 1fr; }
  .booking-form .form-row { grid-template-columns: 1fr; }
}

/* ---------- GALLERY ---------- */
.gallery-section {
  background: #1f1a15;
  padding: 80px 5%;
  color: white;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}
.gallery-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 16px;
  transition: 0.3s;
  filter: grayscale(0.2);
}
.gallery-grid img:hover {
  transform: scale(1.03);
  filter: grayscale(0);
  box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

/* ---------- ACHIEVEMENTS ---------- */
.achievements-section {
  padding: 80px 5%;
  background: #fff5e8;
  text-align: center;
}
.achievements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}
.achievement-card {
  background: white;
  padding: 2rem;
  border-radius: 24px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
  transition: 0.3s;
}
.achievement-card:hover {
  transform: translateY(-8px);
}
.achievement-icon i {
  font-size: 2.5rem;
  color: #daa520;
  margin-bottom: 1rem;
}

/* ---------- CONTACT ---------- */
.contact-section {
  background: #2c241a;
  padding: 80px 5%;
  color: white;
}
.contact-section form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contact-section input, .contact-section textarea {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 14px;
  border-radius: 12px;
  color: white;
}
.contact-section button {
  background: #daa520;
  border: none;
  padding: 12px;
  border-radius: 40px;
  font-weight: bold;
  cursor: pointer;
}

/* ---------- FOOTER ---------- */
footer {
  background: #1a130c;
  color: white;
  text-align: center;
  padding: 3rem 2rem;
}
.social-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.social-links a {
  color: white;
  background: rgba(255,255,255,0.1);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  transition: 0.3s;
}
.social-links a:hover {
  background: #daa520;
  transform: translateY(-3px);
}
.footer-nav a {
  color: #daa520;
  text-decoration: none;
  margin: 0 0.5rem;
}


/* SUPER COMPACT BANNER */
.welcome-banner {
  margin-top: 85px;
  padding: 0.8rem 1rem !important;  /* tiny vertical padding */
  min-height: auto !important;
  height: auto !important;
  background: linear-gradient(135deg, #2c1a0e, #5a3e2b);
}
.welcome-banner .banner-text {
  font-size: 1.2rem !important;
  margin-bottom: 0.2rem;
}
.welcome-banner .banner-subtext {
  font-size: 0.8rem !important;
  margin-bottom: 0.5rem;
}
.welcome-banner .cta-button {
  padding: 4px 16px;
  font-size: 0.7rem;
}
/* Remove decorations and animations */
.welcome-banner .banner-decoration,
.welcome-banner .music-notes {
  display: none;
}
@media (max-width: 768px) {
  .welcome-banner {
    margin-top: 70px;
    padding: 0.5rem;
  }
}


@media (max-width: 768px) {
  .artist-bio p {
    text-align: justify !important;
  }
}

/* Make music cards same as video cards */
.platform-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0,0,0,0.08);
  transition: 0.3s;
}
.platform-card:hover {
  transform: translateY(-5px);
}
.platform-header {
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  border-bottom: 1px solid #eee;
}
.platform-header i {
  font-size: 2rem;
  color: #b8860b;
}
.platform-header h3 {
  margin: 0;
  font-size: 1.2rem;
}
.platform-player iframe {
  width: 100%;
  border: none;
}


/* Featured sections - compact & cute */
#featured-blog, #featured-dailyword {
  padding: 40px 5%;
  background: #fff;
}
#featured-dailyword {
  background: #fefaf5;
}
.featured-wrapper {
  max-width: 700px;
  margin: 0 auto;
}
.featured-title {
  text-align: center;
  font-size: 1.8rem;
  letter-spacing: 2px;
  font-weight: 600;
  color: #b8860b;
  margin-bottom: 1.5rem;
  font-family: 'Nunito', sans-serif;
}
.featured-card.compact {
  background: white;
  border-radius: 24px;
  padding: 1.5rem;
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
  transition: 0.2s;
}
.featured-card.compact:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 25px rgba(0,0,0,0.1);
}
.featured-card.compact h3 {
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
  color: #5a3e2b;
}
.featured-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8rem;
  color: #7a5a3a;
  margin-bottom: 1rem;
}
.featured-excerpt {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #444;
  margin-bottom: 1rem;
}
.featured-img-small {
  max-height: 160px;
  width: 100%;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 1rem;
}
.read-more-btn {
  background: #daa520;
  color: #2c1a0e;
  padding: 6px 18px;
  border-radius: 30px;
  font-size: 0.8rem;
  text-decoration: none;
  display: inline-block;
}
@media (max-width: 768px) {
  .featured-title { font-size: 1.4rem; }
  .featured-card.compact { padding: 1rem; }
  .featured-card.compact h3 { font-size: 1.2rem; }
}


.booking-footer {
  margin-top: 3rem;
}


.submit-btn {
  margin-top: 1.5rem;  /* increase from default */
  
  
}







/* Modern Footer */
.modern-footer {
  background: #1a130c;
  color: #e0d6c8;
  padding: 3rem 5% 1.5rem;
  font-size: 0.9rem;
}
.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  border-bottom: 1px solid rgba(218,165,32,0.3);
  padding-bottom: 2rem;
}
.footer-brand p {
  margin-top: 0.5rem;
  line-height: 1.5;
}
.footer-logo {
  width: 60px;
  border-radius: 50%;
}
.footer-links h4, .footer-social h4 {
  color: #daa520;
  margin-bottom: 1rem;
}
.footer-links ul {
  list-style: none;
  padding: 0;
}
.footer-links li {
  margin-bottom: 0.5rem;
}
.footer-links a {
  color: #e0d6c8;
  text-decoration: none;
  transition: 0.3s;
}
.footer-links a:hover {
  color: #daa520;
  padding-left: 5px;
}
.social-icons {
  display: flex;
  gap: 1rem;
}
.social-icons a {
  background: rgba(218,165,32,0.2);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #daa520;
  font-size: 1.2rem;
  transition: 0.3s;
}
.social-icons a:hover {
  background: #daa520;
  color: #1a130c;
  transform: translateY(-3px);
}
.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  font-size: 0.8rem;
  opacity: 0.7;
}
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .social-icons {
    justify-content: center;
  }
}







.platform-card {
  display: flex;
  flex-direction: column;
}
.platform-player {
  flex: 1;
}
.platform-player iframe {
  width: 100%;
  height: 220px;
  border: none;
  transition: 0.3s;
}
.platform-player iframe:hover {
  transform: scale(1.01);
}