/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Caladea&family=Akaya+Kanadaka&display=swap');

/* General Styles */
body {
    margin: 0;
    padding: 0;
    font-family: 'Akaya Kanadaka', cursive;
    background-color: #faf7f5;
    color: #171a1f;
    line-height: 1.6;
}

/* Header Styles */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background: #faf7f5e3;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-menu {
    display: flex;
    gap: 1.5rem;
}

.header-menu-item {
    font-size: 1rem;
    color: #565d6d;
    cursor: pointer;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

.header-menu-item:hover {
    color: #927759;
}

.header-menu-item.selected {
    font-weight: 700;
    color: #927759;
}

.logo img {
    width: 100px;
    height: auto;
}

.header-buttons {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 0.5rem 1.5rem;
    border-radius: 22px;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-outline {
    border: 1px solid #43141e;
    color: #43141e;
}

.btn-outline:hover {
    background: #6a2030;
    color: #fff;
}

.btn-primary {
    background: #43141e;
    color: #fff;
}

.btn-primary:hover {
    background: #6a2030;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 2rem 1rem;
}

.hero-title {
    font-family: 'Caladea', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #43141e;
    margin-bottom: 1rem;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.hero-image {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 1rem;
}

.hero-text {
    font-size: 1.2rem;
    color: #43141e;
    margin-bottom: 2rem;
}

.btn-search {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.2rem;
    border: 2px solid #43141e;
    background: transparent;
    color: #43141e;
    padding: 0.75rem 2rem;
}

.btn-search .icon {
    width: 24px;
    height: 24px;
}

.btn-search:hover {
    background: rgba(67, 20, 30, 0.1);
}

/* Testimonial Section */
.testimonial {
    background: #faf7f5;
    padding: 2rem 1rem;
    text-align: center;
}

.testimonial-quote {
    font-family: 'Caladea', serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: #43141e;
    max-width: 700px;
    margin: 0 auto 1rem;
}

.testimonial-author {
    font-size: 1rem;
    color: #912b41;
}

/* How It Works Section */
.how-it-works {
    padding: 3rem 1rem;
    background: #faf7f5;
}

.section-title {
    font-family: 'Caladea', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #43141e;
    text-align: left;
    max-width: 1200px;
    margin: 0 auto 1rem;
}

.divider {
    width: 100%;
    max-width: 1200px;
    height: 2px;
    background: #43141e;
    margin: 1rem auto;
}

.section-subtitle {
    font-family: 'Caladea', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: #43141e;
    text-align: left;
    max-width: 1200px;
    margin: 0 auto 2rem;
}

.ingredients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 2rem;
}

.ingredient-card {
    text-align: left;
}

.ingredient-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 1rem;
}

.btn-explore {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #43141e;
    color: #fff;
    padding: 0.75rem 2rem;
    font-size: 1.2rem;
}

.btn-explore:hover {
    background: #6a2030;
}

/* Favorites Section */
.favorites {
    position: relative;
    padding: 3rem 1rem;
    background: #c09b7e;
}

.favorites-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.favorites-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    font-size: 1.2rem;
}

.favorites-content p {
    margin-bottom: 1rem;
}

/* Sign-Up Section */
.sign-up-section {
    padding: 3rem 1rem;
    text-align: center;
    background: #faf7f5;
}

.sign-up-section h2 {
    font-family: 'Caladea', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #43141e;
    margin-bottom: 1rem;
}

/* Footer Styles */
.footer {
    padding: 2rem 1rem;
    background: #43141e;
    color: #fff;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
}

.footer-links a:hover {
    text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .header {
        flex-direction: column;
        gap: 1rem;
    }

    .header-menu {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 2.5rem;
    }

    .hero-text {
        font-size: 1rem;
    }

    .btn-search {
        font-size: 1rem;
        padding: 0.5rem 1.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1.5rem;
    }

    .favorites-image {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .header-buttons {
        flex-direction: column;
        gap: 0.5rem;
    }

    .hero-title {
        font-size: 1.5rem;
        line-height: 2rem;
    }

    .testimonial-quote {
        font-size: 1.2rem;
    }
}