/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* BODY */
body {
    font-family: 'Montserrat', sans-serif;
}

/* HERO */
.hero {
    height: 100vh;
    background: url('337.jpg') center / cover no-repeat;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* OVERLAY */
.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        rgba(0,0,0,0.18),
        rgba(0,0,0,0.28)
    );
}

/* SHARED WIDTH */
.logo-center,
.contact-box {
    width: 420px;
    max-width: calc(100% - 40px);
}

/* LOGO BOX */
.logo-center {
    position: relative;
    z-index: 2;
    margin-bottom: 32px;
    background: #ffffff;
    padding: 26px;
    border-radius: 18px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.35);
    border: 1px solid rgba(0,0,0,0.05);
    display: flex;
    justify-content: center;
}

.logo-center img {
    width: 200px;
}

/* CONTACT BOX – SAME LAYOUT, WHITE */
.contact-box {
    position: relative;
    z-index: 2;
    background: #ffffff;
    border-radius: 18px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.30);
    border: 1px solid rgba(0,0,0,0.05);
}

/* CONTACT ITEM */
.contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 1.05rem;
    color: #184287;
    text-decoration: none;
    transition: all 0.35s ease;
}

/* ICON */
.contact-item i {
    font-size: 1.25rem;
    width: 22px;
    text-align: center;
    color: #b5841a;

    transition: all 0.35s ease;
}

/* HOVER */
.contact-item:hover {
    transform: translateX(6px);
}

.contact-item:hover i {
    color: #8e6713;
}

/* RESPONSIVE */
@media (max-width: 600px) {
    .logo-center,
    .contact-box {
        width: 100%;
    }

    .logo-center img {
        width: 140px;
    }

    .contact-box {
        padding: 20px;
        gap: 14px;
    }

    .contact-item {
        font-size: 0.98rem;
    }
}
