/* Colors */
:root {
    --gold-gradient: linear-gradient(0deg, #00000000 0%, #604a01 18%, #BF953F 25%, #FCF6BA 28%, #B38728 46%, #795d01 68%, #000000CC 100%);
    --gold-gradient-full: linear-gradient(90deg, #000000 0%, #554400 4%, #bf923b 9%, #eae2ae 14%, #b78727 71%, #7a5901 91%, #000000 100%);
    --gold-gradient-full-vert: linear-gradient(0deg, rgba(255, 166, 0, 1) 0%, rgba(135, 63, 0, 1) 5%, rgba(105, 40, 2, 1) 9%, rgba(191, 125, 0, 1) 39%, rgba(98, 66, 4, 1) 90%, rgba(255, 239, 198, 1) 100%);
    --gold-radial: radial-gradient(circle, #fcdb90 0%, #ebc610 14%, #6a4104 82%, #111010 100%);
}

a,
a:visited,
a:hover,
a:focus {
    color: #996515;
    text-shadow: -1px -1px 0px #ffffff, 2px 2px 3px #000000;
    text-decoration: none;
}

a:hover,
a:focus {
    color: goldenrod;
}

.gold-text {
    color: #996515;
    text-shadow: -1px -1px 0px #ffffff, 2px 2px 3px #000000;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "EB Garamond", serif;
    font-weight: normal;
    font-style: normal;
    color: #996515;
    text-shadow: -1px -1px 0px #ffffff, 2px 2px 3px #000000;
    margin-top: 0;
    text-align: center;
}

h1 {
    font-size: clamp(2.2rem, 4vw + 1rem, 3.5rem);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 1rem;
}

h2 {
    font-size: clamp(1.7rem, 3vw + 0.5rem, 2.5rem);
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 0.8rem;
}

h3 {
    font-size: clamp(1.3rem, 2vw + 0.5rem, 1.8rem);
    font-weight: 400;
    line-height: 1.18;
    margin-bottom: 0.7rem;
}

h4 {
    font-size: 1.15rem;
    font-weight: 400;
    line-height: 1.22;
    margin-bottom: 0.6rem;
}

h5 {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.25;
    margin-bottom: 0.5rem;
}

h6 {
    font-size: 0.9rem;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 0.4rem;
}

p {
    font-size: clamp(1.05rem, 1.5vw + 0.5rem, 1.25rem);
    line-height: normal;
    margin-bottom: 1.1rem;
}

em {
    font-style: italic;
}

.align-left {
    text-align: left;
}

.align-right {
    text-align: right;
}

.align-center {
    text-align: center;
}

html,
body {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: "EB Garamond", serif;
    font-optical-sizing: auto;
    font-weight: normal;
    font-style: normal;
}

body {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    width: 100%;
    background: #000;
    color: #fff;
    padding-top: 90px;
}

/* Skip link */
.skip-link {
    position: absolute;
    left: -999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden
}

.skip-link:focus {
    left: 8px;
    top: 8px;
    width: auto;
    height: auto;
    padding: 8px;
    background: #000;
    color: #fff;
    z-index: 9999
}

/* Header */
header {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    background: var(--gold-gradient);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem;
    z-index: 1000
}

.brand {
    font-weight: 500;
    letter-spacing: 0.2rem;
    font-size: clamp(1.5rem, 5vw, 3rem);
    gap: 1rem;
    text-align: center;
}

.brand a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #996515;
    text-shadow: -1px -1px 0px #ffffff, 2px 2px 3px #000000;
}

@media only screen and (max-width: 600px) {
    .brand {
        font-size: 1rem;
        gap: 0.3rem;
    }

    .brand img {
        height: 60px;
    }
}

.btn-gold {
    padding: 0.5rem;
    background: linear-gradient(0deg, rgba(255, 166, 0, 1) 0%, rgba(135, 63, 0, 1) 5%, rgba(105, 40, 2, 1) 9%, rgba(191, 125, 0, 1) 39%, rgba(98, 66, 4, 1) 90%, rgba(255, 239, 198, 1) 100%);
    border-left: 5px solid chocolate;
    border-top: 5px solid white;
    border-right: 5px solid darkgoldenrod;
    border-bottom: 5px solid saddlebrown;
    border-radius: 10px;
    box-shadow: 0px 0px 10px darkgoldenrod;
    transition: ease-in-out 0.2s;
    display: inline-block;
    margin: 0.5rem 0;
}

.btn-gold:hover {
    color: goldenrod;
    box-shadow: 0px 0px 30px darkgoldenrod;
    background: linear-gradient(180deg, rgba(255, 166, 0, 1) 0%, rgba(135, 63, 0, 1) 5%, rgba(105, 40, 2, 1) 9%, rgba(191, 125, 0, 1) 39%, rgba(98, 66, 4, 1) 90%, rgba(255, 239, 198, 1) 100%);
}

.container {
    flex: 1 0 auto;
    width: 100%;
    max-width: 1200px;
    margin: 1rem auto;
    padding: 1rem;
    box-sizing: border-box;
}

.container h1 {
    font-size: 2.5rem;
}

.container h2 {
    text-align: center;
    background: var(--gold-gradient-full-vert);
    width: 100%;
    border-radius: 50%;
    margin: 1rem 0;
    padding: 0.5rem;
}

.latest-works .container {
    max-width: 1200px;
    margin: 0 auto;
}

.latest-works h2 {
    font-size: 1.6rem;
}

.latest-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    grid-auto-rows: minmax(180px, auto);
}

.work-item {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-align: center;
}

.work-item img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
    border-radius: 50%;
    border: 2px soid goldenrod;
    box-shadow: 0 0 20px goldenrod;
    transition: ease-in-out 0.3s;
}

