﻿@font-face {
    font-family: "Futura";
    src: url("futura-book-webfont.woff2") format("woff2"); font-weight: normal;
    font-style: normal;
    font-display: swap;
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

    .fade-in.visible {
        opacity: 1;
        transform: translateY(0);
    }

body {
    margin: 0;
    background-color: black;
    color: white;
    font-family: "Futura", Arial, sans-serif;
}

header {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    background-color: #7b0323;
    padding: 8px 30px;
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    box-sizing: border-box;
    border-radius: 0;
    overflow: hidden;
    font-family: "Futura", Arial, sans-serif;
}

    header > * {
        position: relative;
        z-index: 1;
    }

    header::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: #7b0323;
        border-radius: 12px;
        transform: translateY(-100%);
        transition: transform 0.4s ease;
        z-index: 0;
    }

    header.scrolled::before {
        transform: translateY(0);
    }

.header-left {
    justify-self: start;
}

.order-button {
    display: inline-block;
    padding: 14px 32px;
    background-color: black;
    color: #ffd966;
    border: 2px solid #ffd966;
    text-decoration: none;
    font-size: 18px;
    font-family: "Futura", Arial, sans-serif;
    border-radius: 5px;
    transition: transform 0.3s ease, box-shadow 0.35s ease, text-shadow 0.35s ease;
}

    .order-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 0 8px rgba(255, 217, 102, 0.55), 0 0 18px rgba(255, 217, 102, 0.30), 0 0 32px rgba(255, 217, 102, 0.15);
        text-shadow: 0 0 8px rgba(255, 217, 102, 0.7);
    }

    .order-button:focus-visible {
        outline: none;
        box-shadow: 0 0 8px rgba(255, 217, 102, 0.55), 0 0 18px rgba(255, 217, 102, 0.30), 0 0 32px rgba(255, 217, 102, 0.15);
    }


.header-middle {
    justify-self: center;
    text-align: center;
    transform: translateX(-60px);

}

    .header-middle h1 {
        font-family: "Futura", Arial, sans-serif;
        color: #ffd966;
        margin: 0 0 15px;
    }

.header-right {
    justify-self: end;
    text-align: center;
    white-space: nowrap;
}
    .header-right h2 {
        font-family: "Futura", Arial, sans-serif;
        margin: 0 0 15px;
        color: #ffd966
    }

.reserve-button {
    display: inline-block;
    position: relative;
    background-color: black;
    color: #ffd966;
    border: 2px solid black;
    padding: 14px 32px;
    text-decoration: none;
    font-size: 18px;
    border-radius: 5px;
}

    .reserve-button::before {
        content: "→";
        position: absolute;
        left: 10px;
        top: 50%;
        opacity: 0;
        transform: translate(-8px, -50%);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }

    .reserve-button:hover::before {
        opacity: 1;
        transform: translate(0, -50%);
    }

.brand {
    display: flex;
    flex-direction: column;
    align-items: center;
}

nav {
    justify-self: center;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 650px;
}
.nav-logo {
    width: 65px;
    height: auto;
    display: block;
}
.nav-logo-link {
    padding: 13px;
    border-radius: 50%;
    background-color: #CD853F;
    border: 2px solid #ffd966;
    transition: transform 0.3s ease, box-shadow 0.35s ease;
}

    .nav-logo-link:hover {
        transform: scale(1.05);
        box-shadow: 0 0 8px rgba(255, 217, 102, 0.55), 0 0 18px rgba(255, 217, 102, 0.30), 0 0 32px rgba(255, 217, 102, 0.15);
    }
    nav a {
        position: relative;
        color: #ffd966;
        text-decoration: none;
        padding: 8px 4px;
        font-size: 20px;
    }

        nav a::before,
        nav a::after {
            content: "";
            position: absolute;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: #ffd966;
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        nav a::before {
            top: 0;
        }

        nav a::after {
            bottom: 0;
        }
        nav a:hover::before,
        nav a:hover::after {
            transform: scaleX(1);
        }
.nav-logo-link::before,
.nav-logo-link::after {
    display: none;
}

/*Header finished, begin hero*/

.video-hero {
    width: 100%;
    height: 600px;
    overflow: hidden;
    margin-top: 0;
    border-radius: 0;
}

    .video-hero video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }
   /* Hero finished, begin who we are section */

.story-section {
    padding: 90px 60px;
}

    .story-section h2 {
        color: #ffd966;
        font-family: "Futura", Arial, sans-serif;
        font-size: 80px;
        text-align: center;
        margin: 0 0 70px;
    }

.story-text {
    color: white;
    font-size: 18px;
    line-height: 1.7;
    max-width: 650px;
    margin: 0 auto;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: start;
    gap: 80px;
}

.slider-wrapper {
    position: relative;
}

.story-slider {
    width: 100%;
    height: 450px;
    overflow: hidden;
    border-radius: 12px;
}

