*{
margin:0;
padding:0;
box-sizing:border-box;
}
html{
    scroll-behavior:smooth;
}

body{
font-family:Poppins,sans-serif;
background:#fff;
color:#222;
}
.anubhab{
    color: #fff;
    font-weight: 700;
}

.multimedia{
    color: #fff;
    font-weight: 700;
}
.logo{
    display:flex;
    align-items:center;
    gap:12px;
    color:#fff;
    font-size:24px;
    font-weight:600;
    letter-spacing:2px;
}

.logo img{
    width:50px;
    height:50px;
    object-fit:contain;
}
.grid{
    overflow:hidden;
}

.grid img{
    transition:all .6s ease;
}

.grid img:hover{
    transform:scale(1.08);
}
.featured{
    animation:fadeSection 1.8s ease;
}

@keyframes fadeSection{
    from{
        opacity:0;
        transform:translateY(80px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

.caption-section{
    padding:120px 10%;
    text-align:center;
    max-width:1000px;
    margin:auto;
}

.caption-top{
    letter-spacing:4px;
    text-transform:uppercase;
    color:#c9a227;
    margin-bottom:20px;
    font-size:14px;
}

.caption-section h2{
    font-family:'lobh',serif;
    font-size:60px;
    line-height:1.2;
    margin-bottom:25px;
}

.caption-text{
    font-size:18px;
    color:#777;
    line-height:1.8;
}


.stories-section{
    padding:100px 5%;
}

.stories-section h2{
    text-align:center;
    margin-bottom:40px;
    font-size:50px;
    font-family:'Cormorant Garamond',serif;
}

.stories-wrapper{
    display:flex;
    gap:25px;
    overflow-x:auto;
    scroll-behavior:smooth;
    padding-bottom:15px;
}

.stories-wrapper::-webkit-scrollbar{
    height:6px;
}

.stories-wrapper::-webkit-scrollbar-thumb{
    background:#c9a227;
    border-radius:20px;
}

.films-section{
    background:#c3b09e;
    padding:120px 0;
}

.film-heading{
    text-align:center;
    margin-bottom:80px;
}

.film-heading h2{
    font-family:'lob',serif;
    font-size:80px;
    color:#fff;
    line-height:1.1;
}
.film-heading h3{
    font-family:'lob',serif;
    font-size:50px;
    color:#fff;
}
.film-heading em{
    font-style:italic;
}

.films-slider{
    display:flex;
    gap:20px;
    overflow-x:auto;
    padding:0 40px;
    scroll-snap-type:x mandatory;
}

.films-slider::-webkit-scrollbar{
    display:none;
}

.film-card{
    position:relative;
    min-width:350px;
    height:520px;
    overflow:hidden;
    border-radius:4px;
    flex-shrink:0;
    scroll-snap-align:start;
    transition:.4s;
}

.film-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.8s;
}

.film-card:hover img{
    transform:scale(1.08);
}

.film-info{
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    padding:30px;
    color:white;
    background:linear-gradient(
        transparent,
        rgba(0,0,0,.8)
    );
}

.film-info span{
    font-size:12px;
    letter-spacing:2px;
}

.film-info h3{
    margin-top:10px;
    font-size:40px;
    font-family:'Cormorant Garamond',serif;
}
.slider-container{
    position:relative;
}

.arrow{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:55px;
    height:55px;
    border:none;
    border-radius:50%;
    background:rgba(0,0,0,.7);
    color:#fff;
    font-size:24px;
    cursor:pointer;
    z-index:100;
    transition:.3s;
}

.arrow:hover{
    background:#000;
}

.left{
    left:15px;
}

.right{
    right:15px;
}
.films-slider::-webkit-scrollbar{
    display:none;
}


.film-heading-section{
    background:#bba894;
    position:relative;
    padding:150px 20px 100px;
    overflow:hidden;
}

.wave-top{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100px;
    background:#f5f3ee;

    clip-path: polygon(
        0 30%,
        15% 20%,
        35% 10%,
        50% 0%,
        70% 15%,
        85% 20%,
        100% 30%,
        100% 0,
        0 0
    );
}

.film-heading{
    text-align:center;
}


@media(max-width:768px){

    .film-heading h2{
        font-size:48px;
    }

    .underline{
        width:220px;
    }
}

@media(max-width:768px){

    .arrow{
        width:45px;
        height:45px;
        font-size:22px;
    }

    .left{
        left:10px;
    }

    .right{
        right:10px;
    }
}


@media(max-width:768px){

    .caption-section{
        padding:80px 20px;
    }

    .caption-section h2{
        font-size:36px;
    }

    .caption-text{
        font-size:16px;
    }
}
.btn{
    position:relative;
    overflow:hidden;
    transition:.4s;
}

.btn:hover{
    transform:translateY(-4px);
    box-shadow:0 10px 30px rgba(0,0,0,.25);
}
.hero{
    animation:zoomHero 12s linear infinite alternate;
}

@keyframes zoomHero{
    from{
        background-size:100%;
    }
    to{
        background-size:110%;
    }
}
.logo{
    color:#fff;
    font-size:24px;
    font-weight:600;
    letter-spacing:2px;
}
/*header*/
header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:1000;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 6%;
    background:rgb(0 0 0 / 7%);
    backdrop-filter:blur(10px);
}

.logo{
    display:flex;
    align-items:center;
    gap:10px;
}

.logo img{
    width:50px;
}

.logo span{
    font-size:20px;
    font-weight:600;
}

/*nav-menu*/
#nav-menu{
    display:flex;
    gap:30px;
	
}

