/*!
Theme Name: LAC Film
Theme URI: https://www.nguyenpham.work
Author: Nguyen Pham
Author URI: https://www.nguyenpham.work
Description: Vietnam Wedding and Destination Videographer
Version: 2.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: lacfilm
Tags: lacfilm, vietnam wedding, destination videographer
*/

:root {
    --dark-color: #1F1C17;
    --dark-color-2: #282828;
    --be-color:  #F9F7F4;
    --main-color: #83735f;
    --main-light-color: #d2c8bc;
    --secondary-color: #b19b81;
    --third-color: #DCD0C1;
    --gray-color: #828282;
    --gray-line-color: #CBCBCB;
    --white-color: #FFFFFF;
    --content-box: #e5e5e5;
}

body {
    margin: 0;
    font-family: 'Hanken Grotesk', sans-serif;
    font-weight: 300;
    color: var(--dark-color);
    font-size: 16px;
}

pre {
	font-family: monospace, monospace;
	font-size: 1em;
}

p {
    line-height: 1.5;
}

img {
    max-width: 100%;
}

b {
    font-weight: 600;
}

a {
    text-decoration: none;
    color: var(--dark-color);
}

.container {
    max-width: 1170px;
    margin: 0 auto;
}

h1, h2, h3 {
    font-family: 'IvarFine', serif;
    font-weight: 300;
}

h1 {
    font-size: 36px;
}

h3 {
    font-size: 26px;
}

.web__update {
    padding: 10px 20px;
    background: var(--dark-color);
    color: var(--white-color);
    text-align: center;
    line-height: 1.3;
    font-size: 12px;
}

.bold {
    font-weight: 600;
}

.flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.flex-start {
    align-items: flex-start;
}

.home__banner {
    position: relative;
}

.banner {
    position: relative;
    height: 0;
    background: var(--content-box);
    width: 100%;
    padding-bottom: 56.25%;
}

.text-center {
    text-align: center;
}

.swiper-pagination {
    margin-bottom: 20px;
}

span.swiper-pagination-bullet {
    background: #FFFFFF;
    opacity: 0.25;
    width: 6px;
    height: 6px;
}

span.swiper-pagination-bullet.swiper-pagination-bullet-active {
    opacity: 0.9;
}

.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 8px;
}

@media screen and (max-width: 1024px) {
    .banner {
        padding-bottom: 56.25%;
    }

    .swiper-pagination {
        margin-bottom: 10px;
    }
}

@media screen and (max-width: 768px) {
    span.swiper-pagination-bullet {
        width: 5px;
        height: 5px;
    }

    .swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
        margin: 0 5px;
    }
    .swiper-pagination {
        margin-bottom: 5px;
    }

}

.go-top {
	position: fixed;
	bottom: 60px;
	right: 30px;
	background: #F6F6F6;
	border-radius: 20px;
	overflow: hidden;
	opacity: 0;
	transition: opacity 0.5s;
	cursor: pointer;
	z-index: 10;
}

.go-top.show {
	opacity: 1;
}

