/* Reset + basic setup */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Poppins", sans-serif;
    background-color: black;
    color: white;
    height: 100vh;
    overflow: hidden;
}

/* Hero section */
.hero {
    height: 100vh;
    background: url("bg.png") no-repeat center center/cover;
    position: relative;
}

/* Dark overlay to make text pop */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* Text styling */
h1 {
    color: #FFD700; /* gold */
    font-size: 2.5rem;
    line-height: 1.4;
    max-width: 90%;
}

@media (min-width: 768px) {
    h1 {
        font-size: 4rem;
    }
}
