@import url('https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Solitreo&display=swap');



/* common css */
/* common css */
:root{
    --white: #fff;
    --black: #000;

    --primary: #7B1B38;
    --secondary: #EC5D36;
    --third: #F7EEE5;
}

* {
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style: none;
}

a:hover,
a:focus,
a:active {
    text-decoration: none;
}

figure,
ol,
p,
h1, h2, h3, h4,
ul {
    margin: 0;
    padding: 0;
}
a,small {
    transition: 0.3s linear;
    -webkit-transition: 0.3s linear;
    text-decoration: none;
}
body {
    font-family: "Figtree", sans-serif;
    text-decoration: none;  
    display: flex;
    flex-direction: column;
}
html,body{
    height: 100%;
}
img {
    max-width: 100%;
    height: auto;
}
.main-wrp {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
}
.footer{
    flex-shrink: 0;
}
/* END common css */

/* Back Button */
#backToTopBtn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 99;
    border: none;
    outline: none;
    background-color: var(--primary-color);
    color: var(--white);
    cursor: pointer;
    font-size: 1.125rem;
    border-radius: 50%;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.5s ease,transform 0.5s ease,background-color 0.3s ease-in-out
}

#backToTopBtn:hover {
    opacity: 0.5 !important;
    border: 1px solid var(--primary);
}

#backToTopBtn.show {
    display: flex;
    opacity: 1;
    transform: translateY(0)
}

#backToTopBtn svg {
    width: 1.25rem;
    height: 1.25rem;
    min-width: 1.25rem;
    min-height: 1.25rem;
    stroke-width: 2
}
/* End Back Button */


/* btn */
.btn{
    display: flex;
    padding: 12px 32px;
    align-items: center;
    gap: 8px;
    border-radius: 32px;
    width: fit-content;
    transition: all .3s ease-in-out;
    position: relative;
    z-index: 1;
}
.btn-primary{
    background: var(--primary);
    border: 1px solid var(--primary);
    color: var(--white);
    font-size: 16px;
    font-weight: 500;
}
.btn-primary:focus,
.btn-primary:hover{
    transform: translateY(-2px);
    background: #5d1329;
    border: 1px solid #5d1329;
}
.btn-white{
    background: var(--white);
    border: 1px solid var(--white);
    color: var(--black);
}
.btn-white:focus, .btn-white:hover{
    transform: translateY(-2px);
    background: var(--third);
    border: 1px solid var(--third);
}
/* END btn */

/* reveal */
.reveal {
    opacity: 0;
    transform: translateY(40px) scale(0.9);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    will-change: opacity, transform;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}
/* END reveal */

/* Header */
.header{
    border-bottom: 1px solid rgba(125, 125, 125, 0.10);
    background: var(--third);
}
.nav-logo img{
    width: 177px;
}
.header-lower{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
}
.nav-menu{
    display: flex;
    align-items: center;
    gap: 32px;
}
.nav-item{
    color: #000;
    font-size: 16px;
    font-weight: 500;
}
.mobile-menu{ display: none;}
.hamburger-toggler{ display: none;}
/* END Header */

/* hero */
.hero{
    height: 30rem;
    background: var(--third);
    position: relative;
}
.hero-left{
    position: absolute;
    top: 2rem;
    left: 2rem;
    z-index: 1;
}
.hero-right{
    position: absolute;
    top: 2rem;
    right: 2rem;
    z-index: 1;
}
.hero-right img,
.hero-left img{ 
    height: 100%; 
    width: 100%;
    object-fit: contain;
}
.hero .container{
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}
.hero-content{
    display: flex;
    flex-direction: column;
    gap: 24px;

    text-align: center;
    align-items: center;
}
.hero h1{
    font-weight: 600;
    font-size: 80px;
    color: var(--black);
}
.hero h1 span:first-child{
    color: var(--secondary);
    font-family: Solitreo;
}
.hero h1 span:last-child{
    color: var(--primary);
    font-family: Solitreo;
}
.underline {
  position: relative;
  display: inline-block;
  z-index: 1;
}
.underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 12px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  z-index: 0;
}
.underline.orange::after {
  background-image: url("../images/orange.svg");
}

