/* RESET */
html, body {
    margin: 0;
    padding: 0;
}

/* GLOBAL */
body {
    background: #e6fbff;
    color: #000000;
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    letter-spacing: 2px;
}

/* PROFILE */
.profile-picture {
    display: block;
    margin: 3% auto 0 auto;
    max-width: 100px;
    height: auto;
}

.profile-name {
    text-align: center;
    padding: 10px;
}

/* LINKS */
.links {
    text-align: center;
    margin: 15px auto 0 auto;
    padding: 15px;
    border: 1px solid #1e92a8;
    border-radius: 40px;
    width: auto;
    display: block;
}

a {
    text-decoration: none;
    color: black;
    transition: 0.2s;
}

a:hover {
    color: #fff;
    background: #1e92a8;
}

/* BOTTOM TEXT */
.bottom-text {
    text-align: center;
    margin-top: 40px;
    font-size: 20px;
    font-weight: bold;
}

/* FLOATING BUTTONS (WHATSAPP & CALL) */
.call, .whatsapp {
    position: fixed;
    font-size: 30px;
    width: 55px;
    height: 55px;
    right: 10px;
    color: #FFF;
    border-radius: 50%;
    text-align: center;
    box-shadow: 2px 2px 3px #999;
    z-index: 9999;
}

.call {
    bottom: 10px;
    background-color: #0088CC;
}

.whatsapp {
    bottom: 85px;
    background-color: #4FCE5D;
}

.my-float {
    margin-top: 12px;
}

/* PULSE ANIMATION (Call & WhatsApp) */
.call:before, .call:after,
.whatsapp:before, .whatsapp:after {
    content: '';
    position: absolute;
    left: 0; right: 0; top: 0; bottom: 0;
    border-radius: 50%;
    animation: pulse 2s linear infinite;
}

.call:before, .call:after {
    border: 12px solid #0088CC;
}

.whatsapp:before, .whatsapp:after {
    border: 12px solid #4FCE5D;
}

.call:after, .whatsapp:after {
    animation-delay: 1s;
}

/* ANIMATION */
@keyframes pulse {
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* FULL SCREEN IFRAME */
iframe {
    width: 100vw;
    height: 100vh;
    border: none;
    display: block;
    padding: 0;
    margin: 0;
}

/* POPUP IFRAME – MAINTAIN ASPECT RATIO */
.popup-frame {
    width: 90vw;              /* responsive width */
    max-width: 500px;         /* optional: limit size */
    aspect-ratio: 9 / 16;     /* keep the same shape (change ratio if needed) */
    border: none;
    display: block;
    margin: 0 auto;
    border-radius: 12px;      /* optional */
    overflow: hidden;
}

