:root {
    --primary-color: #0077b6;
    --secondary-color: #00b4d8;
    --dark-color: #03045e;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
}

/* Navbar */
.navbar {
    transition: all 0.4s ease;
    background-color: transparent;
    padding: 37.5px 0;
}

.navbar .nav-link {
    font-size: 1.5rem;
    color: #ffffff;
}

.navbar .navbar-brand {
    color: #ffffff;
}

.navbar.scrolled {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    padding: 20px 0;
}

.navbar.scrolled .nav-link,
.navbar.scrolled .navbar-brand {
    color: var(--primary-color);
}

/* Showcase / Hero */
#showcase {
    height: 100vh;
    background: url('./img/lake_wallpaper.jpg') no-repeat center center/cover;
    position: relative;
    margin-top: -76px; /* Pull behind navbar */
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

/* Buttons */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transition: transform 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--dark-color);
    transform: translateY(-3px);
}

/* Services */
.service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
}

.service-card .card-img-top {
    height: 250px;
    object-fit: cover;
}

.service-card .card-title {
    color: var(--primary-color);
    font-weight: bold;
    margin-top: 1rem;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 15px;
}

.service-card .card-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.divider {
    height: 4px;
    width: 60px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

/* Directions Section */
#directions {
    background-color: #2c3e50; /* Dark slate blue */
}

/* Gallery */
.gallery-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.gallery-img:hover {
    transform: scale(1.05);
    z-index: 2;
    position: relative;
}