@import url('browse-profiles.css');
@import url('trust-safety.css');


:root {
    --primary-color: #000000; /* Pure Black */
    --primary-hover: #333333; /* Dark Gray for hover */
    --accent-color: #666666; /* Medium Gray */
    --secondary-color: #000000; /* Pure Black */
    --text-color: #1a1a1a;
    --light-bg: #f5f5f5; /* Light Gray */
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    color: var(--secondary-color);
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.section-header p {
    font-size: 1.1rem;
    color: #555;
}

/* Header */
header {
    background-color: transparent;
    position: absolute;
    width: 100%;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo .logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--white);
    text-shadow: 0 1px 2px rgba(0,0,0,0.35);
}

.logo span {
    color: var(--white);
    font-weight: 700;
}

nav ul {
    display: flex;
    list-style: none;
    align-items: center;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    transition: color 0.3s;
    color: var(--white);
}

nav ul li a:hover {
    color: var(--accent-color);
}

.btn-nav {
    border: 1px solid var(--white);
    padding: 8px 20px;
    border-radius: 4px;
    transition: all 0.3s;
    color: var(--white);
}

.btn-nav:hover {
    background-color: var(--white);
    color: var(--secondary-color);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    padding-top: 80px;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('../images/banner.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.hero-content {
    max-width: 800px;
    padding: 20px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--white);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    font-weight: 300;
}

.btn-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    transition: background-color 0.3s, transform 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

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

/* Sections Common */
.about, .features {
    padding: 80px 0;
}

.about {
    background-color: var(--white);
    text-align: center;
}

.features {
    background-color: var(--light-bg);
}

.about h2, .features h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-align: center;
}

.about p {
    max-width: 1000px;
    margin: 0 auto 20px;
    font-size: 1.1rem;
    color: #555;
}

/* Breadcrumb */
.breadcrumb {
    font-size: 0.95rem;
    color: #666;
    margin: 10px 0 20px;
}
.breadcrumb a {
    color: #666;
}
.breadcrumb a:hover {
    color: var(--accent-color);
}
.breadcrumb .sep {
    margin: 0 8px;
    color: #999;
}

#value.about {
    padding-bottom: 45px;
}

#how.about {
    padding-top: 45px;
}

#how .section-header {
    margin-bottom: 35px;
}

#how .steps-grid {
    margin-top: 35px;
}

#trust.about {
    padding-top: 30px;
    padding-bottom: 30px;
}

/* Success Stories */
.success-stories {
    padding: 50px 0;
    background-color: var(--light-bg);
    text-align: center;
}

.success-stories h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--secondary-color);
}

.story-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.story-card {
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    text-align: left;
    position: relative;
}

.story-card::before {
    content: "“";
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    color: var(--primary-color);
    position: absolute;
    top: 20px;
    left: 20px;
    opacity: 0.1;
    line-height: 1;
}

.story-text {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 20px;
    font-style: italic;
    line-height: 1.6;
}

.story-author {
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    margin-bottom: 5px;
}

.story-location {
    font-size: 0.9rem;
    color: #888;
    display: block;
}

/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    text-align: center;
}

.feature-item {
    padding: 40px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.feature-item:hover {
    transform: translateY(-10px);
}

.feature-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

/* Who Section */
.who {
    padding: 80px 0;
    background-color: var(--white);
}
.who-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    align-items: start;
}
.who-card {
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    padding: 30px;
    border: 1px solid rgba(0,0,0,0.06);
}
.who-card h3 {
    font-size: 1.6rem;
    margin-bottom: 12px;
    color: var(--primary-color);
}
.who-card p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 20px;
}
.who-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}
.who-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    display: grid;
    gap: 10px;
}
.who-features li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: #555;
    font-size: 0.98rem;
    line-height: 1.45;
}
.who-feature-icon {
    width: 18px;
    height: 18px;
    color: var(--primary-color);
    margin-top: 2px;
    flex: 0 0 auto;
}
.who-feature-icon svg {
    display: block;
}
.chip {
    display: inline-block;
    background: var(--light-bg);
    color: #333;
    border: 1px solid #e5e5e5;
    border-radius: 20px;
    padding: 6px 12px;
    font-size: 0.9rem;
}
.thumb {
    width: 100%;
    height: 180px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 16px;
    display: block;
    position: relative;
}
.thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.thumb:hover img,
.thumb:focus img {
    transform: scale(1.04);
}
.thumb:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
    border-radius: 8px;
}
.who-card-body {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}
.who-content {
    flex: 1;
}
.who .thumb {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    margin: 0;
    flex: 0 0 auto;
}
.who .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media (max-width: 640px) {
    .who-card-body {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .who .thumb {
        margin-bottom: 14px;
    }
    .who-tags {
        justify-content: center;
    }
}
/* Steps Grid (How It Works) */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: center;
    margin-top: 50px;
}

.step-item {
    padding: 20px;
}

.step-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

/* Province Grid */
.province-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px 40px;
    margin-top: 40px;
    text-align: left;
}

.province-grid a {
    color: var(--text-color);
    font-size: 1.1rem;
    text-decoration: none;
    transition: color 0.2s;
}

.province-grid a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.province-grid span {
    color: var(--text-color);
    font-size: 1.1rem;
    padding: 5px 0;
    cursor: default;
}

.province-grid li {
    list-style: none;
    color: var(--text-color);
    font-size: 1.1rem;
    padding: 5px 0;
}

.btn-secondary {
    display: inline-block;
    padding: 10px 25px;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

/* Audience Grid */
.audience-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.audience-item {
    background-color: var(--white);
    padding: 15px 30px;
    border-radius: 50px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    font-weight: 700;
    color: var(--secondary-color);
    border: 1px solid #eee;
}

/* FAQ List */
.faq-list {
    max-width: 1000px;
    margin: 40px auto 0;
    text-align: left;
}

.faq-item {
    background-color: var(--white);
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
    transition: all 0.3s ease;
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0;
    color: var(--primary-color);
    cursor: pointer;
    position: relative;
    padding-right: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}

.faq-item h3:hover {
    color: var(--secondary-color);
}

.faq-item h3::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 400;
    color: #ccc;
    transition: transform 0.3s, color 0.3s;
}

.faq-item.active h3 {
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.faq-item.active h3::after {
    content: '-';
    color: var(--secondary-color);
    transform: rotate(0);
}

.faq-item p {
    margin: 0;
    font-size: 1rem;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.3s ease-out, opacity 0.3s ease-out;
}

.faq-item.active p {
    max-height: 500px;
    opacity: 1;
}

/* CTA Banner */
.cta-banner {
    padding: 100px 0;
    background-color: var(--secondary-color);
    color: var(--white);
    text-align: center;
}

.cta-banner h2 {
    color: var(--white);
    margin-bottom: 20px;
}

.cta-banner p {
    margin-bottom: 40px;
    font-size: 1.2rem;
    opacity: 0.9;
}

.btn-large {
    padding: 20px 60px;
    font-size: 1.3rem;
}

/* Footer */
footer {
    background-color: #111;
    color: #888;
    padding: 40px 0;
    text-align: center;
    font-size: 0.9rem;
}

footer .disclaimer {
    margin-top: 10px;
    font-size: 0.8rem;
    opacity: 0.6;
}

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

    .hero {
        padding-top: 140px;
    }
    
    header .container {
        flex-direction: column;
        height: auto;
        padding: 20px;
    }
    
    nav ul {
        margin-top: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    nav ul li {
        margin: 5px 10px;
    }
}