.story-track {
    display: flex;
    height: 100%;
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

    .story-track img {
        flex: 0 0 100%;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 45px;
    height: 45px;
    border: none;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.65);
    color: #ffd966;
    font-size: 22px;
    cursor: pointer;
    /* Hidden normally */
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
@media (hover: none) and (pointer: coarse) {
    .slider-arrow {
        opacity: 1;
        pointer-events: auto;
    }
}

.slider-wrapper:hover .slider-arrow {
    opacity: 1;
    pointer-events: auto;
}

.left-arrow {
    left: 15px;
}

.right-arrow {
    right: 15px;
}


.story-info {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 45px;
    font-family: "Futura", Arial, sans-serif;
}

    .story-info h3 {
        color: #ffd966;
        font-family: "Futura", Arial, sans-serif;
        font-size: 55px;
        margin: 0;
    }

    .story-info p {
        color: white;
        font-size: 20px;
        line-height: 1.9;
        max-width: 500px;
        margin: 0;
    }

    /*Cafe by day ends, bar by night begins*/

.bar-section {
    padding: 90px 60px;
}

.bar-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: start;
    gap: 80px;
}

.bar-info {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 45px;
}

    .bar-info h3 {
        color: #ffd966;
        font-family: "Futura", Arial, sans-serif;
        font-size: 55px;
        margin: 0;
    }

    .bar-info p {
        color: white;
        font-size: 20px;
        line-height: 1.9;
        max-width: 500px;
        margin: 0;
    }

    /* Who we are section is done, Menu highlights begins */



.menu-highlights {
    padding: 90px 60px;
    text-align: center;
}

    .menu-highlights h2 {
        color: #ffd966;
        font-family: "Futura", Arial, sans-serif;
        font-size: 80px;
        margin: 0 0 70px;
        letter-spacing: 2px;
    }


/* Three-column layout */

.highlight-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}


/* Individual card */

.highlight-card {
    text-align: center;
}


    /* Pictures */

    .highlight-card img {
        width: 100%;
        height: 450px;
        object-fit: cover;
        display: block;
        border-radius: 12px;
    }


/* Information underneath picture */

.highlight-info {
    padding-top: 25px;
}


/* Category */

    .highlight-info h3 {
        color: #ffd966;
        font-family: "Futura", Arial, sans-serif;
    font-size: 36px;
    margin: 0 0 10px;
}


/* Item name */

    .highlight-info h4 {
        opacity: 0;
        visibility: hidden;
        transform: translateY(8px);
        transition: opacity 0.4s ease, transform 0.4s ease;
    }


/* Description */

    .highlight-info p {
        opacity: 0;
        visibility: hidden;
        transform: translateY(8px);
        transition: opacity 0.4s ease, transform 0.4s ease;
    }

.highlight-card:hover .highlight-info h4,
.highlight-card:hover .highlight-info p,
.highlight-card:focus .highlight-info h4,
.highlight-card:focus .highlight-info p {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}


@media (hover: none) and (pointer: coarse) {

    .highlight-info h4,
    .highlight-info p {
        opacity: 1;
        visibility: visible;
        transform: none;
    }
}

/* Full Menu button */

.full-menu-button {
    display: inline-block;
    margin-top: 60px;
    padding: 14px 32px;
    background-color: black;
    color: #ffd966;
    border: 2px solid #ffd966;
    text-decoration: none;
    font-size: 18px;
    font-family: "Futura", Arial, sans-serif;
    border-radius: 5px;
    transition: transform 0.3s ease, box-shadow 0.35s ease, text-shadow 0.35s ease;
}

    .full-menu-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 0 8px rgba(255, 217, 102, 0.55), 0 0 18px rgba(255, 217, 102, 0.30), 0 0 32px rgba(255, 217, 102, 0.15);
        text-shadow: 0 0 8px rgba(255, 217, 102, 0.7);
    }

    .full-menu-button:focus-visible {
        outline: none;
        box-shadow: 0 0 8px rgba(255, 217, 102, 0.55), 0 0 18px rgba(255, 217, 102, 0.30), 0 0 32px rgba(255, 217, 102, 0.15);
    }

.highlight-card img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), filter 0.6s ease;
}

.highlight-card:hover img {
    transform: scale(1.04);
    filter: brightness(0.92);
}



/* Menu Highlights ends */

/* Location section begins */

.visit-reserve-section {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: start;
    gap: 70px;
    padding: 110px 60px;
    background-color: black;
}

.visit-column,
.follow-column {
    text-align: center;
}

    .visit-column h2,
    .follow-column h2 {
        color: #ffd966;
        font-family: "Futura", Arial, sans-serif;
        font-size: 60px;
        margin: 0 0 30px;
    }

    .visit-column p,
    .follow-column p {
        color: white;
        font-size: 18px;
        line-height: 1.8;
        margin-bottom: 30px;
    }

