/* Point Loma App Website Styles - Matching React Native App */
:root {
    /* Ocean & Sky Colors */
    --ocean-deep: #1e3a5f;
    --ocean-mid: #2c5aa0;
    --ocean-light: #4a90e2;
    --sky-blue: #87ceeb;
    --fog-gray: #d3dce6;
    --cloud-white: #f5f7fa;
    
    /* Sunset Colors */
    --sunset-orange: #ff6b35;
    --sunset-peach: #ffab91;
    --sunset-pink: #ffc0cb;
    --sunset-gold: #ffd700;
    
    /* Earth Tones */
    --sandy-beige: #f5deb3;
    --driftwood: #8b7355;
    --seaweed: #556b2f;
    --rock-gray: #708090;
    
    /* UI Colors */
    --primary: #2c5aa0;
    --secondary: #ff6b35;
    --accent: #ffd700;
    --text: #333333;
    --text-light: #666666;
    --background: #fafbfc;
    --card-background: #ffffff;
    --border: #e1e4e8;
    
    /* Semantic Colors */
    --success: #28a745;
    --warning: #ffc107;
    --error: #dc3545;
    --info: #17a2b8;
    
    /* Watercolor Effects */
    --watercolor-blue: rgba(74, 144, 226, 0.1);
    --watercolor-peach: rgba(255, 171, 145, 0.1);
    --watercolor-green: rgba(85, 107, 47, 0.1);
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-xxl: 4rem;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text);
    background: var(--ocean-deep);
    min-height: 100vh;
    overflow-x: hidden;
}

/* Background Image */
.background-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/hero-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -2;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(30, 58, 95, 0.8) 0%,
        rgba(44, 90, 160, 0.6) 50%,
        rgba(74, 144, 226, 0.4) 100%
    );
    z-index: -1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
}

h2 {
    font-size: 2rem;
    margin-bottom: var(--spacing-md);
}

h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
}

p {
    margin-bottom: var(--spacing-sm);
    line-height: 1.7;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: var(--spacing-xl) var(--spacing-md);
    position: relative;
}

.hero-content {
    max-width: 800px;
    z-index: 2;
}

.app-icon {
    margin-bottom: var(--spacing-lg);
}

.icon-image {
    width: 120px;
    height: 120px;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    margin: 0 auto;
    display: block;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
    color: white;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--sunset-peach);
    margin-bottom: var(--spacing-md);
    font-weight: 500;
}

.hero-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--spacing-xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
}

.cta-primary, .cta-secondary {
    padding: var(--spacing-md) var(--spacing-lg);
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
    min-width: 200px;
}

.cta-primary {
    background: var(--sunset-orange);
    color: white;
    box-shadow: 0 4px 16px rgba(255, 107, 53, 0.4);
}

.cta-primary:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.6);
}

.cta-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-secondary:hover {
    background: white;
    color: var(--ocean-deep);
    transform: translateY(-2px);
}

/* Sections */
section {
    padding: var(--spacing-xxl) 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.section-header h2 {
    color: white;
    font-size: 2.5rem;
}

/* About Section */
.about {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    color: var(--text);
}

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

.about-content p {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* Features Section */
.features {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.feature-card {
    background: rgba(255, 255, 255, 0.95);
    padding: var(--spacing-xl);
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border-left: 4px solid var(--sunset-orange);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
}

.feature-card h3 {
    color: var(--ocean-deep);
    margin-bottom: var(--spacing-sm);
}

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

/* Download Section */
.download {
    background: linear-gradient(135deg, var(--sunset-peach) 0%, var(--sunset-orange) 100%);
    color: white;
    text-align: center;
}

.download-content {
    max-width: 600px;
    margin: 0 auto;
}

.download-content p {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-lg);
    opacity: 0.9;
}

.download-badge p {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
    padding: var(--spacing-md) var(--spacing-lg);
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: inline-block;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.download-badge p:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Contact Section */
.contact {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    color: var(--text);
}

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

.contact-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: var(--spacing-lg);
}

.contact-info {
    margin-top: var(--spacing-lg);
}

.contact-info p {
    margin-bottom: var(--spacing-sm);
    font-size: 1.1rem;
}

.contact-info a {
    color: var(--ocean-mid);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--sunset-orange);
}

/* Footer */
footer {
    background: var(--ocean-deep);
    color: white;
    text-align: center;
    padding: var(--spacing-xl) 0;
    backdrop-filter: blur(10px);
}

footer p {
    margin-bottom: var(--spacing-sm);
}

footer a {
    color: var(--sunset-peach);
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: white;
}

/* Privacy Policy Styles */
.privacy-content {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: var(--spacing-xxl) 0;
    color: var(--text);
}

.privacy-section {
    margin-bottom: var(--spacing-xl);
}

.privacy-section h3 {
    color: var(--ocean-deep);
    font-size: 1.8rem;
    margin-bottom: var(--spacing-md);
    text-align: left;
}

.privacy-section h4 {
    color: var(--ocean-deep);
    font-size: 1.3rem;
    margin: var(--spacing-lg) 0 var(--spacing-sm) 0;
}

.privacy-section p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: var(--spacing-md);
}

.privacy-section ul {
    margin: var(--spacing-md) 0;
    padding-left: var(--spacing-xl);
}

.privacy-section li {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: var(--spacing-sm);
}

.privacy-section strong {
    color: var(--ocean-deep);
}

.last-updated {
    text-align: center;
    font-style: italic;
    color: var(--text-light);
    margin-top: var(--spacing-xl);
    padding-top: var(--spacing-xl);
    border-top: 1px solid #eee;
}

/* Mobile-First Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-primary, .cta-secondary {
        width: 100%;
        max-width: 300px;
        min-width: auto;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .feature-card {
        padding: var(--spacing-lg);
    }
    
    .container {
        padding: 0 var(--spacing-sm);
    }
    
    section {
        padding: var(--spacing-xl) 0;
    }
    
    .icon-image {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .feature-card {
        padding: var(--spacing-md);
    }
    
    .cta-primary, .cta-secondary {
        padding: var(--spacing-sm) var(--spacing-md);
        font-size: 1rem;
    }
    
    .icon-image {
        width: 80px;
        height: 80px;
    }
} 