.go-top span {
	width: 40px;
	height: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.go-top span img {
    transition: all 0.5s;
}

@media screen and (max-width: 768px) {
    body {
        font-size: 15px;
    }
    
    .go-top {
		bottom: 50px;
		right: 20px;
	}
	
	.go-top.show {
		opacity: 1;
	}
	
	.go-top span {
		width: 36px;
		height: 36px;
	}
}

.lazyload,
.lazyloading {
	opacity: 0;
}
.lazyloaded {
	opacity: 1;
	transition: opacity 300ms;
}

.box-img, .box-reel {
    position: relative;
    padding-bottom: 56.25%;
    overflow: hidden;
    background: var(--content-box);
}

.box-reel {
    padding-bottom: 177.77%;
}

.box-img img, .box-reel video {
    position: absolute;
    object-fit: cover;
    width: 100%;
    height: 100%;
    left: 0;
}

.block-site {
    overflow: hidden;
}

/* 01 - HEADER */

.header .container {
    height: 110px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.header__logo a img {
    height: 30px;
}

.header__toggle {
    position: absolute;
    right: 0;
    display: none;
}

.header__menu-item {
    display: inline-block;
    text-decoration: none;
    color: var(--dark-color);
    font-size: 14px;
    padding: 20px 0 20px 0;
    margin-left: 40px;
    cursor: pointer;
    position: relative;
}

.header__menu-item.active {
    font-weight: 600;
}

.header__menu-item:first-child {
    display: none;
}

.header__menu-item::after {
    content: '';
    width: 0;
    height: 1px;
    background-color: var(--dark-color);
    position: absolute;
    bottom: 18px;
    left: 0;
    transition: 0.3s all;
}

.header__menu-item:hover::after {
    width: 100%;
}

@media screen and (max-width: 1170px) {
    .header .container {
        padding: 0 30px;
    }
    .header__menu-item {
        font-size: 15px;
    }
}

@media screen and (max-width: 768px) {
    .header .container {
        height: 80px;
        padding: 0;
    }

    .header__logo {
        padding-left: 20px;
    }

    .header__toggle {
        display: block;
    }

    .header__toggle {
        padding: 20px;
        cursor: pointer;
        z-index: 99;
    }

    .toggle__icon {
        width: 24px;
        height: 24px;
        position: relative;
    }
    
    .toggle__icon span {
        background: #ABABAB;
        width: 70%;
        height: 1.25px;
        display: block;
        position: absolute;
        top: 50%;
        right: 0;
        overflow: hidden;
        transform: translateY(-50%);
        transition: all 0.3s ease;
    }
    
    
    .toggle__icon span:first-child {
        transform: translateY(-8px);
        width: 100%;
    }
    
    .toggle__icon span:last-child {
        transform: translateY(7px);
        width: 100%;
    }
    
    .toggle__icon.active>span:first-child {
        transform: translateY(-50%) rotate(-45deg);
        background: #FFF;
    }
    
    .toggle__icon.active>span:last-child {
        transform: translateY(-50%) rotate(45deg);
        background: #FFF;
    }
    
    .toggle__icon.active>span:nth-child(2) {
        width: 0;
        opacity: 0;
    }

    .header__menu-close {
        position: absolute;
        top: 30px;
        right: 20px;
        z-index: 2;
    }

    .header__menu {
        position: fixed;
        width: 100%;
        height: 100%;
        background-color: var(--gray-color);
        top: 0;
        display: block;
        opacity: 0;
        visibility: hidden;
        z-index: 95;
        transition: all 0.3s ease-in-out;
    }

    .header__menu-item {
        text-transform: uppercase;
    }

    .header__menu-item.active {
        font-weight: 300;
    }

    .header__menu.active {
        opacity: 1;
        visibility: visible;
    }

    .header__menu-item {
        display: block;
        margin-left: 0;
        font-family: 'IvarFine', serif;
        font-size: 32px;
        color: var(--white-color);
    }

    .header__menu-item:first-child {
        display: block;
    }

    .header__menu-item::after {
        display: none;
    }

    .header__menu-content {
        position: relative;
        top: 16%;
        text-align: center;
    }
}

/* 02 - FOOTER */
.footer {
    height: 140px;
    display: flex;
    align-items: center;
}

.footer .container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

@media screen and (max-width: 1024px) {
    .footer .container {
        padding: 0 30px;
    }
}

@media screen and (max-width: 768px) {
    .footer {
        height: 160px;
    }

    .footer__copyright{
        width: 100%;
        text-align: center;
        line-height: 1.3;
        padding-bottom: 10px;
    }

    .footer__icon {
        margin-bottom: 10px;
        width: 100%;
        text-align: center;
    }

    .footer__icon a {
        margin: 0 2px;
        cursor: pointer;
    }
}

/* 01 - HOMEPAGE */
.homepage__welcome {
    font-family: 'Hanken Grotesk', sans-serif;
    font-size: 15px;
    padding: 100px 0 40px 0;
    text-align: center;
}

.homepage-banner {
    padding-top: 60px;
    padding-bottom: 60px;
}

.homepage__info {
    text-align: center;
    font-family: 'Questrial', sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    font-size: 10px;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    color: #545454;
}

.quest__font {
    font-family: 'Questrial', sans-serif;
    letter-spacing: 1.5px;
}

.homepage__style {
    text-align: center;
    font-size: 64px;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 50px;
    font-weight: 300;
}

.homepage__style span {
    display: block;
}

.homepage__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 60px;
    padding-bottom: 100px;
}

.homepage__btn {
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    text-transform: uppercase;
    position: relative;
    transition: 0.3s all;
}

.homepage__btn::after {
    content: '';
    width: 100%;
    height: 1.5px;
    background-color: var(--gray-line-color);
    position: absolute;
    bottom: -2px;
    left: 0;
}

.homepage__caption {
    text-align: center;
    padding: 0 20px;
}

.home__insta-box {
    width: calc(1/6*100%);
}

.home__insta-box > .box__square > img {
    transition: all 0.5s;
}

.home__insta-box:hover > .box__square > img {
    transform: scale(1.05);
}

.page__title {
    text-transform: uppercase;
    font-weight: 300;
    text-align: center;
    padding-top: 100px;
    margin-bottom: 40px;
    font-size: 32px;
}

.page__info {
    text-align: center;
    max-width: 770px;
    margin: 0 auto;
    margin-bottom: 60px;
}

.home__title {
    padding-top: 100px;
}

.homepage__port .port__item {
    width: calc(33.33% - 20px);
}

.mobile {
    display: none;
}

@media screen and (max-width: 768px) {
    .homepage__style span {
        display: block;
    }
    .mobile {
        display: block;
    }

    .desktop {
        display: none;
    }

    .site__solid.home__solid {
        display: none;
    }

    .home__title {
        padding-top: 40px;
    }

    .homepage__info {
        font-size: 8px;
        margin-bottom: 15px;
    }

    .homepage__style {
        font-size: 40px;
        margin: 0 20px 40px 20px;
    }

    .homepage__caption {
        margin-left: 10px;
        margin-right: 10px;
        margin-top: 30px;
    }

    .homepage__caption span {
        margin-bottom: 10px;
    }

    .homepage__cta {
        padding-bottom: 80px;
    }

    .home__insta-box {
        width: 25%;
    }
    
    .home__insta {
        position: relative;
    }
    
    .home__insta-label {
        position: absolute;
        top: 50%;
        left: 50%;
        padding: 8px 16px;
        background: #FFFFFF;
        text-transform: uppercase;
        color: var(--dark-color);
        text-align: center;
        letter-spacing: 2px;
        font-size: 10px;
        transform: translate(-50%, -50%);
        cursor: pointer;
    }
}


/* 02 - ABOUT US */
.be__color {
    background-color: var(--be-color);
}

.hide {
    display: none;
}

.about__padding {
    padding-top: 100px;
}

.site__solid {
    height: 1px;
    background: var(--gray-line-color);
    max-width: 1170px;
    margin: 0 auto;
}

.mw-770 {
    max-width: 770px;
    margin: 0 auto;
}

.mw-570 {
    max-width: 570px;
    margin: 0 auto;
}

.pd-150 {
    padding-bottom: 150px;
}

.pd-20 {
    padding-left: 20px;
    padding-right: 20px;
}

.ml-20 {
    margin-left: 20px;
    margin-right: 20px;
}

.caption-center {
    text-align: center;
}

.story {
    display: flex;
    justify-content: space-between;
}

.story__image {
    width: 45%;
    margin-right: 40px;
}

img.mobile {
    display: none;
}

.story__content {
    width: 55%;
}

.story__content p {
    margin-bottom: 20px;
}

.line {
    margin-top: 100px;
    margin-bottom: 100px;
    padding: 18px 0;
    position: relative;
}

.line__color {
    background: var(--be-color);
    width: 80px;
    height: 40px;
    position: absolute;
    left: calc(50% - 40px);
    top: 0;
}

.line__icon {
    position: absolute;
    left: calc(50% - 18px);
    top: 0;
}

.line__solid, .line__solid-2 {
    height: 1px;
    background: var(--gray-line-color);
}

.line__solid-2 {
    height: 2px;
}

.team__title {
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 10px;
}

.team {
    max-width: 770px;
    margin: 0 auto;
    margin-top: 40px;
    margin-bottom: 60px;
}

.member {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.box-member {
    width: calc(50% - 15px);
}

.box__about {
    position: relative;
    padding-bottom: 125%;
    overflow: hidden;
    background: var(--content-box);
}

.box__square {
    position: relative;
    padding-bottom: 100%;
    overflow: hidden;
    background: var(--content-box);
}

.box__about img, .box__square img {
    position: absolute;
    object-fit: cover;
    left: 0;
    width: 100%;
    height: 100%;
}

.p-link {
    font-weight: 600;
    cursor: pointer;
    position: relative;
}

.p-link::after {
    content: '';
    width: 100%;
    height: 1px;
    background-color: var(--dark-color);
    position: absolute;
    bottom: 3px;
    left: 0;
}

.pd-content {
    padding-left: 20px;
    padding-right: 20px;
}

@media screen and (max-width: 768px) {
    .box__about {
        padding-bottom: 56.25%;
    }
    .hide {
        display: block;
        font-size: 32px;
        text-align: center;
        margin-bottom: 20px;
    }

    .about__padding {
        padding-top: 80px;
    }

    .about__caption {
        padding: 0px 20px 30px 20px;
    }

    .page__title {
        font-size: 32px;
        padding-top: 80px;
    }

    .page__info {
        padding: 0 20px;
        margin-bottom: 40px;
    }

    img.desktop {
        display: none;
    }

    img.mobile {
        display: block;
    }

    .about__end {
        text-align: left;
    }

    .story {
        flex-wrap: wrap;
    }

    .story__image {
        width: 100%;
        margin-right: 0;
    }

    .story__content {
        width: 100%;
        margin-top: 40px;
        padding: 0 20px;
    }

    .story__content p {
        margin-bottom: 15px;
    }

    .team__title {
        text-transform: none;
    }

    .line {
        margin-top: 60px;
        margin-bottom: 40px;
    }

    .team__caption {
        padding: 0 20px;
    }

    .team {
        margin-top: 40px;
        margin-bottom: 60px;
    }

    .member {
        padding: 0px 20px;
    }

    .box-member {
        width: calc(50% - 10px);
    }

    .pd-150 {
        padding-bottom: 100px;
    }

    p.mw-570.caption-center.pd-150, .line.mw-770 {
        padding-left: 20px;
        padding-right: 20px;
    }
}



/* 03 - PORTFOLIO */

.responsive-video {
    position: relative;
    height: 0;
    padding-bottom: calc((9/16) * 100%);
}

.responsive-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: fill;
}

.video {
    max-width: 770px;
}

.film__cover {
    position: relative;
    padding-bottom: 640px;
    overflow: hidden;
    background: var(--content-box);
}

.film__cover img {
    position: absolute;
    object-fit: cover;
    left: 0;
    width: 100%;
    height: 100%;
}

.list__item {
    display: block;
    cursor: pointer;
    margin-bottom: 60px;
    width: calc(33.33% - 20px);
    position: relative;
}

.list__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    opacity: 0.92;
}

