/* Florify Website Styles */

/* CSS Variables */
:root {
    --primary: #00796B;
    --primary-light: #E0F2F1;
    --primary-dark: #004D40;
    --text: #1F2937;
    --text-secondary: #6B7280;
    --background: #FFFFFF;
    --surface: #F9FAFB;
    --border: #E5E7EB;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

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

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    z-index: 1000;
    padding: 16px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 32px;
}

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

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

/* Hero Section */
.hero {
    padding: 140px 0 40px;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--background) 100%);
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-content {
    flex: 1;
}

.hero h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
}

.hero h1 .highlight {
    color: var(--primary);
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 32px;
    max-width: 500px;
}

.hero-image {
    padding-top: 20px;
}

.hero-image img {
    max-width: 380px;
    height: auto;
}

/* App Badges */
.app-badges {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.app-badges.centered {
    justify-content: center;
}

.app-badge img {
    height: 60px;
    width: auto;
    transition: transform 0.2s;
}

.app-badge:hover img {
    transform: scale(1.05);
}

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

.section-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 48px;
}

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

.feature-card {
    background: var(--background);
    padding: 32px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: transform 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    border-radius: 12px;
    padding: 8px;
}

.feature-icon svg {
    width: 28px;
    height: 28px;
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-secondary);
}

/* App Preview Section */
.app-preview {
    padding: 80px 0;
    background: var(--background);
}

.preview-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.preview-item {
    text-align: center;
}

.preview-item img {
    width: 100%;
    max-width: 280px;
    height: auto;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.preview-item:hover img {
    transform: translateY(-8px);
}

.preview-item h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
}

.preview-item p {
    font-size: 14px;
    color: var(--text-secondary);
}

@media (max-width: 992px) {
    .preview-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 576px) {
    .preview-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .preview-item img {
        max-width: 240px;
    }
}

/* Download Section */
.download {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.download-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.download-decoration .leaf-left {
    position: absolute;
    left: -50px;
    top: 50%;
    transform: translateY(-50%) rotate(-15deg);
    width: 200px;
    height: 200px;
    opacity: 0.5;
}

.download-decoration .leaf-right {
    position: absolute;
    right: -30px;
    bottom: -20px;
    transform: rotate(45deg);
    width: 180px;
    height: 180px;
    opacity: 0.4;
}

.download .container {
    position: relative;
    z-index: 1;
}

.download .section-title,
.download .section-subtitle {
    color: white;
}

/* Footer */
.footer {
    padding: 40px 0;
    background: linear-gradient(180deg, var(--primary-dark) 0%, #003D33 100%);
    color: rgba(255, 255, 255, 0.9);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo-text {
    font-size: 22px;
    font-weight: 600;
    color: white;
}

.footer-links {
    display: flex;
    gap: 32px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: white;
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
}

/* Legal Pages */
.legal-page {
    padding: 120px 0 80px;
}

.legal-page h1 {
    font-size: 36px;
    margin-bottom: 8px;
}

.legal-page .updated {
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.legal-page h2 {
    font-size: 24px;
    margin-top: 32px;
    margin-bottom: 16px;
    color: var(--primary);
}

.legal-page p,
.legal-page ul {
    margin-bottom: 16px;
    color: var(--text-secondary);
}

.legal-page ul {
    padding-left: 24px;
}

.legal-page li {
    margin-bottom: 8px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero .container {
        flex-direction: column;
        text-align: center;
    }

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

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

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

    .nav-links {
        display: none;
    }

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

    .footer-links {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
}

