* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    color: #222;
    line-height: 1.6;
}

/* TOPBAR / LOGO */
.topbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: #111;
    color: #fff;
    padding: 15px 10%;
    z-index: 10;
}

.logo {
    font-weight: 600;
    letter-spacing: 1px;
}

.monogram {
    background: #7a0019;
    padding: 6px 10px;
    margin-right: 8px;
}

/* HERO */
.hero {
    height: 100vh;
    background: url("./images/gabrial-ash-greenhouse.jpg") center/cover no-repeat;
}

.overlay {
    background: rgba(30, 0, 10, 0.65);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
    padding-top: 60px;
}

.overlay h1 {
    font-size: 3rem;
}

.overlay p {
    margin: 20px 0;
    font-weight: 300;
}

/* BUTTON */
.btn {
    background: #7a0019;
    color: #fff;
    padding: 12px 30px;
    text-decoration: none;
    font-weight: 600;
}

.btn:hover {
    background: #550012;
}

.btn.dark {
    background: #111;
}

/* SECTIONS */
section {
    padding: 60px 10%;
    text-align: center;
}

h2 {
    margin-bottom: 30px;
    font-size: 2rem;
    color: #7a0019;
}

/* PORTFOLIO */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.grid img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.3s;
}

.grid img:hover {
    transform: scale(1.05);
}

/* STEPS */
.step-list {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.step {
    background: #f4f4f4;
    padding: 20px 30px;
    border-left: 5px solid #7a0019;
    font-weight: 600;
}

/* CONTACT */
.contact {
    background: #7a0019;
    color: #fff;
}

.contact h2 {
    color: #fff;
}

.contact p {
    padding-top: 15px;
}
/* FOOTER */
footer {
    background: #111;
    color: #aaa;
    padding: 20px;
    text-align: center;
}

/* LIGHTBOX */
#lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    justify-content: center;
    align-items: center;
    z-index: 20;
}

#lightbox img {
    max-width: 90%;
    max-height: 90%;
}

/* WHATSAPP */
.whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: #fff;
    padding: 14px 18px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
}
