/* Nod: Vouched Dating - Shared Styles */

:root {
    /* Dating app color palette - warm, romantic, trustworthy */
    --primary: #E63946;        /* Romantic red */
    --primary-dark: #C5303E;
    --secondary: #457B9D;      /* Trustworthy blue */
    --accent: #F1FAEE;         /* Soft white */
    --text-dark: #1D3557;      /* Deep blue-gray */
    --text-light: #F1FAEE;
    --background: #FFFFFF;
    --background-alt: #F8F9FA;
    --gradient: linear-gradient(135deg, #E63946 0%, #457B9D 100%);
    --gradient-soft: linear-gradient(135deg, #FFC1C8 0%, #A8DADC 100%);
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--background);
}

/* Navigation */
nav {
    background: var(--background);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-dark);
}

.logo-icon {
    font-size: 28px;
    margin-right: 10px;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
}

.logo-tagline {
    font-size: 12px;
    color: var(--secondary);
    margin-left: 5px;
    font-weight: 400;
}

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

nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
}

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

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
                url('hero-heart-hands.jpg') center center / cover no-repeat;
    color: var(--text-light);
    padding: 100px 20px;
    text-align: center;
    position: relative;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
}

.cta-button {
    display: inline-block;
    background: white;
    color: var(--primary);
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

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

/* Content Sections */
.content-section {
    padding: 60px 20px;
}

.content-section h2 {
    font-size: 36px;
    color: var(--text-dark);
    margin-bottom: 30px;
    text-align: center;
}

.content-section h3 {
    font-size: 24px;
    color: var(--text-dark);
    margin-top: 30px;
    margin-bottom: 15px;
}

.content-section p, .content-section ul {
    max-width: 800px;
    margin: 0 auto 20px;
    color: var(--text-dark);
    font-size: 16px;
}

.content-section ul {
    padding-left: 40px;
}

.content-section li {
    margin-bottom: 10px;
}

/* Features Grid */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: var(--background-alt);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.feature-card h3 {
    margin-top: 0;
    margin-bottom: 15px;
    color: var(--primary);
}

/* Legal Document Styles */
.legal-document {
    max-width: 900px;
    margin: 40px auto;
    padding: 40px;
    background: var(--background);
}

.legal-document h1 {
    font-size: 36px;
    color: var(--text-dark);
    margin-bottom: 10px;
    border-bottom: 3px solid var(--primary);
    padding-bottom: 15px;
}

.legal-document .last-updated {
    color: #666;
    font-size: 14px;
    margin-bottom: 30px;
}

.legal-document h2 {
    font-size: 28px;
    color: var(--text-dark);
    margin-top: 40px;
    margin-bottom: 20px;
}

.legal-document h3 {
    font-size: 20px;
    color: var(--secondary);
    margin-top: 25px;
    margin-bottom: 15px;
}

.legal-document p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.legal-document ul, .legal-document ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

.legal-document li {
    margin-bottom: 10px;
    line-height: 1.8;
}

.legal-document strong {
    color: var(--text-dark);
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 40px auto;
    background: var(--background-alt);
    padding: 40px;
    border-radius: 10px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.submit-button {
    background: var(--gradient);
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 57, 70, 0.4);
}

/* Footer */
footer {
    background: var(--text-dark);
    color: var(--text-light);
    padding: 40px 20px 20px;
    margin-top: 60px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h3 {
    margin-bottom: 20px;
    color: var(--primary);
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: var(--text-light);
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-section a:hover {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(241, 250, 238, 0.2);
    font-size: 14px;
    opacity: 0.7;
}

/* Responsive */
@media (max-width: 768px) {
    nav ul {
        display: none; /* Simple mobile nav - you can enhance this later */
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 18px;
    }

    .features {
        grid-template-columns: 1fr;
    }

    .legal-document {
        padding: 20px;
    }
}

/* App Store Badges */
.app-badges {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
    align-items: center;
}

.badge-link {
    display: inline-block;
    transition: transform 0.3s, opacity 0.3s;
    text-decoration: none;
    opacity: 0.85;
}

.badge-link:hover {
    transform: translateY(-3px);
    opacity: 1;
}

.badge-link img {
    display: block;
}

.badge {
    display: inline-block;
    padding: 12px 30px;
    background: rgba(255,255,255,0.2);
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid white;
    transition: background 0.3s, transform 0.3s;
}

.badge:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-2px);
}

.badge.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}
