:root {
    --emerald-green: #1C5A4C;
    --copper: #C27A45;
    --parchment: #F4F1EA;
    --dark-red: #D32F2F;
    --text-dark: #2C3E3A;
    --text-light: #5A706B;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--parchment);
    color: var(--text-dark);
    line-height: 1.6;
}

h1, h2, h3, .logo, .ui-header, .ui-date {
    font-family: 'Playfair Display', serif;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 5%;
    background-color: var(--emerald-green);
    color: var(--parchment);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.navbar nav a {
    color: var(--parchment);
    text-decoration: none;
    margin-left: 1.5rem;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.navbar nav a:hover {
    color: var(--copper);
}

.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4rem 5%;
    min-height: 80vh;
    background: linear-gradient(135deg, var(--parchment) 0%, #e8e3d8 100%);
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--emerald-green);
}

.highlight {
    color: var(--copper);
}

.subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.badges {
    display: flex;
    gap: 1rem;
}

.store-badge {
    padding: 1rem 2rem;
    background-color: var(--emerald-green);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: transform 0.3s, background-color 0.3s;
    text-align: center;
}

.app-store {
    background-color: var(--text-dark);
}

.store-badge:hover {
    transform: translateY(-3px);
    background-color: var(--copper);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.phone-mockup {
    width: 300px;
    height: 600px;
    background-color: #333;
    border-radius: 40px;
    padding: 10px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.screen {
    width: 100%;
    height: 100%;
    background-color: var(--parchment);
    border-radius: 30px;
    overflow: hidden;
    position: relative;
}

.app-ui {
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.ui-header {
    background-color: var(--emerald-green);
    color: var(--copper);
    padding: 15px;
    text-align: center;
    margin: -20px -20px 20px -20px;
    font-size: 1.2rem;
    font-weight: bold;
}

.ui-date {
    text-align: center;
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.ui-card {
    background-color: white;
    padding: 20px;
    border-radius: 15px;
    border: 1px solid rgba(194, 122, 69, 0.3);
    text-align: center;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.ui-card h3 {
    color: var(--copper);
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
    margin-bottom: 5px;
}

.ui-card h2 {
    color: var(--text-dark);
}

.ui-quote {
    background-color: white;
    padding: 20px;
    border-radius: 15px;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    border: 1px solid rgba(194, 122, 69, 0.5);
    text-align: center;
}

.ui-quote span {
    display: block;
    margin-top: 10px;
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-size: 0.8rem;
    font-weight: bold;
}

.features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding: 4rem 5%;
    background-color: white;
    flex-wrap: wrap;
}

.feature-card {
    background: var(--parchment);
    padding: 2rem;
    border-radius: 20px;
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    text-align: center;
    border-bottom: 4px solid var(--emerald-green);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

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

.feature-card h3 {
    color: var(--copper);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

footer {
    text-align: center;
    padding: 2rem;
    background-color: var(--text-dark);
    color: rgba(255,255,255,0.5);
}

.page-content {
    max-width: 800px;
    margin: 4rem auto;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.page-content h1 {
    color: var(--emerald-green);
    margin-bottom: 1rem;
}

.page-content h2 {
    color: var(--copper);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.page-content p, .page-content ul {
    margin-bottom: 1rem;
    color: var(--text-light);
}

.page-content ul {
    padding-left: 2rem;
}

.menu-toggle {
    display: none;
    font-size: 1.8rem;
    background: none;
    border: none;
    color: var(--parchment);
    cursor: pointer;
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        padding: 1.5rem 5%;
    }
    .menu-toggle {
        display: block;
    }
    .navbar nav {
        display: none;
        width: 100%;
        flex-direction: column;
        text-align: center;
        gap: 0;
        margin-top: 15px;
    }
    .navbar nav.active {
        display: flex;
    }
    .navbar nav a {
        margin: 0;
        padding: 12px 0;
        border-top: 1px solid rgba(255,255,255,0.1);
        width: 100%;
    }
    .hero {
        flex-direction: column;
        text-align: center;
    }
    .badges {
        justify-content: center;
        flex-wrap: wrap;
        margin-top: 20px;
    }
    .hero-image {
        margin-top: 3rem;
    }
}
