/* HEADER */

.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 30px 0px; /* remove side padding here */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
}

.header .container {
  width: 100%;
  max-width: 1200px; /* Keeps contents centered*/
  margin: 0 auto;    /* centers it horizontally */
  padding: 0 60px; /* side padding for small screens */
  display: flex;     
  justify-content: space-between; 
  align-items: center;
}

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

.logo img {
  height: 20px;
}

.logo span {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
}

/* Navigation */
.nav ul {
  list-style: none;
  display: flex;
  gap: 40px;
  margin: 0;
  padding: 0;
}

.nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}

.nav a:hover {
  color: #c271ff;
}

 /* HERO SECTION */

.hero {
  position: relative;
  background: url("images/Object.png") center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 120px 20px 100px;
  overflow: hidden;
}

/* Dark gradient overlay (top to bottom fade) */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(10, 10, 30, 0.9));
  z-index: 1;
}

/* Content (text, button) */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

/* Main heading */
.hero-content h1 {
  font-size: 4.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}

/* Tag words (SMILES, GRIN, LAUGH) */
.hero-tags {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-bottom: 25px;
  font-size: 1rem;
  letter-spacing: 3px;
  opacity: 0.85;
}

/* Purple button */
.btn-primary {
  background-color: #c271ff;
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: 15px 40px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #a85ae8;
  transform: translateY(-2px);
}

/* Subtext "Learn from the pros" */
.subtext {
  margin-top: 60px;
  font-size: 1.3rem;
  font-weight: 400;
}

.subtext .highlight {
  color: #c271ff;
  font-weight: 600;
}

/* === HERO PROFILES SECTION === */
.hero-profiles {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: nowrap;       /* keep profiles in one line */
  gap: 40px;               /* reduced space between profiles */
  margin-top: 60px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.hero-profiles .author img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
}

/* Individual profile */
/* Author: image and name side by side */
.video-meta .author {
  display: flex;
  align-items: center; /* vertically centers name and image */
  gap: 10px;
}

.video-meta .author img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0; /* prevent image from shrinking */
}

.video-meta .author h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #C271FF;
  margin: 0;
  display: inline-block; /* ensures side-by-side layout */
  white-space: nowrap; /* prevents wrapping */
}


.author:hover {
  transform: translateY(-4px);
}


/* Description text (italic) */
.author p {
  font-size: 0.85rem;
  font-style: italic;
  line-height: 1.3;
  color: #ddd;
  margin-top: 0; /* no extra gap */
}

/* Year below text */
.award-year {
  display: block;
  font-style: normal;
  font-size: 0.8rem;
  color: #bbb;
  margin-top: 0; /* no extra gap */
}
 

/* QUOTE SECTION */

.quote {
  background-color: #c271ff;
  color: #fff;
  padding: 100px 20px;
}

.quote-container {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  min-height: 250px;
  
}

.quote-img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  
}

.quote-text {
  max-width: 600px;
  text-align: left; /* ⬅️ Left-aligns the quote content */
  display: flex;
  flex-direction: column;
  justify-content: center;  /* centers the quote + name vertically */

  height: 100%;  /* takes full height of the container */
}

.quote-text blockquote {
  font-size: 1.4rem;
  font-weight: 300;
  font-style: normal;
  line-height: 1.6;
  margin-bottom: 20px;
  
}

.quote-text blockquote::before {
  content: '“';
  font-size: 2rem;
  vertical-align: top;
  color: #fff;
  opacity: 0.7;
  margin-right: 8px;
}



.quote-text h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 5px;
  
}

.quote-text p {
  font-size: 1rem;
  color: #f0e7ff;
  opacity: 0.9;
}

/* === VIDEOS SECTION === */
.videos {
  background-color: #fff;
  padding: 80px 100px;
  text-align: center;
}

.videos h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #071629;
  margin-bottom: 60px;
}

.videos h2 span {
  color: #C271FF; /* brand accent */
}

