
.hero {
  position: relative;
  min-height: 620px;
  width: 100%;
  overflow: hidden;
  color: white;
  background-color: #1a2c24; /* fallback dark green */
  margin: 0;
}

.background-overlay{
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    background-image: url('../img/d875wud875wud875.png');
    background-size: cover;
    background-repeat: no-repeat;
}

.background-overlay-gradient{
    position: absolute;
    z-index: 2;
    width: 100%;
    height: 100%;
    background-image: url('../img/d875wud875wud875.png');
    background-size: cover;
    background-repeat: no-repeat;
    background: #080000;
    background: linear-gradient(354deg, rgba(8, 0, 0, 0.86) 0%, rgba(3, 0, 0, 0.48) 37%, rgba(255, 255, 255, 0) 89%);
}

.content-container{
    height: 370px;
    width: 100%;
    position: relative;
    top:-2rem;
    margin-top: 0;
    z-index: 3;
    padding: 0;
    display: flex;
    
}

.see-full-video{
    width:30%;
    height: 370px;
}

.text-part{
    width:40%;
    height: 370px;
    text-align: center;
    background: #080000;
    background: radial-gradient(circle, rgba(8, 0, 0, 0.86) 0%, rgba(3, 0, 0, 0.74) 30%, rgba(255, 255, 255, 0) 82%);    
}

.slider-cursor{
    width:30%;
    height: 370px;
}

.text-part h1{
    text-align: center;
    font-family: "Cinzel", serif;
    font-optical-sizing: auto;
    font-style: normal;
    letter-spacing: .25rem;
    font-size: 3.7rem;
    text-transform: capitalize;
    margin-top: 0;
    position: relative;
    top:-4rem;
    text-shadow: 0 0 20px var(--black);
}

.text-part h1::before{
    content: '';
    width: 134px;
    height: 40px;
    display: block;
    position: relative;
    top:0rem;
    margin: auto;
    background-image: url('../img/bg/royal_lines_nn.png');
    background-size: cover;
}

.text-part h1::after{
    content: '';
    width: 134px;
    height: 11px;
    display: block;
    position: relative;
    top:0rem;
    margin: auto;
    background-image: url('../img/bg/another_line_n.png');
    background-size: cover;
}


.text-part h5{
    text-align: center;
    font-family: "Cinzel", serif;
    font-optical-sizing: auto;
    font-weight: bold;
    color: var(--gold-light);
    letter-spacing: .25rem;
    font-size: 1rem;
    text-transform: capitalize;
    position: relative;
    top:-4rem;
    text-shadow: 0 0 20px var(--gold-trans);
    
}

.text-part button{
    background: var(--gold-trans);
    backdrop-filter: blur(8px);
    border: 1px solid var(--white);
    padding: 0.65rem 2.3rem;
    font-weight: 500;
    font-size: 0.7rem;
    color: var(--white);
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: uppercase;
    box-shadow: 0 0 30px rgba(0, 0, 0,.7);
    margin: auto;
    position: relative;
    top:-2rem;
}


.text-part button:hover{
    background: var(--gold);
}

.scroll-indicator {
    position: relative;
    z-index: 5;
    top:2rem;
    margin-top: 2rem;
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #cbd5c0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    animation: bounceDown 2s infinite;
}

.scroll-indicator::after {
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    background-image: url('../img/icons/arrow_down.png');
    background-size: contain;
    background-repeat: no-repeat;
    margin-top: 0.2rem;
}

.see-full-video button{

    position: absolute; /* Takes the button out of normal document flow */
    bottom: 0;          /* Aligns to the bottom edge */
    left: 0;            /* Aligns to the left edge */
    
    /* Optional styling tweaks */
    background: transparent;
    border: none;
    cursor: pointer;
    
    /* Ensures icon and text align nicely */
    display: flex;
    align-items: center;
    gap: 8px;

    backdrop-filter: blur(8px);

    padding: 0.4rem 1.7rem;
    font-weight: 500;
    font-size: 0.7rem;
    color: var(--white);
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: uppercase;
    box-shadow: 0 0 30px rgba(0, 0, 0,.7);
    margin: auto;
}

.slider-cursor ul {
    padding: 0;
    margin: auto;
    text-align: right;
    padding-right: 2rem;
    list-style: none;
}

.slider-cursor ul li{
    margin: 0rem;
    transform: scale(0.2);
    position: relative;
    left: 8rem;
    top:5rem;
}

.slider-cursor ul li.active {
    transform: scale(0.5);
    left:4.6rem;
}

.slider-cursor ul li a{
    color: var(--white);
    background-color: var(--white);
    padding: .02rem .3rem;
    border-radius: 2rem;
    
}