/* === VIDEO BACKGROUND === */
.video-background {
    position: relative;
    width: 100%;
    height: 100vh; /* Full viewport height */
    overflow: hidden;
}

.video-background video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: auto;
    height: 100%;
    min-width: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 0;
}

/* === OVERLAY === */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgb(250, 208, 196), rgba(255, 247, 243, 0.5));
    z-index: 1;
}

/* === BANNER CONTENT - NEAR TOP === */
.banner-content {
    position: absolute;
    top: 10%; /* Closer to top of banner */
    left: 50%;
    transform: translateX(-50%); /* Horizontal centering only */
    text-align: center;
    z-index: 2;
    width: 90%;
    max-width: 1000px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    box-sizing: border-box;
}

/* === LOGO === */
.responsive-img {
    max-height: 40vh; /* Logo bigger but responsive */
    width: auto;
    height: auto;
    margin-bottom: 1rem;
}

/* === HEADING === */
.banner-content h1 {
    font-family: "Playfair Display SC", serif;
    font-weight: 500;
    font-size: clamp(3rem, 5vw, 5rem); /* Responsive font */
    color: rgb(77, 82, 83);
    margin: 0.2rem 0;
}

/* === PARAGRAPH === */
.banner-content p.lead {
    font-family: "Playfair Display SC", serif;
    font-weight: 300;
    font-size: clamp(2rem, 3vw, 2rem); /* Responsive font */
    color: rgb(81, 87, 95);
    margin: 0;
}

/* === READ MORE BUTTON === */
.btn-readmore {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    font-family: "Playfair Display SC", serif;
    font-size: 1rem;
    font-weight: 400;
    color: rgba(32, 32, 32, 0.8);
    background-color: rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(32, 32, 32, 0.3);
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

/* === BUTTON HOVER EFFECT === */
.btn-readmore:hover {
    background-color: rgba(255, 255, 255, 0.6);
    color: rgb(32, 32, 32);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px) scale(1.05);
}

/* === RESPONSIVE ADJUSTMENTS === */
@media (max-width: 992px) {
    .responsive-img {
        max-height: 35vh;
    }
    .banner-content h1 {
        font-size: clamp(2rem, 6vw, 3.5rem);
    }
    .banner-content p.lead {
        font-size: clamp(0.9rem, 4vw, 1.5rem);
    }
    .btn-readmore {
        padding: 0.4rem 1.2rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .responsive-img {
        max-height: 25vh;
    }
    .banner-content h1 {
        font-size: clamp(1.5rem, 7vw, 2.5rem);
    }
    .banner-content p.lead {
        font-size: clamp(0.8rem, 4vw, 1.2rem);
    }
    .btn-readmore {
        padding: 0.3rem 1rem;
        font-size: 0.8rem;
    }
}

