﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: #ffffff;
    color: #111111;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

header {
    background: linear-gradient(rgba(0, 0, 0, 0.52), rgba(0, 0, 0, 0.60)), url("shop-photo.jpg") center/cover no-repeat;
    color: #ffffff;
    min-height: 92vh;
    display: flex;
    flex-direction: column;
}

.top-contact-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
    padding: 10px 8%;
    background: #ffffff;
    color: #111111;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    font-size: 0.95rem;
    font-weight: 600;
}

.top-contact-item strong {
    color: #111111;
}

.top-contact-item a {
    color: #d71919;
    font-weight: 800;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    padding: 16px 8%;
    background-color: rgba(255, 255, 255, 0.96);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(6px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.brand {
    display: flex;
    align-items: center;
    min-width: 0;
    flex-shrink: 0;
}

.brand-logo {
    height: 100px;
    width: auto;
    display: block;
    object-fit: contain;
}
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 2rem;
    font-weight: 700;
    color: #111111;
    cursor: pointer;
    line-height: 1;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 28px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
}

    .nav-links a {
        color: #111111;
        font-weight: 700;
        font-size: 1rem;
        transition: 0.25s ease;
    }

        .nav-links a:hover {
            color: #d71919;
        }

.hero {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: clamp(48px, 8vw, 70px) 8% clamp(56px, 10vw, 90px);
}

.hero-content {
    max-width: 980px;
}

.hero h1 {
    font-size: clamp(2.2rem, 7vw, 4rem);
    font-weight: 900;
    margin-bottom: 22px;
    line-height: 1.12;
    text-shadow: 0 5px 16px rgba(0, 0, 0, 0.38);
}

.hero p {
    font-size: clamp(1rem, 2.4vw, 1.16rem);
    color: #f1f1f1;
    max-width: 860px;
    margin: 0 auto 34px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

.btn-group {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 32px;
    border-radius: 8px;
    font-weight: 800;
    font-size: 1rem;
    display: inline-block;
    transition: 0.25s ease;
}

.btn-primary {
    background-color: #d71919;
    color: #ffffff;
    border: 2px solid #d71919;
}

    .btn-primary:hover {
        background-color: #ad1111;
        border-color: #ad1111;
        transform: translateY(-1px);
    }

.btn-secondary {
    background-color: #ffffff;
    color: #111111;
    border: 2px solid #ffffff;
}

    .btn-secondary:hover {
        background-color: #ececec;
        border-color: #ececec;
        transform: translateY(-1px);
    }

section {
    padding: clamp(56px, 8vw, 78px) 8%;
}

.section-title {
    text-align: center;
    font-size: clamp(1.7rem, 4vw, 2.2rem);
    margin-bottom: 12px;
    font-weight: 800;
    color: #111111;
}

.section-subtitle {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 42px;
    color: #555555;
    font-size: 1rem;
}

.about-grid,
.contact-grid,
.hours-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}

.card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 28px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
    border-top: 4px solid #d71919;
}

    .card h3 {
        margin-bottom: 14px;
        font-size: 1.25rem;
        color: #111111;
    }

.services {
    background-color: #f6f6f6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.service-box {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    border-bottom: 4px solid #d71919;
    transition: transform 0.2s ease;
}

    .service-box:hover {
        transform: translateY(-4px);
    }

    .service-box h3 {
        margin-bottom: 10px;
        font-size: 1.15rem;
    }

    .service-box p {
        color: #555555;
    }

.hours-list {
    list-style: none;
}

    .hours-list li {
        display: flex;
        justify-content: space-between;
        gap: 14px;
        padding: 12px 0;
        border-bottom: 1px solid #e6e6e6;
        font-weight: 600;
    }

        .hours-list li:last-child {
            border-bottom: none;
        }

.holiday-note {
    margin-top: 18px;
    font-weight: 700;
    color: #b30000;
}

.contact-info p {
    margin-bottom: 14px;
    color: #333333;
}

.contact-info strong {
    color: #111111;
}

.contact-brand {
    margin-bottom: 18px;
}

.contact-brand-title {
    font-size: 1.9rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #d71919;
    text-shadow: -1px -1px 0 #111111, 1px -1px 0 #111111, -1px 1px 0 #111111, 1px 1px 0 #111111;
}

.contact-brand-sub {
    display: inline-block;
    margin-top: 6px;
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #111111;
    border-top: 2px solid #d71919;
    padding-top: 6px;
}

.map-frame {
    width: 100%;
    height: 340px;
    border: 0;
    border-radius: 12px;
}

footer {
    background-color: #000000;
    color: #ffffff;
    text-align: center;
    padding: 28px 20px;
}

    footer p {
        margin: 6px 0;
        color: #dddddd;
    }

@media (max-width: 1100px) {
    .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .top-contact-bar {
        flex-direction: column;
        gap: 8px;
        text-align: center;
        padding: 10px 16px;
        font-size: 0.9rem;
    }

    nav {
        padding: 14px 18px;
    }

    .about-grid,
    .contact-grid,
    .hours-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 55px 20px 70px;
    }

        .hero p {
            max-width: 650px;
        }
}

@media (max-width: 768px) {
    nav {
        display: grid;
        grid-template-columns: 1fr auto;
        align-items: center;
    }
    .brand-logo {
        height: 62px;
    }
    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        grid-column: 1 / -1;
        width: 100%;
        flex-direction: column;
        align-items: center;
        gap: 12px;
        padding-top: 14px;
    }

        .nav-links.show {
            display: flex;
        }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .card,
    .service-box {
        padding: 20px;
    }

    .btn-group {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: min(260px, 100%);
        text-align: center;
    }

    .hero h1 {
        font-size: clamp(2rem, 8vw, 2.6rem);
    }
}

@media (max-width: 640px) {
    .hero {
        padding-top: 42px;
        padding-left: 18px;
        padding-right: 18px;
    }

        .hero p {
            margin-bottom: 24px;
        }

    .top-contact-bar {
        padding-left: 14px;
        padding-right: 14px;
    }

    .hours-list li {
        flex-direction: column;
        align-items: flex-start;
    }

    .map-frame {
        height: 280px;
    }

    section {
        padding-left: 18px;
        padding-right: 18px;
    }
}
