/* Import Raleway font */
@import url("https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;600;700;800&display=swap");

/* Import SVN-Gilroy Bold font */
@font-face {
    font-family: "SVN-Gilroy";
    src: url("font/SVN-Gilroy Bold.woff2") format("woff2");
    font-weight: bold;
    font-style: normal;
}
/* Import SVN-Gilroy Medium font */
@font-face {
    font-family: "SVN-Gilroy";
    src: url("font/SVN-Gilroy Medium.woff2") format("woff2");
    font-weight: 500;
    font-style: normal;
}

/* Import SVN-Gilroy Regular font */
@font-face {
    font-family: "SVN-Gilroy";
    src: url("font/SVN-Gilroy Regular.woff2") format("woff2");
    font-weight: normal;
    font-style: normal;
}
/* Reset và General styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Raleway", sans-serif;
    line-height: 1.6;
    color: #fff;
    background-image: url(img/section3_bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
}

a {
    text-decoration: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Image animation */
.image-animate {
    opacity: 1;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.image-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive images */
img {
    max-width: 100%;
    height: auto;
}

/* Section 1 - Hero */
.hero-section {
    background: url("img/section1_bg.jpg");
    background-size: 1440px;
    background-position: top center;
    background-repeat: no-repeat;
    height: calc(1440px / 1.88235294118);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-images {
    display: flex;
    gap: 40px;
    justify-content: center;
    align-items: center;
}

.hero-images img {
    max-height: 400px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Section 2 - Video */
.video-title {
    margin-left: -20px;

}
.video-section {
    background: url("img/section2_bg.jpg");
    background-size: 1440px;
    background-position: top;
    background-repeat: no-repeat;
    height: 882px;
    display: flex;
    align-items: center;
}

.video-wrapper {
    padding-top: 0px;
    position: relative;
    cursor: pointer;
}

.video-thumbnail {
    height: 454px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.video-thumbnail:hover {
    transform: scale(1.02);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #007bff;
    transition: all 0.3s ease;
}

.play-button:hover {
    background: rgba(255, 255, 255, 1);
    transform: translate(-50%, -50%) scale(1.1);
}

/* Video Modal */
.video-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
    position: relative;
    margin: 5% auto;
    width: 80%;
    max-width: 800px;
}

.close-btn {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
}

.close-btn:hover {
    color: #ccc;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
}
#binz-video {
    width: 800px;
}

/* Section 3 - Main Container */
.content-section {
    background: url("img/section3_bg.jpg");
    background-size: 1440px;
    background-position-x: center;
    background-position-y: 0px;
    background-repeat: no-repeat;
    min-height: 100vh;
    padding: 80px 0;
}

/* Section 3A */
.subsection-3a {
    padding: 0px;
}
#meat-video {
    width: 780px;
    border-radius: 15px;
}

.title-image {
    text-align: center;
    margin-bottom: 80px;
}

.main-image {
    text-align: center;
    margin-bottom: 40px;
}

.subsection-3a .title-image img {
    height: 209px;
}

.subsection-3a .main-image img {
    height: 427px;
}

.main-image img {
    border-radius: 10px;
}

.three-columns {
    display: flex;
    gap: 30px;
    justify-content: space-between;
}

.column {
    flex: 1;
    text-align: center;
}

.section3a-title {
    color: #000;
    font-family: Raleway;
    font-size: 36px;
    font-style: italic;
    font-weight: 800;
    line-height: normal;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.column img {
    max-width: 200px;
    border-radius: 10px;
    margin-bottom: 15px;
}

.section3a-text {
    color: #000;
    text-align: center;
    font-family: Raleway;
    font-size: 20px;
    font-style: italic;
    font-weight: 600;
    line-height: normal;
}
.section3a-text strong {
    color: #000;
    font-family: Raleway;
    font-size: 32px;
    font-style: italic;
    font-weight: 800;
    line-height: normal;
    display: block;
}

.section3a-red-text {
    color: #ffd6d1;
    text-align: center;
    font-size: 20px;
    font-style: italic;
    font-weight: 600;
    line-height: normal;
    border-radius: 18px;
    background: #ff000d;
    padding: 0px 5px;
    margin-bottom: 10px;
}

/* Section 3B */
.subsection-3b {
    padding-top: 120px;
}

#section3b > div.center-image > img {
    height: 182px;
}

#section3b > div.two-columns > div.left-column > img {
    height: 436px;
}

