/* ------------------------------ */
/* Global Reset & Basics          */
/* ------------------------------ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

body {
    background: #f5fdff;
    font-family: sans-serif;
    color: #333;
}

/* ------------------------------ */
/* Navbar                         */
/* ------------------------------ */
.nav-link {
    color: #008fb3 !important;
    font-weight: 500;
    transition: color 0.2s ease-in-out;
}
.nav-link:hover {
    color: #00bcd4 !important;
}

button, .btn, a {
    transition: all 0.2s ease-in-out;
}

/* ------------------------------ */
/* Hero Section                   */
/* ------------------------------ */
.hero {
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('../img/bg.jpg') center/cover no-repeat;
}

.hero-content {
    background: rgba(255, 255, 255, 0.75);
    padding: 40px 60px;
    border-radius: 20px;
    max-width: 600px;
}

/* ------------------------------ */
/* Sticky Footer (only index)     */
/* ------------------------------ */
.footer-sticky {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #f8f9fa;
    z-index: 999;
    overflow: hidden;
    pointer-events: none;
}

body.index-page {
    overflow: hidden;
    height: 100vh;
}

/* ------------------------------ */
/* Google Map                     */
/* ------------------------------ */
.map-embed {
    height: 240px;
    max-height: 240px;
    pointer-events: none;
}

.map-embed iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* ------------------------------ */
/* Main Wrapper                   */
/* ------------------------------ */
main {
    background: url('../img/srbg.jpg') center center / cover no-repeat fixed;
    width: 100%;
    padding-top: 90px; /* Sticky Header Offset */
    min-height: calc(100vh - 140px);
}

/* ------------------------------ */
/* Layout Utilities               */
/* ------------------------------ */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
}

.center-vertical {
    
}