/* =====================
   RESET & BASE STYLES
   ===================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
}

/* =====================
   HERO SECTION
   ===================== */
.matchaura-hero {
    position: relative;
    height: 100vh;
    background: linear-gradient(135deg, rgba(200, 90, 90, 0.9) 0%, rgb(139 0 0 / 27%) 0%, rgb(139 0 0 / 22%) 0%),
                url('../img/match-aura-home-banner.png') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding: 20px;
}

.matchaura-hero-content {
    max-width: 800px;
    animation: matchaura-fadeInUp 1s ease;
}

.matchaura-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.matchaura-hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

/* =====================
   BUTTONS
   ===================== */
.matchaura-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.matchaura-btn {
    padding: 15px 40px;
    font-size: 1.1rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
}

.matchaura-btn-primary {
    background: white;
    color: #8b0000;
}

.matchaura-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
    background: #fff5f5;
}

.matchaura-btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.matchaura-btn-secondary:hover {
    background: white;
    color: #8b0000;
}

/* =====================
   CONTAINER
   ===================== */
.matchaura-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.matchaura-section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #8b0000;
    margin-bottom: 50px;
    font-weight: 700;
}

/* =====================
   FEATURES SECTION
   ===================== */
.matchaura-features {
    padding: 80px 20px;
    background: #fff5f5;
}

.matchaura-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.matchaura-feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(139, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.matchaura-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(139, 0, 0, 0.2);
    border-color: #c85a5a;
}

.matchaura-feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.matchaura-feature-title {
    font-size: 1.5rem;
    color: #8b0000;
    margin-bottom: 15px;
    font-weight: 600;
}

.matchaura-feature-text {
    color: #6b7280;
    line-height: 1.6;
}

/* =====================
   PROFILES SECTION (GRID)
   ===================== */
.matchaura-profiles {
    padding: 80px 20px;
    background: white;
}

.matchaura-profiles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

/* =====================
   PROFILES SECTION (SLIDER WITH ARROWS)
   ===================== */
.matchaura-slider-wrapper {
    position: relative;
    padding: 0 80px;
}

.matchaura-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    padding: 20px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.matchaura-slider::-webkit-scrollbar {
    display: none;
}

.matchaura-slider .matchaura-profile-card {
    flex: 0 0 calc(33.333% - 14px);
    min-width: 300px;
    max-width: 350px;
}

/* Slider Arrow Buttons */
.matchaura-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    color: #8b0000;
    border: 2px solid #8b0000;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: bold;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.matchaura-slider-arrow:hover {
    transform: translateY(-50%) scale(1.15);
    background: linear-gradient(135deg, #c85a5a 0%, #8b0000 100%);
    color: white;
    border-color: transparent;
    box-shadow: 0 12px 35px rgba(139, 0, 0, 0.35);
}

.matchaura-slider-arrow:active {
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 6px 20px rgba(139, 0, 0, 0.3);
}

.matchaura-slider-arrow-left {
    left: 10px;
}

.matchaura-slider-arrow-right {
    right: 10px;
}

/* Hide arrows on mobile */
@media (max-width: 640px) {
    .matchaura-slider-wrapper {
        padding: 0;
    }
    
    .matchaura-slider-arrow {
        display: none;
    }
}

/* =====================
   PROFILE CARD
   ===================== */
.matchaura-profile-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(139, 0, 0, 0.15);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.matchaura-profile-card:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(139, 0, 0, 0.3);
    border-color: #c85a5a;
}

.matchaura-profile-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.matchaura-profile-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: center top;
    transition: filter 0.3s ease;
}

.matchaura-profile-info {
    padding: 20px;
}

.matchaura-profile-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: #8b0000;
    margin-bottom: 5px;
}

.matchaura-profile-details {
    color: #6b7280;
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.matchaura-profile-btn {
    width: 100%;
    padding: 10px;
    background: linear-gradient(135deg, #c85a5a 0%, #8b0000 50%, #8b0000 100%);
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.matchaura-profile-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 0, 0, 0.3);
}

/* =====================
   STATS SECTION
   ===================== */
.matchaura-stats {
    padding: 80px 20px;
    background: #371a5b;
    color: white;
}

.matchaura-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.matchaura-stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.matchaura-stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* =====================
   TESTIMONIALS SECTION
   ===================== */
.matchaura-testimonials {
    padding: 80px 20px;
    background: #fff5f5;
}

.matchaura-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.matchaura-testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(139, 0, 0, 0.1);
    border-left: 4px solid #c85a5a;
    transition: all 0.3s ease;
}

.matchaura-testimonial-card:hover {
    box-shadow: 0 8px 20px rgba(139, 0, 0, 0.2);
    transform: translateY(-5px);
}

.matchaura-testimonial-text {
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}

.matchaura-testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.matchaura-testimonial-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #c85a5a;
    filter: blur(6px);
    transition: filter 0.3s ease;
}