.underline.white::after {
  background-image: url("../images/white.png");
}

.underline.purple::after {
  background-image: url("../images/primary.svg");
}


/* END hero */

/* map */
.map{
    background: var(--third);
    padding: 30px 0;
}
.map-img{ aspect-ratio: 16/10;}
.map-img img{
    height: 100%;
    width: 100%;
    object-fit: contain;
    transition: all .3s ease-in-out;
    position: relative;
    z-index: 2;
}
.map-img img:hover{
    scale: 1.05;
}
/* map */

/* why */
.why{
    background: var(--primary);
    border-radius: 0 0 32px 32px;
    padding: 60px 0 360px;
}
.why .container{
    display: flex;
    flex-direction: column;
    gap: 72px;

}

.section-header h2{
    font-size: 56px;
    color: var(--white);
    font-weight: 600;
    text-align: center;
}
.section-header h2 span{
    font-family: Solitreo;
}
.why-card{
    display: flex;
    flex-direction: column;
    gap: 32px;
    height: 100%;
    border-radius: 24px;
    background: var(--third);
    padding: 40px 32px;
    transition: all .3s ease-in-out;
}
.why-card:hover{
    transform: translateY(-5px);
    background: #f8eadd;

}
.why-card-top{
    display: flex;
    flex-direction: column;
}
.why-card p{
    font-size: 14px;
    font-weight: 500;
}
.why-card p:first-child{ 
    text-transform: uppercase;
}
.why-card span{
    font-size: 40px;
    color: var(--primary);
    font-weight: 400;
    font-family: Solitreo;
    line-height: normal;
}
.why .section-header{
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}
/* END why */

/* gallery */
.foto-gallery{
    margin-top: -18rem;
    padding-bottom: 60px;
    overflow-x: clip;
}
.foto-gallery .container{
    display: flex;
    flex-direction: column;
    gap: 40px;
}
#gallerySlider .splide__arrow{
    bottom: -5rem;
    transform: translateY(0);
    top: unset;
    width: 70px;
    height: 52px;
    opacity: 1;
    border-radius: 100px;
}
#gallerySlider .splide__arrow svg{
    width: 24px;
    height: 24px;
}
#gallerySlider .splide__arrow--next{
    bottom: -5rem;
    right: 0;
    background-color: var(--primary);
    border: 1px solid var(--primary);
}
#gallerySlider .splide__arrow--prev{
    bottom: -5rem;
    right: 5rem;
    left: unset;
    background: #ECECEE;
    border: 1px solid #ECECEE;;
}
#gallerySlider .splide__arrow--prev svg{
    transform: scaleX(1);
}
#gallerySlider .splide__track{
    clip-path: inset(-100vw -100vw -100vw 0);
    overflow: visible;
}
.gallery-progress {
  position: absolute;
  flex: 1; 
  height: 3px;
  background: #E0E0E0;
  border-radius: 100px;
  overflow: hidden;
  width: 80%;
  bottom: -3.5rem;
}

.gallery-progress__bar {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: var(--primary); 
  border-radius: 100px;
  transition: width 0.3s ease;
}
.foto-gallery-title{
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: center;
    align-items: center;
}
.foto-gallery-title h3{
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    color: var(--white);
}
.section-banner{
    color: var(--primary);
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 40px;
    background: var(--third);
    width: fit-content;
}
/* END gallery */

