
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    margin-bottom: 0;
    background-color: #141414;
}

/* Media layer */
.hero-media {
    position: absolute;
    inset: 0;
    overflow: hidden;
    background-color: #141414;
}

.hero-video {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-video iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 140%;
    height: 140%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    opacity: 0.55;
    pointer-events: none;
    border: none;
}

/* Gradient overlays */
.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.hero-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.85) 45%,
        rgba(0, 0, 0, 0.6) 65%,
        rgba(0, 0, 0, 0.4) 100%
    );
}

.hero-gradient::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 220px;
    background: linear-gradient(
        to top,
        #141414 0%,
        transparent 100%
    );
}

/* Content */
.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: flex-end; /* Bottom alignment */
    padding: 0 4%;
    padding-bottom: 120px;
}

.hero-info {
    max-width: 900px;
    animation: fadeInUp 0.8s cubic-bezier(0.25, 0.1, 0.25, 1) forwards;
}

.hero-title {
    /* Further reduced font size for tighter hero layout */
    font-size: clamp(1.8rem, 4.2vw, 3.6rem);
    font-weight: 900;
    line-height: 0.7; 
    letter-spacing: 5px; /* Reduced to 5px as requested */
    margin-bottom: 20px;
    text-shadow: 2px 3px 8px rgba(0, 0, 0, 0.9);
    color: #fff;
    text-transform: uppercase;
}

.hero-description {
    font-size: 1.15rem;
    line-height: 1.85; /* slightly increased more for readability */
    color: #dedede;
    margin-bottom: 30px;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.9);
    width: 100%;
    max-width: 600px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Buttons */
.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 32px;
    font-size: 1.3rem;
    font-weight: 700;
    border-radius: 4px;
    transition: all 0.2s;
    box-shadow: 0 1px 2px rgba(0,0,0,0.2);
    border: none;
    cursor: pointer;
}

.hero-btn:hover {
    transform: none;
    opacity: 0.85;
}

.hero-btn-play {
    background-color: #fff;
    color: #000;
}

.hero-btn-info {
    background-color: rgba(109, 109, 110, 0.7);
    color: #fff;
    backdrop-filter: blur(10px);
}

.hero-btn i {
    font-size: 1.5rem;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
