* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), 
                url("https://i.pinimg.com/736x/33/0c/30/330c305bcb959a4517041e43edae0c31.jpg") no-repeat center center/cover;
    min-height: 100vh;
    color: white;
    display: flex;
    flex-direction: column;
}

header {
    width: 100%;
    padding: 20px 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
}

.logo span {
    color: #d46b38;
}

nav {
    display: flex;
    align-items: center;
}

nav a {
    margin-left: 30px;
    font-size: 16px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    transition: .3s;
}

nav a:hover {
    color: #d46b38;
}

.login-header {
    background: #d46b38;
    padding: 8px 20px;
    font-weight: 600;
    color: white;
    border-radius: 5px;
    border: 2px solid #d46b38;
    text-decoration: none;
    transition: .3s;
    font-size: 14px;
    margin-left: 30px;
    cursor: pointer;
}

.login-header:hover {
    background: transparent;
    color: white;
}

.hero {
    flex: 1;
    padding: 120px 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero h1 {
    font-size: clamp(40px, 8vw, 75px);
    font-weight: 600;
    line-height: 1.1;
}

.hero p {
    font-size: 20px;
    margin-top: 20px;
    max-width: 650px;
    color: rgba(255, 255, 255, 0.9);
}

.login-btn {
    background: #d46b38;
    padding: 12px 30px;
    font-weight: 600;
    color: white;
    border-radius: 6px;
    border: 2px solid #d46b38;
    text-decoration: none;
    transition: .3s;
    display: inline-block;
    margin-top: 30px;
    width: fit-content;
    cursor: pointer;
}

.login-btn:hover {
    background: transparent;
    transform: translateY(-3px);
}

footer {
    width: 100%;
    margin-top: auto;
    padding: 30px 0;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

footer p {
    font-size: 14px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 1px;
}

footer strong {
    color: #d46b38;
    font-weight: 600;
}

@media (max-width: 992px) {
    header {
        padding: 20px 40px;
    }
    
    .hero {
        padding: 80px 40px;
    }
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
        text-align: center;
    }

    nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    nav a, .login-header {
        margin-left: 10px;
        margin-right: 10px;
        font-size: 14px;
    }

    .hero {
        padding: 60px 20px;
        text-align: center;
        align-items: center;
    }

    .hero p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 26px;
    }

    nav a {
        font-size: 13px;
        margin-left: 5px;
        margin-right: 5px;
    }

    .login-header {
        margin-left: 0;
        margin-top: 10px;
        width: 100%;
        text-align: center;
    }

    .hero h1 {
        font-size: 36px;
    }
}