@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary-maroon: #e91e63;
    /* Restored old pink primary color */
    --primary-maroon-dark: #c2185b;
    /* Restored old pink dark color */
    --primary-gold: #ff4081;
    /* Replaced gold with an accent pink */
    --primary-gold-light: #fce4ec;
    /* Replaced light gold with light pink */
    --bg-cream: #fff5f8;
    /* Replaced cream with very light pink */
    --text-dark: #333333;
    --text-light: #666666;
    --white: #ffffff;
    --shadow-soft: 0 10px 30px rgba(233, 30, 99, 0.08);
    --shadow-hover: 0 15px 40px rgba(233, 30, 99, 0.15);
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    background-color: #fafafa;
    line-height: 1.6;
    scroll-behavior: smooth;
}

/* Typography Hierarchy */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
    color: var(--primary-maroon);
    font-weight: 700;
}

/* Navbar overrides if mixing with old style */
.navbar {
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

/* Custom Buttons */
.btn-romantic {
    background: linear-gradient(135deg, var(--primary-maroon), #a52a2a);
    color: var(--white);
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(128, 0, 0, 0.3);
}

.btn-romantic:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(128, 0, 0, 0.4);
    background: linear-gradient(135deg, #a52a2a, var(--primary-maroon));
    color: var(--white);
}

.btn-romantic-outline {
    background: transparent;
    color: var(--primary-maroon);
    border: 2px solid var(--primary-maroon);
    border-radius: 50px;
    padding: 10px 28px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-romantic-outline:hover {
    background: var(--primary-maroon);
    color: var(--white);
    transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 180px 0 140px;
    background: linear-gradient(rgba(128, 0, 0, 0.4), rgba(0, 0, 0, 0.6)), url('../images/new_hero_bg.png') center/cover no-repeat;
    background-attachment: fixed;
    /* Parallax effect */
}

.hero-content h1 {
    color: var(--white);
    font-size: 3.5rem;
    font-weight: 800;
    text-shadow: 2px 4px 10px rgba(0, 0, 0, 0.5);
    margin-bottom: 20px;
}

.hero-content .lead {
    color: var(--primary-gold-light);
    font-size: 1.25rem;
    font-weight: 400;
    text-shadow: 1px 2px 5px rgba(0, 0, 0, 0.5);
    margin-bottom: 40px;
}

/* Search Form Glassmorphism */
.search-form-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.search-form-card label {
    color: var(--white);
    font-weight: 500;
    margin-bottom: 8px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.search-form-card .form-control,
.search-form-card .form-select {
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.9);
    padding: 12px 15px;
    font-size: 15px;
}

.search-form-card .form-control:focus,
.search-form-card .form-select:focus {
    box-shadow: 0 0 0 0.25rem rgba(212, 175, 55, 0.25);
    border-color: var(--primary-gold);
}

/* Trust Section */
.trust-section {
    padding: 80px 0;
    background-color: var(--bg-cream);
    position: relative;
}

.trust-card {
    text-align: center;
    padding: 30px;
    transition: all 0.3s ease;
}

.trust-card:hover {
    transform: translateY(-5px);
}

.trust-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--primary-gold);
    box-shadow: var(--shadow-soft);
    border: 2px solid var(--primary-gold-light);
}

/* Featured Profiles */
.profiles-section {
    padding: 100px 0;
    background-color: #fafafa;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-gold);
    border-radius: 2px;
}

.profile-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.profile-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-gold-light);
}

.profile-img-container {
    height: 250px;
    overflow: hidden;
    position: relative;
}

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

.profile-card:hover .profile-img-container img {
    transform: scale(1.05);
}

.profile-body {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.profile-name {
    font-size: 1.25rem;
    color: var(--primary-maroon);
    margin-bottom: 5px;
    font-weight: 700;
}

.profile-meta {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.profile-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.profile-bio {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 20px;
    flex-grow: 1;
}

/* Success Stories Carousel */
.success-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, var(--bg-cream), #ffffff);
}

.testimonial-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-soft);
    margin: 20px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.testimonial-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--primary-gold);
    margin: 0 auto 25px;
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 20px;
    position: relative;
}

.testimonial-text::before,
.testimonial-text::after {
    content: '"';
    font-size: 2rem;
    color: var(--primary-gold-light);
    font-family: serif;
    line-height: 1;
}

.carousel-indicators [data-bs-target] {
    background-color: var(--primary-maroon);
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 6px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: var(--primary-maroon);
    border-radius: 50%;
    padding: 20px;
    background-size: 50%;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-section {
        padding: 120px 0 80px;
    }

    .search-form-card {
        padding: 20px;
    }
}

/* ----------------------------------
   Original Footer Styles Restored 
----------------------------------- */
footer {
    background-color: #1a1a1a;
    color: #cbd5e1;
    padding: 80px 0 30px;
    margin-top: 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.footer-content h3 {
    color: #fff;
    margin-bottom: 25px;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-content p {
    font-size: 15px;
    line-height: 1.8;
    max-width: 400px;
}

.footer-content ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.footer-content ul li {
    margin-bottom: 12px;
}

.footer-content ul li a {
    font-size: 15px;
    transition: all 0.3s;
    color: #94a3b8;
    text-decoration: none;
}

.footer-content ul li a:hover {
    color: var(--primary-maroon);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    margin-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    color: #64748b;
}

/* ----------------------------------
   Original Header Styles Restored 
----------------------------------- */
header .nav-links li a {
    text-decoration: none;
}

header .btn {
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    line-height: 1.5;
}

header .btn-primary {
    background: linear-gradient(135deg, var(--primary-maroon), var(--primary-maroon-dark));
    color: var(--white);
    box-shadow: 0 4px 20px 0 rgba(233, 30, 99, 0.4);
    border: 2px solid transparent;
}

header .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.5);
    background: linear-gradient(135deg, var(--primary-maroon-dark), var(--primary-maroon));
    color: var(--white);
}

header .btn-outline {
    border: 2px solid var(--primary-maroon);
    color: var(--primary-maroon);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
}

header .btn-outline:hover {
    background: var(--primary-maroon);
    color: var(--white);
}

header .logo {
    text-decoration: none;
}