/* TenderMe Website Styles - Soft Pastels Theme */

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

:root {
    /* Soft Pastels Color Palette - from app */
    --primary-pink: #f4b5c7;
    --primary-lavender: #c8a8e9;
    --primary-mint: #a8e6cf;
    --secondary-peach: #f8d7a3;
    
    /* Neutral Colors */
    --text-dark: #2d3748;
    --text-medium: #4a5568;
    --text-light: #718096;
    --background-white: #ffffff;
    --background-light: #f7fafc;
    --background-warm: #fefcfb;
    --border-light: #e2e8f0;
    --border-medium: #cbd5e0;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary-pink) 0%, var(--primary-lavender) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--primary-mint) 0%, var(--secondary-peach) 100%);
    --gradient-background: linear-gradient(135deg, var(--background-warm) 0%, var(--background-light) 100%);
    
    /* Shadows */
    --shadow-soft: 0 4px 20px rgba(244, 181, 199, 0.15);
    --shadow-medium: 0 8px 30px rgba(244, 181, 199, 0.2);
    --shadow-strong: 0 15px 40px rgba(244, 181, 199, 0.25);
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
    z-index: 1000;
    transition: all 0.3s ease;
}

.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;
    gap: 12px;
    text-decoration: none;
    color: var(--text-dark);
}

.logo-icon {
    width: 40px;
    height: 40px;
    background-image: url('Media_Assets/TenderMe_LogoIcon_conv.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    filter: drop-shadow(0 2px 4px rgba(244, 181, 199, 0.3));
}

.logo-text {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-dark);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

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

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Mobile Navigation */
.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
    z-index: 999;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu ul {
    list-style: none;
    padding: 20px;
}

.mobile-menu li {
    margin: 15px 0;
}

.mobile-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 18px;
    font-weight: 500;
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-light);
}

