/* =====================
   AXMIGO VISUALS
   Main Style
===================== */


*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}


html{
    scroll-behavior:smooth;
}


body{

    font-family:'Inter',sans-serif;

    background:#fff;

    color:#111;

    line-height:1.7;

}


/* =====================
 Navigation
===================== */


/* =====================
   Global Navigation
===================== */

.navbar{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    height:80px;

    padding:0 6%;

    display:flex;

    justify-content:space-between;

    align-items:center;

    background:rgba(255,255,255,.92);

    backdrop-filter:blur(12px);

    -webkit-backdrop-filter:blur(12px);

    border-bottom:1px solid rgba(0,0,0,.08);

    z-index:999;

}

.logo{

    display:flex;

    flex-direction:column;

}

.logo a{

    color:#111;

    text-decoration:none;

    font-size:28px;

    font-weight:700;

    letter-spacing:3px;

}

.logo span{

    font-size:11px;

    letter-spacing:2px;

    color:#888;

    margin-top:4px;

}

.navbar ul{

    display:flex;

    list-style:none;

    gap:36px;

}

.navbar ul li{

    position:relative;

}

.navbar a{

    text-decoration:none;

    color:#111;

    font-size:15px;

    font-weight:500;

    transition:.25s;

}

.navbar a:hover{

    color:#777;

}

.navbar a.active{

    color:#000;

}

.navbar a.active::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:100%;

    height:2px;

    background:#111;

}




/* =====================
 Hero
===================== */


.hero{

    height:100vh;

    position:relative;

    overflow:hidden;


}


.slider{

    position:absolute;

    width:100%;

    height:100%;

}



.slide{

    position:absolute;

    width:100%;

    height:100%;

    object-fit:cover;

    opacity:0;

    transition:opacity 1.5s ease;

}



.slide.active{

    opacity:1;

}



.overlay{

    position:absolute;

    width:100%;

    height:100%;

    background:

    linear-gradient(

    to bottom,   

    rgba(0,0,0,.15),

    rgba(0,0,0,.75)

    );

}



/* hero text */


.hero-content{

    position:absolute;

    left:8%;

    right:8%;

    bottom:90px;

    z-index:5;

    display:flex;

    justify-content:space-between;

    align-items:flex-end;

    color:white;

}

.hero-left{

    flex:1;

}

.hero-right{

    flex:1;

    text-align:right;

}

.hero-buttons{

    margin-top:30px;

}



.hero-right h2{

    margin:15px 0;

}

.hero-right p{

    opacity:.9;

}

.brand{

    font-size:56px;

    letter-spacing:10px;

    margin-bottom:30px;

    font-weight:700;

}



.hero h1{

    font-size:64px;

    letter-spacing:8px;

    font-weight:700;

}



.hero h2{

    font-size:26px;

    font-weight:300;

    margin:20px 0;

}



.hero p{

    font-size:18px;

    opacity:.85;

}



/* buttons */


.hero-buttons{

    margin-top:45px;

}


.btn{

    display:inline-block;

    padding:14px 35px;

    margin:10px;

    text-decoration:none;

    transition:.3s;

}



.btn-light{

    background:white;

    color:black;

}



.btn-outline{

    border:1px solid white;

    color:white;

}



.btn:hover{

    transform:translateY(-5px);

}




.scroll-down{

    position:absolute;

    bottom:40px;

    color:white;

    font-size:30px;

    z-index:3;

}



/* =====================
 Sections
===================== */


.section-title{

    text-align:center;

    font-size:38px;

    letter-spacing:3px;

    margin-bottom:60px;

}



.featured{

    padding:100px 6%;

}



.cards{

    display:grid;

    grid-template-columns:

    repeat(3,1fr);

    gap:30px;

}



.card{

    position:relative;

    overflow:hidden;

    text-decoration:none;

    color:white;

    height:450px;

}



.card img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.6s;

}



.card:hover img{

    transform:scale(1.08);

}



