/* ============================================================
   claimpixie links page – static stylesheet
   Ported from Elementor/hello-elementor WordPress build
   ============================================================ */

/* ---- CSS Custom Properties (from post-160 kit) ---- */
:root {
    --color-primary:    #FA0368;
    --color-secondary:  #223645;
    --color-text:       #696A87;
    --color-accent:     #FA0368;
    --color-hover:      #AB094B;
    --color-white:      #FFFFFF;
    --color-pink-btn:   #D478B5;
    --color-subtitle:   #7F7F7F;

    --font-poppins: "Poppins", Sans-serif;
    --font-mulish:  "Mulish", Sans-serif;

    --btn-radius: 25px;
    --btn-padding: 16px 31px;
    --btn-font-size: 15px;
    --btn-font-weight: 500;
    --btn-line-height: 1.2em;
}

/* ---- Reset / Base ---- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: transparent;
    background-image: linear-gradient(180deg, #F9A3F9 0%, #FFFFFF 100%);
    background-attachment: fixed;
    background-size: cover;
    font-family: var(--font-mulish);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5em;
    color: var(--color-text);
    min-height: 100vh;
    padding: 0;
}

p {
    margin-bottom: 15px;
}

a {
    color: var(--color-primary);
    text-decoration: none;
}

a:hover {
    color: var(--color-hover);
}

ul {
    padding-left: 1.5em;
}

li {
    margin-bottom: 0.5em;
}

/* ---- Layout helpers ---- */
.section-inner {
    max-width: 664px;
    margin: 0 auto;
    padding: 0 16px;
}

/* ============================================================
   LOGO SECTION
   ============================================================ */
.section-logo {
    background-color: rgba(255, 255, 255, 0.23);
    padding: 12px 0;
    text-align: center;
}

.logo-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-img {
    width: 11%;
    max-width: 130px;
    height: auto;
    display: block;
}

/* ============================================================
   PROFILE PHOTO SECTION
   ============================================================ */
.section-profile {
    display: flex;
    align-items: stretch;
    margin-top: -1px;
}

.profile-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 10px 0;
}

.profile-img-wrap {
    cursor: pointer;
}

