/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Brand Colors */
    --flamingo-pink: #FF6F91;
    --turquoise: #00C4CC;
    --mint: #99E19C;
    --citrus: #FF9E2C;
    --charcoal: #333333;
    --warm-grey: #E0E0E0;
    --white: #ffffff;
    
    /* Typography */
    --font-family: 'Open Sans', sans-serif;
    --font-weight-light: 300;
    --font-weight-normal: 400;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--charcoal);
    background-color: var(--white);
}

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

/* Hero Logo */
.hero-logo {
    text-align: center;
    margin-bottom: 2rem;
}

.hero-logo-image {
    height: 60px;
    width: auto;
}

/* Hero Section */
.hero {
    padding: 60px 0 80px;
    background: linear-gradient(135deg, rgba(255, 111, 145, 0.1) 0%, rgba(0, 196, 204, 0.1) 100%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--charcoal);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--citrus);
    font-weight: var(--font-weight-semibold);
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--charcoal);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.hero-app-stores {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.hero-image {
    text-align: right;
}

.app-screenshot {
    max-width: 300px;
    height: auto;
    border-radius: 20px;
    /*box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);*/
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: var(--font-weight-semibold);
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: var(--turquoise);
    color: var(--white);
    border-color: var(--turquoise);
}

.btn-primary:hover {
    background: var(--citrus);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--citrus);
    border-color: var(--citrus);
}

.btn-secondary:hover {
    background: var(--citrus);
    color: var(--white);
    transform: translateY(-2px);
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: var(--font-weight-bold);
    text-align: center;
    color: var(--charcoal);
    margin-bottom: 3rem;
}

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

.feature-card {
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
    background: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-image {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 1.5rem;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--charcoal);
    margin-bottom: 1rem;
}

.feature-description {
    font-size: 1rem;
    color: var(--charcoal);
    line-height: 1.6;
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--turquoise) 0%, var(--citrus) 100%);
    color: var(--white);
}

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

.cta-title {
    font-size: 2.5rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.signup-form {
    margin-bottom: 2rem;
}

.form-group {
    display: flex;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto 1rem;
}

.form-group input {
    flex: 1;
    padding: 12px 16px;
    font-size: 1rem;
    border: none;
    border-radius: 25px;
    outline: none;
}

.form-group .btn {
    white-space: nowrap;
    background: var(--white);
    color: var(--turquoise);
}

.form-group .btn:hover {
    background: var(--warm-grey);
    color: var(--citrus);
}

.form-note {
    font-size: 0.9rem;
    opacity: 0.8;
}

.success-message,
.error-message {
    padding: 1rem;
    border-radius: 10px;
    margin-top: 1rem;
}

.success-message {
    background: rgba(153, 225, 156, 0.2);
    color: var(--white);
}

.error-message {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

/* Download Section */
.download {
    padding: 80px 0;
    background: var(--warm-grey);
    text-align: center;
}

.download-description {
    font-size: 1.2rem;
    color: var(--charcoal);
    margin-bottom: 2rem;
}

.app-store-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.app-store-btn {
    display: inline-block;
    transition: transform 0.3s ease;
}

.app-store-btn:hover {
    transform: translateY(-3px);
}

.app-store-btn img {
    height: 60px;
    width: auto;
}

/* Footer */
.footer {
    background: var(--charcoal);
    color: var(--white);
    padding: 40px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-logo {
    height: 30px;
    width: auto;
    margin-bottom: 0.5rem;
}

.footer-brand h3 {
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--flamingo-pink);
    margin-bottom: 0.5rem;
}

.footer-brand p {
    opacity: 0.8;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-link {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--flamingo-pink);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-image {
        text-align: center;
    }

    .hero-cta {
        justify-content: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-group {
        flex-direction: column;
        max-width: 300px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    
    .app-store-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 40px 0 60px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .features,
    .cta,
    .download {
        padding: 60px 0;
    }
}