.work-item img:hover {
    box-shadow: 0 0 30px goldenrod;
    transform: scale(1.1);
}

.work-item h3 {
    font-size: 1.3rem;
    margin: 0.6rem;
}

.work-item .meta {
    margin: 0 0.6rem 0.8rem;
    color: #666;
    font-size: 1.1rem;
}

.gallery-row {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 20px;
}

.gallery-row img {
    flex: 1 1 auto;
    height: auto;
    max-height: 280px;
    object-fit: cover;
}

figcaption {
    text-align: center;
    margin-top: 8px;
    font-size: 1.2rem;
}

@media (max-width: 1024px) {
    .gallery-row {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .gallery-row img {
        max-width: 100%;
    }
}

/* page-specific layout (keeps responsive) */
.work-view {
    max-width: 980px;
    margin: 2.5rem auto;
    padding: 1rem;
}

.work-hero {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.work-left {
    flex: 0 0 auto;
    max-width: 560px;
    text-align: center;
}

.work-left img {
    width: 100%;
    height: auto;
    max-height: 65vh;
    object-fit: contain;
    display: block;
}

.work-right {
    flex: 1 1 auto;
    min-width: 220px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.work-right h1 {
    margin: 0 0 0.5rem 0;
    font-size: 2rem;
    text-align: left;
}

.work-meta-block {
    font-size: 1.2rem;
}

.available::before, .not-available::before {
    content: "";
    display: inline-block;
    width: 1.5rem;
    height: 1.5rem;
    margin-right: 1rem;
    border-radius: 50%;
    vertical-align: middle;
    background: green;
}
.not-available::before {
    background: red;
}

.author {
    color: goldenrod;
}

.comment-author {
    font-style: italic;
    text-align: left;
    color: goldenrod;
}

.pager {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    width: 100%;
    align-items: center;
    text-align: center;
}

.pager img.thumb {
    width: 90px;
    height: auto;
    object-fit: cover;
    border: 2px solid goldenrod;
    box-shadow: 0 0 20px goldenrod;
    vertical-align: middle;
    margin: 1rem 0;
    transition: ease-in-out 0.3s;
}

.pager img.thumb:hover {
    box-shadow: 0 0 30px goldenrod;
    transform: scale(1.1);
}

p.back-to-all {
    text-align: center;
    margin-top: 1.5rem;
    width: 100%;
}

.team-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.member {
    text-align: center;
    width: 30%;
    min-width: 30%;
}

.member img {
    width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid goldenrod;
    box-shadow: 0 0 20px goldenrod;
    transition: ease-in-out 0.3s;
}

.member p {
    text-align: left;
}

.member p em {
    text-align: center;
}

.music {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    padding: 2rem 0;
    border-bottom: 2px solid goldenrod;
}

.music-thumb,
.music-desc {
    width: 45%;
    position: relative;
    text-align: center;
}

.music-thumb img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

img.play-btn {
    width: 80px;
    height: 80px;
    transition: ease-in-out 0.3s;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.rev {
    flex-direction: row-reverse;
}

.glightbox-clean .gslide-description {
    background: #000000 !important;
    text-align: center !important;
    font-size: 1.2rem !important;
    color: goldenrod !important;
}

.card {
    float: left;
    max-width: 50%;
    margin: 1rem 2rem 1rem 0;
    text-align: center;
    box-shadow: 0px 0px 10px darkgoldenrod;
}

.card img {
    width: 100%;
    height: auto;
    max-height: 65vh;
    object-fit: cover;
}

.container::after {
    content: "";
    display: table;
    clear: both;
}

.conversation {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1rem;
}

.conversation-thumb {
    width: 100px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 0 10px goldenrod;
}

.subheading {
    font-size: 2rem;
    font-weight: 400;
}

.lia-text {
    color: #f6bcf6;
    margin: 1rem 0;
}
.lia-text-gold {
    color: goldenrod;
    margin: 1rem 0;
}

.mila-text {
    color: #ffccd5;
    padding: 0.5rem 0 0.5rem 40px;
}

.lia-text::before, .lia-text-gold::before,
.mila-text::before {
    content: "";
    float: left;
    width: 50px;
    height: 35px;
    margin-right: 1rem;
    background-image: url('../../assets/images/about/lia-avatar.png');
    background-size: cover;
    background-position: center;
    border-radius: 50%;
    vertical-align: middle;
    box-shadow: 0 0 10px goldenrod;
}

.mila-text::before {
    background-image: url('../../assets/images/about/mila-avatar.png');
}

.avatar {
    width: 80px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1rem;
    float: left;
    box-shadow: 0 0 10px goldenrod;
}

.contacts {
    text-align: center;
    margin-top: 2rem;
}

.contacts h2,
.contacts h4 {
    font-size: 2rem;
}

.contacts img {
    max-width: 100%;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.5rem 1rem;
}

.main-nav a {
    margin-right: 0.6rem;
    color: inherit;
    text-decoration: none;
}

.lang-selector .lang-link {
    margin-left: 0.4rem;
    font-size: 0.85rem;
    text-decoration: none;
    color: inherit;
}
#search-form {    
    text-align: center;
}
#search-form input[type="search"] {
    width: 60%;
    max-width: 400px;
    padding: 0.5rem;
    font-size: 1rem;
    border: 2px solid goldenrod;
    border-radius: 5px;
    box-shadow: 0 0 10px goldenrod;
    margin-right: 0.5rem;
}
#search-form input[type="search"]:focus {
    box-shadow: 0 0 20px goldenrod;
    outline: none;
}
#search-form button {
    padding: 0.5rem 1rem;
    font-size: 1rem;
    border: none;
    border-radius: 5px;
    background: goldenrod;
    color: #000;
    cursor: pointer;
    box-shadow: 0 0 10px goldenrod;
    transition: ease-in-out 0.2s;
}
#search-form button:hover {
    background: lightgoldenrodyellow;
    box-shadow: 0 0 20px goldenrod;
}
#search-results img.thumb {
    box-shadow: 0 0 10px goldenrod;
    transition: ease-in-out 0.2s;
}
#search-results img.thumb:hover {
    box-shadow: 0 0 20px goldenrod;
    transform: scale(1.05);
}

@media (max-width:860px) {
    .work-view {
        margin: 0 auto;
    }

    .work-hero {
        flex-direction: column;
    }

    .work-left {
        max-width: 100%;
    }

    .work-right {
        width: 100%;
    }

    .work-right h1, .work-meta-block {
        text-align: center;
    }

    .team-grid {
        flex-direction: column;
    }

    .member {
        width: 100%;
        min-width: 100%;
    }

    .music {
        flex-direction: column;
    }

    .music-thumb,
    .music-desc {
        width: 100%;
    }

    .card {
        width: 100%;
        min-width: 100%;
        float: none;
    }

    .card img {
        max-height: none;
        width: 100%;
    }

    .container h2 {
        font-size: 1.2rem;
    }
}

footer {
    background: var(--gold-gradient);
    color: #996515;
    text-shadow: -1px -1px 0px #ffffff, 2px 2px 3px #000000;
    text-align: center;
    padding: 40px;
    width: 100%;
    position: relative;
    bottom: 0;
}

footer a,
footer a:visited,
footer a:hover,
footer a:focus {
    color: #996515;
    text-shadow: -1px -1px 0px #ffffff, 2px 2px 3px #000000;
}