/*
Theme Name: Brew Haven
Author: WebMint Solutions
Version: 1.0
*/

:root {
    --dark: #1a0f0a;
    --dark-soft: #2a1810;
    --gold: #C9973E;
    --gold-light: #D9A94B;
    --cream: #F5E6C8;
}

* { box-sizing: border-box; }

body {
    background-color: var(--dark);
    color: var(--cream);
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    margin: 0;
    padding: 0;
    line-height: 1.7;
}

h1, h2, h3, .heading-font {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.section-divider {
    width: 70px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    margin: 15px auto 45px;
    border-radius: 2px;
}

.btn-gold {
    background-color: var(--gold);
    color: var(--dark);
    font-weight: 600;
    padding: 14px 36px;
    border-radius: 4px;
    text-decoration: none;
    display: inline-block;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: 2px solid var(--gold);
}

.btn-gold:hover {
    background-color: transparent;
    color: var(--gold-light);
}

.btn-outline-premium {
    background: transparent;
    color: #F5E6C8;
    font-weight: 500;
    padding: 13px 34px;
    border-radius: 3px;
    border: 1.5px solid #F5E6C8;
    text-decoration: none;
    display: inline-block;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 13px;
    transition: all 0.3s ease;
}

.btn-outline-premium:hover {
    background: #F5E6C8;
    color: #1a0f0a;
    border-color: #F5E6C8;
}

.feature-card {
    background: rgba(245, 230, 200, 0.03);
    border: 1px solid rgba(201, 151, 62, 0.25);
    border-radius: 10px;
    padding: 35px 25px;
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-6px);
    border-color: var(--gold);
}

.feature-card i {
    font-size: 32px;
    color: var(--gold);
    margin-bottom: 18px;
    display: inline-block;
}

.site-navbar {
    background-color: rgba(26, 15, 10, 0.97) !important;
    backdrop-filter: blur(6px);
    border-bottom: 1px solid rgba(201, 151, 62, 0.2);
    padding: 14px 0;
}

.site-navbar .navbar-brand {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 24px;
    color: var(--cream) !important;
}

.site-navbar .nav-link {
    color: var(--cream) !important;
    font-weight: 400;
    margin: 0 8px;
    transition: color 0.3s;
}

.site-navbar .nav-link:hover {
    color: var(--gold-light) !important;
}

.navbar-logo {
    height: 42px;
    margin-right: 10px;
}

.site-footer {
    background-color: var(--dark-soft);
    color: var(--cream);
    padding: 50px 20px 20px;
    text-align: center;
    border-top: 1px solid rgba(201, 151, 62, 0.2);
}

.site-footer a {
    color: var(--gold-light);
    text-decoration: none;
}

.footer-social a {
    color: var(--cream);
    font-size: 20px;
    margin: 0 10px;
    transition: color 0.3s;
}

.footer-social a:hover {
    color: var(--gold);
}

.footer-credit {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(245, 230, 200, 0.1);
    font-size: 13px;
    opacity: 0.7;
}

/* ===== HERO: full zooming background + dark overlay + foreground split (text left / image box right) ===== */

.hero-wrap {
    position: relative;
    min-height: 90vh;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-size: cover;
    background-position: center;
    animation: slowZoom 18s ease-in-out infinite alternate;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(180deg, rgba(15,8,5,0.55) 0%, rgba(15,8,5,0.75) 100%);
    z-index: 1;
}

@keyframes slowZoom {
    0%   { transform: scale(1); }
    100% { transform: scale(1.12); }
}

.hero-foreground {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    padding: 0 6%;
    animation: fadeUp 1.2s ease;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

.hero-text-col {
    flex: 1;
    text-align: left;
}

.hero-image-col {
    flex: 1;
    max-width: 460px;
}

.hero-image-col img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    opacity: 0.7;
}

@media (max-width: 900px) {
    .hero-wrap { min-height: 75vh; }
    .hero-foreground { flex-direction: column; text-align: center; padding: 40px 6%; }
    .hero-text-col { text-align: center; }
    .hero-image-col { max-width: 100%; }
}