.card-content{

    position:absolute;

    bottom:30px;

    left:30px;

}



.card h3{

    font-size:28px;

}



/* =====================
 Gallery
===================== */


.gallery-preview{

    padding:100px 6%;

}



.gallery{

    display:grid;

    grid-template-columns:

    repeat(3,1fr);

    gap:20px;

}



.gallery img{

    width:100%;

    aspect-ratio:4/3;

    height:auto;

    object-fit:cover;

    transition:.5s;

}



.gallery img:hover{

    transform:scale(1.04);

}


.center{

    text-align:center;

    margin-top:50px;

}


.btn-dark{

    border:1px solid black;

    color:black;

}



/* =====================
 About
===================== */


.about-preview{

    display:flex;

    gap:80px;

    padding:100px 10%;

    align-items:center;

}



.about-photo img{

    width:350px;

   height:450px;

   object-fit:cover;

}



.about-text{

    max-width:500px;

}



.about-text h2{

    font-size:45px;

    margin-bottom:30px;

}



/* ==========================================
   FOOTER
========================================== */

.site-footer{

    border-top:1px solid #e5e5e5;

    margin-top:120px;

    padding:60px 40px 30px;

}

.footer-container{

    max-width:1200px;

    margin:auto;

    display:flex;

    justify-content:space-between;

    align-items:flex-start;

    gap:60px;

    flex-wrap:wrap;

}

.footer-brand h2{

    font-size:24px;

    letter-spacing:4px;

    margin-bottom:10px;

}

.footer-brand p{

    color:#777;

}

.footer-links{

    display:flex;

    flex-direction:column;

    gap:12px;

}

.footer-links a{

    color:#111;

    text-decoration:none;

}

.footer-links a:hover{

    opacity:.6;

}

.footer-contact a{

    color:#111;

    text-decoration:none;

}

.footer-bottom{

    text-align:center;

    margin-top:60px;

    color:#999;

    font-size:14px;

}



/* =====================
 Mobile
===================== */


@media(max-width:768px){


.navbar{

    flex-direction:column;

    gap:20px;

}


.navbar ul{

    gap:15px;

}



.hero h1{

    font-size:50px;

}


.hero h2{

    font-size:20px;

}



.cards{

    grid-template-columns:1fr;

}



.gallery{

    grid-template-columns:1fr;

}



.about-preview{

    flex-direction:column;

}



.about-photo img{

    width:100%;

}


}
/* =====================================================
   PORTFOLIO PAGE
===================================================== */

.dark-nav{
    position:relative;
    background:#111;
    padding:20px 6%;
}

.dark-nav .logo a,
.dark-nav a{
    color:#fff;
}

.portfolio-header{

    padding:80px 20px 50px;

    text-align:center;

    background:#f7f7f7;

}

.portfolio-header h1{

    font-size:48px;

    letter-spacing:4px;

    margin-bottom:15px;

}

.portfolio-header p{

    color:#666;

    font-size:18px;

}


.portfolio{

    max-width:1200px;

    margin:60px auto;

    padding:0 20px;

}


.filter-buttons{

    display:flex;

    justify-content:center;

    flex-wrap:wrap;

    gap:15px;

    margin-bottom:50px;

}


.filter{

    border:1px solid #ddd;

    background:white;

    padding:12px 24px;

    cursor:pointer;

    transition:.3s;

    font-size:14px;

}


.filter:hover{

    background:#111;

    color:white;

}


.filter.active{

    background:#111;

    color:white;

}


.photo-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));

    gap:25px;

}


.photo-item{

    overflow:hidden;

    border-radius:8px;

    background:#eee;

}


.photo-item img{

    width:100%;

    aspect-ratio:4/3;

    object-fit:cover;

    display:block;

    cursor:pointer;

    transition:.4s;

}


.photo-item img:hover{

    transform:scale(1.05);

}


.lightbox{

    display:none;

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.9);

    justify-content:center;

    align-items:center;

    z-index:9999;

}


