/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: rgb(169, 160, 160);
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}


/* ---------------- HERO SECTION ---------------- */

.hero {
    width: 100%;
    height: 90vh;
    background-image: url('../images/bg1.jpg'); 
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(144, 140, 140, 0.15);
    backdrop-filter: blur(1px);
}

.logo {
    width: 60%;
    max-width: 800px;
    z-index: 4;
}

.hero-text {
    margin-top: 20px;
    font-size: 22px;
    color: white;
    z-index: 2;
    letter-spacing: 2px;
}


/* ---------------- INTRO SECTION ---------------- */

main {
    display: flex;
    justify-content: center;
    padding: 60px 0;
    color: white;
}

.intro {
    width: 80%;
    max-width: 1200px;
    display: flex;
    gap: 80px;
}

.text-box {
    width: 50%;
}

.text-box h3 {
    font-size: 36px;
    margin-bottom: 20px;
}

.text-box p {
    line-height: 1.6;
    margin-bottom: 18px;
    color: #d6d6d6;
}

.text-box button {
    background: white;
    color: black;
    border: none;
    padding: 12px 30px;
    border-radius: 4px;
    cursor: pointer;
    letter-spacing: 1px;
    font-weight: bold;
}

.text-box button:hover {
    background: #e0e0e0;
}


/* Right Image Placeholder */
.image-box {
    width: 50%;
    height: 380px;
    background: #999;
    border-radius: 0 0 80px 0;
}


/* ---------------- FOOTER ---------------- */

footer {
    width: 100%;
    text-align: center;
    padding: 20px 0;
    color: #777;
    border-top: 1px solid #444;
}
