/* src/css/index.css */
.hero-video-section {
    position: relative;
    width: 100%;
    height: 90vh;
    overflow: hidden;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    /* Added subtle overlay for text readability */
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-title {
    color: #fff;
    font-family: var(--font-head);
    font-size: clamp(2rem, 5vw, 4rem);
    letter-spacing: 5px;
    text-align: center;
    z-index: 5;
    text-transform: uppercase;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    font-weight: 500;
    max-width: 90%;
    margin: 0;
}

/* Grid Gallery */
.grid-row {
    display: grid;
    width: 100%;
    gap: 2px;
    margin-top: 2px;
}

.layout-full {
    grid-template-columns: 1fr;
}

/* Added Full Width Layout */
.layout-50-50 {
    grid-template-columns: 1fr 1fr;
}

.layout-60-40 {
    grid-template-columns: 1.5fr 1fr;
}

.layout-40-60 {
    grid-template-columns: 1fr 1.5fr;
}

.grid-panel {
    position: relative;
    overflow: hidden;
    height: 85vh;
    background: #f4f4f4;
    cursor: pointer;
}

.grid-panel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s ease;
}

.grid-panel:hover img {
    transform: scale(1.03);
}

.overlay-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 2;
    width: 100%;
    pointer-events: none;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.overlay-center h2 {
    font-family: var(--font-head);
    font-size: 3rem;
    font-weight: 400;
    margin-bottom: 15px;
    letter-spacing: 3px;
}

.overlay-btn {
    pointer-events: auto;
    display: inline-block;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    border-bottom: 2px solid #fff;
    padding-bottom: 4px;
    cursor: pointer;
    letter-spacing: 2px;
}

/* Story Section */
.story-section {
    position: relative;
    width: 100%;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
    background-image: url('/assets/storybg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.story-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
}

.story-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 40px;
    color: #000;
}

.story-content h2 {
    font-family: var(--font-head);
    font-size: 3.5rem;
    letter-spacing: 5px;
    margin-bottom: 20px;
    font-weight: 300;
}

.story-content h4 {
    font-family: var(--font-body);
    font-size: 1.2rem;
    margin-bottom: 30px;
    letter-spacing: 3px;
    font-weight: 600;
}

.story-content p {
    font-size: 16px;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .grid-row {
        grid-template-columns: 1fr;
    }

    .grid-panel {
        height: 60vh;
    }
}