* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", sans-serif;
}

body {
    color: #222;
}

/* NAVBAR */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: #fff;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 12px 40px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    z-index: 1000;
}

.logo-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-logo {
    height: 55px;
}

.brand-name {
    font-size: 24px;
    font-weight: 700;
    color: #c0392b;
    letter-spacing: 1px;
}

.address-bar {
    display: flex;
    gap: 40px;
    font-size: 13px;
    margin-top: 6px;
    color: #444;
}

.address-bar strong {
    color: #c0392b;
}

.nav-links a {
    margin-left: 25px;
    text-decoration: none;
    color: #111;
    font-weight: 500;
}

/* HERO SECTION */
.hero {
    position: relative;
    height: 100vh;
    margin-top: 140px;
    background:
        linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
        url("images/hero.jpg") center/cover no-repeat;
    display: flex;
    align-items: center;
    padding-left: 80px;
    color: white;
}

/* LOGO WATERMARK */
.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: url("images/logo-text.png") center/380px no-repeat;
    opacity: 0.05;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 48px;
}

.hero p {
    margin: 15px 0;
    font-size: 18px;
}

.btn {
    background: #f4b400;
    color: black;
    padding: 12px 28px;
    text-decoration: none;
    font-weight: bold;
}

/* SECTIONS */
.section {
    padding: 80px 60px;
    text-align: center;
}

.light {
    background: #f8f8f8;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.service-card {
    background: white;
    padding: 30px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    border-radius: 8px;
}

/* GALLERY */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.gallery-grid img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 6px;
}

/* CONTACT */
.contact-form {
    max-width: 500px;
    margin: auto;
    display: flex;
    flex-direction: column;
}

.contact-form input,
.contact-form textarea {
    padding: 12px;
    margin-bottom: 15px;
}

.contact-form button {
    background: #111;
    color: white;
    padding: 12px;
    border: none;
}

.footer {
    background: #111;
    color: white;
    text-align: center;
    padding: 15px;
}
.footer a {
    color: #f4b400;
    text-decoration: none;
}