﻿td {
    vertical-align: middle;
    text-align: center;
}

td a, td input, td img {
    vertical-align: middle;
    display: inline-block;
}

.borderless-table > tr > td {
    border: none;
    text-align: center;
    vertical-align: middle;
    margin:0;
}

.flex-r-100 {
    display: flex;
    flex-direction: row;
    justify-content: center;
    width:100%;
}

.flex-r {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.flex-c {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.flex-c-start {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
}

.container-env {
    position: relative;
    text-align: center;
    color: black;
    margin-bottom: 2vh;
}

.bottom-left {
    position: absolute;
    bottom: 8px;
    left: 16px;
}

.top-left {
    position: absolute;
    top: 8px;
    left: 16px;
}

.top-right {
    position: absolute;
    top: 8px;
    right: 16px;
}

.bottom-right {
    position: absolute;
    bottom: 8px;
    right: 16px;
}

.centered {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.top-centered {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.bottom-mid-centered {
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.bottom-centered {
    position: absolute;
    top: 80%;
    left: 50%;
    transform: translate(-50%, -50%);
}


.btn-grad {
    background-image: linear-gradient(to right, #5C258D 0%, #4389A2 51%, #5C258D 100%);
    margin: 5px;
    padding: 8px 22px;
    text-align: center;
    text-transform: uppercase;
    transition: 0.5s;
    background-size: 200% auto;
    color: white;
    box-shadow: 0 0 10px #eee;
    border-radius: 10px;
    display: block;
    height: fit-content;
}

.btn-grad:hover {
    background-position: right center; /* change the direction of the change here */
    color: #fff;
    text-decoration: none;
}

.slide-right, .slide-left {
    overflow: hidden;
    display: flex;
}

.slide-right * {
    animation: slide-hor 2s forwards;
    transform: translateX(-100%);
}

.slide-left * {
    animation: slide-hor 2s forwards;
    transform: translateX(100%);
}

.slide-up {
    width: 50%;
    overflow: hidden;
    margin-bottom: 10em;
}

.slide-up * {
    animation: slide-vert 2s forwards;
    transform: translateY(100%);
}

.slide-down {
    width: 50%;
    overflow: hidden;
    margin-top: 10em;
}

.slide-down * {
    animation: slide-vert 2s forwards;
    transform: translateY(-100%);
}

.custom-select-wrapper {
    position: relative; /* Essential for positioning the arrow */
    display: inline-block; /* Or block, depending on your layout */
    max-width: 100%;
    width: fit-content;
}

    .custom-select-wrapper::after {
        content: '\25BC'; /* Downward-pointing triangle symbol */
        position: absolute;
        top: 50%;
        right: 10px; /* Adjust as needed */
        transform: translateY(-50%); /* Vertically center the arrow */
        pointer-events: none; /* Prevents the arrow from interfering with select clicks */
        color: black; /* Customize arrow color */
    }

/* Add focus style for accessibility */
.custom-select:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
    border-color: #007bff;
}

.custom-select {
    /* Remove browser default styling */
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    /* Custom styling for the select box */
    font-family: 'Playfair Display', serif, sans-serif;
    font-size: 16px;
    color: #78eaff;
    background-color: #0f1424;
    padding: 10px 40px 10px 15px; /* Add padding for the custom arrow */
    border: 1px solid rgba(91,122,255,0.4);
    border-radius: 1em;
    cursor: pointer;
    width: fit-content;
    max-width: 100%;
}

    .custom-select option {
        color: black;
    }

.price-block {
    border: .125em solid silver;
    padding: 1em;
    margin: 1em;
    border-radius: .5em;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    flex-grow:1;
}

.beautify {
    animation: box-pulse 2s infinite linear;
    animation-direction: alternate;
    border: .125em solid white;
}

@keyframes slide-hor {
    to {
        transform: translateX(0);
    }
}

@keyframes slide-vert {
    to {
        transform: translateY(0);
    }
}

.footer {
    margin-top:auto;
}

.first-dot {
    animation: fade-in 1s infinite linear;
    animation-direction: alternate;
    opacity: 0;
}

.second-dot {
    animation: fade-in 1s infinite linear;
    animation-direction: alternate;
    animation-delay: .5s;
    opacity: 0;
}

.third-dot {
    animation: fade-in 1s infinite linear;
    animation-direction: alternate;
    animation-delay: 1s;
    opacity: 0;
}

/* Container and base lines */
.hamburger-menu {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 30px;
    cursor: pointer;
}

.line {
    height: 4px;
    width: 100%;
    background: white;
    transition: all 0.3s ease; /* Smooth morphing */
    transform-origin: center;
}

/* Morphing state when checkbox is checked */
input.toggler:checked ~ .line:nth-child(2) {
    transform: translateY(10px) rotate(45deg);
}

input.toggler:checked ~ .line:nth-child(3) {
    opacity: 0; /* Hides middle bar */
}

input.toggler:checked ~ .line:nth-child(4) {
    transform: translateY(-10px) rotate(-45deg);
}

/* Hide the actual checkbox */
input.toggler {
    display: none;
}

.border-while-open {
    border-bottom-left-radius: 1em;
    border-bottom-right-radius: 1em;
}

.cost-box {
    border: 1px solid black;
    padding: .25em;
    border-radius: .25em;
}

@keyframes fade-in {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fade-out {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

/* HERO */

.hero-section {
    position: relative;
    height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.45);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
}

.hero-subtitle {
    text-transform: uppercase;
    letter-spacing: .35em;
    color: #d8c3a5;
    margin-bottom: 1rem;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(4rem, 10vw, 7rem);
    margin-bottom: 1.5rem;
    color:white;
}

.hero-description {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    opacity: .92;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.custom-btn {
    padding: .95rem 2rem;
    border-radius: 999px;
    font-weight: 600;
}

.btn-primary.custom-btn {
    background: #a8c3b2;
    border: none;
    color: black;
}

/* SECTIONS */

.section-padding {
    padding: 7rem 0;
}

.section-label {
    text-transform: uppercase;
    letter-spacing: .25em;
    color: #8d7b68;
    font-size: .85rem;
    margin-bottom: 1rem;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.2;
    margin-bottom: 2rem;
}

.section-text {
    font-size: 1.1rem;
    line-height: 2;
    color: rgba(0,0,0,.72);
}

.feature-row {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
}

.feature-number {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
}

.feature-text {
    color: rgba(0,0,0,.6);
}

/* GALLERY */

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.gallery-img {
    width: 100%;
    object-fit: cover;
    border-radius: 2rem;
}

    .gallery-img.tall {
        height: 320px;
    }

    .gallery-img.wide {
        grid-column: span 2;
        height: 260px;
    }

.offset-img {
    margin-top: 3rem;
}

/* MENU */

.menu-section {
    background: #ebe3db;
}

.drink-card {
    background: white;
    padding: 2rem;
    border-radius: 2rem;
    height: 100%;
    transition: .2s ease;
}

    .drink-card:hover {
        transform: translateY(-4px);
    }

.drink-image-placeholder {
    height: 220px;
    border-radius: 1.5rem;
    background: #d9cab3;
    margin-bottom: 1.5rem;
}

.drink-title {
    font-family: 'Playfair Display', serif;
    margin-bottom: 1rem;
}

.drink-description {
    color: rgba(0,0,0,.65);
    line-height: 1.8;
}

/* VISIT */

.visit-block {
    margin-top: 2rem;
}

    .visit-block p {
        color: rgba(0,0,0,.7);
        line-height: 1.9;
    }

.map-placeholder {
    min-height: 420px;
    border-radius: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    color: rgba(0,0,0,.55);
    font-size: 1.25rem;
}

/* SOCIAL */

.social-section {
    background: black;
    color: white;
    padding: 6rem 0;
}

.social-label {
    color: #a8c3b2;
}

.social-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
    color: white;
}

.social-text {
    max-width: 700px;
    margin: auto;
    line-height: 2;
    margin-bottom: 2rem;
    color:  gray;
}

.social-btn {
    background: #a8c3b2;
    color: black;
    border: none;
    margin: 1em;
}

/* MOBILE */

@media (max-width: 768px) {

    .hero-title {
        font-size: 4rem;
    }

    .feature-row {
        flex-direction: column;
        gap: 1.5rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-img.wide {
        grid-column: span 1;
    }

    .offset-img {
        margin-top: 0;
    }
}