/* Hero Section */
.hero {
    padding: 140px 20px 80px;
    text-align: center;
    background: var(--gradient-background);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(244, 181, 199, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(200, 168, 233, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
    background-image: url('Media_Assets/TenderMe_LogoIcon_conv.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(var(--shadow-medium));
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
    line-height: 1.2;
}

.hero .subtitle {
    font-size: 1.3rem;
    color: var(--text-medium);
    margin-bottom: 15px;
    font-weight: 400;
}

.hero .tagline {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 40px;
    font-style: italic;
}

.cta-button {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    padding: 18px 40px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

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

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

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-medium);
    max-width: 600px;
    margin: 0 auto;
}

/* Features Section */
.features {
    padding: 80px 20px;
    background: var(--background-white);
}

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

.feature-card {
    background: var(--background-light);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    background: var(--background-white);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: var(--gradient-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.feature-icon::after {
    content: attr(data-icon);
    color: white;
    font-size: 24px;
    font-weight: 600;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-medium);
    line-height: 1.6;
}

/* Feature Card Color Variants - adds subtle visual distinction */
.feature-card-pink {
    background: linear-gradient(135deg, rgba(244, 181, 199, 0.08) 0%, rgba(244, 181, 199, 0.03) 100%);
    border-left: 4px solid var(--primary-pink);
}

.feature-card-pink:hover {
    background: linear-gradient(135deg, rgba(244, 181, 199, 0.12) 0%, rgba(244, 181, 199, 0.05) 100%);
    border-left-color: var(--primary-pink);
}

.feature-card-pink .feature-icon {
    background: var(--gradient-primary);
}

.feature-card-lavender {
    background: linear-gradient(135deg, rgba(200, 168, 233, 0.08) 0%, rgba(200, 168, 233, 0.03) 100%);
    border-left: 4px solid var(--primary-lavender);
}

.feature-card-lavender:hover {
    background: linear-gradient(135deg, rgba(200, 168, 233, 0.12) 0%, rgba(200, 168, 233, 0.05) 100%);
    border-left-color: var(--primary-lavender);
}

.feature-card-lavender .feature-icon {
    background: linear-gradient(135deg, var(--primary-lavender) 0%, var(--primary-pink) 100%);
}

.feature-card-mint {
    background: linear-gradient(135deg, rgba(168, 230, 207, 0.08) 0%, rgba(168, 230, 207, 0.03) 100%);
    border-left: 4px solid var(--primary-mint);
}

.feature-card-mint:hover {
    background: linear-gradient(135deg, rgba(168, 230, 207, 0.12) 0%, rgba(168, 230, 207, 0.05) 100%);
    border-left-color: var(--primary-mint);
}

.feature-card-mint .feature-icon {
    background: linear-gradient(135deg, var(--primary-mint) 0%, var(--primary-lavender) 100%);
}

.feature-card-peach {
    background: linear-gradient(135deg, rgba(248, 215, 163, 0.08) 0%, rgba(248, 215, 163, 0.03) 100%);
    border-left: 4px solid var(--secondary-peach);
}

.feature-card-peach:hover {
    background: linear-gradient(135deg, rgba(248, 215, 163, 0.12) 0%, rgba(248, 215, 163, 0.05) 100%);
    border-left-color: var(--secondary-peach);
}

.feature-card-peach .feature-icon {
    background: linear-gradient(135deg, var(--secondary-peach) 0%, var(--primary-mint) 100%);
}

/* Screenshots Section */
.screenshots {
    padding: 80px 20px;
    background: var(--gradient-background);
}

.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.screenshot-card {
    text-align: center;
    background: var(--background-white);
    border-radius: 16px;
    padding: 30px;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
}

.screenshot-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.screenshot-image {
    width: 250px;
    max-width: 100%;
    height: auto;
    margin: 0 auto 20px;
    display: block;
    border-radius: 12px;
    box-shadow: var(--shadow-medium);
    transition: all 0.3s ease;
}

.screenshot-card:hover .screenshot-image {
    transform: scale(1.02);
    box-shadow: var(--shadow-strong);
}

.screenshot-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.screenshot-card p {
    color: var(--text-medium);
    font-size: 0.95rem;
}

/* Privacy Section */
.privacy-highlight {
    padding: 80px 20px;
    background: var(--background-white);
    text-align: center;
}

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

.privacy-badge {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 500;
    margin-bottom: 30px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Contact Section */
.contact {
    padding: 80px 20px;
    background: var(--gradient-background);
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: var(--background-white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-light);
}

.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 select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--border-light);
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
    font-family: inherit;
    color: var(--text-dark);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-pink);
    box-shadow: 0 0 0 3px rgba(244, 181, 199, 0.1);
}

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

/* Legal Section */
.legal {
    background: var(--background-light);
    color: var(--text-dark);
    padding: 60px 20px;
}

.legal h3 {
    color: var(--primary-pink);
    margin-bottom: 20px;
    font-weight: 600;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 60px 20px 30px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid #4a5568;
    color: #a0aec0;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .hero {
        padding: 120px 20px 60px;
    }

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

    .hero .subtitle {
        font-size: 1.1rem;
    }

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

    .screenshots-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .hero-icon {
        width: 100px;
        height: 100px;
    }

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

    .section-header h2 {
        font-size: 2rem;
    }

    .contact-form {
        margin: 0 10px;
        padding: 30px 20px;
    }
}

/* App Store Button */
.app-store-button {
    display: inline-block;
    transition: all 0.3s ease;
    text-decoration: none;
}

.app-store-button:hover {
    transform: translateY(-2px);
}

.app-store-button img {
    transition: all 0.3s ease;
}

.app-store-button:hover img {
    filter: drop-shadow(0 6px 12px rgba(244, 181, 199, 0.4)) !important;
}

/* Download Section */
#app-download .hero-icon {
    background-image: url('Media_Assets/TenderMe_LogoIcon_conv.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    filter: drop-shadow(var(--shadow-medium));
    animation: none;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
.loading {
    opacity: 0;
    animation: fadeIn 0.8s ease forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}