#nav-menu a{
    text-decoration:none;
    color:#fff;
    font-size:16px;
    transition:.3s;
}

#nav-menu a:hover{
    color:#d4af37;
}

.menu-toggle{
    display:none;
    color:#fff;
    font-size:28px;
    cursor:pointer;
}

.close-menu{
    display:none;
}

.menu-overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.5);
    opacity:0;
    visibility:hidden;
    transition:.4s;
    z-index:999;
}

/* Mobile */

@media(max-width:768px){

    .menu-toggle{
        display:block;
    }

    #nav-menu{
        position:fixed;
        top:0;
        right:-320px;
        width:280px;
        height:100vh;
        background:#111;
        flex-direction:column;
        padding:90px 30px;
        gap:20px;
        transition:.5s cubic-bezier(.77,0,.18,1);
        z-index:1001;
        box-shadow:-10px 0 30px rgba(0,0,0,.3);
    }

    #nav-menu.active{
        right:0;
    }

    #nav-menu a{
        opacity:0;
        transform:translateX(40px);
        transition:.4s;
    }

    #nav-menu.active a{
        opacity:1;
        transform:translateX(0);
    }

    .close-menu{
        display:block;
        position:absolute;
        top:20px;
        right:20px;
        color:#fff;
        font-size:28px;
        cursor:pointer;
        transition:.3s;
    }

    .close-menu:hover{
        transform:rotate(90deg);
    }

    .menu-overlay.active{
        opacity:1;
        visibility:visible;
    }
}
.hero{
    position:relative;
    height:100vh;
    overflow:hidden;
}

.hero-video{
    position:absolute;
    top:50%;
    left:50%;
    width:100vw;
    height:56.25vw;
    min-width:177.77vh;
    min-height:100vh;
    transform:translate(-50%, -50%);
    pointer-events:none;
}

/*hero-content*/
.hero-content{
    position:relative;
    z-index:2;
    height:100%;
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
    align-items:center;
    text-align:center;
    color:#fff;

    padding-bottom:140px; /* নিচে নামাবে */
}
@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(50px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}
.overlay{
position:absolute;
width:100%;
height:100%;
background:rgba(0,0,0,.45);
}

.hero-content h1{
font-family:'labb',serif;
font-size:80px;
max-width:900px;
}

.hero-content p{
margin:20px 0;
font-size:18px;
letter-spacing:2px;
}

.btn{
display:inline-block;
padding:15px 35px;
background:#fff;
color:#000;
text-decoration:none;
border-radius:40px;
}

.featured{
padding:100px 10%;
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:center;
}

.featured img{
width:100%;
height:700px;
object-fit:cover;
}

.featured span{
letter-spacing:3px;
font-size:12px;
color:#999;
}

.featured h2{
font-family:'Cormorant Garamond',serif;
font-size:55px;
margin:20px 0;
}

/*gallery*/

.gallery{
    padding:120px 5%;
    background:#f5f2eb;
}

.gallery h2{
    text-align:center;
    font-size:70px;
    margin-bottom:60px;
 font-family: 'MyFont', sans-serif;
 }

.masonry-gallery{
    column-count:4;
    column-gap:15px;
}

.masonry-gallery img{
    width:100%;
    margin-bottom:15px;
    display:block;
    border-radius:4px;
    transition:.5s;
    cursor:pointer;
}

.masonry-gallery img:hover{
    transform:scale(1.02);
    opacity:.95;
}

@media(max-width:1200px){
    .masonry-gallery{
        column-count:3;
    }
}

@media(max-width:768px){
    .masonry-gallery{
        column-count:2;
    }

    .gallery h2{
        font-size:40px;
    }
}

@media(max-width:500px){
    .masonry-gallery{
        column-count:1;
    }
}
.masonry-gallery img{
    filter:brightness(100%);
}

.masonry-gallery img:hover{
    filter:brightness(85%);
    transform:scale(1.03);
}
.cta{
padding:120px 20px;
background:#c3a42d;
text-align:center;
color:#fff;
}

.cta h2{
font-size:50px;
margin-bottom:30px;
font-family:'Cormorant Garamond',serif;
}

.footer{
    background:#2f2925;
    padding:60px 8%;
    color:#d8c2a0;
	position:relative;
}

