
#nav-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.4);
    margin: 0;
    width: 100%; /* Make the nav bar cover the width of the page */
    position: fixed; /* Make the nav bar fixed at the top */
    top: 0; /* Position it at the top */
    z-index: 5000;
    flex-wrap: wrap;
    left: 0;
}
#nav-bar > img {
    width: 160px;
    height: 100px;
    filter: invert(1);
}
nav.menu {
    position: relative;
    z-index: 4000;
}


nav ul {
    margin: 0;
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap; /* Allow items to wrap */
    justify-content: center;
}
nav ul li {
    display: inline;
    margin: 0 45px;
}
nav ul li a {
    text-decoration: none;
    color: #fff;
    font-family: var(--sub-text);
    font-weight: 400;
    font-size: 1.2em;
    transition: color 0.3s;
    position: relative;
    z-index: 1000;
}
nav ul li a:hover {
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.7);
}
.close-icon {
    display: none;
}
nav.menu img {
    display: none;
}
nav.menu .info {
    display: none;
}
nav.menu #social {
    display: none;
}

#social {
    display: flex;
    gap: 10px; /* Space between the icons */
}
#social img {
    width: 32px; /* Set the width of the icons */
    height: 32px; /* Set the height of the icons */
    transition: transform 0.3s;
    filter: invert(1);
    box-shadow: none;
}
#social img:hover {
    transform: scale(1.1);
}

:root{
    --text-color1: #fff;
    --text-color2: rgba(255, 255, 255, 0.85);
    --christmas-red: #b30000;
    --accent: #ffd59e;
    --header-text: 'Great Vibes', cursive;
    --sub-text: 'Montserrat', sans-serif;
    --header-size: 4rem;
    --sub-size: 2rem;
}
html, body {
    scroll-behavior: smooth;
    width: 100%;
    margin:0;
    padding:0;
    font-family: var(--sub-text);
    font-size: 1rem;
}
.overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: url('christmas-images/snowing.gif');
    background-repeat: repeat;
    background-size: cover;
    opacity: 0.7;
    z-index: 5;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 40px;
    font-size: 1.2rem;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(6px);
    color: #fff;
    cursor: pointer;
    animation: bounce 2s infinite;
    transition: opacity 0.3s ease;
    margin-top: 0.5rem;
}

.button:hover {
    opacity: 80%;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    cursor: pointer;
}
.nye-button {
    background: linear-gradient(135deg, #e7c77a, #d9a441);
    border: none;
    box-shadow: 0 6px 18px rgba(217, 164, 65, 0.35);
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 3rem;
    padding: 15px 40px;
    font-size: 1.2rem;
    border-radius: 50px;
    animation: bounce 2s infinite;

}
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-15px);
    }
    60% {
        transform: translateY(-10px);
    }
}
header {
    background: 
    linear-gradient(rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.25)),
    url('christmas-images/banner5.png');
    background-size: cover;
    background-position: top;
    height: 100vh;
    width:100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.header-content {
    margin-top: 4rem;
  
}
.header-content .header-h1{
    font-family: var(--header-text);
    font-size: 5.2rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    line-height: 1.15;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.6),
    0 0 20px rgba(255,150,80,0.5);
    color: var(--text-color1);
}
.header-content .header-subtitle{
    font-family: var(--sub-text);
    font-size: 1.3rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-color2);
    margin-bottom: 0.6rem;
}
.header-content .header-tagline{
    font-family: var(--sub-text);
    font-size: 1.35rem;
    font-weight: 400;
    color: var(--text-color1);
    margin: 0 auto 2.5rem auto;
    max-width: 650px;
    line-height: 1.65;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
}

.header-tagline span {
    color: var(--accent);
    font-weight: 600;
}

.hours {
    position: relative;
    z-index: 1;
    margin: 0 auto;
    background: #fafafa;
    text-align: center;
    padding: 4rem 10vw;
    border-top: 0.2px solid rgba(255,0,0,0.55);
    border-bottom: 1px solid rgba(255,0,0,0.15);
}

.hours h2 {
    font-size: 3rem;
    margin-bottom: 2.5rem;
    color: var(--christmas-red);
    font-family: var(--header-text);
}
.hours-grid {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}
.hours-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
    padding: 2rem 2.5rem;
    max-width: 420px;
    flex: 1 1 280px
}
.hours-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
    color: var(--christmas-red);
    font-family: var(--sub-text);
    text-transform: uppercase;
    letter-spacing: 0.05rem;
}

