/*
 * Theme: uypirata
 * Adapted from site3 OldPirata SCSS for site1
 * Source: apps/site3-website/src/Website/Themes/OldPirata/
 */

/* ==========================================================================
   CSS Custom Properties (from SCSS _colors.scss + _variables.scss)
   ========================================================================== */
:root {
    --uy-color-main: #C82257;
    --uy-color-main-light: #FF3777;
    --uy-color-main-dark: #B40039;
    --uy-color-main-ultra-dark: #7a0028;
    --uy-color-bg: #1D0026;
    --uy-color-bg-gradient-top: #330043;
    --uy-color-panel-bg: rgba(223, 0, 90, 0.60);
    --uy-color-panel-border: rgb(249, 9, 136);
    --uy-color-font: white;
    --uy-color-subtitle-border: #F99109;
}

/* ==========================================================================
   Base / General (from _general.scss)
   ========================================================================== */
body {
    color: var(--uy-color-font);
    background-color: var(--uy-color-bg);
    background-image: url('lining-big.webp?v=20260215-1');
    background-attachment: fixed;
    margin: 0;
    padding: 0;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

::-moz-selection { color: white; background-color: var(--uy-color-main); }
::selection { color: white; background-color: var(--uy-color-main); }

a {
    color: #F99109;
}

a:hover {
    color: #ffb74d;
}

h1, h2, h3, h4, h5, h6 {
    color: white;
}

.container-main {
    margin-top: 20px;
}

/* Buttons: override Bootstrap blue with theme colors */
.btn-primary {
    background-color: var(--uy-color-main);
    border-color: var(--uy-color-main-dark);
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    background-color: var(--uy-color-main-dark);
    border-color: var(--uy-color-main-ultra-dark);
}

/* ==========================================================================
   Panel (from _panels.scss)
   ========================================================================== */
.profile-details-description-box {
    font-size: 1.8rem;
    line-height: 2.4rem;
    padding: 1rem;
    margin-bottom: 1rem;
    border: 0.4rem solid var(--uy-color-panel-border);
    background: var(--uy-color-panel-bg);
    border-radius: 0.2rem;
    box-shadow: 0 0.3rem 1rem rgba(255,255,255,0.2);
}

/* ==========================================================================
   Title (from _details.scss)
   ========================================================================== */
.profile-details-title {
    font-family: "Dancing Script", cursive;
    font-weight: bold;
    text-align: center;
    margin-top: 1.5rem;
    font-size: 8.4rem;
    line-height: 8.8rem;
    text-shadow: 0 0 0.2rem #A800FF, 0 0 1rem rgba(255,255,255,0.5);
    margin-bottom: 3.5rem;
}

/* ==========================================================================
   Phone Box (from _details.scss)
   ========================================================================== */
.profile-details-phone-box {
    width: 100%;
    text-align: center;
    position: relative;
}

.profile-details-phone-box-icon {
    padding: 1.0rem;
    font-size: 2.6rem;
    position: absolute;
    top: -0.3rem;
    z-index: 1;
    border-radius: 5rem;
    background: rgba(0,0,0,0.5);
    overflow: hidden;
}

.profile-details-phone-text {
    font-family: sans-serif;
    user-select: text;
    -moz-user-select: text;
    -webkit-user-select: text;
    color: white;
    font-variant: small-caps;
    font-size: 2.8rem;
    line-height: 4.25rem;
    font-weight: bold;
    padding: 0;
    width: 100%;
    z-index: 1;
    vertical-align: middle;
}

.profile-details-phone-button {
    width: 100%;
    font-size: 1.6rem;
    padding: 0.8rem 1.2rem;
}

.profile-details-phone-button:hover {
    background: rgba(0, 0, 0, 0.8) !important;
}

/* ==========================================================================
   Main Picture (from _details.scss)
   ========================================================================== */
.profile-details-main-picture-box {
    position: relative;
}

.profile-details-main-picture {
    width: 100%;
    border-radius: 0.2rem;
    transition: opacity 0.15s ease;
}

.profile-details-main-picture-link {
    display: block;
    cursor: pointer;
}

.profile-details-main-picture-link:hover .profile-details-main-picture {
    opacity: 0.85;
}

/* ==========================================================================
   Gallery (from _gallery.scss)
   ========================================================================== */
.profile-details-gallery {
    padding-top: 1rem;
}

.profile-details-gallery-title {
    margin-top: 0.3rem;
    font-variant: small-caps;
    text-align: center;
}

.profile-details-gallery-thumbnail-container {
    background: rgba(0, 0, 0, 0.5);
}

.profile-details-gallery-thumbnail-container::after {
    content: "";
    display: table;
    clear: both;
}

.profile-details-gallery-thumbnail-link {
    width: 100%;
    display: block;
    cursor: pointer;
}

.profile-details-gallery-thumbnail-box {
    width: 20%; /* 5 columns */
    float: left;
    cursor: pointer;
}

.profile-details-gallery-thumbnail-box:hover .profile-details-gallery-thumbnail {
    opacity: 0.7;
    transition: opacity 0.15s ease;
}

.profile-details-gallery-thumbnail {
    width: 100%;
    display: block;
    aspect-ratio: 1;
    object-fit: cover;
    transition: opacity 0.15s ease;
}

/* ==========================================================================
   Information / DL (from _details.scss)
   ========================================================================== */
.profile-details-information-row {
    margin-bottom: 1.5rem;
}

.profile-details-information-row::after {
    content: "";
    display: table;
    clear: both;
}

.profile-details-information-row:last-child {
    margin-bottom: 0;
}

.profile-details-description-box dl {
    margin: 0;
    width: 33.33%;
    float: left;
    padding-right: 1.5rem;
}

.profile-details-description-box dl:last-child {
    padding-right: 0;
}

.profile-details-description-box dt span {
    font-weight: bold;
    font-variant: small-caps;
    border-bottom: 0.2rem solid var(--uy-color-subtitle-border);
}

.profile-details-description-box dt span::after {
    content: " :";
    font-variant: small-caps;
}

.profile-details-description-box dd {
    margin-left: 0;
    margin-top: 0.3rem;
}

/* ==========================================================================
   Description (from _details.scss)
   ========================================================================== */
.profile-details-description {
    font-size: 1.8rem;
    line-height: 2.4rem;
    margin: 0;
}

/* ==========================================================================
   Label overrides (day badges, etc.)
   ========================================================================== */
.label-pumbate-phone {
    background: rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    font-size: 1.4rem;
    padding: 0.3rem 0.7rem;
    border-radius: 0.3rem;
    display: inline-block;
    margin: 0.15rem 0.1rem;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    margin-top: 3rem;
    padding: 2rem 0;
    border-top: 0.2rem solid rgba(255,255,255,0.1);
}

.footer-text {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.4rem;
}

/* ==========================================================================
   Responsive: Smartphones (from _details.scss)
   ========================================================================== */
@media (max-width: 767px) {

    body {
        background-attachment: scroll;
    }

    .profile-details-title {
        font-size: 5.4rem;
        line-height: 5.8rem;
    }

    .profile-details-gallery,
    .profile-details-description-box-phone {
        padding: 0.5rem 1.0rem;
    }

    .profile-details-phone-box {
        background-image: none;
    }

    .profile-details-information-row {
        margin-bottom: 0;
    }

    .profile-details-description-box dl {
        width: 100%;
        margin-bottom: 1.0rem;
        padding-right: 0;
    }
}
