:root {
    --primary-color: #c4a47c;
    --secondary-color: #000000;
    --text-color: #ffffff;
    --accent-color: #c4a47c;
    --bg-color: #000000;
    --font-heading: "Playfair Display", serif;
    --font-body: "Outfit", sans-serif;
    --transition-smooth: all .3s cubic-bezier(.4, 0, .2, 1);
    --border-gold: 1px solid rgba(196, 164, 124, .4)
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden
}

h1,
h2,
h3,
.logo {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 2px
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth)
}

.page-header {
    height: 50vh;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 80px
}

.header-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(90deg, #0d0d0de6, #0d0d0d66)
}

.header-content {
    position: relative;
    z-index: 1
}

.page-title {
    font-size: 5rem;
    color: var(--primary-color);
    margin-bottom: .5rem;
    text-shadow: 0 5px 15px rgba(0, 0, 0, .5)
}

.page-tagline {
    font-size: 1.5rem;
    color: var(--accent-color);
    letter-spacing: 3px;
    text-transform: uppercase
}

.values-section {
    padding: 8rem 0;
    background-color: #0d0d0d
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem
}

.value-card {
    padding: 3rem;
    background: #111;
    border: 1px solid rgba(176, 28, 28, .1);
    text-align: center;
    transition: var(--transition-smooth)
}

.value-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-10px);
    background: #161616
}

.value-title {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem
}

.value-card p {
    color: #ffffffb3
}

.main-nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: #000000f2;
    border-bottom: .5px solid rgba(196, 164, 124, .3)
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center
}

.nav-logo-img {
    height: 45px;
    width: auto
}

.footer-logo-img {
    height: 60px;
    width: auto;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px var(--primary-color))
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 3rem
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center
}

.nav-item {
    font-size: .75rem;
    letter-spacing: 2px;
    font-weight: 400;
    text-transform: uppercase;
    color: #fff
}

.btn-nav {
    padding: .6rem 1.5rem;
    border: 1px solid var(--primary-color)
}

.nav-socials {
    display: flex;
    gap: 1rem
}

.nav-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background-color: var(--primary-color);
    border-radius: 50%;
    color: #000;
    text-decoration: none;
    transition: var(--transition-smooth)
}

.nav-socials a:hover {
    background-color: #fff;
    transform: translateY(-2px)
}

.nav-socials .social-icon {
    width: 16px;
    height: 16px
}

.hero-home {
    padding-top: calc(80px + 6vh);
    min-height: 80vh;
    display: flex;
    align-items: center;
    background-color: #000
}

.hero-single-img {
    text-align: center;
    position: relative
}

.hero-main-visual {
    width: 100%;
    max-width: 1200px;
    height: auto;
    margin-bottom: 2rem;
    display: block;
    margin-left: auto;
    margin-right: auto
}

.hero-cta-center {
    margin-top: -1rem
}

.btn {
    display: inline-block;
    padding: 1rem 3rem;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: var(--transition-smooth);
    cursor: pointer;
    text-decoration: none
}

.btn-outline {
    border: 1px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    border-radius: 0
}

.btn-outline:hover {
    background: var(--primary-color);
    color: #000
}

.home-description {
    padding: 6rem 0;
    background-color: #000
}

.container-small {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center
}

.intro-sentence {
    font-size: 1.85rem;
    color: var(--primary-color);
    font-family: var(--font-heading);
    margin: 0 auto 4rem;
    max-width: 850px;
    line-height: 1.5;
    font-weight: 600;
    text-shadow: 0 0 15px rgba(196, 164, 124, 0.3)
}

.detailed-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #fffc;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto
}

.detailed-text p {
    margin-bottom: 2rem
}

.detailed-text strong {
    color: #fff;
    font-weight: 700
}

.home-stage-photo {
    padding: 4rem 0
}

.stage-img {
    width: 100%;
    height: auto;
    border: .5px solid rgba(196, 164, 124, .2)
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem
}

.text-center {
    text-align: center
}

.section-title {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
    position: relative;
    display: inline-block
}

.section-title:after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--accent-color)
}

.text-center .section-title:after {
    left: 50%;
    transform: translate(-50%)
}

.grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center
}

.info-section {
    padding: 8rem 0;
    background-color: var(--bg-color)
}

.lead {
    font-size: 1.4rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-weight: 300
}

.info-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: #fffc
}

.info-image img {
    width: 100%;
    height: auto;
    border: 1px solid rgba(176, 28, 28, .3);
    box-shadow: 0 20px 40px #00000080;
    transition: var(--transition-smooth)
}

.info-image:hover img {
    border-color: var(--primary-color);
    transform: scale(1.02)
}

.page-header {
    height: 60vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden
}

.header-bg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0
}

.header-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(0deg, #000, #0006, #000);
    z-index: 1
}

.header-content {
    position: relative;
    z-index: 2
}

.header-content h1 {
    font-size: 5rem;
    color: var(--primary-color);
    letter-spacing: 5px;
    text-transform: uppercase
}