.footer-container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:50px;
}

.footer-contact{
    flex:1;
}

.footer-contact h3,
.footer-social h3{
    color:#fff;
    margin-bottom:20px;
}

.footer-contact p{
    margin:12px 0;
    line-height:1.6;
}

.footer-contact i{
    margin-right:10px;
}

.footer-logo{
    flex:1;
    text-align:center;
}

.footer-logo img{
    width:90px;
    margin-bottom:15px;
}

.footer-logo h2{
    color:#fff;
    margin:0;
    letter-spacing:3px;
    font-size:34px;
}

.footer-logo span{
    letter-spacing:5px;
    color:#d8c2a0;
}

.footer-social{
    flex:1;
    text-align:right;
}

.social-icons{
    display:flex;
    justify-content:flex-end;
    gap:18px;
}

.social-icons a{
    color:#d8c2a0;
    font-size:28px;
    transition:.3s;
}

.social-icons a:hover{
    color:#fff;
}

@media(max-width:768px){
    .footer-container{
        flex-direction:column;
        text-align:center;
    }

    .footer-social{
        text-align:center;
    }

    .social-icons{
        justify-content:center;
    }
}

@media(max-width:768px){

.hero-content h1{
font-size:45px;
}

.featured{
grid-template-columns:1fr;
}

.grid{
grid-template-columns:1fr;
}
}


.about-studio{
    padding:120px 8%;
    background:#f4f0ea;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;
}

.about-left{
    text-align:center;
}

.team-photo{
    width:100%;
    max-width:420px;
}

.media-logos{
    margin-top:40px;
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}

.media-logos span{
    font-size:24px;
    font-weight:600;
    color:#222;
}

.about-right h2{
    font-family:'lobha', serif;
    font-size:65px;
    line-height:1.1;
    margin-bottom:30px;
    color:#5d4328;
}

.about-right h2 span{
    font-style:italic;
    text-decoration:underline;
}

.about-right p{
    font-size:30px;
    line-height:1;
    margin-bottom:25px;
    color:#444;
	font-family:'lab', serif;
}

@media(max-width:768px){

    .about-studio{
        grid-template-columns:1fr;
        text-align:center;
        gap:50px;
    }

    .about-right h2{
        font-size:42px;
    }

    .about-right p{
        font-size:16px;
    }

    .media-logos{
        grid-template-columns:repeat(2,1fr);
    }
}

.featured-films{
    padding:120px 6%;
    background:#f8f5ef;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h2{
    font-family:'lov',serif;
    font-size:70px;
    color:#5a4632;
}

.films-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
}

.video-card{
    position:relative;
    overflow:hidden;
    cursor:pointer;
}

.video-card img{
    width:100%;
    height:420px;
    object-fit:cover;
    transition:.6s;
}

.video-card:hover img{
    transform:scale(1.05);
}

.video-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.25);
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
}

.play-btn{
    width:80px;
    height:80px;
    border-radius:50%;
    background:rgba(255,255,255,.9);
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:30px;
    margin-bottom:20px;
}

.video-overlay h3{
    font-family:'Cormorant Garamond',serif;
    font-size:60px;
    color:white;
    margin:0;
}

.video-overlay p{
    color:white;
    font-size:18px;
    margin-top:10px;
}

@media(max-width:768px){

    .films-grid{
        grid-template-columns:1fr;
    }

    .video-card img{
        height:300px;
    }

    .video-overlay h3{
        font-size:36px;
    }

    .section-title h2{
        font-size:42px;
    }
}
.film-card:hover{
    transform:translateY(-8px);
}
@font-face {
    font-family: 'MyFont';
    src: url('fonts/SymphonieCalligraphyDEMO-Regular.otf') format('opentype');
    font-style: normal;
}
@font-face {
    font-family: 'lob';
    src: url('fonts/Runethia.otf') format('opentype');
    font-style: normal;
}
@font-face {
    font-family: 'lobh';
    src: url('fonts/Michty.ttf') format('truetype');
    font-style: normal;
}
@font-face {
    font-family: 'lobha';
    src: url('fonts/GreatVibes-Regular.ttf') format('truetype');
    font-style: normal;
}
@font-face {
    font-family: 'lov';
    src: url('fonts/GERALDINE PERSONAL USE.ttf') format('truetype');
    font-style: normal;
}
@font-face {
    font-family: 'lab';
    src: url('fonts/Michty.ttf') format('truetype');
    font-style: normal;
}
@font-face {
    font-family: 'labb';
    src: url('fonts/Runethia.otf') format('opentype');
    font-style: normal;
}

.empty-state{
    width:100%;
    text-align:center;
    padding:60px 20px;
    color:#666;
}

.empty-state i{
    font-size:80px;
    color:#94a3b8;
    margin-bottom:15px;
}

.empty-state h3{
    font-size:22px;
    margin-bottom:6px;
}

.empty-state p{
    font-size:14px;
    color:#94a3b8;
}