.list__item > .box-img > img, .list__item > .list__play {
    transition: all 0.5s;
}

.list__item:hover > .box-img > img{
    transform: scale(1.04);
}

.list__item:hover > .list__play {
    opacity: 1;
}

.film__pages {
    margin-top: 20px;
    margin-bottom: 80px;
}

.film__pages a, .film__pages span {
    display: inline-block;
    padding: 9px 12px;
    border: 1px solid var(--dark-color);
    border-radius: 5px;
    margin: 0 5px;
    transition: 0.3s all;
}

.film__pages span {
    cursor: default;
}

.page-active, .film__pages a:hover {
    background: var(--dark-color);
    color: var(--white-color);
}

@media screen and (max-width: 1024px) {
    .film__cover {
        padding-bottom: 28%;
    }

    .page__title {
        padding-top: 80px;
        margin-bottom: 30px;
    }

    .list {
        padding-left: 30px;
        padding-right: 30px;
    }

    .list__item {
        margin-bottom: 30px;
        width: calc(33.33% - 10px);
    }
}

@media screen and (max-width: 768px) {
    .list {
        padding-left: 20px;
        padding-right: 20px;
    }

    .list__item {
        width: 100%;
        margin-bottom: 20px;
    }

    .page__title {
        margin-bottom: 20px;
    }

    .films__content {
        padding: 0 20px;
        text-align: center;
        line-height: 1.4;
        font-size: 15px;
        margin-bottom: 60px;
    }

    .film__pages {
        margin-bottom: 50px;
    }

    .list__item.desktop {
        display: none;
    }
}


