/* NIDO - STABILIZED & REPOSITIONED (TEXT IN SKY) */

:root {
    --bg: #ffffff;
    --text: #1a1a1a;
    --white: #ffffff;
    --accent: #3d4035;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background-color: var(--bg);
    line-height: 1.6;
}

h1, h2, h3 { 
    font-family: 'DM Serif Display', serif; 
    font-weight: 400;
}

/* NAVIGATION */
.navbar {
    display: flex;
    justify-content: space-between;
    padding: 2rem 8%;
    position: absolute;
    width: 100%;
    z-index: 10;
}

.logo { color: var(--white); font-size: 1.8rem; font-family: 'DM Serif Display', serif; }
.nav-links { list-style: none; display: flex; gap: 2rem; }
.nav-links a { text-decoration: none; color: var(--white); font-size: 0.9rem; }

/* HERO SECTION - MOVED UP TO SKY */
.hero {
    height: 100vh;
    display: flex;
    /* Changed from center to flex-start to move text up */
    align-items: flex-start; 
    justify-content: center;
    text-align: center;
    /* Adjust this percentage to move the text higher or lower in the sky */
    padding-top: 18vh; 
    background: linear-gradient(rgba(0,0,0,0.15), rgba(0,0,0,0.15)), url('project1.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
}

.hero h1 { 
    font-size: 4rem; 
    margin-bottom: 1rem; 
    text-shadow: 0 2px 10px rgba(0,0,0,0.2); /* Subtle shadow to help white text pop against clouds */
}

.hero p { 
    font-size: 1.2rem; 
    margin-bottom: 2rem; 
    max-width: 700px;
}

.btn {
    padding: 1rem 2rem;
    border: 1px solid var(--white);
    text-decoration: none;
    color: var(--white);
    display: inline-block;
    background: rgba(255,255,255,0.05); /* Very slight background for the button */
    transition: 0.3s;
}

.btn:hover {
    background: var(--white);
    color: var(--text);
}

/* PHILOSOPHY */
.philosophy { padding: 8rem 8%; }
.principles-grid { display: flex; gap: 4rem; margin-top: 2rem; }
.principle { flex: 1; }

/* PORTFOLIO */
.portfolio { padding: 8rem 8%; background: #f9f9f9; }
.gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.project-image { height: 400px; background-size: cover; background-position: center; background-color: #ddd; }
.project-info { margin-top: 1rem; }

/* CONTACT */
.contact { padding: 8rem 8%; text-align: center; background: var(--accent); color: white; }
.contact-link { 
    color: white; 
    display: block; 
    font-size: 2.5