/* Coconut Collective website styles */
/* Define color palette */
:root {
    --color-offwhite: #f8f4ec;
    --color-navy: #223344;
    --color-green: #2f5d3d;
    --color-purple: #5a3f82;
    --color-black: #1a1a1a;
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--color-navy);
    background-color: var(--color-offwhite);
    line-height: 1.6;
}

a {
    color: var(--color-green);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Containers */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
}

/* Header */
.site-header {
    background-color: var(--color-offwhite);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo {
    height: 50px;
}

.nav a {
    margin-left: 1rem;
    font-weight: 500;
    color: var(--color-navy);
}

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

/* Hero section */
.hero {
    background-color: var(--color-green);
    color: #ffffff;
    padding: 4rem 0;
    text-align: center;
}

.hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.hero .subheading {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.hero .tagline {
    font-size: 1rem;
    font-style: italic;
    color: #e8e8e8;
}

/* Services */
.services {
    background-color: var(--color-offwhite);
    padding: 4rem 0;
}

.services h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--color-green);
    text-align: center;
}

.service-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.card {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.05);
}

.card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--color-purple);
}

.card p {
    font-size: 1rem;
}

/* About section */
.about {
    background-color: var(--color-offwhite);
    padding: 4rem 0;
}

.about h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
    color: var(--color-green);
}

.about p {
    margin-bottom: 1rem;
    font-size: 1rem;
}

/* Contact section */
.contact {
    background-color: var(--color-green);
    color: #ffffff;
    padding: 4rem 0;
}

.contact h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
    color: #ffffff;
}

.contact p {
    margin-bottom: 1rem;
    text-align: center;
}

.contact ul {
    list-style: none;
    text-align: center;
}

.contact li {
    margin-bottom: 0.5rem;
}

.contact a {
    color: #ffffff;
    font-weight: 600;
}

.contact a:hover {
    color: var(--color-offwhite);
}

/* Footer */
.site-footer {
    background-color: var(--color-offwhite);
    border-top: 1px solid rgba(0,0,0,0.05);
    text-align: center;
    padding: 1rem 0;
}

.site-footer p {
    font-size: 0.875rem;
    color: var(--color-navy);
}

/* Responsive breakpoints */
@media (min-width: 600px) {
    .service-cards {
        grid-template-columns: repeat(3, 1fr);
    }
}