:root {
    --bg: #0b0b0f;
    --text: #f4f4f7;
    --muted: #b7b7c4;
    --accent2: #a31f1f;
    --accent: #e91b1b;
    --line: rgba(255, 255, 255, .08);
    --max: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: #09090d;
    color: var(--text);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    transition: .2s ease;
}

.container {
    width: min(100% - 32px, var(--max));
    margin-inline: auto;
}

.nav-inner {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-logo {
    height: 80px;
    width: auto;
    margin: 8px;
}

.hero {
    position: relative;
    height: calc(100vh - 76px);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;

}

.text-container {
    position: relative;
    z-index: 10;
    padding: 5px 5px;
    background: rgba(255, 0, 0, 0.6);
    backdrop-filter: blur(4px);
}

.btn {
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    font-weight: 800;
    cursor: pointer;
    color: #000;
}

#map-button-container {
    position: relative;
    z-index: 1000;
}

.footer {
    padding: 20px 0;
    border-top: 1px solid var(--line);
    color: var(--muted);
    text-align: center;
    background: #0b0b0f;
}

.address,
.email,
.instagram {
    margin-bottom: 15px;
}

.footer-copy {
    font-size: 0.85rem;
    opacity: 0.5;
    margin-top: 20px;
}

.status-toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: #1a1a1a;
    color: #fff;
    padding: 14px 24px;
    border-radius: 50px;
    z-index: 9999;
    transition: all 0.4s ease;
    opacity: 0;
    border: 2px solid var(--accent);
}

.status-toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

@media (max-width: 640px) {
    .nav-logo {
        height: 50px;
    }

    .floating-map-btn {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
}

#map-button-container {
    position: relative;
    z-index: 1000;
}

.status-toast {
    position: fixed;
    bottom: -100px;
    left: 50%;
    background: #161621;
    border: 1px solid var(--accent);
    padding: 16px 28px;
    border-radius: 100px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
    z-index: 99999;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    pointer-events: none;
}

.status-toast.show {
    bottom: 100px;
}

.status-toast:has(span:contains("🗑️")),
.status-toast:has(span:contains("🚫")) {
    border-color: #ff4757;
}

.floating-map-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;

    width: 60px;
    height: 60px;

    background-color: rgba(255, 0, 0, 0.8);
    color: #fff;

    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    transition: transform 0.25s ease, background-color 0.25s ease;
    text-decoration: none;
}

.floating-map-btn svg {
    width: 24px;
    height: 24px;
    stroke: #fff;
}

.floating-map-btn:hover {
    background-color: rgba(163, 31, 31, 0.95);
}

.floating-map-btn.is-bottom {
    position: absolute;
    bottom: 100px;
    right: 30px;
}

.instagram {
    display: flex;
    justify-content: center;
    align-items: center;
}

.instagram a {
    width: 44px;
    height: 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    transition: 0.2s ease;
}

.insta-icon {
    width: 26px;
    height: 26px;
    display: block;
}