.hours-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.hours-list li {
    display: flex;
    flex-direction: column;
    margin-bottom: 0.85rem;
    font-family: var(--sub-text);
    font-size: 0.98rem;
    
}
.hours-date {
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: #333;
}
.hours-time {
    color: #555;
}
.hours-closed {
    color: #c02828;
    font-weight: 700;
}
.hours-note {
    margin-top: 0.6rem;
    font-size: 0.95rem;
    color: #a80404;
    font-style: italic;
}

/* Contact */
.contact {
    padding: 5rem 10vw 4rem;
    background: #f2f2f2;
    position: relative;
    z-index: 1;
}

.section-title {
    font-family: var(--header-text);
    font-size: 3.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--christmas-red);
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    justify-content: center;
}
.contact-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 2.5rem;
    align-items: stretch;
    flex: 1 1 400px;
    max-width: 500px;
}
.contact-title {
    font-size: 1.8rem;
    margin-bottom: 2.6rem;
    text-align: center;
    font-family: var(--sub-text);
    color: var(--christmas-red);
    text-shadow: 0 0 2px rgba(255, 0, 0, 0.25);
}

.contact-title span {
    font-weight: 700;
    color: var(--accent);
}

.contact-input {
    width: 80%;
    padding: 12px 15px;
    margin: 0 auto 1rem auto;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 0.8rem;
    font-family: var(--sub-text);
    color: #666;
}

.message-box {
    height: 130px;
    resize: vertical;
}
form {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: none;
    margin: 0 auto;
    width: 100%;
}

.contact-button {
    width: 100%;
    padding: 14px 0;
    background: #c02828;
    color: #fff;
    margin-top: 3rem;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.3s ease;
}
.contact-button:hover {
    background: #dd1414;
    box-shadow: 0 0 8px rgba(255, 0, 0, 0.5);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.8rem;
}

.contact-item img {
    width: 32px;
}

.contact-item h4 {
    margin: 0;
    color: #333;
    font-size: 1rem;
    font-weight: 600;
}
.contact-item p, .contact-item a {
    margin: 0.2rem 0 0;
    color: var(--christmas-red);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
}
.contact-item a:hover {
    color: #dd1414;
}

.map {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
}

.map iframe {
    width: 100%;
    max-width: 1000px;
    height: 350px;
    border: none;
    border-radius: 14px;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);

}

footer {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
    padding: 20px 30px;
    background: var(--christmas-red);
    color: #fff;
    font-family: 'poppins', sans-serif;
    position: relative;
    z-index: 10;
}
footer p {
    margin: 0;
    color: #fff;
   
}

/* Tablet view */
@media (max-width: 768px) {


    header {
        width: 100%;
        padding: 0;
    }
    .header-content {
        padding: 20px;
     
        min-height: calc(100vh - 180px);
    }

    .hamburger {
        display: flex;
        flex-direction: column;
        cursor: pointer;
        justify-content: center;
        align-items: center;
        margin-right: 40px;

        
    }
    .hamburger .bar1, .hamburger .bar2 {
        width: 25px;
        height: 3px;
        background-color: #fff;
        margin: 3px 0;
        transition: 0.4s;
    }
    #nav-bar {
        max-height: 80px;
    }

    #nav-bar img {
        max-width: 110px;
        height: auto;
        margin-left: 20px;
    }
    nav.menu {
        display: none;
        position: fixed; /* Fixed position to extend the nav to the bottom */
        top: 0;
        right: 0;
        width: 80%;
        height: 100vh; /* Full height */
        background: rgba(0, 0, 0, 0.9);
        border-radius: 0; /* Removes border radius */
        margin: 0 auto;
        padding-top: 60px;
        z-index: 20;
        transition: transform 0.3s ease-in-out;
        transform: translateX(100%); /* Start off-screen to the right */
    }

    nav.menu.active {
        display: block;
        transform: translateX(0); /* Slide into view */
    }
    nav.menu img.logo {
        display: block;
        width: 300px;
        height: auto;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 40px;
        filter: invert(1);

    }


    nav ul {
        flex-direction: column;
        padding: 10px;
        list-style: none; /* Remove default list styling */
    }

    nav ul li {
        margin: 10px 0;
    }


    .close-icon {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
        font-size: 2em;
        color: #fff;
        cursor: pointer;
        z-index: 21; /* Ensure it’s above the menu */
    }

    /* Background overlay */
    .nav-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.7);
        z-index: 15;
    }

    .nav-overlay.active {
        display: block;
    }
}