/* Variables */
:root {
  --primary-color: #ff7b54;
  --accent-color: #f1c40f;
  --bg-dark: #0d0d0d;
  --card-bg: rgba(255, 255, 255, 0.05);
  --glass-blur: 10px;
}

/* Reset */
* {margin:0;padding:0;box-sizing:border-box;}
body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  background: var(--bg-dark);
  color: #fff;
  line-height:1.6;
}

/* Navbar */
/* Navbar base */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 1rem 2%;
  z-index: 1000;
  display: flex;
  justify-content: center;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

/* Navbar container */
.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  max-width: 1200px;
}

/* Logo */
.navbar .logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1.5rem;
  color: #fff;
  text-decoration: none;
}

.logo-img {
  height: 45px;
  width: 45px;
}

/* Nav links */
.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav-links a {
  text-decoration: none;
  font-weight: 600;
  color: #fff;
  position: relative;
  transition: all 0.3s ease;
  
}

/* Underline hover animation */
.nav-links a::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 2px;
  left: 0;
  bottom: -5px;
  background: #f1c40f;
  transition: 0.3s;
}

.nav-links a:hover::after {
  width: 100%;
}

/* Hamburger Menu for Mobile */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  height: 3px;
  width: 25px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Responsive for Mobile */
@media (max-width: 768px) {
  /* Hide nav links by default */
  .nav-links {
    position: fixed; /* fixed so it slides over content */
    top: 0;
    right: -50%; /* hidden off-screen */
    width: 50%; /* half of screen */
    height: 100vh;
    background: rgba(0, 0, 0, 0.9); /* dark overlay */
    backdrop-filter: blur(8px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 2rem 1rem;
    transition: right 0.35s ease;
    z-index: 1000;
  }

  /* Show menu when active */
  .nav-links.show {
    right: 0;
  }

  .nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
    transition: color 0.3s ease;
  }

  .nav-links a:hover {
    color: #f0c040; /* subtle hover */
  }

  /* Hamburger icon */
  .hamburger {
    display: flex;
    cursor: pointer;
    z-index: 1100; /* above menu */
    position: relative;
  }
}


/* Hero */
/* Hero/Header */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  padding-top: 80px; /* navbar height */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: url('../images/headerphoto.png') center/cover no-repeat;
  background-size: cover;
  animation: fadeInHero 1.5s ease-in-out;
  
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  z-index: 1;
}

/* Allow clicks to pass through overlay and floating shapes */
.hero::before,
.floating-shapes .shape {
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center; /* center text horizontally */
  align-items: center;
  flex-direction: column;
  text-align: center;
  max-width: 900px;
  padding: 0 1rem;
  opacity: 0;
  animation: fadeInContent 1.5s ease-in-out forwards 0.5s;
}

@media (max-width: 768px) {
  .hero {
    background-attachment: scroll; /* fix mobile parallax */
  }
}


/* Animations */
@keyframes fadeInHero {
  0% { opacity: 0; transform: scale(1.05); }
  100% { opacity: 1; transform: scale(1); }
}

@keyframes fadeInContent {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
  }
}



/* Floating shapes */
.floating-shapes .shape{
  position:absolute;
  border-radius:50%;
  opacity:0.3;
  animation: float 6s ease-in-out infinite;
}
.shape.circle{width:50px;height:50px;background:var(--primary-color);top:10%;left:20%;}
.shape.triangle{width:40px;height:40px;background:var(--accent-color);top:70%;left:80%;clip-path:polygon(50% 0%,0% 100%,100% 100%);}
.shape.square{width:60px;height:60px;background:#ff00ff;top:50%;left:50%;}
@keyframes float{0%{transform:translateY(0)}50%{transform:translateY(-20px)}100%{transform:translateY(0)}}

/* Featured Episodes Section */

/* Featured Episodes Section */
.featured {
  padding: 5rem 2rem;
  background: #0f0f0f;
  border-radius: 15px;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 3rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* Grid */
.featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  padding: 1rem;
}

/* Fancy card style */
.featured-grid > * {
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  color: #fff; /* ensures text is readable */
  border-radius: 18px;
  padding: 1.6rem;
  border: 1px solid rgba(255, 255, 255, 0.2);

  /* glossy depth */
  box-shadow:
    0 6px 20px rgba(0,0,0,0.3),
    0 0 15px rgba(255,255,255,0.1) inset;

  /* soft floating effect */
  transform: translateY(0);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    background 0.35s ease;
}

/* Hover fancy effect */
.featured-grid > *:hover {
  transform: translateY(-6px) scale(1.02);
  background: linear-gradient(135deg, #2a2a2a 0%, #1f1f1f 100%);
  box-shadow:
    0 10px 25px rgba(0,0,0,0.4),
    0 0 20px rgba(255,255,255,0.1) inset;
}

/* ----------------------- */
/* Mobile Responsive Tweaks */
@media (max-width: 1024px) {
  .featured-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); /* allow 2 columns on tablets */
  }
}

