﻿/* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-black: #000000;
    --color-white: #ffffff;
    --color-red: #FF0B00;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--color-white);
    background: var(--color-black);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 1rem 2rem;
    z-index: 1000;
    backdrop-filter: blur(10px);
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Same navbar style for policy pages */
body.policy-page .navbar {
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-end;
    align-items: center;
}

.nav-links a {
    color: var(--color-white);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    opacity: 0.8;
    transition: all 0.001s ease;
    position: relative;
    padding: 0.3rem 0;
}

.nav-links a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-red);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    opacity: 1;
    color: var(--color-white);
    transform: translateY(-2px);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--color-white);
    transition: all 0.3s ease;
}

.hamburger:hover span {
    background: var(--color-red);
}

/* Main Container */
.main-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

/* Hero Section */
.hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 8rem 2rem 6rem;
    text-align: center;
    width: 100%;
    background-image: url("upscaled woman scrolling.png");
    background-size: cover;
    background-position: left center;
    background-repeat: no-repeat;
    min-height: 70vh;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
    z-index: 0;
}

.hero-section > * {
    position: relative;
    z-index: 1;
}

/* Logo Container */
.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.logo-icon {
    width: 220px;
    height: 220px;
    display: block;
}

.logo-text {
    width: 380px;
    max-width: 80vw;
    height: auto;
    display: block;
}

/* Tagline */
.tagline {
    margin-bottom: 3rem;
}

.tagline p {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--color-white);
    opacity: 0.9;
    letter-spacing: 0.5px;
    line-height: 1.5;
}

/* CTA */
.cta {
    margin-bottom: 2rem;
}

/* Download Button */
.download-btn {
    display: inline-block;
    padding: 18px 50px;
    background: var(--color-red);
    color: var(--color-white);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: 2px solid var(--color-red);
    box-shadow: 0 8px 25px rgba(220, 20, 60, 0.25);
}

.download-btn:hover {
    background: var(--color-white);
    color: var(--color-red);
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(220, 20, 60, 0.35);
}

/* Content Sections */
.content-sections {
    width: 100%;
    max-width: 1000px;
    padding: 2rem;
}

.content-block {
    margin-bottom: 4rem;
    text-align: center;
}

.content-block h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--color-white);
}

.content-block p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--color-white);
    opacity: 0.85;
    margin-bottom: 1rem;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem auto;
    max-width: 900px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    cursor: default;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--color-red);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(220, 20, 60, 0.2);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: grayscale(0);
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--color-white);
}

.feature-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-white);
    opacity: 0.75;
    margin: 0;
}

/* Screenshots Section */
.screenshots-section {
    margin: 3rem 0 4rem;
    text-align: center;
}

.screenshots-section h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--color-white);
}

.screenshots-container {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 2rem 1rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--color-red) rgba(255, 255, 255, 0.1);
    scroll-behavior: smooth;
}

.screenshots-container::-webkit-scrollbar {
    height: 10px;
}

.screenshots-container::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 5px;
}

.screenshots-container::-webkit-scrollbar-thumb {
    background: var(--color-red);
    border-radius: 5px;
}

.screenshots-container::-webkit-scrollbar-thumb:hover {
    background: #ff1744;
}

.screenshot {
    flex: 0 0 auto;
    height: 500px;
    width: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    scroll-snap-align: start;
    cursor: pointer;
}

.screenshot:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(220, 20, 60, 0.3);
}

/* Footer */
footer {
    padding: 2rem;
    text-align: center;
    font-size: 0.9rem;
}

footer a {
    color: var(--color-white);
    text-decoration: none;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

footer a:hover {
    opacity: 1;
}

.separator {
    margin: 0 1rem;
    opacity: 0.5;
}

/* Policy Pages */
body.policy-page {
    background: var(--color-black);
    color: var(--color-white);
}

body.policy-page .navbar .nav-links a {
    color: var(--color-white);
}

body.policy-page footer a {
    color: var(--color-white);
}

body.policy-page .separator {
    color: var(--color-white);
}

.policy-container {
    max-width: 900px;
    margin: 80px auto 40px;
    padding: 40px;
}

.policy-container h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: var(--color-white);
    border-bottom: 3px solid var(--color-red);
    padding-bottom: 15px;
}

.policy-container h2 {
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 15px;
    color: var(--color-white);
}

.policy-container h3 {
    font-size: 1.3rem;
    margin-top: 25px;
    margin-bottom: 10px;
    color: var(--color-white);
}

.policy-container p,
.policy-container li {
    margin-bottom: 15px;
    line-height: 1.8;
    color: var(--color-white);
}

.policy-container ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

.policy-date {
    color: var(--color-white);
    opacity: 0.7;
    font-style: italic;
    margin-bottom: 30px;
}

.policy-container a {
    color: var(--color-red);
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        background: #000000;
        background: linear-gradient(to bottom, #000000, #0a0a0a);
    }
    
    .features-grid {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        padding: 1rem 0;
        margin: 2rem 0;
    }
    
    .feature-card {
        padding: 2rem 1.5rem;
        transition: all 0s ease;
        pointer-events: none;
        user-select: none;
        -webkit-tap-highlight-color: transparent;
    }
    
    .feature-card.centered {
        background: rgba(255, 255, 255, 0.08);
        border-color: var(--color-red);
        box-shadow: 0 10px 30px rgba(220, 20, 60, 0.3);
        transform: scale(1.02);
    }
    
    .feature-icon {
        font-size: 2.5rem;
    }
    
    .navbar {
        padding: 1rem 1.5rem;
        display: flex;
        justify-content: flex-end;
        align-items: center;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: right 0.3s ease;
        border-left: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links a {
        font-size: 1.2rem;
    }
    .hero-section {
        padding: 6rem 1.5rem 4rem;
        min-height: 70vh;
    }
    
    .logo-container {
        margin-bottom: 5rem;
    }
    
    .logo-icon {
        width: 140px;
        height: 140px;
    }
    
    .logo-text {
        width: 240px;
    }
    
    .tagline p {
        font-size: 1.1rem;
    }
    
    .download-btn {
        padding: 16px 40px;
        font-size: 1.1rem;
    }
    
    .content-block h2,
    .screenshots-section h2 {
        font-size: 1.6rem;
    }
    
    .content-block p {
        font-size: 1.1rem;
    }
    .screenshot {
        height: 400px;
    }
    
    .screenshots-container {
        padding: 1.5rem 0.5rem;
    }
    
    .screenshots-container {
        gap: 1rem;
    }
    
    /* Disable hover effects on mobile - make elements always appear active */
    .feature-card {
        background: rgba(255, 255, 255, 0.05);
        border-color: rgba(255, 255, 255, 0.15);
        transform: none;
    }
    
    .feature-card:hover {
        transform: none;
        box-shadow: none;
    }
    
    .screenshot {
        cursor: default;
    }
    
    .screenshot:hover {
        transform: none;
        box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
    }
    
    .policy-container {
        padding: 20px;
        margin-top: 60px;
    }
    
    .policy-container h1 {
        font-size: 2rem;
    }
    
    .policy-container h2 {
        font-size: 1.5rem;
    }
}









