/* --- Global Styles --- */
:root {
    /* Official Brand Palette */
    /* --primary-color: #8596A6; */  /* Dusty Slate Blue */
    --primary-color: #5e2146; /* Cranberry*/
    --secondary-color: #B2B099; /* Muted Olive Green */
    --accent-color: #C48D83; /* Warm Terracotta Rose */
    /* --dark-accent: #A595A2; */ /* Soft Plum/Mauve */
    --dark-accent: #6d1c5e; /* Soft Plum/Mauve */
    --sand-color: #D5B099; /* Warm Sand */
    --bg-cream: #F6F3EB; /* Cream Background */
    --footer-color: #4b2041; /* Cream Background */
    --contact-color: #957cad; /* Footer at bottom of page */
    --nav-hover: #b2b099; /* Hover color on navigation bar */

    /* Functional Colors */
    --text-color: #4a5568; /* Dark gray for high contrast/readability */
    --white: #ffffff;
}

/* Base font size - scaled down to 14px to make everything globally smaller */
html {
    font-size: 20px; 
}

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

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-color);
    line-height: 1.4; 
    background-color: var(--bg-cream); /* Using your official cream background */
    font-weight: 400;
    font-size: 0.95rem; 
}

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

.card {
    background-color: var(--white);
    padding: 30px; 
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05); 
    margin-bottom: 30px;
    border-top: 4px solid var(--primary-color); /* Adds a subtle branded touch to the cards */
}

/* --- Header --- */
header {
    background-color: var(--footer-color);
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px; 
}

h1 {
    /* color: var(--dark-accent);*/ /* Using Soft Plum for the brand name */
    color: var(--bg-cream); /* Using Soft Plum for the brand name */
    font-size: 1.3rem; 
    font-weight: 600;
}

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

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

/* --- Hero Section --- */
.hero {
    background-color: var(--white); /* Crisp white contrasts well against the cream body */
    padding: 40px 0 50px 0; 
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.hero-main-heading {
    text-align: center;
    font-size: 1.5rem; 
    color: var(--primary-color);
    margin-bottom: 30px;
    font-weight: 600;
}

.hero-content {
    display: flex;
    flex-direction: row; 
    align-items: center;
    justify-content: center; 
    max-width: 850px; 
    margin: 0 auto; 
    gap: 40px; 
}

.hero-text {
    flex: 1 1 auto; 
    max-width: 500px; 
    text-align: left; 
}

.pitch {
    font-size: 0.95rem; 
    margin-bottom: 0; 
    font-weight: 400; 
}

.hero-image {
    flex: 0 0 auto; 
    width: 180px; 
    display: flex;
    justify-content: center;
}

.hero-image img {
    width: 100%;
    max-width: 180px; 
    border-radius: 50%; /* Makes your circular logo perfectly round */
    box-shadow: 0 6px 15px rgba(0,0,0,0.08);
}

.hero-cta-container {
    text-align: center;
    margin-top: 40px; 
}

.cta-button {
    display: inline-block;
    background-color: var(--accent-color); /* Terracotta Rose */
    color: var(--white);
    padding: 10px 22px; 
    border-radius: 30px; 
    text-decoration: none;
    font-weight: 500;
    font-size: 0.85rem; 
    transition: background-color 0.3s, transform 0.2s;
}

.cta-button:hover {
    background-color: #b07c72; /* Slightly darker Terracotta on hover */
    transform: translateY(-2px);
}

/* --- Services, Shop, & About Sections --- */
.services-section h3, .about-section , .shop-section h3 {
    color: var(--primary-color);
    margin-bottom: 15px; 
    border-bottom: 1px solid var(--bg-cream); 
    padding-bottom: 8px;
    font-size: 1.1rem; 
    font-weight: 600;
}

.services-list {
    list-style-type: none;
    display: grid;
    grid-template-columns: 1fr 1fr; 
    gap: 15px; 
}

.services-list li {
    position: relative;
    padding-left: 20px;
    font-size: 0.85rem; 
}

.services-list li::before {
    content: '✓';
    color: var(--accent-color);
    position: absolute;
    left: 0;
    font-weight: 600;
}

.services-list strong {
    font-weight: 600;
    color: var(--primary-color);
}


/* Section with links to shop and free sample */
.shop-content {
    margin-top: 20px;
    margin-bottom: 20px;
    /* font-size:20px; */
    text-align: center;
}

.shop-link {
    color: var(--primary-color);
}

.shop-link:hover {
    color: var(--secondary-color);
}


/* About section */
.about-content {
    display: flex;
    gap: 25px; 
    align-items: center; 
}

.about-image {
    flex: 0 0 auto; 
    width: 120px; /* Slightly larger for a personal photo */
}

.about-image img {
    width: 100%;
    max-width: 120px; 
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.05);
    display: block;
}

.about-text {
    flex: 1; 
}

.about-text p {
    margin-bottom: 12px; 
    font-size: 0.85rem; 
    font-weight: 400;
}

/* --- Contact Section --- */
.contact-section {
    background-color: var(--contact-color); /* Dusty Slate Blue */
    color: var(--white);
    text-align: center;
    padding: 40px 20px; 
}

.contact-section h2 {
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 1.2rem; 
}

.contact-section p {
    font-weight: 400;
    font-size: 0.9rem; 
}

.contact-info {
    margin-top: 15px;
    font-size: 0.95rem; 
}

.contact-info a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* --- Footer --- */
footer {
    background-color: var(--footer-color); 
    color: #ffffff; 
    text-align: center;
    padding: 30px 20px; 
    font-size: 0.8rem; 
    font-weight: 400;
}

.social-links {
    margin-bottom: 15px;
}

.social-links a {
    color: #ffffff; 
    font-size: 1.1rem; 
    margin: 0 10px;
    transition: color 0.3s;
}

.social-links a:hover {
    color: var(--sand-color); 
}

.footer-link {
    color: var(--bg-cream);
}

.footer-link:hover {
    color: var(--sand-color);
}

.footer-text {
    padding-bottom: 10px;
}

/* --- Free Sample Promo Section Additions --- */
.text-center {
    text-align: center;
}

.button-group {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap; 
}

/* Styles the secondary button using your Muted Olive Green */
.secondary-button {
    background-color: var(--secondary-color); 
    color: var(--white);
}

.secondary-button:hover {
    background-color: #9c9a83; /* Slightly darker olive for the hover state */
}

/* =========================================
   Responsive Design Breakpoints
   ========================================= */

@media (max-width: 1024px) {
    html {
        font-size: 13px; 
    }
    .about-content {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 12px; 
    }
    .header-content {
        flex-direction: column;
        gap: 10px;
    }
    nav a {
        margin: 0 8px;
    }
    .hero {
        padding: 30px 0;
    }
    .hero-cta-container {
        margin-top: 30px; 
    }
    .services-list {
        grid-template-columns: 1fr; 
    }
    .card {
        padding: 20px 15px; 
    }
}

@media (max-width: 400px) {
    html {
        font-size: 11px; 
    }
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    .hero-text {
        max-width: 100%; 
        text-align: center; 
        margin-bottom: 20px; 
    }
    .about-content {
        flex-direction: column; 
        text-align: center;
    }
    .about-image {
        flex: auto; 
        width: 100%;
        display: flex;
        justify-content: center;
        margin-bottom: 10px;
    }
    .about-text {
        text-align: left; 
    }
}