@import url('https://fonts.googleapis.com/css2?family=Inter&display=swap');

* {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* BODY */
body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #fff0e6;
    text-align: center;
}

/* CONTAINER (desktop) */
.container {
    background-color: #18181c;
    color: white;
    padding: 30px;
    border-radius: 14px;
    width: 100%;
    max-width: 400px;
}

/* LOGO */
img {
    width: 180px;
    margin: 0 auto 15px auto;
    display: block;
}

/* TEXT */
h1 {
    margin-top: 20px;
    font-weight: 400;
}

h4 {
    color: hsl(75, 94%, 57%);
    margin-top: 12px;
    font-weight: 400;
}

p {
    color: grey;
    margin-top: 0px;
    margin-bottom: 10px;
    color: #aa3758;
}

/* LINKS */
.sec-container {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

/* BUTTON */
.box {
    background-color: hsl(0, 0%, 20%);
    width: 100%;
    padding: 15px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    font-weight: bold;
    cursor: pointer;
    border-radius: 10px;

    color: #e9d8ca;
    text-decoration: none;
    transition: all 0.3s ease;
}

.box i {
    font-size: 18px;
}

/* HOVER */
.box:hover {
    transform: translateY(-5px);
    background-color: #aa3758;
    color: white;
}

/* 🔥 MOBILE – FULL WIDTH & HEIGHT */
@media (max-width: 600px) {

    body {
        background-color: #18181c;
        padding: 0;
    }

    .container {
        width: 100vw;
        height: 100vh;
        max-width: none;
        border-radius: 0;

        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    img {
        width: 180px;
    }
}

.contact-info {
    margin-top: 20px;
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: center;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.contact-item span,
.contact-item a {
    color: #e9d8ca;
    font-size: 14px;
    text-decoration: none;
}
.contact-item i {
    color: #e9d8ca;
    font-size: 14px;
}

.separator {
    background: #e9d8ca;
    font-size: 14px;
    width: 1px;
    height: 17px;
}

.contact-item:hover span,
.contact-item:hover a,
.contact-item:hover i {
    color: #aa3758;
    cursor:pointer;
}

.contact-item span,
.contact-item a,
.contact-item i {
    transition: color 0.2s ease;
}

