/* Landing Page Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    overflow: hidden;
    height: 100vh;
}

.landing-container {
    position: relative;
    height: 100vh;
    background: url('../images/landing-bg.jpg') no-repeat center center;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

.landing-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}

.landing-content {
    position: relative;
    z-index: 1;
    padding: 0 20px;
    max-width: 800px;
}

.landing-content .logo img {
    max-width: 150px;
    margin-bottom: 20px;
}

.landing-content h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.landing-content h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 500;
}

.landing-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.enter-btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #2A93D5;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid #2A93D5;
}

.enter-btn:hover {
    background-color: transparent;
    color: white;
}

@media (max-width: 768px) {
    .landing-content h1 {
        font-size: 2rem;
    }
    
    .landing-content h2 {
        font-size: 1.4rem;
    }
    
    .landing-content p {
        font-size: 1rem;
    }
    
    .enter-btn {
        padding: 10px 25px;
        font-size: 1rem;
    }
}