.lightbox-img{

    max-width:90%;

    max-height:90%;

}


.close{

    position:absolute;

    top:30px;

    right:40px;

    color:white;

    font-size:42px;

    cursor:pointer;

}

/* =====================================================
   FILMS PAGE
   AXMIGO Visuals
===================================================== */


.film-page{

    background:#080808;

    color:white;

}


/* Film Hero */
.film-hero{

    padding-top:90px;

    padding-bottom:25px;

}

.film-label{

    display:none;

}

.film-hero h1{

    font-size:46px;

    letter-spacing:5px;

    margin-bottom:10px;

}

.film-intro{

    font-size:18px;

    color:#999;

    line-height:1.5;

}


/* Featured Film */


.featured-film{

    max-width:1200px;

    margin:auto;

    padding:0 40px 120px;

}


.film-number{

    font-size:18px;

    letter-spacing:5px;

    color:#777;

    margin-bottom:25px;

}



/* Poster */


.film-poster{

    position:relative;

    overflow:hidden;

}


.film-poster img{

    width:100%;

    display:block;

    aspect-ratio:16/9;

    object-fit:cover;

    transition:.8s;

}


.film-poster:hover img{

    transform:scale(1.04);

    filter:brightness(.9);

}

/* Play Button */


.play-overlay{

    position:absolute;

    inset:0;

    display:flex;

    justify-content:center;

    align-items:center;

}


.play-overlay button{

    width:90px;

    height:90px;

    border-radius:50%;

    border:1px solid rgba(255,255,255,.8);

    background:rgba(0,0,0,.35);

    color:white;

    font-size:30px;

    cursor:pointer;

    backdrop-filter:blur(5px);

    transition:.4s;

}


.play-overlay button:hover{

    transform:scale(1.18);

    background:white;

    color:black;

    box-shadow:0 0 30px rgba(255,255,255,.35);

}


/* Film Info */


.film-info{

    max-width:800px;

    margin:60px auto 0;

}


.film-info h2{

    font-size:48px;

    letter-spacing:2px;

    margin-bottom:25px;

}


.film-info p{

    color:#ccc;

    font-size:18px;

    line-height:1.8;

}


.film-meta{

    display:flex;

    gap:40px;

    margin-top:35px;

    color:#999;

    font-size:14px;

    letter-spacing:2px;

}



/* Watch Button */


.watch-btn{

    display:inline-block;

    margin-top:50px;

    padding:16px 45px;

    border:1px solid white;

    color:white;

    text-decoration:none;

    letter-spacing:3px;

    transition:.3s;

}


.watch-btn:hover{

    background:white;

    color:black;

}



/* Coming Soon */


.coming-soon{

    text-align:center;

    padding:80px 20px 120px;

    border-top:1px solid rgba(255,255,255,.15);

}


.coming-soon h3{

    font-size:36px;

    letter-spacing:5px;

}


.coming-soon p{

    margin-top:20px;

    color:#888;

}



/* Video Modal */


.video-modal{

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.95);

    display:none;

    justify-content:center;

    align-items:center;

    z-index:9999;

    opacity:0;

    transition:opacity .3s ease;

}

.video-modal.show{

    opacity:1;

}


.video-container{

    width:80%;

    max-width:1100px;

    position:relative;

    transform:scale(.92);

    transition:transform .35s ease;

}

.video-modal.show .video-container{

    transform:scale(1);

}


.video-container iframe{

    width:100%;

    aspect-ratio:16/9;

    border:0;

}



.close-video{

    position:absolute;

    right:0;

    top:-60px;

    background:none;

    border:none;

    color:white;

    font-size:45px;

    cursor:pointer;

}






/* Mobile */

@media(max-width:768px){


.film-hero{

    padding-top:140px;

}


.film-hero h1{

    font-size:55px;

}


.film-intro{

    font-size:20px;

}


.featured-film{

    padding:0 20px 80px;

}


.film-info h2{

    font-size:34px;

}


.film-meta{

    flex-direction:column;

    gap:10px;

}


.video-container{

    width:95%;

}


}

