:root {
    --teal: #4db6ac;
    --sand: #f4e1d2;
    --dark-text: #333;
    --white: #ffffff;
    --accent: #d4a373;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--dark-text);
    background-color: #fafafa;
}

header {
    background: var(--white);
    padding: 1rem 5%;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Pacifico', cursive;
    font-size: 1.8rem;
    color: var(--teal);
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    text-decoration: none;
    color: var(--dark-text);
    font-weight: 400;
}

.cta-button {
    display: inline-block;
    padding: 12px 30px;
    background: var(--teal);
    color: var(--white);
    text-decoration: none;
    border-radius: 25px;
    margin-top: 20px;
    transition: background 0.3s;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 1rem 5% 1rem 5%;
    max-width: 1200px;
    margin: 0 auto;
    justify-items: center;
}

.product-card {
    background: var(--white);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    width: 100%;
    max-width: 400px;
}

.product-image {
    aspect-ratio: 1 / 1;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    margin-bottom: 15px;
    border-radius: 4px;
}

.buy-button {
    display: block;
    margin-top: 15px;
    padding: 10px;
    background: var(--dark-text);
    color: var(--white);
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.9rem;
}

.section-title {
    margin: 4rem 0rem 1rem 0rem;
}

.hero {
    height: 80vh;
    background: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.1)), url('images/herowide.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-end;
    padding-bottom: 40px;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

/* Mobile Optimization */
@media (max-width: 768px) {
    .hero {
        height: auto;
        aspect-ratio: 1024 / 505; /* Adjust this to match your image's width/height */
        background-size: contain;
        background-repeat: no-repeat;
        padding-bottom: 20px;
    }
}

/* About Page Layout */
.about-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 5% 5rem 5%;
}

.story-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.story-hook {
    text-align: center;
    font-size: 1.4rem;
    font-style: italic;
    color: var(--teal);
    margin-bottom: 3rem;
    line-height: 1.5;
}

footer {
    margin-left: 1rem;
    margin-right: 1rem;
}

.disclaimer {
    text-align: center;
    font-size: 0.85rem;
    color: var(--dark-text);
    opacity: 0.7;
    padding-bottom: 4rem;
}