/* Reset */
* { margin: 0; padding: 0; box-sizing: border-box; font-family: Arial, sans-serif; }

body {
    color: #fff;
    text-align: center;
    background: #000;
    overflow-x: hidden;
}

/* Background Image (Fixed and Cover) */
.background-img {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 40vh;
    object-fit: cover;
    z-index: -1;
    filter: brightness(70%);
}

/* Profile Logo */
.profile-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 5px solid yellow;
    margin-top: 20vh;
    box-shadow: 0 0 20px yellow;
}

/* Info */
.info h1 {
    margin-top: 20px;
    font-size: 2em;
}
.info h2 {
    font-size: 1.3em;
    color: #f0c93d;
}

/* Buttons */
.buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin: 30px auto;
    width: 90%;
    max-width: 400px;
}

.btn {
    background: rgba(0, 0, 0, 0.7);
    color: yellow;
    border: 2px solid yellow;
    padding: 12px 0;
    font-size: 1.1em;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

/* Call and Text colors */
.btn.call { border: 2px solid #00ff00; color: #00ff00; }
.btn.text { border: 2px solid #ff0000; color: #ff0000; }

.btn:hover {
    background: yellow;
    color: #000;
    transform: scale(1.05);
}

/* Footer */
footer {
    margin-top: 50px;
    padding-bottom: 30px;
    color: #aaa;
    font-size: 0.9em;
}