/* Film List */

.film-list{

max-width:1100px;

margin:0 auto;

padding:80px 40px 140px;

border-top:1px solid rgba(255,255,255,.12);

}

.film-list h3{

font-size:34px;

margin-bottom:60px;

letter-spacing:4px;

}

.film-item{

display:flex;

align-items:center;

gap:40px;

padding:28px 0;

border-bottom:1px solid rgba(255,255,255,.08);

transition:.3s;

cursor:pointer;

}

.film-item:hover{

padding-left:18px;

background:rgba(255,255,255,.03);

}

.film-index{

font-size:28px;

font-weight:600;

color:#888;

min-width:70px;

}

.film-text h4{

font-size:28px;

margin-bottom:10px;

}

.film-text p{

color:#888;

font-size:16px;

}


/* ==========================================
   ABOUT PAGE
========================================== */

.about-hero{

    padding:120px 20px 60px;

    text-align:center;

}

.about-hero h1{

    font-size:46px;

    letter-spacing:6px;

    margin-bottom:12px;

}

.about-hero p{

    color:#777;

    font-size:18px;

    margin-top:12px;

}

.portrait-section{

    max-width:1200px;

    margin:0 auto;

    padding:0 40px 80px;
   
    text-align:center;

}

.portrait-section img{

    width:380px;

    max-width:100%;

    height:auto;

    display:inline-block;

}

.statement{

    max-width:1200px;

    margin:0 auto;

    padding:0 40px 80px;

    text-align:center;

}

.statement blockquote{

    max-width:700px;

    margin:auto;

    font-size:28px;

    line-height:1.8;

    font-weight:300;

}

.about-content{

    max-width:1200px;

    margin:0 auto;

    padding:0 40px 80px;

}

.about-content h2{

    font-size:30px;

    margin-bottom:30px;

}

.about-content p{

    font-size:18px;

    line-height:1.9;

    color:#555;

    margin-bottom:25px;

}


.skills{

    max-width:1200px;

    margin:0 auto;

    padding:0 40px 80px;

}

.skills h2{

    margin-bottom:40px;

    font-size:30px;

}

.skill-list{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:20px;

    margin-top:20px;

}

.skill-list div{

    padding:22px;

    text-align:center;

    border:1px solid #ddd;

}

.skill-list div:hover{

    background:#111;

    color:white;

}

.contact-info{

    max-width:1200px;

    margin:0 auto;

    padding:0 40px 120px;

}

.contact-info h2{

    font-size:30px;

    margin-bottom:40px;

}

.contact-info p{

    margin-bottom:30px;

    line-height:1.8;

}

.contact-info a{

    color:#111;

    text-decoration:none;

}

.contact-info a:hover{

    text-decoration:underline;

}

@media(max-width:768px){

.about-hero{

    padding-top:90px;

}

.statement blockquote{

    font-size:28px;

}

.about-content p{

    font-size:17px;

}

.skill-list{

    flex-direction:column;

}

.skill-list div{

    width:100%;

    text-align:center;

}

}



/* ==========================================
   CONTACT PAGE
========================================== */

.contact-page{

    max-width:900px;

    margin:0 auto;

    padding:20px 40px 120px;

}

.contact-card{

    border-bottom:1px solid #e5e5e5;

    padding:35px 0;

}

.contact-card h2{

    font-size:30px;

    margin-bottom:15px;

    position:relative;

    display:inline-block;

}

.contact-card h2::after{

    content:"";

    display:block;

    width:45px;

    height:2px;

    background:#111;

    margin-top:10px;

}

.contact-card p{

    margin-top:20px;

    font-size:18px;

    line-height:1.8;

    color:#666;

}

.contact-card a{

    color:#111;

    text-decoration:none;

    transition:.3s;

}

.contact-card a:hover{

    opacity:.6;

}

.contact-button{

    margin-top:60px;

    text-align:center;

}