@media (max-width: 768px) {
  .featured {
    padding: 3rem 1.5rem;
  }

  .section-title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }

  .featured-grid {
    grid-template-columns: 1fr; /* one column for small phones */
    gap: 1.5rem;
    padding: 0.5rem;
  }

  .featured-grid > * {
    padding: 1rem;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 1.7rem;
    letter-spacing: 1px;
  }

  .featured {
    padding: 2rem 1rem;
  }
}



/* Video Card */
.video-card {
  background: #1a1a1a;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.6);
  transform: translateY(30px);
  opacity: 0;
  animation: fadeUp 0.8s forwards;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Animate in with stagger */
.featured-item:nth-child(1) .video-card { animation-delay: 0.2s; }
.featured-item:nth-child(2) .video-card { animation-delay: 0.4s; }
.featured-item:nth-child(3) .video-card { animation-delay: 0.6s; }

@keyframes fadeUp {
  0% { opacity: 0; transform: translateY(30px);}
  100% { opacity: 1; transform: translateY(0);}
}

/* Hover Zoom */
.video-card:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 15px 40px rgba(0,0,0,0.7);
}

/* Card Image */
.video-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.video-card img:hover {
  transform: scale(1.05);
}

/* Video Info */
.video-info {
  padding: 1.5rem;
  text-align: center;
}

.video-info h3 {
  color: #f1c40f;
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
}

.video-info p {
  color: #ccc;
  font-size: 0.95rem;
  margin-bottom: 1.2rem;
}

/* Button */
.btn.primary {
  padding: 0.7rem 1.5rem;
  border-radius: 25px;
  font-weight: bold;
  text-decoration: none;
  color: #222;
  background: #f1c40f;
  transition: all 0.3s ease;
}

.btn.primary:hover {
  background: #ff7b54;
  color: #fff;
  transform: scale(1.05);
}

/* Responsive */
@media(max-width:768px){
  .featured-grid { grid-template-columns: 1fr; }
}



/* Videos Page */
.videos-header{padding:120px 0 40px;text-align:center;}
#search{padding:.7rem 1rem;width:300px;border-radius:25px;border:none;margin-top:0.5rem;}
.video-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(250px,1fr));gap:2rem;margin:2rem 0;}
.video-card{background:var(--card-bg);backdrop-filter:blur(var(--glass-blur));padding:1rem;border-radius:15px;text-align:center;opacity:0;transform:translateY(20px);transition:0.6s;}
.video-card.show{opacity:1;transform:translateY(0);}
.video-card img{width:100%;height:180px;object-fit:cover;border-radius:10px;}
.video-card h3{margin:1rem 0 .5rem;font-size:1.1rem;}
.video-card p{font-size:.95rem;margin-bottom:1rem;}

/* Buttons */
.btn.primary{padding:.7rem 1.4rem;border-radius:25px;text-decoration:none;font-weight:bold;color:#000;background:var(--accent-color);transition:0.3s;display:inline-block;}
.btn.primary:hover{background:yellow;}
/* Footer Styles */
.site-footer {
  background: #0d0d0d;
  color: #ddd;
  padding: 2.5rem 1rem; /* Added horizontal padding for smaller screens */
  border-top: 1px solid #222;
  font-family: sans-serif;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap; /* Ensures items wrap on smaller screens */
}

.footer-left p {
  margin: 0.3rem 0;
  font-size: 0.95rem;
}

.footer-left .tagline {
  opacity: 0.7;
  font-size: 0.9rem;
}

.footer-socials ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap; /* Makes social icons wrap if too many */
  gap: 0.6rem;
}

