:root {
    --primary-gradient-start: #F4BD70;
    --primary-gradient-end: #F69679;
    --surface-bg: #FFF1E6;
    --card-bg: #FFFFFF;
    --text-color: #20180E;
    --heading-color: #4A3922;
    --shadow-color: rgba(74, 57, 34, 0.15);
}

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

body {
    font-family: 'Gabriela', serif;
    background-color: var(--surface-bg);
    color: var(--text-color);
    line-height: 1.6;
}

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

/* Header */
header {
    padding: 20px 0;
    background-color: transparent;
}

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

.logo {
    font-size: 2rem;
    font-weight: bold;
    color: var(--heading-color);
    text-decoration: none;
}

nav a {
    margin-left: 20px;
    text-decoration: none;
    color: var(--heading-color);
    font-size: 1.1rem;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--primary-gradient-end);
}

/* Buttons */
.cta-buttons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.store-btn {
    display: inline-block;
    padding: 12px 24px;
    background: linear-gradient(180deg, var(--primary-gradient-start) 0%, var(--primary-gradient-end) 100%);
    color: white; /* Or maybe dark brown if better contrast? White usually looks good on these warm gradients */
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    box-shadow: 0 4px 15px var(--shadow-color);
    transition: transform 0.2s, box-shadow 0.2s;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.store-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(246, 150, 121, 0.4);
}

/* Hero Section */
#hero {
    padding: 60px 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

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

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--heading-color);
}

.subtitle {
    font-size: 1.25rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

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

.hero-image img {
    max-width: 300px;
    border-radius: 20px;
    box-shadow: 0 20px 40px var(--shadow-color);
    transform: rotate(-3deg);
    transition: transform 0.3s;
}

.hero-image img:hover {
    transform: rotate(0deg);
}

/* Features Section */
#features {
    padding: 80px 0;
}

.feature-row {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 100px;
}

.feature-row.reverse {
    flex-direction: row-reverse;
}

.feature-text {
    flex: 1;
}

.feature-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--heading-color);
    position: relative;
    display: inline-block;
}

.feature-text h2::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-gradient-start), var(--primary-gradient-end));
    border-radius: 2px;
}

.feature-text p {
    font-size: 1.2rem;
}

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

.feature-image img {
    max-width: 280px;
    border-radius: 16px;
    box-shadow: 0 15px 35px var(--shadow-color);
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    text-align: center;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 40px 40px 0 0;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--heading-color);
}

.cta-section .cta-buttons {
    justify-content: center;
}

/* Footer */
footer {
    background-color: #F8C48E; /* Card color / darker beige */
    padding: 40px 0;
    text-align: center;
}

.footer-links {
    margin-bottom: 20px;
}

.footer-links a {
    margin: 0 15px;
    color: var(--heading-color);
    text-decoration: none;
    font-weight: bold;
}

.footer-links a:hover {
    text-decoration: underline;
}

footer p {
    opacity: 0.7;
    font-size: 0.9rem;
}

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

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .cta-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .feature-text h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .hero-image img {
        max-width: 240px;
    }
}
