/* Reset & General Styles */
* {
    padding: 0;
    margin: 0;
    font-family: 'Alexandria', sans-serif;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    width: 100%;
    min-height: 100vh;
    background-color: #051510;
    color: #e9ffec;
    position: relative;
}

/* Background Video Styling  */
.video-container {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    overflow: hidden;
    z-index: -999 !important; */
   
}

.bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.65); 
}

/* Header Styling  */
.head {
    position: relative;
    z-index: 2;
    padding: 20px;
    display: flex;
    flex-direction: column; 
    align-items: center;    
    justify-content: center;
    gap: 15px;              
    color: #ffffff;
    margin-top: 10px;
}

.head nav ul {
    display: flex;
    gap: 20px;
    align-items: center;
    list-style-type: none;
    padding: 0;
}

.nav-link {
    color: #e9ffec; 
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #65ba9e; 
    cursor: pointer;
}

/* Reels Grid Section */
.reels-grid-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 20px auto 50px auto;
    padding: 0 20px;
}

/* Reel Card Styling */
.reel-card {
    display: block;
    text-decoration: none;
    border-radius: 24px;
    overflow: hidden;
    border: 3px solid #65ba9e; 
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.reel-media-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 9 / 16; 
    background-color: #081c15;
    overflow: hidden;
}


.reel-media-wrapper video,
.reel-media-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease; 
}

.reel-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(8, 28, 21, 0.95), transparent);
    box-sizing: border-box;
}

.reel-overlay h3 {
    color: #e9ffec;
    font-size: 1.2rem;
    margin: 0;
}


.reel-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(101, 186, 158, 0.25);
}

.reel-card:hover .reel-media-wrapper video,
.reel-card:hover .reel-media-wrapper img {
    transform: scale(1.08);
}