/* General mobile responsiveness */
@media (max-width: 768px) {
    h1 { font-size: 28px !important; }
    h2 { font-size: 20px !important; }
}

/* Full-page animated background wrapper (for inner pages like About) */
.page-bg-wrap {
    position: relative;
    overflow: hidden;
}

.page-bg-wrap .hero-bg {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background-size: cover;
    background-position: center;
    animation: slowZoom 18s ease-in-out infinite alternate;
    z-index: -1;
}

.page-bg-wrap .hero-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(180deg, rgba(15,8,5,0.6) 0%, rgba(15,8,5,0.75) 100%);
    z-index: -1;
}

.page-bg-wrap .page-content {
    position: relative;
    z-index: 2;
    padding-top: 90px;
}

/* Slightly tighter card sizing */
.feature-card {
    max-width: 420px;
    margin: 0 auto;
}

/* MENU PAGE */
.menu-banner {
    position: relative;
    min-height: 45vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.menu-category-title {
    color: #C9973E;
    font-size: 26px;
    text-align: center;
    margin: 60px 0 35px;
    position: relative;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 6%;
}

.menu-card {
    background: rgba(245, 230, 200, 0.03);
    border: 1px solid rgba(201, 151, 62, 0.2);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.4s ease, border-color 0.4s ease;
    position: relative;
}

.menu-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
}

.menu-card-img-wrap {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.menu-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.menu-card:hover .menu-card-img-wrap img {
    transform: scale(1.08);
}

.menu-card-icon-wrap {
    width: 100%;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 151, 62, 0.06);
}

.menu-card-icon-wrap i {
    font-size: 54px;
    color: var(--gold);
    opacity: 0.7;
}

.menu-card-body {
    padding: 22px 20px;
    text-align: center;
}

.menu-card-body h3 {
    color: #F5E6C8;
    font-size: 18px;
    margin: 0 0 6px;
}

.menu-card-body span {
    color: var(--gold-light);
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.8;
}

/* Small decorative steam SVG animation */
.steam-dot {
    position: absolute;
    top: 12px; right: 16px;
    width: 22px; height: 22px;
    opacity: 0.5;
    animation: floatSteam 3s ease-in-out infinite;
}

@keyframes floatSteam {
    0%, 100% { transform: translateY(0); opacity: 0.3; }
    50% { transform: translateY(-6px); opacity: 0.6; }
}

/* CONTACT PAGE */
.contact-banner {
    position: relative;
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.contact-wrap {
    max-width: 1000px;
    margin: 0 auto;
    padding: 70px 6% 90px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-form-box {
    background: rgba(245, 230, 200, 0.03);
    border: 1px solid rgba(201, 151, 62, 0.25);
    border-radius: 12px;
    padding: 40px 30px;
}

.contact-form-box label {
    display: block;
    color: #D9A94B;
    font-size: 13px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 8px;
    margin-top: 20px;
}

.contact-form-box input,
.contact-form-box textarea {
    width: 100%;
    padding: 12px 14px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(245,230,200,0.2);
    border-radius: 6px;
    color: #F5E6C8;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
}

.contact-form-box input:focus,
.contact-form-box textarea:focus {
    outline: none;
    border-color: var(--gold);
}

.contact-form-box button {
    margin-top: 28px;
    width: 100%;
    background-color: #25D366;
    color: #fff;
    font-weight: 600;
    padding: 14px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: opacity 0.3s;
}

.contact-form-box button:hover { opacity: 0.9; }

.contact-info-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 25px;
}

.contact-info-item i {
    font-size: 20px;
    color: var(--gold);
    margin-top: 3px;
}

.contact-info-item p {
    margin: 0;
    color: #E8DDC8;
    font-size: 15px;
    line-height: 1.6;
}

.contact-map {
    border-radius: 12px;
    overflow: hidden;
    margin-top: 15px;
    filter: grayscale(40%) contrast(1.1) brightness(0.85);
    border: 1px solid rgba(201, 151, 62, 0.25);
}

@media (max-width: 800px) {
    .contact-wrap { grid-template-columns: 1fr; }
}