.footer-socials li {
  margin-bottom: 0; /* Reset bottom margin since using flex gap */
}

.footer-socials a {
  color: #ddd;
  text-decoration: none;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.2s ease;
}

.footer-socials a:hover {
  color: #fff;
}

.footer-socials i {
  font-size: 1.1rem;
}

/* Mobile / Responsive */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem; /* Increase spacing between sections */
  }

  .footer-socials ul {
    justify-content: center; /* Center social icons on mobile */
  }

  .footer-left, .footer-socials {
    width: 100%;
  }
}


/* Responsive */
@media(max-width:768px){.hero-content{flex-direction:column;text-align:center;}.nav-links{flex-direction:column;gap:0.5rem;}}




/* About PAGE CSS */

.podcast-about {
  padding: 70px 20px;
  background: linear-gradient(135deg, #111, #222);
  color: #fff;
  font-family: "Poppins", Arial, sans-serif;
}

.about-wrapper {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 60px;
  align-items: center;
  flex-wrap: wrap;
}

.about-left {
  flex: 1.3;
  min-width: 300px;
}

.about-left h1 {
  font-size: 40px;
  margin-bottom: 10px;
  background: linear-gradient(90deg, #ff7f00, #ffd000);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-left h2 {
  font-size: 22px;
  margin-bottom: 25px;
  opacity: 0.9;
}

.about-left p {
  font-size: 17px;
  line-height: 1.7;
  margin: 15px 0;
  color: #e0e0e0;
}

.about-btn {
  display: inline-block;
  margin-top: 25px;
  background: #ffd000;
  color: #000;
  padding: 12px 26px;
  font-size: 16px;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: 0.3s;
}

.about-btn:hover {
  transform: translateY(-3px);
  opacity: 0.85;
}

/* RIGHT SIDE IMAGE */
.about-right {
  flex: 1;
  min-width: 280px;
  text-align: center;
}

.about-right img {
  width: 100%;
  max-width: 380px;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.5);
  animation: fadeIn 1.2s ease;
}

/* ANIMATION */
@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to   { opacity: 1; transform: scale(1); }
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .about-wrapper { gap: 30px; }
  .about-left h1 { font-size: 32px; }
  .about-right img { max-width: 300px; }
}



/* CONTACT SECTION */
.contact-container {
  max-width: 900px;
  margin: 80px auto;
  padding: 30px;
  background: rgba(255, 255, 255, 0.97);
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0,0,0,0.15);
  backdrop-filter: blur(15px);
  animation: fadeContact 0.8s ease;
  font-family: "Poppins", sans-serif;
}

.contact-container h1 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 40px;
  background: linear-gradient(90deg, #ff7f00, #ffd000);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

.contact-flex {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: space-between;
}

/* LEFT SIDE — INFO */


/* RIGHT SIDE — FORM (Google Form) */
.contact-form {
  flex: 1;
  min-width: 260px;
}

.contact-form h2 {
  font-size: 22px;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
}

.contact-form iframe {
  width: 100%;
  height: 480px;
  border: none;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1); /* Optional: adds a shadow for a better look */
}

/* BUTTON (optional for a traditional form) */
.contact-form button {
  width: 100%;
  background: #ff7f00;
  padding: 14px;
  border: none;
  border-radius: 10px;
  color: #000;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form button:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}

/* ANIMATION */
@keyframes fadeContact {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .contact-container {
    margin: 60px 20px 20px 20px; /* Increased top margin to 60px */
    padding: 30px;
  }

  /* Adjust form layout on smaller screens */
  .contact-flex {
    flex-direction: column;
    gap: 20px;
  }

  /* Adjust iframe height and width for mobile */
  .contact-form iframe {
    height: 400px; /* Slightly reduced height for mobile */
  }

  /* Center align text in contact-info */
  .contact-info {
    text-align: center;
  }
}


/* Login button styling */
.login-btn {
  background: #f0c040; /* gold/yellow */
  color: #000;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-weight: 600;
  transition: background 0.3s ease, transform 0.2s ease;
}

.login-btn:hover {
  background: #e6b030; /* darker on hover */
  transform: scale(1.05);
}

/* Optional: make it stand out more on mobile side menu */
@media (max-width: 768px) {
  .login-btn {
    width: 80%;
    text-align: center;
    margin-top: 1rem;
  }
}

