/* Fonts - Assumes fonts are in a /fonts subfolder or same directory */
@font-face {
    font-family: 'AcutaThin';
    src: url('fonnts.com-Acuta-Thin.otf') format('opentype');
}
@font-face {
    font-family: 'PhotographSignature';
    src: url('Photograph Signature.ttf') format('truetype');
}
@font-face {
    font-family: 'Raleway';
    src: url('Raleway-Light.ttf') format('truetype');
    font-weight: 300;
}
@font-face {
    font-family: 'Raleway';
    src: url('Raleway-Medium.ttf') format('truetype');
    font-weight: 500;
}

:root {
    --yellow: #EDE04B;
    --teal: #A8D3C4;
    --orange: #ECA154;
    --green: #9CAF88;
    --dark-blue: #47565A;
    --charcoal: #373A36;
    --warm-gray: #D7D2CB;
    --linen: #F9F8F6;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Raleway', sans-serif;
    font-weight: 300;
    line-height: 1.8;
    color: var(--charcoal);
    background-color: white;
    overflow-x: hidden;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography Hierarchy per Brand Guide */
.header-main {
    font-family: 'AcutaThin', serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--dark-blue);
}

.script-header {
    font-family: 'PhotographSignature', cursive;
    font-size: 4.5rem;
    color: var(--orange);
    margin-bottom: 0.5rem;
}

.lead-text {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: var(--dark-blue); /* Updated from default charcoal */
}

p { margin-bottom: 1.5rem; }

/* The Double-Line Divider (Brand Signature) */
.double-divider {
    height: 6px;
    width: 60px;
    border-top: 1px solid var(--charcoal); /* The thin line */
    border-bottom: 3px solid var(--teal);   /* The thick brand color line */
    margin-bottom: 2rem;
}
.accent-orange { border-bottom-color: var(--orange); }
.accent-yellow { border-bottom-color: var(--yellow); }
.accent-charcoal { border-bottom-color: var(--dark-blue); }



/* Optional: If you want to add the texture to the Hero background as well */
.hero {
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: 
        linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7)),
        url('basket.jpeg');
    background-size: cover;
    background-position: center;
}

.main-logo {
    max-width: 350px;
    width: 100%;
}

.content-section {
    padding: 100px 0;
}

/* Updated Linen Section with your basket.jpg */
.bg-linen {
    /* We use a linear-gradient overlay to ensure the text pops 
       The colors are pulled from your Warm Gray 1 C (#D7D2CB) */
    background: 
        linear-gradient(rgba(249, 248, 246, 0.92), rgba(249, 248, 246, 0.92)), 
        url('basket.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Creates a subtle parallax effect */
}

.bg-teal { background-color: var(--teal); }

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.impact-item h3 {
    font-family: 'AcutaThin', serif;
    text-transform: uppercase;
    font-size: 1.1rem;
    letter-spacing: 0.15em; /* This is the 150 tracking mentioned in your guide */
    margin-bottom: 10px;
    color: var(--dark-blue);
}

/* CTA */
.contact-section {
    padding: 120px 0;
    text-align: center;
    background-color: var(--dark-blue);
    color: white;
}
.contact-section .script-header { color: var(--yellow); }

.cta-button {
    display: inline-block;
    margin-top: 20px;
    padding: 15px 40px;
    border: 1px solid var(--yellow);
    color: var(--yellow);
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 1px;
    transition: 0.3s;
}
.cta-button:hover {
    background-color: var(--yellow);
    color: var(--charcoal);
}

footer {
    padding: 40px;
    text-align: center;
    font-size: 0.8rem;
    background: var(--linen);
}

/* Scroll Animation Classes */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .header-main { font-size: 1.8rem; }
    .script-header { font-size: 2.5rem; }
    .content-section { padding: 60px 0; }

}