.cast-header {
    padding: calc(80px + 6vh) 0 4vh;
    background-color: #000
}

.header-tagline {
    font-size: .9rem;
    letter-spacing: 4px;
    color: #ffffffb3;
    margin-bottom: .5rem
}

.cast-main-title {
    font-size: 4rem;
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin-bottom: 2rem;
    letter-spacing: 2px
}

.header-stage-img img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-bottom: 1px solid rgba(196, 164, 124, .2)
}

.cast-intro {
    padding: 4rem 0;
    background-color: #000
}

.cta-box {
    margin-bottom: 3rem
}

.cast-intro-text {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ffffffe6
}

.cast-intro-text strong {
    color: #fff
}

.cast-grid-section {
    padding: 4rem 0;
    background-color: #000
}

.section-subtitle {
    font-size: 1.8rem;
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin-bottom: 4rem;
    letter-spacing: 1px
}

.character-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem
}

.character-card {
    text-align: center;
    transition: var(--transition-smooth)
}

.character-card img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    margin-bottom: 1.5rem;
    filter: grayscale(.3);
    transition: var(--transition-smooth);
    border: .5px solid rgba(196, 164, 124, .1)
}

.character-card:hover img {
    filter: grayscale(0);
    transform: scale(1.02);
    border-color: var(--primary-color)
}

.char-name {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: .3rem;
    letter-spacing: 1px
}

.actor-name {
    font-size: .85rem;
    color: #c4a47c99;
    text-transform: uppercase;
    letter-spacing: 1px
}

.other-performers {
    padding: 6rem 0;
    background-color: #000;
    border-top: .5px solid rgba(196, 164, 124, .1)
}

.performers-list-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 800px;
    margin: 3rem auto 0;
    gap: 2rem
}

.performer-column p {
    margin-bottom: 1.5rem;
    font-size: .95rem;
    letter-spacing: 1px;
    color: #c4a47ccc;
    line-height: 1.4
}

.credits-column p strong {
    color: var(--primary-color);
    display: block;
    font-size: .75rem;
    margin-bottom: .3rem;
    opacity: .7
}

.cast-bottom-hero {
    padding: 8rem 0 0;
    background-color: #000
}

.hero-date {
    font-size: 2.5rem;
    font-family: var(--font-heading);
    letter-spacing: 5px;
    margin-bottom: 1rem
}

.hero-logo-text {
    font-size: 6rem;
    color: var(--primary-color);
    letter-spacing: 10px;
    text-shadow: 0 0 10px #fff, 0 0 20px var(--primary-color);
    margin-bottom: .5rem
}

.hero-tag {
    font-size: 1.5rem;
    letter-spacing: 8px;
    font-style: italic;
    margin-bottom: 2rem
}

.hero-location {
    font-size: 1.2rem;
    letter-spacing: 2px;
    margin-bottom: 4rem
}

.hero-bottom-img img {
    width: 100%;
    max-height: 600px;
    object-fit: cover
}

.main-footer {
    padding: 6rem 0 3rem;
    background-color: #000;
    border-top: 1px solid rgba(196, 164, 124, .1)
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 4rem;
    align-items: center
}

.footer-logo-img {
    height: 60px;
    filter: drop-shadow(0 0 10px rgba(196, 164, 124, .2))
}

.footer-socials {
    display: flex;
    justify-content: center;
    gap: 2.5rem
}

.footer-social-link {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    justify-content: center
}

.social-icon {
    width: 28px;
    height: 28px;
    fill: currentColor;
    transition: var(--transition-smooth)
}

.footer-social-link:hover {
    color: #fff;
    transform: translateY(-3px)
}

.footer-legal {
    text-align: right;
    font-size: .8rem;
    line-height: 1.8;
    color: #ffffff80
}

.theatrical-gallery {
    padding: 4rem 0;
    background-color: #000
}

.slider-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 2rem
}

.slider-main-img {
    flex: 1;
    aspect-ratio: 16/9;
    overflow: hidden;
    border: .5px solid rgba(196, 164, 124, .3);
    box-shadow: 0 0 30px #00000080
}

.slider-main-img img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.slider-arrow {
    background: none;
    border: none;
    color: var(--primary-color);
    font-size: 3rem;
    font-family: var(--font-body);
    cursor: pointer;
    transition: var(--transition-smooth);
    opacity: .6
}

.slider-arrow:hover {
    opacity: 1;
    transform: scale(1.2)
}

.story-section {
    padding: 6rem 0;
    background-color: #000
}

.story-section .cast-intro-text p {
    margin-bottom: 2rem;
    text-align: justify
}

@media(max-width:1024px) {
    .character-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width:768px) {
    .hero-main-title {
        font-size: 4rem
    }

    .hero-logo-text {
        font-size: 3.5rem
    }

    .cast-main-title {
        font-size: 3rem
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem
    }

    .footer-legal {
        text-align: center
    }

    .performers-list-grid {
        grid-template-columns: 1fr
    }
}

.main-nav.scrolled {
    border-bottom: none !important
}