* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: white;
    color: #222;
}

/* HEADER */

.site-header {
    background: var(--primary);
    color: white;
    padding: 20px;
}

.site-header-inner {
    max-width: 1100px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.business-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.business-logo-image {
    width: 54px;
    height: 54px;
    object-fit: contain;
    border-radius: 6px;
}

.business-logo {
    font-size: 22px;
    font-weight: bold;
}

.site-nav a {
    color: white;
    text-decoration: none;
    margin-left: 25px;
    font-size: 14px;
}

/* HERO */

.hero {
    background: var(--hero);
    color: var(--hero-text);
    padding: 100px 20px;
}

.hero-inner {
    max-width: 1000px;
    margin: auto;
}

.category {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    opacity: 0.7;
}

.hero h1 {
    font-size: 48px;
    max-width: 750px;
    margin: 0 0 20px;
    line-height: 1.1;
}

.hero p {
    max-width: 650px;
    font-size: 18px;
    line-height: 1.6;
    opacity: 0.85;
}

.main-button {
    display: inline-block;
    background: var(--accent);
    color: white;
    padding: 14px 22px;
    border-radius: 5px;
    text-decoration: none;
    margin-top: 20px;
    font-weight: bold;
}

/* GENERAL SECTIONS */

.section {
    padding: 70px 20px;
}

.section-light {
    background: var(--light);
}

.section-inner {
    max-width: 1000px;
    margin: auto;
}

.section h2 {
    font-size: 30px;
    margin-top: 0;
    margin-bottom: 25px;
}

.about-text {
    color: #555;
    line-height: 1.8;
    font-size: 17px;
    max-width: 800px;
}

/* SERVICES */

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.service-card {
    background: white;
    padding: 28px;
    border-radius: 7px;
    border: 1px solid #e5e7eb;
}

.service-number {
    color: var(--accent);
    font-size: 13px;
    font-weight: bold;
    margin-bottom: 12px;
}

.service-card h3 {
    margin: 0;
    font-size: 19px;
}



/* GALLERY */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 8px;
    background: #f3f4f6;
    aspect-ratio: 4 / 3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

/* Hero text must remain readable when a photo is used */
.hero[style*="background-image"] {
    color: white;
}


/* CONTACT */

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.contact-item {
    padding: 18px 0;
    border-bottom: 1px solid #ddd;
}

.contact-label {
    font-size: 12px;
    color: #777;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.contact-value {
    font-size: 16px;
    font-weight: bold;
}

.contact-value a {
    color: var(--accent);
    text-decoration: none;
}

/* FOOTER */

footer {
    background: var(--primary);
    color: white;
    padding: 35px 20px;
}

.footer-inner {
    max-width: 1000px;
    margin: auto;
}

.footer-name {
    font-weight: bold;
    margin-bottom: 8px;
}

.footer-small {
    font-size: 12px;
    opacity: 0.7;
}

/* MOBILE */

@media (max-width: 700px) {

    .site-nav {
        display: none;
    }

    .business-logo-image {
        width: 46px;
        height: 46px;
    }

    .hero {
        padding: 65px 20px;
    }

    .hero h1 {
        font-size: 35px;
    }

    .services-grid,
    .gallery-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
}