.profile-img {
    max-width: 34%;
    width: 34%;
    height: auto;
    display: block;
    margin: 0 auto;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%   { transform: scale(1); }
    50%  { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* ============================================================
   NAME + SUBTITLE SECTION
   ============================================================ */
.section-name {
    display: flex;
    align-items: center;
    padding: 10px 0;
    cursor: default;
}

.name-wrap {
    text-align: center;
    width: 100%;
}

.profile-name {
    font-family: "Helvetica", Sans-serif;
    font-size: 42px;
    font-weight: 200;
    color: var(--color-secondary);
    line-height: 1.2em;
    margin-bottom: 4px;
}

.profile-subtitle {
    font-family: var(--font-mulish);
    font-size: 15px;
    color: var(--color-subtitle);
    text-align: center;
    margin-top: -10px;
    margin-bottom: 0;
}

/* ============================================================
   CONTACT ICONS ROW
   ============================================================ */
.section-icons {
    padding: 8px 0;
}

.section-icons .section-inner {
    max-width: 500px;
}

.icons-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: nowrap;
    padding: 0 60px;
}

.icon-cell {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.icon-link {
    font-size: 29px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: opacity 0.2s;
}

.icon-link:hover {
    opacity: 0.75;
}

.icon-secondary .icon-link,
.icon-secondary .icon-link i {
    color: var(--color-secondary);
    fill:  var(--color-secondary);
}

.icon-secondary a.icon-link {
    color: var(--color-secondary);
}

.icon-secondary a.icon-link:hover {
    color: var(--color-hover);
}

.icon-pink .icon-link,
.icon-pink .icon-link i {
    color: var(--color-pink-btn);
    fill:  var(--color-pink-btn);
}

.icon-pink a.icon-link {
    color: var(--color-pink-btn);
}

/* ============================================================
   BUTTONS + CONTENT SECTION
   ============================================================ */
.section-buttons {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 6px 0 40px;
}

.section-buttons .section-inner {
    max-width: 500px;
    width: 100%;
}

.buttons-wrap {
    display: flex;
    flex-direction: column;
    gap: 1px;
    width: 100%;
}

/* Main pink button */
.btn-row {
    margin: 6px;
}

.btn-pink {
    display: block;
    width: 100%;
    text-align: center;
    font-family: var(--font-poppins);
    font-size: var(--btn-font-size);
    font-weight: var(--btn-font-weight);
    line-height: var(--btn-line-height);
    color: var(--color-white);
    background-color: var(--color-pink-btn);
    border: 1px solid var(--color-primary);
    border-radius: var(--btn-radius);
    padding: var(--btn-padding);
    text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: background-color 0.2s, border-color 0.2s;
    text-decoration: none;
}

.btn-pink:hover,
.btn-pink:focus {
    background-color: var(--color-hover);
    border-color: var(--color-hover);
    color: var(--color-white);
}

/* Flag-style Pay Options button (pink gradient as fallback) */
.btn-flag {
    display: block;
    width: 100%;
    text-align: center;
    font-family: var(--font-poppins);
    font-size: var(--btn-font-size);
    font-weight: var(--btn-font-weight);
    line-height: var(--btn-line-height);
    color: var(--color-white);
    background-color: transparent;
    background-image:
        linear-gradient(90deg, rgba(212,120,181,0.8) 0%, rgba(212,120,181,0.9) 60%, rgba(255,255,255,0.9) 90%),
        url('images/american-flag.jpg');
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    border: 1px solid var(--color-primary);
    border-radius: var(--btn-radius);
    padding: 15px 30px;
    text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: background-color 0.2s;
    text-decoration: none;
}

.btn-flag:hover {
    background-color: var(--color-hover);
    color: var(--color-white);
}

/* ============================================================
   EXPANDABLE CONTENT (infob)
   ============================================================ */
.infob {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
}

.infob.show {
    max-height: 1200px;
}

.content-block {
    padding: 0 8px;
    font-family: var(--font-mulish);
    font-size: 14px;
    line-height: 1.6em;
    text-align: left;
}

/* ============================================================
   PAY OPTIONS ROW
   ============================================================ */
.section-pay {
    width: 100%;
}

.pay-inner {
    max-width: 664px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    gap: 0;
    margin-top: -2%;
    padding: 0 6%;
}

.pay-col {
    flex: 0 1 auto;
    display: flex;
    flex-direction: column;
    margin: 1px;
    padding: 1px;
}

.btn-small {
    font-size: 11px;
    padding: 12px 18px;
    width: auto;
    white-space: nowrap;
}

/* ============================================================
   SPACER
   ============================================================ */
.spacer {
    min-height: 50px;
}

/* ============================================================
   TIDYCAL SECTION
   ============================================================ */
.section-tidycal {
    padding: 20px 0;
}

/* ============================================================
   RESPONSIVE – Tablet (max 1024px)
   ============================================================ */
@media (max-width: 1024px) {
    .profile-img {
        max-width: 62%;
        width: 62%;
    }
}

/* ============================================================
   RESPONSIVE – Mobile (max 767px)
   ============================================================ */
@media (max-width: 767px) {
    .logo-img {
        width: 25%;
        max-width: 180px;
    }

    .section-profile {
        margin-top: -1px;
    }

    .profile-img {
        max-width: 90%;
        width: 90%;
    }

    .profile-name {
        font-size: 43px;
        letter-spacing: 2px;
    }

    .profile-subtitle {
        font-size: 15px;
        margin-top: -10px;
    }

    .icons-row {
        flex-wrap: nowrap;
        padding: 0 60px;
    }

    .icon-link {
        font-size: 20px;
    }

    .section-icons .section-inner {
        max-width: 500px;
    }

    .section-buttons .section-inner {
        max-width: 500px;
    }

    .section-buttons {
        padding: 6px 0 40px;
    }

    .buttons-wrap {
        gap: 10px;
    }

    .pay-inner {
        max-width: 500px;
        padding: 0 6%;
        margin-top: -14%;
    }

    .pay-col {
        margin: 1px;
        padding: 1px;
    }

    .btn-small {
        font-size: 11px;
        padding: 10px 12px;
    }

    .spacer {
        min-height: 55px;
    }
}
