html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

:root {
    --brand-red: #E30613;
    --gold: #C89B63;
    --charcoal: #111111;
    --dark: #1A1A1A;
    --ivory: #F8F5F0;
    --text: #5A5A5A;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--ivory);
    color: var(--text);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--charcoal);
}

.section-kicker {
    display: inline-block;
    letter-spacing: 4px;
    font-size: .8rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 15px;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 25px;
}

.text-gold {
    color: var(--gold);
}

.hero-section {
    position: relative;
    height: 100vh;
    background-image: url('/images/hero.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.60);
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 850px;
    color: white;
}

.hero-kicker {
    display: block;
    color: var(--gold);
    letter-spacing: 5px;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 5rem;
    line-height: 1;
    margin-bottom: 30px;
    color: white;
}

.hero-description {
    font-size: 1.3rem;
    line-height: 1.8;
    max-width: 700px;
    margin-bottom: 40px;
    color: rgba(255,255,255,.9);
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.story-section,
.experience-section,
.contact-section {
    padding: 120px 0;
}

    .story-section img,
    .experience-section img {
        border-radius: 24px;
        transition: .4s ease;
    }

        .story-section img:hover,
        .experience-section img:hover {
            transform: scale(1.02);
        }

.atmosphere-section {
    padding: 120px 0;
    background: white;
}

.gallery-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 24px;
    transition: .4s;
}

    .gallery-image:hover {
        transform: scale(1.03);
    }

.reviews-section {
    padding: 120px 0;
    background: var(--charcoal);
}

    .reviews-section .section-title {
        color: white;
    }

.review-card {
    background: rgba(255,255,255,.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 24px;
    padding: 40px;
    color: white;
    height: 100%;
}

.stars {
    color: var(--gold);
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.reservation-section {
    padding: 140px 0;
    text-align: center;
    background: var(--ivory);
}

.reservation-text {
    max-width: 700px;
    margin: auto;
    margin-bottom: 40px;
    font-size: 1.2rem;
}

.contact-section {
    background: white;
}

.map-placeholder {
    height: 450px;
    border-radius: 24px;
    background: #ececec;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #777;
    font-weight: 600;
}

.btn-danger {
    background: var(--brand-red);
    border: none;
    border-radius: 999px;
    padding: 14px 32px;
}

    .btn-danger:hover {
        background: #c5000d;
    }

.btn-outline-light {
    border-radius: 999px;
    padding: 14px 32px;
}

.custom-navbar {
    background: transparent;
    padding: 20px 0;
    transition: all .35s ease;
    z-index: 1050;
}

    .custom-navbar .nav-link {
        color: #ffffff !important;
        font-weight: 500;
        margin-left: 20px;
        transition: color .3s ease;
    }

    .custom-navbar .navbar-brand img {
        transition: all .3s ease;
    }

    .custom-navbar.scrolled {
        background: rgba(17,17,17,.88);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        box-shadow: 0 10px 30px rgba(0,0,0,.20);
        padding: 12px 0;
    }

        .custom-navbar.scrolled .navbar-brand img {
            height: 55px;
        }
.reserve-btn {
    border-radius: 999px;
    padding: 12px 28px;
    transition: all .3s ease;
}

    .reserve-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(227,6,19,.35);
    }

.hero-content {
    animation: heroFade 1.4s ease;
}

@keyframes heroFade {

    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.footer-section {
    background: radial-gradient(circle at top left, rgba(227, 6, 19, .16), transparent 35%), linear-gradient(135deg, #0d0d0d, #17110f);
    color: rgba(255,255,255,.78);
    padding: 90px 0 35px;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr .8fr .9fr .9fr;
    gap: 55px;
    align-items: start;
}

.footer-logo {
    width: 110px;
    height: auto;
    margin-bottom: 24px;
}

.footer-brand p {
    max-width: 360px;
    line-height: 1.8;
}

.footer-column h5 {
    color: #c89b63;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    margin-bottom: 22px;
}

.footer-column a,
.footer-column p {
    display: block;
    color: rgba(255,255,255,.72);
    text-decoration: none;
    margin-bottom: 12px;
    transition: .3s ease;
}

    .footer-column a:hover {
        color: #ffffff;
        transform: translateX(4px);
    }

.footer-reserve-btn {
    display: inline-block !important;
    margin-top: 10px;
    padding: 13px 28px;
    border-radius: 999px;
    background: #e30613;
    color: #ffffff !important;
    font-weight: 600;
}

    .footer-reserve-btn:hover {
        background: #c9000b;
        transform: translateY(-2px) !important;
    }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.12);
    margin-top: 60px;
    padding-top: 25px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    font-size: .95rem;
    color: rgba(255,255,255,.55);
}

.footer-credit {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    transition: all .3s ease;
}

    .footer-credit:hover {
        color: #ffffff;
        text-decoration: none;
    }

.page-hero {
    position: relative;
    min-height: 60vh;
    background: linear-gradient(rgba(0,0,0,.65), rgba(0,0,0,.55)), url('/images/interior-2.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.page-hero-overlay {
    width: 100%;
    padding: 140px 0 80px;
}

.page-title {
    color: #fff;
    font-size: 4.5rem;
    margin-bottom: 20px;
}

.page-description {
    color: rgba(255,255,255,.9);
    font-size: 1.25rem;
    max-width: 700px;
    margin: auto;
}

.team-section {
    padding: 120px 0;
    background: #ffffff;
}

.team-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(0,0,0,.08);
    transition: .35s;
    height: 100%;
    text-align: center;
}

    .team-card:hover {
        transform: translateY(-10px);
    }

.team-photo {
    width: 100%;
    height: 420px;
    object-fit: cover;
}

.team-card h3 {
    margin-top: 30px;
}

.team-role {
    display: inline-block;
    color: var(--gold);
    margin-bottom: 20px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: .8rem;
}

.team-card p {
    padding: 0 30px 35px;
    color: #666;
    line-height: 1.8;
}
/* CONTACT PAGE */

.contact-info-section {
    padding: 120px 0 80px;
    background: #f8f5f0;
}

.info-card {
    background: white;
    border-radius: 24px;
    padding: 45px;
    text-align: center;
    height: 100%;
    transition: .35s;
    box-shadow: 0 20px 60px rgba(0,0,0,.08);
}

    .info-card:hover {
        transform: translateY(-10px);
    }

.info-icon {
    width: 75px;
    height: 75px;
    margin: auto;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(227,6,19,.08);
    border-radius: 50%;
    font-size: 2rem;
}

.info-card h3 {
    margin-bottom: 25px;
}

.info-card p {
    line-height: 1.8;
    color: #666;
}

.info-card a {
    color: inherit;
    text-decoration: none;
}

    .info-card a:hover {
        color: var(--brand-red);
    }

.info-link {
    display: inline-block;
    margin-top: 15px;
    color: var(--brand-red) !important;
    font-weight: 600;
}

.opening-hours {
    width: 100%;
}

    .opening-hours td {
        padding: 12px 0;
        border-bottom: 1px solid #eee;
    }

        .opening-hours td:last-child {
            text-align: right;
            font-weight: 600;
        }

    .opening-hours tr:last-child td {
        border-bottom: none;
    }

/* GOOGLE MAP */

.map-section {
    height: 550px;
}

    .map-section iframe {
        width: 100%;
        height: 100%;
        border: none;
    }

/* MOBILE */

.info-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg,#E30613,#c70010);
    color: white;
    font-size: 2rem;
    box-shadow: 0 15px 35px rgba(227,6,19,.30);
    transition: .35s;
}

.info-card:hover .info-icon {
    transform: rotate(10deg) scale(1.08);
    box-shadow: 0 20px 45px rgba(227,6,19,.45);
}

@media(max-width:768px) {

    .contact-info-section {
        padding: 80px 0;
    }

    .map-section {
        height: 400px;
    }
}
@media (max-width: 991px) {
    .footer-main {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}
@media (max-width: 991px) {
    .custom-navbar {
        background: rgba(17,17,17,.95);
        backdrop-filter: blur(12px);
    }

    .navbar-collapse {
        padding-top: 20px;
    }

    .custom-navbar .nav-link {
        margin-left: 0;
        padding: 12px 0;
    }
}

@media (max-width: 991px) {

    .hero-title {
        font-size: 3.5rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .gallery-image {
        height: 320px;
    }

    .contact-section {
        padding: 120px 0;
        background: #f8f5f0;
    }

    .contact-card {
        background: #fff;
        border-radius: 24px;
        padding: 45px;
        box-shadow: 0 20px 60px rgba(0,0,0,.08);
    }

    .contact-item {
        margin-bottom: 30px;
    }

        .contact-item:last-child {
            margin-bottom: 0;
        }

        .contact-item h6 {
            color: var(--gold);
            font-size: .85rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 12px;
        }

        .contact-item p {
            margin: 0;
            color: #555;
            line-height: 1.8;
        }

        .contact-item a {
            color: inherit;
            text-decoration: none;
            transition: .3s;
        }

            .contact-item a:hover {
                color: var(--brand-red);
            }

    .opening-hours {
        width: 100%;
    }

        .opening-hours td {
            padding: 10px 0;
            border-bottom: 1px solid #ececec;
        }

            .opening-hours td:last-child {
                text-align: right;
                font-weight: 600;
            }

        .opening-hours tr:last-child td {
            border-bottom: none;
        }

    .story-section,
    .experience-section,
    .reviews-section,
    .reservation-section,
    .contact-section,
    .atmosphere-section {
        padding: 80px 0;
    }
}

.footer-social-title {
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--gold);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

    .footer-social a {
        width: 48px;
        height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: var(--brand-red);
        color: #fff;
        text-decoration: none;
        font-size: 1.25rem;
        transition: all .35s ease;
        box-shadow: 0 8px 20px rgba(227,6,19,.25);
    }

        .footer-social a:hover {
            background: #c80011;
            transform: translateY(-4px) scale(1.05);
            box-shadow: 0 15px 35px rgba(227,6,19,.45);
            color: #fff;
        }

        .footer-social a:nth-child(2):hover {
            background: linear-gradient( 45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888 );
        }

.visit-section {
    padding: 120px 0;
    background: #faf8f5;
}

.visit-card {
    background: white;
    border-radius: 30px;
    padding: 70px;
    box-shadow: 0 30px 80px rgba(0,0,0,.08);
}

.visit-item {
    text-align: center;
    padding: 20px;
}

    .visit-item i {
        font-size: 2.8rem;
        color: var(--brand-red);
        margin-bottom: 20px;
    }

    .visit-item h5 {
        margin-bottom: 20px;
        font-family: 'Cormorant Garamond',serif;
        font-size: 2rem;
    }

    .visit-item p {
        color: #666;
        line-height: 1.9;
        margin-bottom: 12px;
    }

    .visit-item a {
        color: inherit;
        text-decoration: none;
    }

.visit-buttons {
    margin-top: 50px;
    text-align: center;
}

    .visit-buttons .btn {
        margin: 10px;
        min-width: 220px;
    }