/* Grid Layout - 4 items horizontally */
.videos .video-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  justify-items: center;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.videos .video-card {
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  text-align: left;
  width: 100%;
  max-width: 260px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.videos .video-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Background thumbnail */
.videos .video-thumbnail {
  position: relative;
  width: 100%;
  height: 200px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Play button overlay */
.videos .video-thumbnail .play-btn {
  width: 60px;
  height: 60px;
  opacity: 0.9;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.videos .video-thumbnail:hover .play-btn {
  opacity: 1;
  transform: scale(1.1);
}

/* Text content */
.videos .video-card h3 {
  font-size: 1.2rem;
  color: #071629;
  margin: 15px 20px 5px;
  font-weight: 600;
}

.videos .video-card p {
  font-size: 0.95rem;
  color: #5f6a7d;
  margin: 0 20px 15px;
  line-height: 1.5;
}

/* === META SECTION === */
.videos .video-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 15px 20px;
  color: #C271FF;
}

/* Author inside videos only */
.videos .author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.videos .author img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
}


.videos .author h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #C271FF;
  margin: 0;
}

/* Rating row */
.videos .video-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.videos .rating {
  display: flex;
  align-items: center;
  gap: 6px;
}

.videos .rating img {
  width: 80px;
}

.videos .rating p,
.videos .duration {
  font-size: 0.85rem;
  font-weight: 600;
  color: #C271FF;
  margin: 0;
}

/* RESPONSIVE TWEAK FOR SMALLER DEVICES */
@media (max-width: 1024px) {
  .videos .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .videos .video-grid {
    grid-template-columns: 1fr;
  }
}


/* === MEMBERSHIP SECTION === */
.membership {
  background-color: #071629;
  color: #fff;
  text-align: center;
  padding: 100px 80px;
}

.membership h2 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 70px;
}

.membership h2 span {
  color: #C271FF; /* accent color */
  font-weight: 700;
}

/* Membership cards layout */
.membership-cards {
  display: flex;
  justify-content: center;
  align-items: start;
  flex-wrap: wrap;
  gap: 60px;
  margin-bottom: 70px;
}

/* Individual card */
.membership .card {
  width: 220px;
  text-align: center;
}

.membership .card img {
  width: 70px;
  height: 70px;
  margin-bottom: 25px;
}

.membership .card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #fff;
}

.membership .card p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.8);
}

/* Button styling */
.membership .btn-primary {
  background-color: #C271FF;
  color: #fff;
  padding: 15px 40px;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.membership .btn-primary:hover {
  background-color: #a24ce7;
  transform: translateY(-4px);
}

/* Responsive */
@media (max-width: 768px) {
  .membership {
    padding: 80px 40px;
  }

  .membership-cards {
    gap: 40px;
  }

  .membership .card {
    width: 180px;
  }
}

/* === FAQ SECTION === */
.faq {
  background-color: #fff;
  color: #071629;
  text-align: center;
  padding: 100px 80px;
}

.faq h2 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 80px;
  color: #071629;
}

/* Container for two columns */
.faq-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 100px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
}

/* Each column */
.faq-column {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

/* Each Q&A item */
.faq-item h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #071629;
  margin-bottom: 10px;
}

.faq-item p {
  font-size: 1rem;
  color: #5f6a7d;
  line-height: 1.6;
  max-width: 500px;
}

/* Accent hover effect (optional subtle highlight on question titles) */
.faq-item h3:hover {
  color: #C271FF;
  cursor: pointer;
  transition: color 0.3s ease;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .faq-container {
    flex-direction: column;
    gap: 60px;
    align-items: center;
  }

  .faq-column {
    gap: 40px;
  }

  .faq-item p {
    max-width: 100%;
  }
}

/* === FOOTER SECTION === */
.footer {
  background-color: #071629;
  color: #fff;
  text-align: center;
  padding: 60px 0 30px;
  position: relative;
}

/* Footer content layout */
.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto 30px;
  padding: 0 40px;
  flex-wrap: wrap;
}

/* Logo */
.footer-logo img {
  width: 150px;
  height: auto;
}

/* Social media icons */
.footer-socials {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  margin-top: 20px;
}

.footer-socials a {
  background-color: #fff;        /* white circle background */
  width: 45px;
  height: 45px;
  border-radius: 50%;            /* makes it circular */
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.footer-socials a:hover {
  background-color: #C271FF;     /* purple hover background */
  transform: scale(1.1);
}

.footer-socials a img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  filter: invert(20%) brightness(0%); /* makes icon dark (black) */
  transition: filter 0.3s ease;
}

.footer-socials a:hover img {
  filter: invert(100%); /* turns icon white on hover */
}
