/* styles.css */

/* --- VARIABLES & RESET --- */
:root {
    [cite_start]/* Base Colors [cite: 10] */
    --bg-white: #ffffff;
    --bg-off-white: #f8f9fa;
    --text-main: #222222;       
    --text-muted: #555555;      
    
    /* YOUR ACCENTS */
    --accent-green: #BDF8A3;    /* Mint */
    --accent-yellow: #FCFC81;   /* Lemon */
    
    /* Button Text Color */
    --btn-text: #000000;
}

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

body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: var(--text-main);
    background-color: var(--bg-white);
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

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

/* --- HEADER (Updated) --- */
header {
    padding: 20px 0;
    background-color: #ffffff; /* FIXED: White background hides logo box */
    
    position: sticky; 
    top: 0;
    z-index: 100;
    
    /* FIXED: Thicker Green border to separate header from content */
    border-bottom: 3px solid var(--accent-green); 
    box-shadow: 0 4px 12px rgba(0,0,0,0.05); 
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 55px; 
    width: auto;
}

nav ul { display: flex; gap: 35px; }

nav a {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    font-weight: 600;
    padding-bottom: 5px;
}

nav a:hover, nav a.active {
    color: var(--text-main);
    border-bottom: 3px solid var(--accent-green);
}

/* --- HERO SECTION (Full Width Overlay) --- */
.hero-full {
    position: relative;
    background-image: 
        linear-gradient(
            to right, 
            rgba(250, 250, 250, 0.60) 0%,   /* Solid on left for text readability */
            rgba(250, 250, 250, 0.35) 40%,  
            rgba(250, 250, 250, 0.10) 100%  /* Transparent on right */
        ),
        url('hero-bg.png');
    
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    
    min-height: 85vh; 
    display: flex;
    align-items: center; 
}

.hero-content {
    max-width: 700px; 
    padding: 40px 0;
}

/* Typography */
h1 {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--text-main);
    letter-spacing: -1px;
}

h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    margin-top: 40px;
    color: var(--text-main);
}

p { margin-bottom: 20px; color: var(--text-muted); font-size: 1.1rem; }

/* The Lemon Highlighter Effect */
.highlight {
    background: linear-gradient(180deg, rgba(255,255,255,0) 60%, var(--accent-yellow) 60%);
    display: inline;
}

/* --- COMPONENTS --- */
.btn {
    display: inline-block;
    background-color: var(--accent-green);
    color: var(--btn-text);
    padding: 16px 45px;
    border-radius: 4px;
    font-weight: 700;
    margin-top: 10px;
    box-shadow: 4px 4px 0px rgba(0,0,0,0.05);
}
.btn:hover {
    transform: translate(-1px, -1px);
    box-shadow: 6px 6px 0px rgba(0,0,0,0.05);
    opacity: 0.9;
}

/* Bullet Lists */
.feature-list {
    margin-bottom: 30px;
    padding-left: 20px;
    border-left: 4px solid var(--accent-green);
}
.feature-list li { margin-bottom: 12px; color: var(--text-main); font-weight: 500;}

/* Collaboration Box */
.collab-note {
    font-style: italic;
    color: var(--text-muted);
    background-color: #ffffff;
    padding: 25px;
    border-radius: 4px;
    margin-top: 40px;
    font-size: 0.95rem;
    border-left: 5px solid var(--accent-yellow);
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

/* --- SPLIT CONTENT LAYOUTS (For About & Services) --- */
.content-split {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 80px; 
}

.content-split img {
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08); 
    flex: 1;
    max-width: 500px; 
    object-fit: cover;
}

.split-text {
    flex: 1;
}

.reverse {
    flex-direction: row-reverse;
}

/* --- FORMS --- */
.contact-form { max-width: 600px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 600; font-size: 0.9rem;}
.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #eee;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    transition: 0.3s;
}
.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--accent-green);
}
.form-group textarea { height: 150px; resize: vertical; }

/* --- FOOTER --- */
footer {
    background-color: var(--bg-off-white);
    padding: 50px 0;
    border-top: 1px solid #eee;
    font-size: 0.85rem;
    color: #888;
    text-align: center;
}

/* --- MOBILE RESPONSIVE --- */
@media (max-width: 768px) {
    .nav-container { flex-direction: column; gap: 20px; }
    h1 { font-size: 2.2rem; }
    .hero-full { min-height: auto; padding: 60px 0; }
    
    /* FIXED: Adjusted mobile gradient so image is visible (0.75 opacity) */
    .hero-full {
        background-image: 
        linear-gradient(to bottom, rgba(255,255,255,0.75) 0%, rgba(255,255,255,0.60) 100%),
        url('hero-bg.png');
        background-position: center bottom;
    }

    .content-split, .content-split.reverse {
        flex-direction: column;
        gap: 30px;
    }
    .content-split img { width: 100%; max-width: 100%; }
}
