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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
    background: #111;
    color: #fff;
    line-height: 1.6;
}

.error-page {
    min-height: 100vh;

    display: flex;
    justify-content: center;
    align-items: center;

    text-align: center;

    background:
        linear-gradient(
            rgba(0, 0, 0, 0.8),
            rgba(0, 0, 0, 0.8)
        ),
        url("https://images.unsplash.com/photo-1622286342621-4bd786c2447c");

    background-size: cover;
    background-position: center;

    padding: 2rem;
}

.error-content {
    max-width: 600px;
}

.error-content h1 {
    font-size: clamp(5rem, 15vw, 10rem);
    color: #d4af37;
    line-height: 1;
}

.error-content h2 {
    color: white;
    margin-bottom: 1rem;
}

.error-content p {
    color: #ddd;
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.container {
    width: min(1100px, 90%);
    margin: auto;
}

.hero {
    min-height: 100vh;
    background:
        linear-gradient(
            rgba(0, 0, 0, 0.75),
            rgba(0, 0, 0, 0.75)
        ),
        url("https://images.unsplash.com/photo-1622286342621-4bd786c2447c");
    background-size: cover;
    background-position: center;

    display: flex;
    flex-direction: column;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 1.5rem 5%;
}

.logo {
    font-size: 1.4rem;
    font-weight: bold;
    color: #d4af37;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

nav a {
    color: white;
    text-decoration: none;
}

.hero-content {
    flex: 1;

    display: flex;
    flex-direction: column;
    justify-content: center;

    max-width: 700px;
    padding: 0 5%;
}

.hero h1 {
    font-size: clamp(3rem, 7vw, 5rem);
    line-height: 1.1;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    color: #ddd;
    margin-bottom: 2rem;
}

nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 1rem 5%;

    background: rgba(17, 17, 17, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    border-bottom: 1px solid rgba(212, 175, 55, 0.15);

    z-index: 1000;
}

.btn {
    display: inline-block;
    width: fit-content;

    background: #d4af37;
    color: black;

    padding: 1rem 2rem;
    border-radius: 8px;

    text-decoration: none;
    font-weight: bold;

    margin-top: 1.5rem;
}

section {
    padding: 6rem 0;
}

h2 {
    color: #d4af37;
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.services-grid {
    display: grid;
    grid-template-columns:
        repeat(auto-fit, minmax(220px, 1fr));

    gap: 1.5rem;
}

.card {
    background: #1d1d1d;
    padding: 2rem;
    border-radius: 12px;
}

.card h3 {
    margin-bottom: 1rem;
    color: #d4af37;
}

.hours p {
    margin-bottom: 0.75rem;
}

footer {
    text-align: center;
    padding: 2rem;
    border-top: 1px solid #222;
    color: #888;
}

@media (max-width: 700px) {
    nav {
        flex-direction: column;
        gap: 1rem;
    }

    nav ul {
        gap: 1rem;
    }

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