/* 3.1 - VIDEO VIEW */
.video__title {
    font-size: 32px;
    margin-bottom: 15px;
}

.video__infomation {
    text-align: center;
    color: var(--gray-color);
    font-size: 12px;
    font-family: "Questrial", sans-serif;
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: 1.2px;
}

.video__player {
    margin: 0 auto;
    padding-top: 40px;
}

.video__story p {
    margin-bottom: 20px;
}

.video__caption {
    padding: 40px 0 60px 0;
    line-height: 1.8;
    text-align: center;
}

.video__line {
    margin: 0 auto;
    width: 50px;
    height: 2px;
    background: var(--gray-line-color);
    margin-top: 40px;
}

.more__content {
    display: flex;
    justify-content: space-between;
    justify-items: center;
    padding-top: 40px;
    padding-bottom: 60px;
}

.more__prev, .more__next {
    width: calc(50% -15px);
}

.more__next {
   text-align: right;
}

.more__prev span, .more__next span {
    display: block;
    font-size: 14px;
    color: var(--gray-color);
    margin-bottom: 10px;
}

.more__prev>a, .more__next>a {
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
}

@media screen and (max-width: 768px) {
    .more__content {
        padding: 40px 20px 50px 20px;
    }

    .more__prev span, .more__next span {
        font-size: 12px;
    }

    .more__prev>a, .more__next>a {
    font-size: 14px;
    line-height: 1.4;
    }

    .video__title {
        font-size: 20px;
        padding-left: 20px;
        padding-right: 20px;
        margin-bottom: 5px;
    }

    .video__infomation {
        font-size: 10px;
    }

    .video__player {
        padding-bottom: 40px;
    }

    .video__story {
        padding: 0 20px;
    }

    .video__line {
        margin-top: 10px;
    }

    .video__caption {
        padding-bottom: 60px;
    }
}