.matchaura-testimonial-name {
    font-weight: 600;
    color: #8b0000;
}

/* =====================
   CTA SECTION
   ===================== */
.matchaura-cta-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, rgba(200, 90, 90, 0.95) 0%, rgba(139, 0, 0, 0.95) 50%, rgba(139, 0, 0, 0.98) 100%),
                url('../img/match-aura-fetured-start-your-journey.jfif') center/cover;
    text-align: center;
    color: white;
}

.matchaura-cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.matchaura-cta-text {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

/* =====================
   ANIMATIONS
   ===================== */
@keyframes matchaura-fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =====================
   RESPONSIVE DESIGN - TABLET
   ===================== */
@media (max-width: 968px) {
    .matchaura-hero-title {
        font-size: 2.5rem;
        margin: -327px 0px 6px 0px;
    }

    .matchaura-hero-subtitle {
        font-size: 1.1rem;
    }

    .matchaura-section-title {
        font-size: 2rem;
    }

    .matchaura-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .matchaura-btn {
        width: 100%;
        max-width: 300px;
    }

    .matchaura-stat-number {
        font-size: 2.5rem;
    }

    .matchaura-cta-title {
        font-size: 2rem;
    }

    .matchaura-slider .matchaura-profile-card {
        flex: 0 0 calc(50% - 10px);
        min-width: 250px;
    }
    
    .matchaura-slider-arrow {
        width: 45px;
        height: 45px;
        font-size: 1.5rem;
    }
    
    .matchaura-slider-arrow-left {
        left: 5px;
    }
    
    .matchaura-slider-arrow-right {
        right: 5px;
    }
}

/* =====================
   RESPONSIVE DESIGN - MOBILE
   ===================== */
@media (max-width: 640px) {
    .matchaura-hero-title {
        font-size: 2rem;
    }

    .matchaura-features,
    .matchaura-profiles,
    .matchaura-stats,
    .matchaura-testimonials {
        padding: 50px 15px;
    }

    .matchaura-feature-card {
        padding: 30px 20px;
    }

    .matchaura-slider .matchaura-profile-card {
        flex: 0 0 calc(100% - 20px);
        min-width: 280px;
    }
}




.community-section {
  background: #371a5b;
  padding: 70px 20px;
  color: #fff;
}

.community-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 50px;
}

/* LEFT */
.community-left h2 {
  font-size: 38px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 30px;
}

.religion-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.religion-btn {
  background: rgba(255,255,255,0.15);
  padding: 14px 20px;
  border-radius: 30px;
  text-decoration: none;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.religion-btn:hover {
  background: rgba(255,255,255,0.3);
}

.register-btn {
  display: inline-block;
  margin-top: 30px;
  padding: 15px 35px;
  background: #fff;
  color: #8b1538;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.register-btn:hover {
  background: #f5d7df;
}

/* RIGHT */
.community-right h3 {
  font-size: 30px;
  margin-bottom: 15px;
}

.community-right p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 30px;
  color: #ffe8ee;
}

.community-tags {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 15px;
}

.community-tags span {
  background: rgba(255,255,255,0.18);
  padding: 12px 18px;
  border-radius: 30px;
  text-align: center;
  font-size: 14px;
  transition: 0.3s;
}

.community-tags span:hover {
  background: rgba(255,255,255,0.35);
}

/* ======================
   RESPONSIVE
====================== */

@media (max-width: 992px) {
  .community-container {
    grid-template-columns: 1fr;
  }

  .community-left h2 {
    font-size: 32px;
  }
}

@media (max-width: 576px) {
  .community-left h2 {
    font-size: 28px;
  }

  .community-right h3 {
    font-size: 24px;
  }

  .register-btn {
    width: 100%;
    text-align: center;
  }
}



.community-tags {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 15px;
}

.community-tag {
  background: rgba(255,255,255,0.18);
  padding: 12px 18px;
  border-radius: 30px;
  text-align: center;
  font-size: 14px;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.community-tag:hover {
  background: rgba(255,255,255,0.4);
  transform: translateY(-2px);
}



.premium-faq {
  padding: 80px 20px;
  background: #f8fafc;
}

.faq-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: center;
}

.faq-content h2 {
  font-size: 36px;
  color: #0f172a;
  margin-bottom: 15px;
}

.faq-desc {
  color: #475569;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 25px;
}

.faq-points li {
  list-style: none;
  margin-bottom: 10px;
  color: #1e293b;
  font-weight: 500;
}

.faq-item {
  background: #ffffff;
  border-radius: 14px;
  margin-bottom: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  font-size: 17px;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}

.arrow {
  font-size: 22px;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 24px;
  color: #475569;
  line-height: 1.7;
  transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding-bottom: 18px;
}

.faq-item.active .arrow {
  transform: rotate(90deg);
}

/* Mobile */
@media(max-width: 900px){
  .faq-container {
    grid-template-columns: 1fr;
  }
}

