/* Reset and Base Styles */
:root {
    --primary-color: #ff4d6d; /* Warm Pink/Red */
    --secondary-color: #2c3e50; /* Dark Blue/Grey */
    --text-color: #333;
    --light-bg: #f9f9f9;
    --white: #ffffff;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
}

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

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

/* Buttons */
.btn-primary, .btn-secondary, .btn-large, .btn-nav {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary:hover, .btn-secondary:hover, .btn-large:hover, .btn-nav:hover {
    background-color: #e63950;
    transform: translateY(-2px);
}

.btn-nav {
    background: var(--primary-color);
    color: var(--white) !important;
    padding: 0.5rem 1.2rem;
    border-radius: 5px;
    font-weight: 700;
    transition: background 0.3s ease;
    border: 2px solid var(--primary-color);
}

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

.btn-secondary:hover {
    background-color: #1a252f;
}

/* Navigation */
.navbar {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    line-height: 1.2;
}

.logo-main {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.logo-main span {
    color: var(--primary-color);
}

.logo-sub {
    font-size: 0.75rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-top: 2px;
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: center;
}

.logo-sub::before,
.logo-sub::after {
    content: "";
    height: 1px;
    background-color: var(--primary-color);
    width: 20px;
    margin: 0 10px;
    opacity: 0.5;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    font-weight: 700;
    color: var(--secondary-color);
}

.nav-links a:hover {
    color: var(--primary-color);
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--secondary-color);
}

/* Hero Section */
.hero {
    /* Using local image path relative to this css file */
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('images/banner.jpg');
    background-size: cover;
    background-position: center;
    height: 80vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--white);
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

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

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Features Section */
.features {
    padding: 3rem 0;
    background-color: var(--light-bg);
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: 0.3s;
}

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

.feature-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

/* Games Section */
.games-section {
    padding: 3rem 0;
}

.content-wrapper {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.text-content {
    flex: 1;
}

.text-content .btn-secondary {
    margin-top: 2rem;
}

.text-content p {
    margin-bottom: 1rem;
}

.image-content {
    flex: 1;
}

.image-content img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Profiles Section */
.profiles-section {
    padding: 3rem 0;
    background-color: var(--light-bg);
    text-align: center;
}

.profiles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.profile-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.profile-img {
    height: 200px;
    overflow: hidden;
}

.profile-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(8px); /* Apply blur effect */
}

.profile-info {
    padding: 1.5rem;
    text-align: left;
}

.profile-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.profile-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0;
    font-weight: 700;
}

.profile-info .age {
    font-size: 1.1rem;
    color: var(--secondary-color);
}

.profile-info p {
    color: var(--secondary-color);
    font-size: 1rem;
    margin-bottom: 0.3rem;
    line-height: 1.4;
}

.profile-info .gender {
    font-weight: 500;
}

.profile-info .location {
    font-weight: 500;
}

.profile-info .online-status {
    color: #2ecc71; /* Green/Teal color */
    font-size: 0.95rem;
    margin-top: 0.5rem;
    font-weight: 600;
}

/* Website Functions Section */
.functions-section {
    padding: 3rem 0;
    background-color: var(--white);
    text-align: center;
}

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

.function-card {
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease;
}

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

.icon-box {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 77, 109, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.icon-box i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.function-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.function-card p {
    color: #666;
    font-size: 0.95rem;
}

/* Success Stories Section */
.stories-section {
    padding: 3rem 0;
    background-color: #fff9fa; /* Very subtle warm background */
    text-align: center;
    background-image: radial-gradient(#ffdde1 1px, transparent 1px);
    background-size: 20px 20px; /* Subtle dot pattern */
}

.section-subtitle {
    margin-bottom: 2rem;
    color: #777;
    font-size: 1.1rem;
    margin-top: -1rem;
    font-family: var(--font-heading);
    font-style: italic;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    margin-top: 2rem;
    max-width: 1000px; /* Limit width for better layout */
    margin-left: auto;
    margin-right: auto;
}

.story-card {
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05); /* Softer, more neutral shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 2.5rem 2.5rem;
    position: relative;
    margin-top: 50px; /* More space for image */
    border: 1px solid rgba(0,0,0,0.02);
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.story-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--white);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-top: -50px; /* Floating effect */
    margin-bottom: 1.5rem;
    flex-shrink: 0;
    background-color: #eee;
}