/* CONTACT PAGE */
.contact__info {
    text-align: center;
    margin-bottom: 20px;
}


.contact__form {
    padding-bottom: 120px;
    padding-top: 40px;
}

@media screen and (max-width: 768px) {
    .text-justify {
        text-align: justify;
    }

    .contact, .contact__info {
        padding-left: 20px;
        padding-right: 20px;
    }

    .contact__info {
        margin-bottom: 10px;
    }

    .contact__form {
        padding-top: 30px;
    }

}



/* BLOG PAGE */
.caption__blog {
    margin-bottom: 0;
    padding-bottom: 60px;
}

/* BEHIND THE SCENE */
.behind__item {
    width: calc(33.33% - 5px);
    position: relative;
}

.behind {
    margin-top: 20px;
    margin-bottom: 60px;
}

.video-js .vjs-big-play-button {
    font-size: 1.5em;
    border: 0;
    background-color: rgb(0 0 0 / 90%);
}

.vjs-big-play-button:hover {
    background-color: rgb(0 0 0 / 70%);
}

.video-js .vjs-control-bar {
    background-color: rgb(0 0 0 / 90%);
}

.video-js .vjs-load-progress div {
    background: #4c4c4c;
}

.video-js:hover .vjs-big-play-button,
.video-js .vjs-big-play-button:focus {
    background-color: rgb(0 0 0 / 80%);
    transition: all 0s;
}

@media screen and (max-width: 768px) {
    .behind {
        padding: 0 20px;
    }
}


/* UPDATE 2025 VER 1 */
.youtube__lite {
    margin-top: 40px;
}

lite-youtube {
    max-width: 1170px;
}

lite-youtube::before {
    font-family: 'Hanken Grotesk', sans-serif;
}