/* Custom Dive Bar Styles */

body {
    font-family: 'Roboto', sans-serif;
    background-color: #0d0d0d;
}

.font-rock-salt {
    font-family: 'Rock Salt', cursive;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 60vh;
    background: url('../assets/hero-bg.jpg') center/cover no-repeat;
    background-color: #1a1a1a; /* Fallback */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 4rem;
    color: #ffffff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Feature Columns Section */
.features-section {
    position: relative;
    background: url('../assets/events-bg.jpg') center/cover no-repeat fixed;
    padding: 100px 0;
}

.features-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9); /* Darker for cleaner look */
    z-index: 1;
}

.features-container {
    position: relative;
    z-index: 2;
}

.feature-col {
    padding: 40px;
    border: 1px solid #444;
    transition: all 0.3s ease;
    background: rgba(0, 0, 0, 0.7);
}

.feature-col:hover {
    border-color: #fff;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

/* Menu Page */
.menu-section {
    background: #111;
    border-radius: 4px;
    padding: 30px;
    margin-bottom: 30px;
    border: 1px solid #333;
}

.menu-item-price {
    color: #fff;
    font-weight: bold;
}


