/* ==========================================
   GENERAL STYLES
========================================== */
:root {
    --primary-color: #8B0000;
    --secondary-color: #000000;
    --accent-color: #C41E3A;
    --text-light: #ffffff;
    --text-dark: #333333;
    --bg-light: #f8f9fa;
    --bg-dark: #1a1a1a;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

a {
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

/* ==========================================
   TOP BAR
========================================== */
.top-bar {
    background: var(--primary-color);
    color: var(--text-light);
    padding: 10px 0;
    font-size: 14px;
}

.top-bar a {
    color: var(--text-light);
}

.top-bar a:hover {
    opacity: 0.8;
}

/* ==========================================
   NAVIGATION
========================================== */
.navbar {
    background: var(--secondary-color) !important;
    padding: 15px 0;
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled {
    padding: 10px 0;
}

.navbar-brand {
    padding: 0;
}

.logo {
    height: 60px;
    width: auto;
    transition: var(--transition);
}

.navbar.scrolled .logo {
    height: 50px;
}

.navbar-nav .nav-link {
    color: var(--text-light) !important;
    font-weight: 500;
    padding: 10px 20px !important;
    position: relative;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 20px;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: calc(100% - 40px);
}

.btn-order {
    background: var(--primary-color);
    color: var(--text-light);
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid var(--primary-color);
}

.btn-order:hover {
    background: transparent;
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 0, 0, 0.3);
}

/* ==========================================
   HERO SECTION
========================================== */
.hero-section {
    position: relative;
    height: 100vh;
    background: url('./../images/8af81c5e63f60399ad9fb31501275b98.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4));
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-title {
    font-size: 72px;
    color: var(--text-light);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 20px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
}

.btn-hero {
    background: var(--primary-color);
    color: var(--text-light);
    padding: 15px 40px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 2px solid var(--primary-color);
    font-size: 16px;
}

.btn-hero:hover {
    background: transparent;
    color: var(--text-light);
    border-color: var(--text-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--text-light);
    font-size: 24px;
    animation: bounce 2s infinite;
    cursor: pointer;
    z-index: 2;
}

/* ==========================================
   FEATURES SECTION
========================================== */
.features-section {
    background: var(--bg-light);
    padding: 80px 0;
}

.feature-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.feature-image {
    position: relative;
    overflow: hidden;
    height: 300px;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.feature-card:hover .feature-image img {
    transform: scale(1.1);
}

.feature-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(139, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.feature-card:hover .feature-overlay {
    opacity: 1;
}

.btn-feature {
    background: var(--text-light);
    color: var(--primary-color);
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-feature:hover {
    background: var(--primary-color);
    color: var(--text-light);
}

.feature-content {
    padding: 30px;
}

.feature-content h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.feature-content p {
    color: #666;
    margin-bottom: 20px;
}

.feature-link {
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
}

.feature-link:hover {
    color: var(--accent-color);
}

.feature-link i {
    transition: var(--transition);
}

.feature-link:hover i {
    transform: translateX(5px);
}

/* ==========================================
   REWARDS SECTION
========================================== */
.rewards-section {
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 80px 0;
}

.section-title {
    font-size: 42px;
    margin-bottom: 20px;
    line-height: 1.3;
}

.rewards-highlight {
    color: var(--primary-color);
    font-size: 24px;
    margin-bottom: 30px;
}

.rewards-list {
    list-style: none;
    padding: 0;
}

.rewards-list li {
    padding: 12px 0;
    font-size: 16px;
    line-height: 1.6;
}

.rewards-list i {
    color: var(--primary-color);
    margin-right: 15px;
    font-size: 20px;
}

.app-badges {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.app-badge {
    height: 50px;
    width: auto;
    transition: var(--transition);
}

.app-badge:hover {
    transform: scale(1.05);
}

.rewards-image img {
    max-width: 400px;
}

/* ==========================================
   CONTACT SECTION
========================================== */
.contact-section {
    background: var(--bg-light);
    padding: 80px 0;
}

.contact-info {
    padding: 20px;
}

.info-item {
    display: flex;
    margin-bottom: 30px;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.info-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
}

.info-icon {
    font-size: 32px;
    color: var(--primary-color);
    margin-right: 20px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(139, 0, 0, 0.1);
    border-radius: 50%;
    flex-shrink: 0;
}

.info-content h5 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.info-content p {
    margin-bottom: 5px;
    color: #666;
}

.info-content a {
    color: var(--primary-color);
}

.info-content a:hover {
    color: var(--accent-color);
}

.small-text {
    font-size: 14px;
    font-style: italic;
    color: #999;
}

.hours-list {
    list-style: none;
    padding: 0;
    margin-top: 10px;
}

.hours-list li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.hours-list li:last-child {
    border-bottom: none;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    display: block;
}

/* ==========================================
   FOOTER
========================================== */
.footer {
    background: var(--secondary-color);
    color: var(--text-light);
    padding: 60px 0 20px;
}

.footer-logo {
    height: 80px;
    width: auto;
}

.footer h5 {
    font-size: 22px;
    margin-bottom: 20px;
    color: var(--text-light);
}

.footer p {
    color: #ccc;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #ccc;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    margin-bottom: 15px;
    color: #ccc;
}

.footer-contact i {
    color: var(--primary-color);
    margin-right: 10px;
    width: 20px;
}

.footer-contact a {
    color: #ccc;
}

.footer-contact a:hover {
    color: var(--primary-color);
}

.footer-divider {
    border-color: #333;
    margin: 30px 0 20px;
}

.copyright {
    color: #999;
    font-size: 14px;
}

/* ==========================================
   SCROLL TO TOP BUTTON
========================================== */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--text-light);
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 1000;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.scroll-top-btn:hover {
    background: var(--accent-color);
    transform: translateY(-5px);
}

.scroll-top-btn.show {
    display: flex;
}

/* ==========================================
   ANIMATIONS
========================================== */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floating {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.fade-in-up {
    animation: fadeInUp 1s ease forwards;
    opacity: 0;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

.delay-4 {
    animation-delay: 0.8s;
}

.floating-animation {
    animation: floating 3s ease-in-out infinite;
}

/* ==========================================
   RESPONSIVE DESIGN
========================================== */
@media (max-width: 991px) {
    .hero-title {
        font-size: 48px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .navbar-nav {
        background: var(--bg-dark);
        padding: 20px;
        border-radius: 10px;
        margin-top: 15px;
    }
    
    .btn-order {
        margin-top: 15px;
        display: inline-block;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .feature-image {
        height: 250px;
    }
    
    .rewards-image img {
        max-width: 300px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 28px;
        letter-spacing: 1px;
    }
    
    .top-bar {
        font-size: 12px;
    }
    
    .app-badges {
        flex-direction: column;
    }
    
    .app-badge {
        height: 45px;
    }
}



/* ==========================================
   PAGE HERO
========================================== */
.page-hero {
    position: relative;
    height: 400px;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5)), 
                url('./../images/8af81c5e63f60399ad9fb31501275b98.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.drink-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5)), 
                url('./../images/5a5ba3427574c546ea6e0273a4513719.png') center/cover no-repeat;
}

.page-title {
    font-size: 64px;
    color: var(--text-light);
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
}

.page-subtitle {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 25px;
    opacity: 0.9;
}

.breadcrumb-custom {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 12px 25px;
    border-radius: 30px;
    backdrop-filter: blur(10px);
}

.breadcrumb-custom a {
    color: var(--text-light);
    transition: var(--transition);
}

.breadcrumb-custom a:hover {
    color: var(--primary-color);
}

.breadcrumb-custom .separator {
    margin: 0 15px;
    color: var(--text-light);
}

/* ==========================================
   MENU NAVIGATION
========================================== */
.menu-navigation {
    display: inline-flex;
    background: var(--bg-light);
    padding: 8px;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.menu-nav-btn {
    padding: 12px 40px;
    border-radius: 40px;
    background: transparent;
    color: var(--text-dark);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.menu-nav-btn.active {
    background: var(--primary-color);
    color: var(--text-light);
    box-shadow: 0 5px 15px rgba(139, 0, 0, 0.3);
}

.menu-nav-btn:hover:not(.active) {
    background: rgba(139, 0, 0, 0.1);
    color: var(--primary-color);
}

/* ==========================================
   MENU INTRO
========================================== */
.menu-intro {
    padding: 40px;
    background: var(--bg-light);
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.menu-icon {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.menu-intro h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

/* ==========================================
   MENU ITEMS
========================================== */
.menu-item {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    height: 100%;
    border-left: 4px solid transparent;
}

.menu-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-left-color: var(--primary-color);
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.item-name {
    font-size: 22px;
    color: var(--secondary-color);
    margin: 0;
    flex: 1;
    padding-right: 15px;
}

.item-price {
    font-size: 24px;
    color: var(--primary-color);
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}

.item-description {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

.item-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.tag {
    display: inline-flex;
    align-items: center;
    padding: 6px 15px;
    background: var(--primary-color);
    color: var(--text-light);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tag i {
    margin-right: 6px;
}

.tag-gf {
    background: #28a745;
}

.tag-v {
    background: #17a2b8;
}

/* ==========================================
   MENU CATEGORY HEADER
========================================== */
.menu-category-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 30px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--text-light);
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(139, 0, 0, 0.3);
}

.menu-category-header h2 {
    margin: 0;
    font-size: 32px;
    display: flex;
    align-items: center;
}

/* ==========================================
   SIDES
========================================== */
.side-item {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: var(--transition);
    height: 100%;
}

.side-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.side-item h4 {
    font-size: 18px;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.side-item .price {
    font-size: 20px;
    color: var(--primary-color);
    font-weight: 700;
}

/* ==========================================
   ORDER CTA
========================================== */
.order-cta {
    background: linear-gradient(135deg, var(--bg-dark), #2a2a2a);
    padding: 60px 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.order-cta h3 {
    font-size: 36px;
    color: var(--text-light);
    margin-bottom: 15px;
}

.order-cta p {
    font-size: 18px;
    color: #ccc;
    margin-bottom: 30px;
}

.btn-order-large {
    background: var(--primary-color);
    color: var(--text-light);
    padding: 18px 50px;
    border-radius: 35px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 18px;
    border: 3px solid var(--primary-color);
    transition: var(--transition);
    display: inline-block;
}

.btn-order-large:hover {
    background: transparent;
    color: var(--text-light);
    border-color: var(--text-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

/* ==========================================
   DRINK MENU SPECIFIC STYLES
========================================== */
.happy-hour-banner {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(255, 165, 0, 0.4);
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 5px 25px rgba(255, 165, 0, 0.4);
    }
    50% {
        box-shadow: 0 8px 35px rgba(255, 165, 0, 0.6);
    }
}

.happy-hour-content {
    display: flex;
    align-items: center;
    gap: 25px;
}

.happy-hour-content i {
    font-size: 64px;
    color: var(--secondary-color);
}

.happy-hour-content h3 {
    font-size: 32px;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.happy-hour-content p {
    font-size: 18px;
    color: #333;
    margin: 0;
    font-weight: 600;
}

.drink-category-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 30px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--text-light);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(139, 0, 0, 0.3);
}

.category-price {
    font-size: 28px;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.2);
    padding: 10px 25px;
    border-radius: 30px;
    backdrop-filter: blur(10px);
}

.drink-item {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    height: 100%;
    border-left: 4px solid transparent;
}

.drink-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-left-color: var(--primary-color);
}

.drink-header h3 {
    font-size: 22px;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.drink-description {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

.spirit-item, .beer-item {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    text-align: center;
}

.spirit-item:hover, .beer-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.spirit-item h4, .beer-item h4 {
    font-size: 20px;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.spirit-price, .beer-price {
    font-size: 22px;
    color: var(--primary-color);
    font-weight: 700;
}

.wine-item {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    height: 100%;
    border-top: 4px solid var(--primary-color);
}

.wine-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.wine-item h4 {
    font-size: 24px;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.wine-details {
    font-size: 14px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 10px;
}

.wine-description {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
    font-style: italic;
}

/* ==========================================
   RESPONSIVE FOR MENU PAGES
========================================== */
@media (max-width: 768px) {
    .page-title {
        font-size: 42px;
    }
    
    .menu-navigation {
        flex-direction: column;
        width: 100%;
    }
    
    .menu-nav-btn {
        width: 100%;
        margin-bottom: 10px;
    }
    
    .menu-nav-btn:last-child {
        margin-bottom: 0;
    }
    
    .happy-hour-content {
        flex-direction: column;
        text-align: center;
    }
    
    .menu-category-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}





/* ==========================================
   ABOUT US PAGE STYLES
========================================== */
.about-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5)), 
                url('./../images/aacb7ecc69cb7ab41ea31a5a04880f6e.jpg') center/cover no-repeat;
}

/* Story Section */
.story-section {
    background: #fff;
}

.story-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.story-image-wrapper img {
    transition: var(--transition);
}

.story-image-wrapper:hover img {
    transform: scale(1.05);
}

.story-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-color);
    color: var(--text-light);
    padding: 15px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    box-shadow: 0 5px 20px rgba(139, 0, 0, 0.4);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.story-badge i {
    font-size: 20px;
}

.story-content {
    padding: 20px;
}

.story-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

.story-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: var(--bg-light);
    border-radius: 10px;
    transition: var(--transition);
}

.feature-item:hover {
    background: var(--primary-color);
    color: var(--text-light);
    transform: translateX(10px);
}

.feature-item i {
    font-size: 24px;
    color: var(--primary-color);
}

.feature-item:hover i {
    color: var(--text-light);
}

.feature-item span {
    font-weight: 600;
    font-size: 16px;
}

/* Team Section */
.team-section {
    background: var(--bg-light);
}

.team-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    height: 100%;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.team-image {
    position: relative;
    overflow: hidden;
    height: 350px;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(139, 0, 0, 0.9), rgba(196, 30, 58, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.team-card:hover .team-overlay {
    opacity: 1;
}

.team-social {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 50px;
    height: 50px;
    background: var(--text-light);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
    font-size: 20px;
}

.social-icon:hover {
    background: var(--primary-color);
    color: var(--text-light);
    transform: translateY(-5px);
}

.team-info {
    padding: 30px;
}

.team-info h3 {
    font-size: 28px;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.team-role {
    font-size: 16px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.team-info > p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.team-highlight {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--text-light);
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
}

.team-highlight i {
    color: #FFD700;
}

/* Offer Section */
.offer-section {
    background: #fff;
}

.offer-card {
    background: var(--bg-light);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
    border-top: 4px solid transparent;
}

.offer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-top-color: var(--primary-color);
    background: #fff;
}

.offer-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 32px;
    transition: var(--transition);
}

.offer-card:hover .offer-icon {
    transform: rotateY(360deg);
}

.offer-card h3 {
    font-size: 24px;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.offer-card p {
    color: #666;
    line-height: 1.8;
    margin: 0;
}

/* Location Section */
.location-section {
    background: var(--bg-light);
}

.location-info-card {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.location-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 2px solid var(--bg-light);
}

.location-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.location-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(139, 0, 0, 0.3);
}

.location-item h


/* ==========================================
   CONTACT US PAGE STYLES
========================================== */
.contact-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5)), 
                url('./../images/5a5ba3427574c546ea6e0273a4513719.png') center/cover no-repeat;
}

/* Reservation Notice */
.reservation-notice {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    background: linear-gradient(135deg, #FFA500, #FF8C00);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(255, 165, 0, 0.4);
    animation: pulse-notice 3s ease-in-out infinite;
}

@keyframes pulse-notice {
    0%, 100% {
        box-shadow: 0 5px 25px rgba(255, 165, 0, 0.4);
    }
    50% {
        box-shadow: 0 8px 35px rgba(255, 165, 0, 0.6);
    }
}

.notice-icon {
    width: 60px;
    height: 60px;
    background: var(--text-light);
    color: #FF8C00;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    flex-shrink: 0;
}

.notice-content h4 {
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-size: 22px;
}

.notice-content p {
    color: var(--secondary-color);
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
}

.notice-content a {
    color: var(--primary-color);
    font-weight: 700;
    text-decoration: underline;
}

.notice-content a:hover {
    color: var(--secondary-color);
}

/* Contact Form */
.contact-form-wrapper {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.form-header {
    margin-bottom: 30px;
}

.form-header h2 {
    font-size: 32px;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.form-header p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 10px;
    display: block;
}

.required {
    color: var(--primary-color);
}

.input-icon {
    position: relative;
}

.input-icon i {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
    font-size: 18px;
}

.input-icon textarea + i {
    top: 20px;
    transform: none;
}

.form-control {
    padding: 15px 20px 15px 50px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 15px;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(139, 0, 0, 0.15);
    outline: none;
}

textarea.form-control {
    resize: vertical;
    min-height: 150px;
}

.form-disclaimer {
    background: var(--bg-light);
    padding: 15px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    color: #666;
}

.btn-submit {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--text-light);
    padding: 15px 40px;
    border-radius: 30px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    transition: var(--transition);
    width: 100%;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(139, 0, 0, 0.4);
}

/* Contact Info Sidebar */
.contact-info-sidebar {
    background: linear-gradient(135deg, var(--bg-dark), #2a2a2a);
    padding: 40px;
    border-radius: 20px;
    color: var(--text-light);
    height: 100%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.contact-info-sidebar h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--text-light);
}

.contact-info-sidebar > p {
    color: #ccc;
    margin-bottom: 30px;
    line-height: 1.6;
}

.contact-info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 35px;
    padding-bottom: 35px;
    border-bottom: 2px solid #444;
}

.contact-info-item:last-of-type {
    border-bottom: none;
    margin-bottom: 30px;
    padding-bottom: 0;
}

.contact-info-item .info-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.info-details h4 {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 10px;
}

.info-details p {
    color: #ccc;
    margin-bottom: 5px;
    line-height: 1.6;
}

.info-details a {
    color: var(--text-light);
    font-weight: 600;
}

.info-details a:hover {
    color: var(--primary-color);
}

.info-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color) !important;
    font-weight: 600;
    font-size: 14px;
    margin-top: 5px;
    transition: var(--transition);
}

.info-link:hover {
    color: var(--accent-color) !important;
}

.small-note {
    font-size: 14px;
    color: #999;
    font-style: italic;
}

.hours-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hours-list li {
    padding: 8px 0;
    color: #ccc;
    border-bottom: 1px solid #444;
}

.hours-list li:last-child {
    border-bottom: none;
}

/* Social Connect */
.social-connect {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid #444;
}

.social-connect h4 {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.social-icons-large {
    display: flex;
    gap: 15px;
}

.social-icon-lg {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: var(--transition);
}

.social-icon-lg:hover {
    background: var(--primary-color);
    color: var(--text-light);
    transform: translateY(-5px);
}

/* Map Section */
.map-section {
    background: var(--bg-light);
    padding: 0;
}

.map-container-full {
    position: relative;
    width: 100%;
    height: 500px;
}

.google-map-full {
    width: 100%;
    height: 100%;
    display: block;
}

.map-info-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 10;
}

.map-info-card {
    background: var(--text-light);
    padding: 25px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    max-width: 350px;
}

.map-info-card h4 {
    font-size: 22px;
    color: var(--secondary-color);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.map-info-card h4 i {
    color: var(--primary-color);
}

.map-info-card p {
    color: #666;
    margin-bottom: 15px;
    font-size: 15px;
}

.btn-map {
    background: var(--primary-color);
    color: var(--text-light);
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    border: none;
    transition: var(--transition);
    display: inline-block;
    text-decoration: none;
}

.btn-map:hover {
    background: var(--accent-color);
    color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(139, 0, 0, 0.3);
}

/* Quick Actions Section */
.quick-actions-section {
    background: #fff;
}

.action-card {
    background: var(--bg-light);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
    border-top: 4px solid transparent;
}

.action-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-top-color: var(--primary-color);
    background: #fff;
}

.action-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 32px;
    transition: var(--transition);
}

.action-card:hover .action-icon {
    transform: rotateY(360deg);
}

.action-card h3 {
    font-size: 22px;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.action-card p {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

.btn-action {
    background: var(--primary-color);
    color: var(--text-light);
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    border: 2px solid var(--primary-color);
    transition: var(--transition);
    display: inline-block;
}

.btn-action:hover {
    background: transparent;
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* Alert Messages */
.alert {
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
}

.alert i {
    font-size: 20px;
}

/* Responsive */
@media (max-width: 991px) {
    .contact-form-wrapper {
        padding: 30px;
        margin-bottom: 30px;
    }
    
    .contact-info-sidebar {
        padding: 30px;
    }
    
    .map-info-overlay {
        position: static;
        padding: 20px;
        background: var(--bg-light);
    }
    
    .map-info-card {
        max-width: 100%;
        box-shadow: none;
    }
}

@media (max-width: 768px) {
    .reservation-notice {
        flex-direction: column;
        text-align: center;
    }
    
    .notice-icon {
        margin: 0 auto;
    }
    
    .contact-form-wrapper {
        padding: 25px;
    }
    
    .social-icons-large {
        justify-content: center;
    }
    
    .map-container-full {
        height: 400px;
    }
}

@media (max-width: 576px) {
    .form-header h2 {
        font-size: 26px;
    }
    
    .action-card {
        padding: 30px 20px;
    }
}



