* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Cairo', sans-serif;
}

html, body {
    height: 100%;
}

.hero {
    height: 100vh;
    width: 100%;
    background: url("assets/hero.jpg") center center / cover no-repeat;
    position: relative;
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    padding: 60px;
    text-align: right;
}

.overlay h1 {
    color: #ffffff;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
}

.overlay p {
    color: #d6c9a3;
    font-size: 22px;
    margin-bottom: 30px;
}

.btn {
    text-decoration: none;
    background: #d6c9a3;
    color: #000;
    padding: 14px 36px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.btn:hover {
    background: #ffffff;
    transform: translateY(-2px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .overlay {
        align-items: center;
        text-align: center;
        padding: 30px;
    }

    .overlay h1 {
        font-size: 32px;
    }

    .overlay p {
        font-size: 18px;
    }
}
