/* ================================
   FONTS
================================ */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Jost:wght@300;400;500&display=swap');

/* ================================
   HEADER
================================ */
#header {
    background-color: rgba(20, 20, 20, 0.92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: none;
    cursor: default;
    font-weight: 500;
    height: 3.5em;
    left: 0;
    letter-spacing: 0.2em;
    line-height: 3.5em;
    margin: 0;
    position: fixed;
    text-transform: uppercase;
    top: 0;
    width: 100%;
    z-index: 10000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    font-family: 'Jost', sans-serif;
}

#header.reveal {
    animation: 0.35s ease 0s normal none 1 running reveal-header;
}

@keyframes reveal-header {
    0% {
        top: -4em;
        opacity: 0;
    }

    100% {
        top: 0;
        opacity: 1;
    }
}

#header.alt {
    background-color: transparent;
    box-shadow: none;
    border-bottom: none;
    position: absolute;
    transition: opacity 2.5s ease 0.75s;
}

#header .logo {
    margin-right: auto;
    font-size: 0.72rem;
    height: inherit;
    line-height: inherit;
    padding: 0 1rem;
    display: inline-block;
    font-family: 'Jost', sans-serif;
    letter-spacing: 0.25em;
}

#header .logo strong {
    background-color: #ffffff;
    color: #141414;
    display: inline-block;
    line-height: 1.65em;
    padding: 0 0.2em 0 0.4em;
    transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
}

#header nav {
    display: flex;
    flex-grow: 1;
    height: inherit;
    justify-content: flex-end;
    line-height: inherit;
}

.navbar ul li a {
    letter-spacing: 0.12rem;
    font-size: 0.75rem;
    color: #aaaaaa;
    font-family: 'Jost', sans-serif;
    transition: color 0.2s ease;
}

.navbar ul li a:hover,
.navbar ul li.active a {
    color: #ffffff;
}

.navbar-toggler span {
    color: #ffffff;
    font-size: 1.35rem;
}

#header .navbar-toggler {
    font-size: 1.35rem;
    vertical-align: middle;
}

/* ================================
   BANNER
================================ */
#banner {
    position: relative;
}

#banner::after {
    background: linear-gradient(to bottom, rgba(20, 20, 20, 0.6) 0%, rgba(20, 20, 20, 0.3) 50%, rgba(20, 20, 20, 0.7) 100%);
    content: "";
    display: block;
    height: 100%;
    left: 0;
    pointer-events: none;
    position: absolute;
    width: 100%;
    top: 0;
}

#banner>.inner {
    position: relative;
    transition: opacity 1.5s ease, transform 0.5s ease-out, filter 0.5s ease;
    z-index: 2;
}

#banner h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    font-weight: 300;
    letter-spacing: 0.02em;
    line-height: 1.1;
}

.banner-area {
    align-items: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-bottom: 0 none !important;
    cursor: default;
    display: flex;
    padding: 6em 0 4em;
    min-height: 30vh;
    position: relative;
}

.banner-area::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
    pointer-events: none;
}

.banner-area .container {
    position: relative;
    z-index: 2;
}

.banner-header h1,
.content p {
    color: #ffffff;
}

.content p {
    padding-left: 0.5em;
    font-family: 'Jost', sans-serif;
    font-weight: 300;
    font-size: 1rem;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.8);
}

.actions {
    padding-left: 0;
}

/* ================================
   BUTTONS
================================ */
input[type="submit"],
input[type="reset"],
.button {
    -moz-appearance: none;
    background-color: transparent;
    border: none;
    border-radius: 0;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.6) inset;
    color: #ffffff;
    cursor: pointer;
    display: inline-block;
    font-family: 'Jost', sans-serif;
    font-size: 0.7rem;
    font-weight: 400;
    height: 3.5em;
    letter-spacing: 0.3em;
    line-height: 3.5em;
    padding: 0 2.5rem;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    transition: background-color 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
    white-space: nowrap;
}

.button:hover,
input[type="submit"]:hover {
    background-color: #ffffff;
    color: #202020;
    box-shadow: 0 0 0 1px #ffffff inset;
}

/* ================================
   BODY / PAGE
================================ */
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: #141414;
    font-family: 'Jost', sans-serif;
}

/* ================================
   GALLERY (home page)
================================ */
.gallery-section {
    display: flex;
    justify-content: center;
    align-items: stretch;
    background-color: #141414;
    padding: 0;
}

