:root {
    --primary-color: #1a3c34;
    --secondary-color: #c5a028; /* Muted Gold */
    --text-color: #333;
    --light-text: #f8f9fa;
    --bg-light: #f4f4f4;
    --bg-dark: #121212;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-color);
    background-color: #fff;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center { text-align: center; }
.text-white { color: white; }

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 2px;
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    font-size: 0.9rem;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: white;
}

.btn-primary:hover {
    background-color: #b08d1e;
    transform: translateY(-2px);
}

.btn-outline {
    border: 2px solid white;
    color: white;
}

.btn-outline:hover {
    background-color: white;
    color: var(--primary-color);
}

.section {
    padding: 80px 0;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
    color: var(--primary-color);
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--secondary-color);
    margin: 10px 0 0;
}

/* Header */
header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    height: 80px;
    display: flex;
    align-items: center;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a:not(.btn) {
    font-weight: 500;
    color: var(--text-color);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links a:not(.btn):hover {
    color: var(--secondary-color);
}

.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 5px 0;
    transition: var(--transition);
}

/* Hero */
#hero {
    height: 100vh;
    background: url('assets/images/portfolio-2.jpg') no-repeat center center/cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 0; /* Override section spacing if applied */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4); /* Dark overlay */
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    font-weight: 300;
    opacity: 0.9;
}

.btn-large {
    padding: 15px 40px;
    font-size: 1rem;
}

/* Grid Layouts */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.grid-2.reverse .content {
    order: 2; /* Content goes briefly on right? Standard flex/grid behavior */
}

/* Specific Sections */
#about .content {
    padding-right: 20px;
}

.lead {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 20px;
}

#about p {
    margin-bottom: 20px;
}

#about .image, #more-than-hair .image, #founder .image {
    position: relative;
}

#about .image img, #more-than-hair .image img, #founder .image img {
    border-radius: 0px;
    box-shadow: 20px 20px 0px var(--secondary-color); /* Offset border effect */
    height: auto;
    width: 100%;
    object-fit: cover;
}
#founder .image img {
    max-height: 600px;
}

.bg-light {
    background-color: var(--bg-light);
}

#more-than-hair .container.reverse {
    /* If grid reverse needed logically but HTML order is different */
}

/* Mission */
#mission {
    background-color: var(--primary-color);
    color: white;
}

#mission .section-title {
    color: white;
}

#mission .section-title::after {
    background-color: white;
    margin: 10px auto;
}

.mission-box {
    max-width: 800px;
    margin: 0 auto;
}

.large-text {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-style: italic;
    margin-bottom: 30px;
    line-height: 1.5;
}

.emphasis {
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Founder */
.founder-name {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.founder-subtitle {
    font-style: italic;
    color: #666;
    margin-bottom: 25px;
    display: block;
}

/* Gallery */
.bg-dark {
    background-color: var(--bg-dark);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-grid img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-grid img:hover {
    transform: scale(1.03);
    cursor: pointer;
}

/* Footer */
footer {
    background-color: #0b1a16; /* Very dark green */
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    font-family: var(--font-heading);
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #ccc;
}

.footer-col ul li a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    color: #666;
    font-size: 0.9rem;
}

/* Animations */
.fade-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 900px) {
    .grid-2 {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    #hero {
        background-position: center; /* Adjust focus */
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    #about .content {
        order: 1; /* Text first */
    }
    #about .image {
        order: 2;
    }

    #more-than-hair .content { order: 1; }
    #more-than-hair .image { order: 2; }
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
        z-index: 1001; /* Above mobile menu */
    }

    .nav-links {
        position: fixed;
        right: 0;
        top: 0;
        height: 100vh;
        background-color: white;
        flex-direction: column;
        justify-content: center;
        width: 70%;
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}
