/* General styles */
body {
    font-family: 'Asap Condensed', sans-serif;
}

.header {
    padding: 20px 0;
    background: #000;
    color: #fff;
}

.header h1 {
    margin: 0;
    font-size: 2.5rem;
}

.social-icon {
    font-size: 2rem;
    margin: 0 10px;
    color: #fff;
}

.navbar {
    margin-bottom: 0;
}

.home-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1;
    background-size: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.home-content {
    position: relative;
    z-index: 2;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
}

.home-content .logo {
    width: 200px;
    opacity: 0.2;
}

.btn {
    font-size: 1rem;
    padding: 10px 20px;
    border-radius: 30px;
}

.table {
    margin-bottom: 0;
}

.footer {
    padding: 20px 0;
    background: #000;
}

.footer .brand {
    font-size: 1.5rem;
}

.footer .social-icon {
    font-size: 1.5rem;
    margin: 0 5px;
    color: #fff;
}