.gallery-wrapper {
    display: flex;
    width: 100%;
    max-width: 1400px;
    gap: 2px;
}

.gallery-col {
    margin: 5vh;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.gallery-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        filter 0.7s ease;
}

.gallery-col:hover img {
    transform: scale(1.04);
    filter: brightness(0.55) saturate(0.8);
}

.gallery-col::before {
    background: linear-gradient(to top, rgba(10, 10, 10, 0.85) 0%, rgba(10, 10, 10, 0.1) 60%, transparent 100%);
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1;
    transition: opacity 0.4s ease;
}

.gallery-col:hover::before {
    opacity: 1;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.92) 0%, rgba(10, 10, 10, 0.3) 60%, transparent 100%);
}

.gallery-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2.5rem 2rem;
    z-index: 2;
    background: none;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.gallery-content>h3 {
    color: #fff;
    text-align: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    margin-bottom: 0.4rem;
    opacity: 0.9;
    transform: translateY(6px);
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.gallery-content>p {
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Jost', sans-serif;
    font-size: 0.8rem;
    font-weight: 300;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin: 0;
    opacity: 0;
    transform: translateY(10px);
    transition: transform 0.4s ease 0.05s, opacity 0.4s ease 0.05s;
}

.gallery-col:hover .gallery-content>h3 {
    opacity: 1;
    transform: translateY(0);
}

.gallery-col:hover .gallery-content>p {
    opacity: 1;
    transform: translateY(0);
}

/* Divider line between gallery items */
.gallery-divider {
    width: 2px;
    background: rgba(255, 255, 255, 0.04);
    flex-shrink: 0;
}

/* ================================
   CONTACT / ABOUT
================================ */
.tv-position-relative {
    position: relative;
}

.tv-bg-dark {
    background-color: #141414 !important;
}

.tv-padd-tb-80 {
    padding: 50px 15px;
}

.tv-section-title h2 {
    color: #ffffff;
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 300;
    letter-spacing: 0.08em;
    line-height: 1.2;
    margin-bottom: 2.5rem;
    text-align: left;
}

/* Decorative line under About heading */
.tv-section-title h2::after {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
    margin-top: 1rem;
}

.profile-text {
    color: rgba(238, 238, 238, 0.85);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 300;
    line-height: 1.85;
    letter-spacing: 0.01em;
    margin-bottom: 2rem;
}

.tv-contact-line {
    color: rgba(238, 238, 238, 0.6);
    font-family: 'Jost', sans-serif;
    font-size: 0.85rem;
    font-weight: 300;
    letter-spacing: 0.08em;
}

#email {
    color: rgba(12, 204, 47, 0.6);
    display: inline-block;
    transition: transform 0.4s ease;
}

#email:hover {
    transform: scale(1.2);
}

.profile-info {
    list-style-type: none;
    padding-inline-start: 0;
    margin-bottom: 2rem;
}

.profile-info li {
    margin-bottom: 0.5rem;
}

.profile-info li a {
    color: rgba(255, 255, 255, 0.5);
    font-family: 'Jost', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 0.06em;
    text-decoration: none;
    transition: color 0.2s ease;
}

.profile-info li a:hover {
    color: rgba(255, 255, 255, 0.9);
}

.profile-info li a i,
.tv-contact-line i {
    margin-left: 6px;
    font-size: 0.8rem;
    opacity: 0.5;
}

.profile-pic {
    position: relative;
    margin: 0;
    width: 120px;
    height: 120px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

.profile-pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}


/* ================================
   CONTACT FORM
================================ */
.contact-form {
    margin-top: 5vh;
}

.contact-form .form-control {
    background: rgba(255, 255, 255, 0.05);
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 0;
    height: 48px;
    padding: 10px 4px;
    color: rgba(255, 255, 255, 0.85);
    font-family: 'Jost', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.contact-form .form-control:focus {
    background: rgba(255, 255, 255, 0.08);
    border-bottom-color: rgba(255, 255, 255, 0.5);
    outline: none;
    box-shadow: none;
    color: #fff;
}

.contact-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 0.08em;
    font-size: 0.8rem;
}

.contact-form textarea.form-control {
    height: 120px;
    resize: none;
    padding-top: 14px;
}

.form-submit {
    margin-top: 1.5rem;
}

