:root {
    --yellow: #ffb300;
    --dark: #212121;
    --light-gray: #f5f5f5;
    --gray: #757575;
    --font-head: 'Teko', sans-serif;
    --font-text: 'Roboto', sans-serif;
}

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

body { background: var(--light-gray); color: var(--dark); font-family: var(--font-text); }

.navbar { display: flex; justify-content: space-between; align-items: center; padding: 1.5rem 5%; background: var(--dark); color: white; position: sticky; top: 0; z-index: 100; }
.logo { font-family: var(--font-head); font-size: 2.5rem; color: var(--yellow); letter-spacing: 1px; }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a { color: white; text-decoration: none; font-weight: 700; text-transform: uppercase; font-size: 0.9rem; transition: 0.3s; }
.nav-links a:hover { color: var(--yellow); }

.btn-small { border: 2px solid var(--yellow); padding: 0.5rem 1.5rem; border-radius: 4px; }
.btn-small:hover { background: var(--yellow); color: var(--dark) !important; }

.btn { display: inline-block; background: var(--yellow); color: var(--dark); padding: 1rem 3rem; font-size: 1.2rem; font-weight: 700; text-decoration: none; border: none; cursor: pointer; text-transform: uppercase; transition: transform 0.3s; }
.btn:hover { transform: scale(1.05); }

.hero { height: 90vh; background: linear-gradient(rgba(33,33,33,0.8), rgba(33,33,33,0.8)), url('assets/images/hero.jpg') center/cover; display: flex; align-items: center; justify-content: center; text-align: center; color: white; padding: 0 5%; border-bottom: 8px solid var(--yellow); }
.hero-content h1 { font-family: var(--font-head); font-size: 5rem; letter-spacing: 2px; line-height: 1; margin-bottom: 1rem; }
.hero-content p { font-size: 1.2rem; max-width: 600px; margin: 0 auto 2.5rem; color: #ddd; }

.stats { display: flex; justify-content: center; gap: 5rem; padding: 4rem 5%; background: var(--dark); color: white; flex-wrap: wrap; text-align: center; }
.counter { font-family: var(--font-head); font-size: 4rem; color: var(--yellow); line-height: 1; }

.projects { padding: 8rem 5%; }
.p-header { text-align: center; max-width: 700px; margin: 0 auto 4rem; }
.p-header h2 { font-family: var(--font-head); font-size: 3.5rem; text-transform: uppercase; }
.p-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; }
.p-card { position: relative; height: 350px; overflow: hidden; background: #000; }
.p-card img { width: 100%; height: 100%; object-fit: cover; opacity: 0.6; transition: 0.5s; }
.p-card:hover img { opacity: 1; transform: scale(1.1); }
.p-overlay { position: absolute; bottom: 0; width: 100%; padding: 2rem; background: linear-gradient(transparent, rgba(0,0,0,0.9)); color: var(--yellow); }
.p-overlay h3 { font-family: var(--font-head); font-size: 2rem; letter-spacing: 1px; }

.blueprint { padding: 8rem 5%; background: url('assets/images/p4.jpg') center/cover; background-attachment: fixed; position: relative; }
.blueprint::before { content:''; position: absolute; inset:0; background: rgba(255,179,0,0.9); }
.b-text { position: relative; z-index: 1; max-width: 600px; padding: 4rem; background: var(--dark); color: white; }
.b-text h2 { font-family: var(--font-head); font-size: 3rem; margin-bottom: 1rem; color: var(--yellow); }

.contact { padding: 8rem 5%; background: white; }
.c-container { max-width: 800px; margin: 0 auto; text-align: center; }
.c-container h2 { font-family: var(--font-head); font-size: 4rem; color: var(--dark); line-height: 1; }
form { margin-top: 3rem; display: flex; flex-direction: column; gap: 1.5rem; }
.form-row { display: flex; gap: 1.5rem; }
.form-row input { flex: 1; }
input, textarea { padding: 1.2rem; border: 2px solid #eee; background: #fafafa; font-family: var(--font-text); font-size: 1rem; outline: none; transition: border-color 0.3s; }
input:focus, textarea:focus { border-color: var(--yellow); background: white; }

.footer { background: var(--dark); color: white; padding: 6rem 5%; border-top: 5px solid var(--yellow); }
.footer h3 { font-family: var(--font-head); font-size: 2.5rem; color: var(--yellow); margin-bottom: 1rem; }

.cookie-banner { position: fixed; bottom: 20px; left: 20px; max-width: 400px; background: white; padding: 20px; border-left: 5px solid var(--yellow); box-shadow: 0 10px 30px rgba(0,0,0,0.2); z-index: 1000; display: flex; flex-direction: column; gap: 10px; }
.cookie-banner a { color: var(--dark); font-weight: bold; }
.cookie-banner button { align-self: flex-start; background: var(--dark); color: white; border: none; padding: 8px 15px; cursor: pointer; font-weight: bold; }

/* Reveal Animation */
.reveal { opacity: 0; transform: translateY(40px); transition: all 0.8s ease-out; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 768px) {
    .nav-links { display: none; }
    .form-row { flex-direction: column; }
    .b-text { padding: 2rem; }
}
