:root {
    --green: #A5A835;
    --yellow: #F6EA70;
    --nav-color: #E2E69F;
    --text-dark: #000000;
    --text-light: #ffffff;
    --font-heading: 'DM Serif Display', serif;
    --font-body: 'Courier Prime', monospace;
}

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

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--yellow);
}

h1, h2, h3, .brand, blockquote {
    font-family: var(--font-heading);
    font-weight: normal;
}

/* Common Header for all pages */
.page-header {
    background-color: var(--green);
    padding: 2rem 5rem 0 5rem;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(230, 234, 151, 0.3);
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.brand {
    font-size: 2.2rem;
    text-decoration: underline;
    color: var(--nav-color);
}

.brand a {
    color: inherit;
    text-decoration: inherit;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--nav-color);
    text-decoration: none;
    font-size: 1.2rem;
}

/* Hero Section (Home Page) */
.hero {
    background-color: var(--green);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    color: var(--text-light);
}

.hero.standalone {
    padding: 0;
}
.hero:not(.standalone) {
    padding: 2rem 5rem;
}

.hero-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem 5rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.hero h1 {
    font-size: 5rem;
    margin-bottom: 3rem;
    letter-spacing: -0.02em;
}

.btn {
    background-color: var(--text-light);
    color: var(--green);
    padding: 1rem 3rem;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.2rem;
    font-family: var(--font-body);
    border: none;
    cursor: pointer;
    transition: opacity 0.2s;
    display: inline-block;
}

.btn:hover {
    opacity: 0.9;
}

/* Main Content Wrapper for subpages */
.page-content {
    padding: 5rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

/* Services Section (About) */
.services {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.services h2 {
    font-size: 4.5rem;
    line-height: 1;
    letter-spacing: -0.03em;
}

.services-list-container {
    position: relative;
}

.services-list-container hr {
    border: none;
    border-top: 1px solid var(--text-dark);
    margin: 0 0 1.5rem 0;
}

.services-list-container hr.bottom-line {
    margin: 3rem 0;
}

.services-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.services-header h3 {
    font-size: 2.2rem;
    font-weight: bold;
    letter-spacing: -0.02em;
}

.chevron {
    width: 30px;
    height: 30px;
}

.services-list {
    list-style: none;
    margin-left: 1.5rem;
}

.services-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    line-height: 1.8;
}

.services-list li::before {
    content: '•';
    position: absolute;
    left: -1rem;
    font-size: 1.2rem;
}

/* Contact Section (Chat) */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 8rem;
}

.contact-text h2 {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    letter-spacing: -0.03em;
}

.contact-text p {
    font-size: 1.3rem;
    max-width: 80%;
    line-height: 1.8;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 1.1rem;
}

.form-group input,
.form-group textarea {
    background: transparent;
    border: 1px solid var(--text-dark);
    border-radius: 15px;
    padding: 1rem 1.5rem;
    font-family: var(--font-body);
    font-size: 1.1rem;
    outline: none;
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.btn-send {
    background-color: var(--green);
    color: var(--text-light);
    align-self: flex-start;
    padding: 0.8rem 2.5rem;
    border-radius: 8px;
    font-size: 1.2rem;
    border: none;
    cursor: pointer;
}

.quote-section {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 5rem;
    align-items: center;
}

.quote-image-container {
    width: 100%;
}

.quote-image {
    width: 100%;
    height: auto;
    aspect-ratio: 1/3;
    background-color: #f06a6a;
    object-fit: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding: 1rem;
}

.quote-content blockquote {
    font-size: 2.2rem;
    line-height: 1.5;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.quote-author {
    font-size: 1.1rem;
    text-align: right;
    font-weight: bold;
    padding-left: 20%;
}

/* Resources Section */
.resources-page h1 {
    font-size: 4.5rem;
    margin-bottom: 4rem;
    letter-spacing: -0.02em;
}

.resource-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    margin-bottom: 6rem;
}

.resource-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    margin-bottom: 6rem;
}

.resource-section h3 {
    font-family: var(--font-body);
    font-weight: bold;
    font-size: 1.3rem;
    margin-bottom: 2rem;
}

.resource-list {
    list-style: none;
    margin-left: 1rem;
}

.resource-list li {
    position: relative;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.resource-list li::before {
    content: '•';
    position: absolute;
    left: -1.2rem;
}

.resource-list a {
    color: var(--text-dark);
    text-decoration: underline;
    text-decoration-color: #aeb439;
    text-underline-offset: 4px;
}

.ig-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    width: 270px; /* specific width to force the 6th element to wrap perfectly */
    justify-content: center;
}

.ig-icon {
    width: 45px;
    height: 45px;
    background-color: var(--text-dark);
    color: var(--yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}
.ig-icon svg {
    width: 24px;
    height: 24px;
}

/* Tunes Section */
.tunes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}
.tunes-placeholder {
    background-color: rgba(0,0,0,0.05);
    border: 2px dashed var(--green);
    border-radius: 12px;
    padding: 3rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 380px;
}

@media (max-width: 900px) {
    .page-header, .page-content, .hero:not(.standalone) {
        padding: 2rem;
    }
    .nav-links {
        display: none;
    }
    .hero h1 {
        font-size: 3.5rem;
    }
    .services, .contact-grid, .quote-section, .resource-grid-3, .resource-grid-2 {
        grid-template-columns: 1fr;
    }
    .quote-author {
        text-align: left;
        padding-left: 0;
    }
    .quote-image {
        aspect-ratio: 1/1;
        max-width: 300px;
        margin: 0 auto;
    }
}