/* ==========================================
   Buttercup Meadows – Premium Clean Edition
========================================== */

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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background:
        linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)),
        url("images/bg.jpg") no-repeat center center fixed;
    background-size: cover;
    color: #ffffff;
    text-align: center;
    padding: 20px;
}

h1 {
    margin: 30px 0;
    font-weight: 500;
    font-size: 2.6rem;
    letter-spacing: 1px;
}

/* ==========================================
   Layout
========================================== */

.container {
    max-width: 1100px;
    margin: auto;
    display: flex;
    gap: 60px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

/* ==========================================
   Profile Card
========================================== */

.profile {
    width: 320px;
    background: rgba(0,0,0,0.18);
    backdrop-filter: blur(6px);
    border-radius: 24px;
    padding: 22px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.25);
    transition: transform 0.3s ease;
    transform: translateY(10px);
}

.profile:hover {
    transform: translateY(6px);
}

.profile img {
    width: 100%;
    border-radius: 18px;
}

.profile h2 {
    margin-top: 8px;
    font-size: 1.35rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #ffffff;
}

.profile p {
    margin-top: 4px;
    font-size: 1.0rem;
    color: #ffffff;
    opacity: 0.7;
}
/* ==========================================
   Services Panel
========================================== */

.services {
    flex: 1;
    min-width: 320px;
    padding: 0px 0;
    text-align: left;
    margin-left: 0;           /* shift left */
}

/* ==========================================
   Service Block
========================================== */

.service {
    display: flex;
    align-items: center;
    justify-content: space-between;   /* pushes status to right edge */
    width: 100%;
    max-width: 460px;
    padding: 14px 0;
}


/* Clickable (icon + text only) */

.service-link {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: #ffffff;
    font-weight: 600;
    font-size: 1.35rem;
}


/* Icon */

.service-link img {
    width: 85px;
    height: 85px;
    object-fit: contain;
    flex-shrink: 0;
    opacity: 1;
}


/* ==========================================
   Status Badge (Perfectly Aligned)
========================================== */

.status {
    font-size: 0.75rem;
    padding: 5px 12px;
    border-radius: 16px;
    font-weight: 500;
    letter-spacing: 0.3px;

    background: rgba(180,160,140,0.85);
    backdrop-filter: blur(6px);

    white-space: nowrap;     /* prevents wrap */
    pointer-events: none;
}


.status.online {
    background: rgba(46,204,113,0.9);
}

/* ==========================================
   Footer
========================================== */

footer {
    margin-top: 40px;
    font-size: 0.85rem;
    opacity: 0.75;
    letter-spacing: 0.5px;
}

/* ==========================================
   Responsive
========================================== */

@media (max-width: 900px) {
    .container {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .profile {
        width: 100%;
        max-width: 380px;
        transform: none;
    }

    .services {
        width: 100%;
        max-width: 480px;
    }
}

@media (max-width: 900px) and (orientation: landscape) {
    .container {
        flex-direction: row;
        align-items: center;
        gap: 40px;
    }

    .profile {
        width: 40%;
        max-width: 360px;
        transform: none;
    }

    .services {
        width: 60%;
    }
}