.subsection-3b .feature-item img {
    width: 145px;
    height: 145px;
}

.center-image {
    text-align: center;
    margin-bottom: 40px;
}

.two-columns {
    display: flex;
    gap: 40px;
}

.left-column,
.right-column {
    flex: 1;
}

.subsection-3b .left-column {
    flex: 0 0 40%;
    display: flex;
    align-items: center;
}

.left-column img {
    border-radius: 10px;
}

.feature-item {
    display: flex;
    gap: 20px;
    align-items: center;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.feature-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
}

.feature-text h4 {
    color: #000;
    font-family: SVN-Gilroy;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.feature-text p {
    color: #666;
}

.subsection-3b .feature-text strong {
    color: #ff000d;
    font-family: SVN-Gilroy;
    font-size: 48px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    display: block;
}

.subsection-3b .feature-text li {
    color: black;
    font-family: SVN-Gilroy;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

/* Gilroy Bold Font */
.gilroy-bold {
    font-family: "SVN-Gilroy", Raleway, sans-serif !important;
    font-weight: bold !important;
}

/* Feature List with Icon */
.feature-list {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.feature-list ul {
    display: none; /* ẩn mặc định */
}
.feature-list.active ul {
    display: block; /* hiện khi có class active */
	max-width: 385px;
}

.check-icon {
    width: 25px !important;
    height: 25px !important;
    margin-top: 5px;
    flex-shrink: 0;
}

.feature-list ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.feature-list li {
    margin-bottom: 5px;
    color: #666;
    font-family: Raleway;
}

/* Section 3C */
.subsection-3c {
    padding-top: 120px;
    text-align: center;
    position: relative;
}

.gallery-section-wrapper {
    position: relative;
    margin: 0 auto;
    max-width: 1200px;
}

.gallery-main {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.gallery-main img {
    border-radius: 10px;
    max-width: 80%;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-main img:hover {
    transform: scale(1.02);
}

/* Main Gallery Swiper */
.galleryMainSwiper {
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

/* .galleryMainSwiper #gaImage  { */
    /* width: 100%; */
    /* object-fit: contain;  */
/* } */

.galleryMainSwiper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
}

.galleryMainSwiper .swiper-slide {
    text-align: center;
}

.galleryMainSwiper .swiper-slide img {
    width: 100%;
    /* max-width: 800px; */
    height: auto;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

/* .galleryMainSwiper .swiper-slide #gaImage { */
	/* width: 600px; */
/* } */



.galleryMainSwiper .swiper-slide img:hover {
    transform: scale(1.02);
}
.galleryMainSwiper .custom-next-main,
.galleryMainSwiper .custom-prev-main {
    width: 100px;
    height: 80px;
}
.galleryMainSwiper .custom-next-main img,
.galleryMainSwiper .custom-prev-main img {
    width: 67px;
    height: 50px;
    opacity: 0.5;
}

/* Section 3C Text */
.section3c_text {
    border-radius: 18px;
    background: #ffd6d1;
    padding: 2px 5px;
    width: auto;
    margin: 0px 145px;
    color: #231f20;
    text-align: center;
    font-family: SVN-Gilroy;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
}

/* Gallery Swiper - Fixed */
.gallerySwiper {
    padding: 20px 30px;
    position: relative;
    overflow: hidden;
	height:250px;
}

.gallerySwiper .swiper-wrapper {
    display: flex;
    align-items: stretch;
}

.gallerySwiper .swiper-slide {
    text-align: center;
    /* width: 230px; */
    height: auto;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.gallerySwiper .swiper-slide img {
    width: 230px;
    /* height: 180px; */
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 10px;
    flex-shrink: 0;
}

.product-title {
    color: #000;
    font-family: Raleway;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    margin-top: 10px;
    text-transform: uppercase;
}

/* Navigation Arrows - Common Styles */
.custom-next,
.custom-prev,
.custom-next-gallery,
.custom-prev-gallery,
.custom-next-main,
.custom-prev-main,
.custom-next-news,
.custom-prev-news {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    cursor: pointer;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;

    transition: all 0.3s ease;
}

.custom-next:hover,
.custom-prev:hover,
.custom-next-gallery:hover,
.custom-prev-gallery:hover,
.custom-next-main:hover,
.custom-prev-main:hover,
.custom-next-news:hover,
.custom-prev-news:hover {
    transform: translateY(-50%) scale(1.1);
}

.custom-next img,
.custom-prev img,
.custom-next-gallery img,
.custom-prev-gallery img,
.custom-next-main img,
.custom-prev-main img,
.custom-next-news img,
.custom-prev-news img {
    width: 24px;
    height: 24px;
}

/* Gallery Navigation */
.custom-next-gallery,
.custom-next-main {
    right: -13px;
}

.custom-prev-gallery,
.custom-prev-main {
    left: -13px;
}

/* Section 3D - News */
.subsection-3d {
    padding-top: 120px;
    text-align: center;
}

.news-section-wrapper {
    position: relative;
    margin: 0 auto;
    max-width: 1200px;
}

.news-title {
    text-align: center;
    margin-bottom: 40px;
}

.news-title img {
    height: 100px;
}

/* News Swiper */
.newsSwiper {
    padding: 20px 30px;
    position: relative;
    overflow: hidden;
}

.newsSwiper .swiper-slide {
    height: auto;
}

.news-item {
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.news-item:hover {
    transform: translateY(-5px);
}

.news-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    background: url(img/news-bg-3.png);
    background-size: 100%;
    padding: 20px;
    border-radius: 14px;
    margin-bottom: 10px;
    background-position: top center;
    background-repeat: no-repeat;
    background-blend-mode: screen;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    border-radius: 14px;
}

.news-item:hover .news-image img {
    transform: scale(1.05);
}

.news-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 14.067px;
    background: #ffd6d1;
}

.news-content h4 {
    color: var(--MDL-Black, #000);
    text-align: center;
    font-family: SVN-Gilroy;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

/* News Navigation */
.custom-next-news {
    right: 10px;
}

.custom-prev-news {
    left: 10px;
}

/* Footer */
.footer-section {
    background: #fff;
    color: black;
    padding: 50px 0 30px;
    font-family: SVN-Gilroy;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.footer-column {
    flex: 1;
}

.footer-column h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #000;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    transform: translateY(-3px);
}

.footer-column p {
    color: #000;
    margin-bottom: 10px;
}

.footer-column p.phone {
    color: #000;
    margin-bottom: 10px;
    color: var(--MDL-Black, #000);
    font-family: SVN-Gilroy;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    padding-left: 35px;
    background: url("img/footer-phone.png") no-repeat left center;
}
.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    color: #ccc;
    font-size: 20px;
    transition: color 0.3s ease;
}


/* Wrapper cho ảnh (như đã bọc bằng .img-shine) */
.img-shine {
  position: relative;
  display: inline-block;
  overflow: hidden;
  /* nếu icon bo tròn thì bo ở đây để vệt sáng cũng bo theo */
  border-radius: 8px;
}

.img-shine > img {
  display: block;
}

/* Vệt sáng bám sát theo alpha của ảnh nhờ mask */
.img-shine::after {
  content: "";
  position: absolute;
  top: 0;
  left: -60%;
  width: 20%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,.95) 50%,
    rgba(255,255,255,0) 100%
  );
  transform: skewX(-20deg);
  pointer-events: none;
  z-index: 2;
  opacity: 0;
  mix-blend-mode: screen;       /* nhìn “ánh” tự nhiên hơn */

  /* ---- CLIP THEO HÌNH ẢNH (RẤT QUAN TRỌNG) ---- */
  -webkit-mask-image: var(--img);
  mask-image: var(--img);
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
}

.img-shine:hover::after {
  animation: shine-sweep 2s ease forwards;
  opacity: 1;
}

@keyframes shine-sweep {
  0%   { left: -60%; }
  100% { left: 130%; }
}





@media (min-width: 1024px) {
.video-wrapper {
	position: relative;
    left: 15%;
}
    .video-title {
	position: relative;
    left: 15%;
    }
}

@media (max-width: 1024px) {
    .hero-section {
        padding: 60px 0;
        width: 100%;
        height: calc(100vw / 1.88235294118);
        background-size: 100vw;
    }

    .video-section {
        padding: 60px 0;
        width: 100%;
        height: calc(100vw / 1.62995594714);
        background-size: 100vw;
    }
    .video-thumbnail {
        height: 295px;
    }
    .video-title {
        margin-left: 27px;
        width: 220px;
    }
    #banner-video {
        width: 100%;
    }
    #binz-video {
        width: 470px;
    }
    #meat-video {
        width: 740px;
        border-radius: 15px;
        margin-top: 30px;
    }
    .gilroy-bold i{
        font-size: 16px;
	font-weight: 400;
    }
}
@media (max-width: 460px) {
    .gilroy-bold i{
        font-size: 12px;
	font-weight: 400;
    }
    .hero-images {
        flex-direction: column;
        gap: 20px;
    }

    .three-columns {
        flex-direction: column;
        gap: 40px;
    }

    .two-columns {
        flex-direction: column;
        gap: 5px;
    }
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
    img {
        max-width: 100%;
    }
	
	.galleryMainSwiper .swiper-slide img{
		max-width: 310px;
	}
    .hero-section,
    .video-section,
    .content-section {
        background-size: 100%;
    }
    .hero-section {
        padding: 60px 0;
        width: 100%;
        height: calc(100vw / 1.88235294118);
        background-size: 100vw;
    }
    #banner-video {
        width: 100%;
    }
    #binz-video {
        width: 275px;
    }
    #meat-video {
        width: 228px;
        border-radius: 15px;
        margin-top: 30px;
    }
    .video-section {
        padding: 60px 0;
        width: 100%;
        height: calc(100vw / 1.62995594714);
        background-size: 100vw;
    }
    .video-section .containter {
        padding: 0px;
        text-align: center;
    }
    .container {
        padding: 0 0px;
    }
    .video-title {
        margin-left: 27px;
        width: 130px;
    }
    .video-wrapper {
        text-align: center;
    }
    .video-thumbnail {
        width: 80%;
        height: auto;
    }
    .modal-content {
        position: relative;
        margin: 30% auto;
        width: 80%;
        max-width: 800px;
    }
    .content-section {
        background-size: 450px;
    }
    .subsection-3a {
        padding: 0px;
    }
    .title-image {
        padding: 0px;
        margin: 0px;
        margin-top: -30px;
    }
    .subsection-3a .title-image img {
        height: 70px;
        margin-top: 5px;
    }

    .subsection-3a .main-image img {
        width: 240px;
        margin-top: 24px;
        height: auto;
    }
    .feature-item {
        flex-direction: row;
        text-align: center;
        padding: 15px;
        margin-bottom: 0;
    }
    .subsection-3b .feature-item img {
        width: 90px;
        height: 90px;
    }
    .content-section {
        padding: 40px 0;
    }
    #section3b > div.center-image > img {
        height: auto;
        width: 310px;
    }
    #section3b > div.center-image {
        margin-top: 50px;
        margin-bottom: 20px;
    }
    #section3b > div.two-columns > div.left-column > img {
        height: auto;
        width: 300px;
    }
    .subsection-3b .left-column {
        flex: 0 0 30%;
        text-align: center;
        justify-content: center;
        padding-left: 10px;
    }
    .subsection-3b .right-column {
        margin-top: 0px;
    }
    .feature-list ul {
        list-style: none;
        margin: 0;
        padding: 0;
        text-align: left;
    }
    .subsection-3c {
        margin-top: 100px;
    }
    .section3c_text {
        font-size: 18px;
        width: 90%;
        margin: 0px auto;
    }
    .galleryMainSwiper .custom-next-main,
    .galleryMainSwiper .custom-prev-main {
        width: 100px;
        height: 80px;
    }
    .news-image {
        width: 100%;
        height: auto;
        padding: 15px 10px 10px 10px;
    }
    .news-title img {
        height: auto;
        width: 300px;
        margin-top: 50px;
    }
    .subsection-3a,
    .subsection-3b,
    .subsection-3c,
    .subsection-3d {
        padding-top: 0px;
    }
    .three-columns .column {
        padding-top: 20px;
    }
    .three-columns .column img {
        margin-bottom: 0px;
    }
    .section3a-title {
        font-size: 32px;
    }
    .section3a-text strong {
        font-size: 24px;
    }
    .section3a-red-text {
        margin: 5px auto;
        width: 80%;
        padding: 7px;
        font-size: 16px;
    }

    .section3a-text {
        font-size: 12px;
        margin: 5px auto;
        width: 80%;
    }
    #section3a > div.three-columns > div:nth-child(1) > div.section3a-red-text,
    #section3a > div.three-columns > div:nth-child(3) > div.section3a-red-text {
        display: none;
    }
    .section3c_text {
        font-size: 18px;
    }

    .feature-list {
        display: flex;
        align-items: flex-start;
        gap: 15px;
        justify-content: flex-start;
    }

    .feature-text h4 {
        font-size: 23px;
        text-align: left;
    }
    .subsection-3b .feature-text li {
        font-size: 12px;
    }
    .feature-text strong {
        font-size: 28px !important;
    }

    .gallerySwiper {
        margin: 0 auto;
    }

    .gallerySwiper .swiper-slide {
        /* width: 150px; */
    }

    .gallerySwiper .swiper-slide img {
        width: 150px;
        /* height: 120px; */
    }

    .custom-next-gallery,
    .custom-prev-gallery,
    .custom-next-main,
    .custom-prev-main,
    .custom-next-news,
    .custom-prev-news {
        width: 40px;
        height: 40px;
        margin-top: 45px;
    }

    .custom-next-gallery {
        right: 10px;
    }
    .custom-prev-gallery {
        left: 10px;
    }

    .custom-next-gallery img,
    .custom-prev-gallery img,
    .custom-next-main img,
    .custom-prev-main img,
    .custom-next-news img,
    .custom-prev-news img {
        width: 20px;
        height: 20px;
    }

    .newsSwiper {
        padding: 20px 0px;
    }
    .galleryMainSwiper .custom-next-main img,
    .galleryMainSwiper .custom-prev-main img {
        width: 40px;
        height: 26px;
    }

    /* Swiper Override Styles */
    .swiper {
        width: 100%;
        height: 232px;
    }

    .swiper-wrapper {
        width: 100%;
        height: 100%;
        box-sizing: content-box;
        display: flex;
        position: relative;
		align-items:center;
    }

    .swiper-slide {
        text-align: center;
        font-size: 18px;
        background: transparent;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    /* Ensure proper swiper container overflow */
    .gallerySwiper .swiper-container {
        overflow: hidden;
        list-style: none;
        padding: 0;
        z-index: 1;
    }
	
	.feature-list.active ul{
		max-width:256px;
	}
	
}