.story-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.story-content h3 {
    color: var(--secondary-color);
    margin-bottom: 0.2rem;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    letter-spacing: 0.5px;
}

.story-content .location {
    color: #999;
    font-weight: 600;
    font-size: 0.8rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: transparent;
    padding: 0;
}

.story-content blockquote {
    font-family: var(--font-heading); /* Elegant serif font for quotes */
    font-style: italic;
    color: #555;
    line-height: 1.8;
    font-size: 1.1rem;
    position: relative;
    padding: 2rem 0 0;
    border-top: 1px solid #eee;
    width: 100%;
}

.story-content blockquote::before {
    content: "\f004"; /* FontAwesome Heart */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 1.2rem;
    color: var(--primary-color);
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    padding: 0 10px;
}

/* App Section */
.app-section {
    padding: 3rem 0;
    background-color: var(--white);
}

.app-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.app-text {
    flex: 1;
}

.app-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.app-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.app-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #000;
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    transition: 0.3s;
}

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

.app-btn i {
    font-size: 2rem;
}

.app-btn-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.app-btn-text span {
    font-size: 0.7rem;
}

.app-btn-text strong {
    font-size: 1.2rem;
}

.app-image {
    flex: 1;
    text-align: center;
}

.app-image img {
    max-width: 300px;
    margin: 0 auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* FAQ Section */
.faq-section {
    padding: 3rem 0;
    background-color: var(--light-bg);
}

.faq-section .section-title {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.faq-accordion {
    max-width: 1000px;
    margin: 0 auto;
    margin-top: 2rem;
}

.faq-item {
    background: var(--white);
    margin-bottom: 1rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    overflow: hidden;
}

.faq-item summary {
    padding: 1.5rem;
    cursor: pointer;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--secondary-color);
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

.faq-item summary:hover {
    background-color: #fcfcfc;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary i {
    transition: transform 0.3s ease;
    color: var(--primary-color);
}

.faq-item[open] summary i {
    transform: rotate(180deg);
}

.faq-content {
    padding: 0 1.5rem 1.5rem;
    color: #666;
    line-height: 1.6;
    border-top: 1px solid #f0f0f0;
}

/* CTA Section */
.cta {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 3rem 0;
    text-align: center;
}

.cta h2 {
    color: var(--white);
}

.cta p {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.cta .btn-large {
    background-color: var(--white);
    color: var(--primary-color);
}

.cta .btn-large:hover {
    background-color: #f1f1f1;
}

/* Footer */
footer {
    background-color: #000000;
    color: var(--white);
    padding: 3rem 0 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 3rem;
}

.footer-about {
    flex: 2;
    min-width: 300px;
}

.footer-links {
    flex: 1;
    min-width: 150px;
}

.footer-about h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-about p {
    color: #999;
    max-width: 400px;
    line-height: 1.8;
}

.footer-links h4 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-links ul li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #bbb;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
    color: #666;
}

/* How It Works Section */
.how-it-works {
    padding: 3rem 0;
    background-color: var(--white);
    text-align: center;
}

.section-subtitle {
    max-width: 800px;
    margin: -1rem auto 2rem;
    color: #666;
    font-size: 1.1rem;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.step-card {
    padding: 2rem;
    background-color: var(--light-bg);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

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

.step-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.step-card h3 {
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.step-card p {
    color: #666;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo {
        font-size: 1.1rem; /* Smaller font for long logo on mobile */
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--white);
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 10px 10px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .content-wrapper, .app-content {
        flex-direction: column;
        text-align: center;
    }

    .app-buttons {
        justify-content: center;
    }

    .footer-content {
        flex-direction: column;
    }
}
