/* --- Global Styles --- */
:root {
--primary-color: #87CEEB;
--background-color: #000000;
--text-color: #FFFFFF;
--font-family-primary: 'Arial', sans-serif;
}

* {
box-sizing: border-box;
margin: 0;
padding: 0;
}

body {
background: var(--background-color);
color: var(--text-color);
font-family: var(--font-family-primary);
min-height: 100vh;
display: flex;
flex-direction: column;
}

a {
color: var(--text-color);
text-decoration: none;
transition: color .3s;
}

a:hover {
color: var(--primary-color);
}

/* --- Header (white) + desktop nav --- */
.navbar {
position: sticky;
top: 0;
z-index: 1000;
display: flex;
justify-content: space-between;
align-items: center;
padding: 20px 50px;
background: #fff;
color: #000;
border-bottom: 1px solid rgba(0, 0, 0, .08);
}

.logo {
font-size: 24px;
font-weight: bold;
color: #000;
}

.navbar a {
color: #000;
}

.navbar a:hover {
color: var(--primary-color);
}

.nav-links {
display: flex;
align-items: center;
gap: 25px;
transition: all 0.3s ease;
}

.nav-links a {
padding: 8px 0;
}

.contact-button {
border: 1px solid #000;
color: #000;
padding: 10px 20px;
}

.contact-button:hover {
border-color: var(--primary-color);
color: var(--primary-color);
}

/* --- Hamburger button (hidden on desktop) --- */
.hamburger {
display: none;
background: none;
border: 0;
padding: 6px;
cursor: pointer;
}

.hamburger span {
display: block;
width: 26px;
height: 2px;
background: #000;
margin: 6px 0;
transition: transform .25s ease, opacity .25s ease;
}

/* Turn into X when open */
.navbar.open .hamburger span:nth-child(1) {
transform: translateY(8px) rotate(45deg);
}

.navbar.open .hamburger span:nth-child(2) {
opacity: 0;
}

.navbar.open .hamburger span:nth-child(3) {
transform: translateY(-8px) rotate(-45deg);
}

/* --- Hero --- */
.hero-section {
display: flex;
align-items: center;
justify-content: center;
flex-grow: 1;
max-width: 1200px;
width: 90%;
margin: 0 auto;
padding: 50px 0;
}

.hero-image-container {
flex: 1;
display: flex;
justify-content: center;
align-items: center;
position: relative;
max-width: 50%;
}

.hero-image {
max-width: 100%;
height: auto;
display: block;
}

.hero-image-container .greeting {
position: absolute;
bottom: 10px;
right: 10px;
color: var(--primary-color);
font-size: 18px;
font-style: italic;
transform: rotate(-10deg);
z-index: 2;
opacity: 0.8;
}

.hero-content {
flex: 1;
max-width: 500px;
padding-left: 40px;
align-self: center;
}

.hero-content h1 {
font-size: 60px;
margin-bottom: 20px;
}

.hero-content p {
font-size: 18px;
line-height: 1.6;
margin-bottom: 30px;
}

.learn-more-button {
border: 1px solid var(--text-color);
padding: 15px 30px;
display: inline-block;
}

.learn-more-button:hover {
border-color: var(--primary-color);
color: var(--primary-color);
}

/* --- Quote Section (Full Width + Adjustable Height) --- */
.quote-section {
    width: 100%; /* CHANGED from 100vw to 100% to fix horizontal scroll */ 
    height: 70vh;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.quote-image {
width: 100%;
height: 100%;
object-fit: cover;  
display: block;
}

/* --- Scroll indicator --- */
.scroll-indicator {
text-align: center;
padding: 20px;
font-size: 30px;
color: var(--primary-color);
}

/* ---------------------------------- */
/* --- NEW FEATURED PROJECTS SECTION --- */
/* ---------------------------------- */
.projects-section {
background: #FFFFFF; 
color: #000000;   
padding: 80px 0;  
border-top: 1px solid #eee;
}

.projects-container {
max-width: 1200px;
width: 90%;
margin: 0 auto;
text-align: center;
}

.projects-section h2 {
font-size: 48px;
margin-bottom: 15px;
}

.section-description {
font-size: 18px;
margin-bottom: 50px;
color: #555;
}

.project-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 40px;
margin-bottom: 60px;
}

.project-card {
display: flex;
flex-direction: column;
text-align: left;
border-radius: 8px;
overflow: hidden;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
transition: transform 0.3s ease, box-shadow 0.3s ease;
color: #000; 
}

.project-card:hover {
transform: translateY(-5px);
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.project-image-wrapper {
height: 250px;
overflow: hidden;
}

.project-thumb {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.5s ease;
}

.project-card:hover .project-thumb {
transform: scale(1.05);
}

.project-info {
padding: 25px;
}

.project-info h3 {
font-size: 24px;
margin-bottom: 8px;
}

.project-category {
font-size: 14px;
color: #888;
margin-bottom: 15px;
}

.view-case-study {
display: inline-block;
color: var(--primary-color);
font-weight: bold;
}

.all-projects-button {
display: inline-block;
border: 2px solid #000;
padding: 15px 40px;
color: #000;
font-weight: bold;
}

.all-projects-button:hover {
border-color: var(--primary-color);
color: var(--primary-color);
}
/* ---------------------------------- */
/* --- END NEW FEATURED PROJECTS SECTION --- */
/* ---------------------------------- */

/* --- Mobile (<=768px) --- */
@media (max-width: 768px) {
.navbar {
 padding: 16px 20px;
}

.hamburger {
 display: block;
}

.nav-links {
 display: none;
 position: absolute;
 top: 100%;
 left: 0;
 right: 0;
 background: #fff;
 border-bottom: 1px solid rgba(0, 0, 0, .08);
 padding: 12px 20px 20px;
 flex-direction: column;
 gap: 8px;
}

.navbar.open .nav-links {
 display: flex;
}

.nav-links a {
 color: #000;
 padding: 12px 2px;
}

.contact-button {
 width: 100%;
 text-align: center;
 margin-top: 6px;
 border-color: #000;
 color: #000;
}

.hero-section {
 flex-direction: column;
 text-align: center;
 padding: 40px 20px;
}

.hero-image-container {
 order: 2;
 margin-top: 30px;
 max-width: 80%;
}

.hero-image {
 max-width: 100%;
 height: auto;
}

.hero-image-container .greeting {
 bottom: 10px;
 right: 10px;
 font-size: 16px;
}

.hero-content {
 order: 1;
 padding-left: 0;
 max-width: 100%;
}

.hero-content h1 {
 font-size: 40px;
}

.hero-content p {
 font-size: 16px;
}

.projects-section {
padding: 60px 0;
}

.projects-section h2 {
font-size: 36px;
}

.project-grid {
grid-template-columns: 1fr;
gap: 30px;
}

.project-image-wrapper {
height: 200px;
}
}