.visit-column,
.follow-column {
    align-self: start;
    text-align: center;
}
    .location-logo-badge {
    width: 190px;
    height: 190px;

    background-color: #CD853F;
    border: 2px solid #ffd966;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    box-sizing: border-box;
    flex-shrink: 0;
}

.location-logo {
    width: 72%;
    height: 72%;

    object-fit: contain;
    display: block;
}

.center-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 90px;
}
.join-button {
    display: inline-block;
    margin-top: 25px;
    padding: 14px 32px;
    background-color: black;
    color: #ffd966;
    border: 2px solid #ffd966;
    text-decoration: none;
    font-size: 18px;
    font-family: "Futura", Arial, sans-serif;


    border-radius: 5px;

    transition:
        transform 0.3s ease,
        box-shadow 0.35s ease,
        text-shadow 0.35s ease;
}

.join-button:hover {
    transform: translateY(-2px);

    box-shadow:
        0 0 8px rgba(255, 217, 102, 0.55),
        0 0 18px rgba(255, 217, 102, 0.30),
        0 0 32px rgba(255, 217, 102, 0.15);

    text-shadow:
        0 0 8px rgba(255, 217, 102, 0.7);
}

.join-button:focus-visible {
    outline: none;

    box-shadow:
        0 0 8px rgba(255, 217, 102, 0.55),
        0 0 18px rgba(255, 217, 102, 0.30),
        0 0 32px rgba(255, 217, 102, 0.15);
}

.instagram-preview {
    display: block;
    width: 260px;
    margin: 25px auto 0;
    overflow: hidden;
    border-radius: 12px;
}

    .instagram-preview img {
        width: 100%;
        height: auto;
        display: block;
        transition: transform 0.6s cubic-bezier(.22, 1, .36, 1), filter 0.6s ease;
    }

    .instagram-preview:hover img {
        transform: scale(1.04);
        filter: brightness(.92);
    }

.directions-button {
    display: inline-block;
    margin-top: 77px;
    padding: 14px 32px;
    background-color: black;
    color: #ffd966;
    border: 2px solid #ffd966;
    text-decoration: none;
    font-size: 18px;
    font-family: "Futura", Arial, sans-serif;
    border-radius: 5px;
    transition: transform 0.3s ease, box-shadow 0.35s ease, text-shadow 0.35s ease;
}

    .directions-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 0 8px rgba(255, 217, 102, 0.55), 0 0 18px rgba(255, 217, 102, 0.30), 0 0 32px rgba(255, 217, 102, 0.15);
        text-shadow: 0 0 8px rgba(255, 217, 102, 0.7);
    }

    .directions-button:focus-visible {
        outline: none;
        box-shadow: 0 0 8px rgba(255, 217, 102, 0.55), 0 0 18px rgba(255, 217, 102, 0.30), 0 0 32px rgba(255, 217, 102, 0.15);
    }

.site-footer {
    background-color: #7b0323;
    padding: 16px 30px;
    border-top: 1px solid rgba(255, 217, 102, 0.35);
}

.footer-line {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

.footer-name {
    color: #ffd966;
    font-family: "Futura", Arial, sans-serif;
    font-size: 20px;
}

.footer-item {
    color: white;
    font-size: 14px;
    font-family: "Futura", Arial, sans-serif;
    padding-left: 25px;
    border-left: 1px solid rgba(255, 217, 102, 0.4);
}


/* The Concept section */

.about-hero {
    width: 100%;
    background-color: black;
    text-align: center;
}

.about-hero-image {
    width: 100%;
    height: 380px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.about-hero-text {
    padding: 60px 30px 90px;
}

.about-eyebrow {
    color: white;
    font-size: 16px;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin: 0 0 20px;
}

.about-hero h1 {
    color: #ffd966;
    font-size: 80px;
    font-weight: 400;
    margin: 0 0 30px;
}

.about-intro {
    color: white;
    font-size: 20px;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

.concept-mode {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    padding: 100px 60px;
    background-color: black;
}

.concept-mode-image img {
    width: 100%;
    height: 650px;
    object-fit: cover;
    display: block;
    border-radius: 12px;
}

.concept-mode-content {
    max-width: 600px;
}

.mode-label {
    color: white;
    font-size: 16px;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin: 0 0 18px;
}

.concept-mode-content h2 {
    color: #ffd966;
    font-size: 64px;
    font-weight: 400;
    margin: 0 0 25px;
}

.mode-description {
    color: white;
    font-size: 20px;
    line-height: 1.8;
    margin: 0 0 40px;
}

.mode-details {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.mode-detail h3 {
    color: #ffd966;
    font-size: 24px;
    font-weight: 400;
    margin: 0 0 8px;
}

.mode-detail p {
    color: white;
    font-size: 18px;
    line-height: 1.7;
    margin: 0;
}

.concept-transition {
    padding: 100px 30px;
    text-align: center;
    background: linear-gradient( to bottom, black, #240109, black );
}

    .concept-transition p {
        color: #ffd966;
        font-size: 32px;
        letter-spacing: 2px;
        margin: 0;
    }
