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

body {
    font-family: 'Poppins', sans-serif;
    background-color: rgb(248, 255, 246);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

/* =========================
   CARD
   ========================= */
.card-wrapper {
    position: relative;
    width: 100%;
    max-width: 380px;
    background-color: silver;
    border-radius: 35px;
    border: 8px solid #000;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* =========================
   DECORATION
   ========================= */
.decoration {
    position: absolute;
    width: 80px;
    height: 80px;
    background-color: #474343;
}

.top-left {
    top: 0;
    left: 0;
    border-bottom-right-radius: 100%;
}

.top-right {
    top: 0;
    right: 0;
    border-bottom-left-radius: 100%;
}

.bottom-left {
    bottom: 0;
    left: 0;
    border-top-right-radius: 100%;
}

.bottom-right {
    bottom: 0;
    right: 0;
    border-top-left-radius: 100%;
}

/* =========================
   CONTENT
   ========================= */
.card-content {
    position: relative;
    z-index: 10;
    padding: 60px 30px 40px;
    text-align: center;
}

/* =========================
   HEADER
   ========================= */
.logo-circle {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 3px solid black;
    overflow: hidden;
    margin: 0 auto 20px;
}

.logo-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

h1 {
    font-size: 28px;
    font-weight: 600;
}

.subtitle {
    font-size: 16px;
    margin: 8px 0;
}

.slogan {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 30px;
}

/* =========================
   CONTAINERS
   ========================= */
.links-container,
.portfolio-section {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 25px;
}

/* =========================
   SECTION TITLE
   ========================= */
.section-title {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 6px;
    text-align: center;
}

/* =========================
   BUTTON SYSTEM (ONE SOURCE)
   ========================= */
.btn-link {
    display: flex;
    align-items: center;

    width: 100%;
    height: 56px;
    padding: 0 22px;

    background: #ffffff;
    color: #011F18;

    border-radius: 9999px;
    text-decoration: none;
    font-weight: 500;

    line-height: 1;
    box-sizing: border-box;

    -webkit-font-smoothing: antialiased;
    text-rendering: geometricPrecision;

    transition: background-color 0.25s ease, transform 0.15s ease;
}

/* ICON */
.icon-box {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;

    margin-right: 14px;
    font-size: 18px;
    line-height: 1;
}

/* TEXT */
.btn-link span {
    font-size: 16px;
    line-height: 1;
    white-space: nowrap;
}

/* HOVER (GLOBAL – ALL BUTTONS) */
.btn-link:hover {
    background-color: #474343;
    color: #ffffff;
    transform: translateY(-1px);
}

/* =========================
   SMALL BUTTON (PORTFOLIO / BACK)
   ========================= */
.btn-link.small {
    height: 46px;
    padding: 0 18px;
    font-size: 14px;
    background: rgba(255,255,255,0.9);
}

/* ENSURE SMALL BUTTON HOVER IS SAME */
.btn-link.small:hover {
    background-color: #474343;
    color: #ffffff;
}

/* =========================
   SHARE SECTION
   ========================= */
.share-section {
    margin-top: 30px;
    overflow: hidden;
}

.share-url {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.share-url input {
    flex: 1;
    padding: 10px;
    border-radius: 10px;
    border: none;
}

.share-url button {
    background: #000;
    color: #fff;
    border-radius: 10px;
    padding: 10px 14px;
    border: none;
    cursor: pointer;
}

.qr-text {
    font-size: 14px;
    margin: 10px 0;
}

.qr-img {
    width: 180px;
    border-radius: 20px;
    border: 4px solid #000;
    margin-bottom: 15px;
}

/* =========================
   WHATSAPP SHARE
   ========================= */
.wp-share {
    display: flex;
    gap: 8px;
    margin-top: 15px;
    width: 100%;
}

.wp-share span {
    background: #fff;
    padding: 10px 12px;
    border-radius: 10px;
    white-space: nowrap;
}

.wp-share input {
    flex: 1;
    min-width: 0;
    padding: 10px;
    border-radius: 10px;
    border: none;
}

.wp-share button {
    background: #25D366;
    color: #fff;
    border-radius: 10px;
    padding: 10px 14px;
    border: none;
    cursor: pointer;
    white-space: nowrap;
}

/* =========================
   FOOTER
   ========================= */
.footer {
    margin-top: 40px;
    font-size: 14px;
    opacity: 0.8;
}