/* about */
.about{
    padding: 60px 0;
    border-radius: 0 0 32px 32px;
    z-index: 1;
}
.about-content{
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.about-title{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.about-title .section-banner{
    background: var(--third);
}
.about-title h2{
    color: var(--black);
    font-size: 40px;
    font-weight: 600;
}
.about h2 span{
    color: var(--primary);
    font-family: Solitreo;
    font-weight: 400;
}
.about-wrp{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.about-wrp p strong{
    font-weight: 700;
    opacity: 0.9;
}
.about-img{
    aspect-ratio: 3/4;
    border-radius: 32px;
    overflow: hidden;
}
.about-img img{
    object-fit: cover;
    width: 100%;
    height: 100%;
    border-radius: 32px;
    transition: all .3s ease-in-out;
}
.about-img img:hover{
    scale: 1.05;
}
/* END about */

/* partner slider */
.partners{
    overflow: hidden;
    background: var(--third);
    padding-top: 150px;
    margin-top: -12rem;
}
.partner-img {
  max-width: 157px;
  height: 100%;
  display: flex;
  align-items: center;   
  justify-content: center; 
}

.partner-img img {
  object-fit: contain;
  max-width: 100%;
  max-height: 100%;
  transition: all .3s ease-in-out;
  overflow: hidden;
  filter: grayscale(100%);
  opacity: .5;
}
.partner-img img:hover{
    scale: 1.05;
    filter: none;
    opacity: 1;
}

#partnerSlider .splide__track{
    clip-path: inset(-100vw -100vw -100vw -100vw);
    overflow: visible;
}
/* END partner slider */

/* banner */
.banner{
    height: 40rem;
    background-position: bottom;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    border-radius: 0 0 32px 32px;
}
.banner::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(0deg, rgba(123, 27, 56, 0.85) 0%, rgba(123, 27, 56, 0.85) 100%);
    z-index: 1;
    border-radius: 0 0 32px 32px;
}
.banner .container{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}
.banner-content{
    display: flex;
    flex-direction: column;
    gap: 24px;
    text-align: center;
    align-items: center;
    position: relative;
    z-index: 3;
}
.banner-content p{
    color: var(--white);
}
.banner-wrp{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.banner-wrp h2{
    font-size: 56px;
    font-weight: 600;
    color: var(--white);
}
.banner-wrp h2 span{
    font-family: Solitreo;
}

/* END banner */

/* footer */
.footer{
    padding: 72px 0;
}
.footer-left{
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.footer-left img{ width: 184px;}
.footer-left-content{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-left-content a{ color: var(--primary);}
.footer-left p{
    font-size: 14px;
}
.footer-right{
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.footer-right-content{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-item{
    color: var(--black);
}
.footer-right > span{
    font-size: 20px;
    font-weight: 700;
}
.footer-link{
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 1rem;
}
.footer-right-wrp{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-social{
    display: flex;
    align-items: center;
    gap: 1rem;
}
.footer-social-link {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.footer-social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: 50%;
    z-index: 0;
}

.footer-social-link svg {
    position: relative;
    z-index: 1;
}

/* END footer */

/* breadcrumb */
.breadcrumb{
    background: #F7EEE5;
    padding: 56px 0;
}
.breadcrumb-title{
    text-align: center;
}
/* END breadcrumb */

/* gallery */
.gallery-wrp{
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 32px 24px;
    border-radius: 24px;
    background: #F7EEE5;
}
.gallery-wrp > span{
    font-size: 24px;
    font-weight: 700;
}
.gallery-form{
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.form-group-input{
    display: flex;
    align-items: center;
    justify-content: space-between;
    
    border-radius: 12px;
    background: var(--White, #FFF);
    padding: 18px 20px;
}
.form-group-input select,
.form-group-input input{
    border: none;
}
.custom-select {
  width: 100%;
  padding: 0;
  font-size: 1rem;
  border: 1px solid var(--white);
  border-radius: 12px;
  background: #fff;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  position: relative;
  cursor: pointer;
}

.custom-select:focus {
  border-color: var(--white);
  box-shadow: none;
  outline: none;
}

/* END gallery */


/* gallery card */
.gallery-card{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.gallery-section .container{
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.gallery-title{
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}
.gallery-title > p{
    padding: 6px 18px;
    border-radius: 40px;
    background: #FEE7DF;
    color: #7B1B38;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    width: fit-content;
    margin-bottom: 0;
}
.gallery-title > h2{
    color: var(--white, #FFF);
    text-align: center;
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 0;
}
.gallery-content > span{
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 24px;
    font-weight: 700;
}
.gallery-content > p{
    opacity: .7;
}
.gallery-img{
    aspect-ratio: 5/3;
    overflow: hidden;
    border-radius: 24px;
}
.gallery-img img{
    height: 100%;
    width: 100%;
    border-radius: 24px;
    object-position: bottom;
    object-fit: cover;
    transition: all .3s ease-in-out;
}
.gallery-img img:hover{
    scale: 1.05;
}
/* END gallery card */