/* General styles */
body {
    font-family: 'Amsterdam', sans-serif;
    margin: 0;
    padding: 0;
}

.bg-primary {
    background-color: #1f8ef7 !important;
}

.btn-light {
    background-color: #fff;
    color: #D913C7;
}

.btn-primary {
    background-color: #D913C7;
    border-color: #D913C7;
}

.btn-primary:hover {
    background-color: #b511a5;
    border-color: #b511a5;
}

/* Navbar styles */
.navbar-light {
    background-color: #fff;
}

.navbar-light .navbar-brand {
    color: #ffffff;
}

.navbar-light .navbar-nav .nav-link {
    color: #ffffff;
}

.navbar-light .navbar-nav .nav-link:hover {
    color: #928e92;
}

/* Header styles */
.header {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

#bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.content {
    position: relative;
    z-index: 2;
}

.logo {
    width: 500px;
    margin-bottom: 20px;
}

/* Footer styles */
.footer {
    background: #f8f9fa;
    padding: 30px 0;
}

.footer h5 {
    color: #000;
}

.footer p {
    color: #ffffff;
    margin: 0;
    line-height: 1.5;
}

.footer ul {
    padding-left: 0;
    list-style: none;
    margin: 0;
}

.footer ul li {
    display: inline-block;
    margin-right: 10px;
}

.footer ul li a {
    color: #6c757d;
    text-decoration: none;
}

.footer ul li a:hover {
    color: #D913C7;
}

/* Map styles */
#map {
    height: 200px;
    width: 100%;
}

/* Font-face definition */
@font-face {
    font-family: 'Amsterdam';
    src: url('font/Amsterdam.woff2') format('woff2'),
         url('font/Amsterdam.woff') format('woff'),
         url('font/Amsterdam.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
