/* Custom Styles */

body {
    font-family: 'Kumbh Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Kumbh Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 600;
}

p, span, a, label, button {
    font-family: 'Kumbh Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 400;
}

.btn {
    font-family: 'Kumbh Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 600;
}

/* Header */
.landing-header {
    background: white;
    height: 100px;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1000;
}

.landing-logo {
    height: calc(100px / 3);
    object-fit: contain;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #31BEEF 0%, #269CE3 100%);
    z-index: 1;
}

.glider-image {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 40vh;
    width: auto;
    z-index: 2;
    opacity: 0.9;
}

.small-gliders {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 2;
    opacity: 0.7;
}

.hero-content {
    position: relative;
    z-index: 3;
    padding: 80px 20px;
    width: 100%;
}

.hero-content .col-lg-8 {
    margin-left: 33.333%;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 300;
    line-height: 1.3;
    margin-bottom: 0;
    text-align: left;
}

.hero-title em {
    font-style: italic;
    font-weight: 400;
}

.hero-title strong {
    font-weight: 700;
    font-style: normal;
}

.btn-cta {
    background-color: #0F4FD1;
    color: white;
    font-weight: 600;
    padding: 15px 40px;
    font-size: 1.1rem;
    border: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    background-color: #0d45ba;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(15, 79, 209, 0.3);
}

.dlr-info {
    margin-top: 100px;
}

.dlr-logo {
    width: 60px;
    height: auto;
}

.dlr-info p {
    color: white;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Footer */
.landing-footer {
    background: #0E4FD1;
    height: 100px;
    display: flex;
    align-items: center;
    position: relative;
}

.footer-buttons-inner {
    margin-left: calc(50% + 20px);
}

.btn-footer-login {
    background-color: white;
    color: #0F4FD1;
    font-weight: 700;
    padding: 12px 40px;
    font-size: 1rem;
    border: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-footer-login:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

.btn-footer-register {
    background-color: transparent;
    color: white;
    font-weight: 700;
    padding: 12px 40px;
    font-size: 1rem;
    border: 2px solid white;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-footer-register:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    color: white;
}

.footer-dlr-logo {
    height: 50px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content .col-lg-8 {
        margin-left: 0;
    }

    .footer-buttons {
        margin-left: 0;
    }

    .hero-title {
        font-size: 2.5rem;
        text-align: center;
    }

    .glider-image {
        height: 15vh;
    }

    .small-gliders {
        width: 250px;
        top: 50px;
    }

    .dlr-info .d-flex {
        flex-direction: column;
        align-items: center !important;
    }

    .dlr-info p {
        text-align: center !important;
        margin-top: 20px;
    }

    .landing-footer .d-flex {
        flex-direction: column;
    }

    .landing-footer .ms-auto {
        margin-left: 0 !important;
        margin-top: 20px;
    }
}