.contact-form h2 {
    color: rgba(255, 255, 255, 0.75);
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: 1.8rem;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

/* ================================
   ALERT
================================ */
.alert {
    padding: 14px 18px;
    margin-bottom: 16px;
    border-radius: 0;
    font-family: 'Jost', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 0.04em;
    border: none;
    border-left: 3px solid;
}

.alert-success {
    background-color: rgba(34, 197, 94, 0.08);
    color: #86efac;
    border-left-color: #22c55e;
}

.alert-danger {
    background-color: rgba(239, 68, 68, 0.08);
    color: #fca5a5;
    border-left-color: #ef4444;
}

/* ================================
   FOOTER
================================ */
footer {
    flex-shrink: 0;
    background-color: #0e0e0e;
    padding-bottom: 15px;
    color: rgba(255, 255, 255, 0.4);
    text-align: left;
    width: 100%;
    box-sizing: border-box;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.tv-footer-bg {
    background-color: #141414 !important;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.tv-footer-bottom {
    background: #0e0e0e;
}

.tv-footer-top {
    padding: 60px 0 40px;
}

.tv-footer-bottom .copyright {
    color: rgba(255, 255, 255, 0.25);
    font-family: 'Jost', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 0.2rem;
    font-weight: 400;
    padding: 18px 0;
    text-align: center;
    text-transform: uppercase;
}

.tv-footer-title {
    color: rgba(255, 255, 255, 0.6);
    font-family: 'Jost', sans-serif;
    font-size: 0.7rem;
    font-weight: 500;
    line-height: 24px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.tv-social-follow label {
    color: rgba(255, 255, 255, 0.4);
    display: block;
    font-weight: 400;
    margin-bottom: 12px;
    text-transform: uppercase;
    font-family: 'Jost', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
}

ul.link-follow {
    list-style-type: none;
    padding-left: 0;
    display: flex;
    margin: 0;
    gap: 10px;
}

ul.link-follow li a {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.4);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    height: 38px;
    width: 38px;
    text-decoration: none;
    transition: all 0.25s ease;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

ul.link-follow li a:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.2);
}

.tv-footer-content .des a {
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
    font-family: 'Jost', sans-serif;
}

/* ================================
   RESPONSIVE
================================ */
@media (max-width: 900px) {
    .gallery-wrapper {
        flex-direction: column;
        gap: 2px;
    }

    .gallery-col {
        min-height: 220px;
        flex: none;
    }

    .gallery-content>h3 {
        opacity: 1;
        transform: none;
        font-size: 1.8rem;
    }

    .gallery-content>p {
        opacity: 1;
        transform: none;
    }

    #banner h1 {
        font-size: 2.4rem;
    }

    .tv-section-title h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 600px) {
    .tv-padd-tb-80 {
        padding: 60px 15px;
    }

    .gallery-col {
        min-height: 180px;
    }
}

.back-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-family: 'Jost', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 16px 24px;
    transition: color 0.2s ease;
    position: relative;
    z-index: 2;
}

.back-arrow:hover {
    color: rgba(255, 255, 255, 0.95);
}

.back-arrow i {
    font-size: 0.85rem;
    transition: transform 0.2s ease;
}

.back-arrow:hover i {
    transform: translateX(-3px);
}

@media (max-width: 768px) {
    .navbar-collapse {
        background-color: rgba(0, 0, 0, 0.97);
        padding: 12px 20px;
        margin-top: 8px;
        border-top: 1px solid rgba(255, 255, 255, 0.06);
    }

    .banner-header h1 {
        text-align: center;
    }

    .content p {
        text-align: center;
        padding-left: 0;
    }

    .actions {
        display: flex;
        justify-content: center;
        list-style: none;
        padding: 0;
    }

    .actions li {
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
        justify-content: center;
    }
}

.navbar-toggler:focus,
.navbar-toggler:active {
    outline: none;
    box-shadow: none;
    -webkit-tap-highlight-color: transparent;
}

@media (max-width: 900px) {
    .generic-media-row {
        grid-template-columns: 1fr 1fr;
    }

    .generic-profile-card {
        grid-column: span 2;
        width: 160px;
        margin: 0 auto;
    }
}

@media (max-width: 600px) {
    .generic-media-row {
        grid-template-columns: 1fr;
    }

    .generic-profile-card {
        grid-column: span 1;
        width: 100%;
    }
}