/* Hero Section Container */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background-color: #0d1b11; /* Deep Forest Green */
}

/* Subtle Golden Glow Background */
.gradient-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Subtle Gold radial gradient */
    background: radial-gradient(circle at center, rgba(193, 161, 98, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

/* Elegant Gold Cursor */
#custom-cursor {
    position: fixed;
    width: 25px;
    height: 25px;
    border: 1px solid #c1a162; /* Gold Border */
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease-out, opacity 0.3s ease;
}

#custom-cursor.visible {
    opacity: 1;
}

/* Reveal Text Styles */
.text-line {
    overflow: hidden;
    margin: 5px 0;
}

.reveal {
    font-family: 'Unbounded', sans-serif;
    font-size: clamp(2.5rem, 8vw, 6rem);
    color: #f4f1ea; /* Soft Off-White */
    text-transform: uppercase;
    line-height: 1.1;
    margin: 0;
    transform: translateY(110%);
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    transform: translateY(0%);
}

/* Luxury Gold Stroke for the second line */
.reveal.outline {
    color: transparent;
    -webkit-text-stroke: 1px #c1a162; 
}

.sub-text {
    font-family: 'Poppins', sans-serif;
    color: #c1a162; /* Gold */
    text-transform: uppercase;
    letter-spacing: 6px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 15px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 1s ease;
}

.sub-text.active {
    opacity: 1;
    transform: translateY(0);
}





.horizontal-scroll-container {
    position: relative;
    margin-left: 290%;
    height: 1000vh;
    background-color: #0d1b11;
}

.sticky-wrapper {
    position: sticky;
    top: 0;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.horizontal-content {
    display: flex;
    padding-left: 10vw;
    will-change: transform;
}

.horizontal-item {
    position: relative;
    width: 80vw;
    height: 70vh;
    margin-left: 15vw;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.horizontal-item:last-child {
    margin-right: 5vw;
}

.horizontal-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
    border: 1px solid rgba(193, 161, 98, 0.3); /* Subtle gold border */
}

.item-info {
    position: relative;
    padding: 40px;
    z-index: 2;
    color: #f4f1ea;
}

.item-info span {
    font-family: 'Unbounded';
    color: #c1a162;
    font-size: 1.2rem;
}

.item-info h2 {
    font-family: 'Unbounded';
    font-size: clamp(2rem, 5vw, 4rem);
    margin: 10px 0;
    text-transform: uppercase;
}

.item-info p {
    font-family: 'Poppins';
    max-width: 400px;
    opacity: 0.8;
}

@media (max-width: 769px) {
    .horizontal-scroll-container {
        display: none;
    }
}

@media (max-width: 480px) {
    .text-line h1 {
        font-size: 2rem;
    }
}