/* Basic Reset and Variables for LIGHT THEME */
:root {
    --color-primary: #104234; /* Deep Green/Teal (Accent) */
    --color-secondary-bg: #EAE6CD; /* Slightly darker shade of the main BG for depth */
    --color-main-bg: #FFFEBD2; /* Creamy Yellow/Off-White */
    --color-text-dark: #333333;
    --color-text-light: #f0f0f0;
    --color-button-border: #666666;
}

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

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

/* --- Navigation Bar Styling --- */

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
    background-color: var(--color-main-bg);
    border-bottom: 1px solid rgba(16, 66, 52, 0.1); /* Light shadow line */
}

.logo-text {
    font-size: 1.5em;
    font-weight: 700;
    color: var(--color-primary);
}

.nav-links a {
    color: var(--color-text-dark);
    text-decoration: none;
    margin-left: 30px;
    font-size: 0.95em;
    opacity: 0.8;
    transition: opacity 0.2s;
}

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

.btn-sign-in, .btn-order-online {
    text-decoration: none;
    padding: 8px 15px;
    font-size: 0.9em;
    border-radius: 4px;
    margin-left: 10px;
    transition: background-color 0.2s, color 0.2s;
}

.btn-sign-in {
    color: var(--color-text-dark);
    border: 1px solid var(--color-button-border);
}

.btn-order-online {
    background-color: var(--color-primary);
    color: var(--color-text-light);
    border: 1px solid var(--color-primary);
    font-weight: 600;
}

/* --- Hero Section Styling --- */

.hero-section {
    display: flex;
    min-height: 70vh;
    padding: 80px 50px 50px 50px;
    align-items: center;
}

.content-left {
    flex: 1;
    max-width: 50%;
    padding-right: 50px;
}

.tagline {
    font-size: 1.1em;
    color: var(--color-primary);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    font-weight: 600;
}

.tagline-icon {
    font-size: 1.3em;
    margin-right: 8px;
}

.headline {
    font-size: 4em;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--color-text-dark);
}
/* Styling the 'Baked with Love' part in the primary color */
.headline span {
    color: var(--color-primary);
}

.description {
    font-size: 1.05em;
    color: var(--color-text-dark);
    margin-bottom: 40px;
    max-width: 500px;
}

.cta-buttons a {
    display: inline-block;
    padding: 12px 25px;
    margin-right: 15px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: opacity 0.2s, transform 0.2s;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-text-light);
    border: 2px solid var(--color-primary);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-text-dark);
    border: 2px solid var(--color-button-border);
}

/* --- Visual Placeholder (Right Side) --- */

.content-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    /* Simulate light, airy visual gradient */
    background: radial-gradient(circle at 75% 50%, rgba(16, 66, 52, 0.05), transparent 50%);
}

.coffee-visual-placeholder {
    width: 450px;
    height: 450px;
    position: relative;
    /* Placeholder for the light visual */
    background-color: var(--color-main-bg);
    border: 5px solid var(--color-primary);
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* --- Blends/Specialties Section Styling --- */

.blends-section {
    padding: 80px 50px;
    text-align: center;
    background-color: var(--color-secondary-bg); /* Use the slightly darker background */
}

.blends-header {
    margin-bottom: 50px;
}

.sub-title {
    color: var(--color-primary);
    font-size: 0.9em;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
}

.section-title {
    font-size: 2.5em;
    font-weight: 700;
    margin: 10px 0;
    color: var(--color-text-dark);
}

.section-description {
    color: var(--color-text-dark);
    max-width: 700px;
    margin: 0 auto;
}

.product-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding-top: 20px;
}

.product-card {
    width: 300px;
    background-color: var(--color-main-bg); /* Cards are lighter than the section background */
    border-radius: 8px;
    overflow: hidden;
    text-align: left;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(16, 66, 52, 0.1);
}

.product-image-container {
    position: relative;
    height: 350px;
}

.product-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-details {
    padding: 20px;
}

.product-name {
    font-size: 1.5em;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--color-primary);
}

.product-desc {
    font-size: 0.9em;
    color: var(--color-text-dark);
    margin-bottom: 15px;
    min-height: 40px;
}

.product-price {
    font-size: 1.3em;
    color: var(--color-primary);
    font-weight: 700;
    margin-bottom: 10px;
}

.rating {
    color: #ffc107; /* Standard yellow stars */
    font-size: 1.1em;
}

.btn-card-buy {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background-color: var(--color-primary);
    color: var(--color-text-light);
    padding: 8px 15px
