@import url('https://fonts.googleapis.com/css2?family=GFS+Didot&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* SCROOLBAR */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--c4);
} 
::-webkit-scrollbar-thumb {
  background:var(--c3);
  border-radius: 20px;
}
::-webkit-scrollbar-thumb:hover {
  background: rgb(42, 15, 0);
}

/* Colors and Fonts */
:root {
  --c1: #000000;
  --c2: #ffffff;
  --c3: #EAE9D1;    /*Primary Color*/
  --c4: #0B0B0B;         /*secondary Color*/
  --c5: linear-gradient(180deg, #FFFFFF 0%, #EAE9D1 117.2%); /*BG Color*/
  --f1: "Montserrat", sans-serif;
  --f2:  "GFS Didot", serif;
  --f3: "Poppins", sans-serif;
}

/* Global Styles */
*{
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  list-style: none;
}

h1,h2,h3,h4,h5,h6{
  padding: 0;
  margin: 0;
  text-transform: capitalize;
}
p{
  padding: 0;
  margin: 0;
  color: inherit;
}
ul{
  padding: 0 !important;
  margin: 0;
}
li{
  padding: 0;
  margin: 0;
  list-style: none ;
}
a{
  display: block !important;
  text-decoration: none !important;
  color: inherit;
}
img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.wrapper {
    position: relative;
    overflow: hidden;
}
body {
    font-family: var(--f1);
}

/* Man Classes */

.main-title {
  /
}

.main-title h2{
  font-family: var(--f2);
  font-size: 46px;
  color: var(--c4);
}

.main-title h3{
  font-family: var(--f3);
  font-size: 1.5rem;
  color: var(--c4);
}

.main-title span{
  color: var(--c3);
}

.main-btn a {
  display: inline-block;
  padding: 10px 30px;
  background-color: var(--c4);
  color: var(--c2);
  border-radius: 5px;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.spacing {
  padding: 80px 0px;
}

.row-gap {
  row-gap:20px;
}

/* inner-wrapper */

.inner-header {
  height: 460px;
  background-position: center !important;
  position: relative;
  display: flex;
  align-items: center;
  text-align: center;
  background-size: cover !important;
}

.inner-header:before {
  width: 100%;
  height: 100%;
  content: "";
  background: rgb(0 0 0 / 60%);
  position: absolute;
  left: 0;
  top: 0;
}

.inner-header .container {
  position: relative;
}

.inner-header .inner-header-title h2 {
  color: #fff;
  font-size: 50px;
  font-weight: 700;
}

/* Responsive Menu */

.responsive-btn a {
  display: block !important;
}

.responsive-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: var(--c1);
  z-index: 9999;
  transition: all 0.5s;
}

.responsive-links ul li ul {
  display: none;
}

.responsive-links ul li i {
  transition: transform 0.3s ease;
}

.responsive-menu.active {
  left: 0;
  width: 66%;
  box-shadow: 10px 10px 30px #000;
}

.responsive-links ul li ul li {
  list-style: disc;
  color: var(--c3);
}

.responsive-menu-main {
  height: 100%;
  padding: 30px;
  position: relative;
  background: var(--c2);
  width: 100%;
  overflow: hidden;
}

.responsive-logo {
  width: 173px;
  margin-bottom: 20px;
  margin-top: 36px;
}

.responsive-links ul li a {
  color: var(--c1);
  padding: 17px 0px;
  display: block !important;
  font-weight: 500;
}

.responsive-links ul li {
  border-bottom: 1px solid #8080803d;
  position: relative;
}

.resp-social {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--c4);
  padding: 6px 0px;
}

.responsive-icon a i {
  display: block;
}

.responsive-icon {
  position: absolute;
  top: 50px;
  right: 20px;
}

.responsive-icon a {
  color: var(--c3);
  font-size: 30px;
}

.responsive-links ul li:last-child {
  border: 0;
}

body.scroll-stop {
  overflow: hidden;
}

.resp-social ul {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.resp-social ul li a i {
  display: block;
}

.resp-social ul li a {
  padding: 10px;
  color: var(--c2);
  font-size: 24px;
}

.responsive-links ul li i {
  position: absolute;
  right: 0;
  top: 13px;
  color: var(--c3);
}

.responsive-links ul li ul {
  padding-left: 30px;
  border-top: 1px solid #8080803d;
}

.responsive-links ul li i.active::before {
  content: "\f068";
}

.responsive-btn a {
  color: var(--c1);
  font-size: 31px;
  text-align: end;
}

/************************************/
/***       Loader         	  ***/
/************************************/ 

.loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: var(--c2);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}
.loader {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  border: 3px solid var(--c1);
  border-color: var(--c1) var(--c1) transparent transparent;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}
.loader::after,
.loader::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  border-radius: 50%;
  border: 3px solid;
  box-sizing: border-box;
}
.loader::after {
  width: 58px;
  height: 58px;
  border-color: transparent transparent var(--c3) var(--c3);
  animation: rotationBack 0.5s linear infinite;
}
.loader::before {
  width: 48px;
  height: 48px;
  border-color: var(--c1) var(--c1) transparent transparent;
  animation: rotation 1.5s linear infinite;
}
@keyframes rotation {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes rotationBack {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(-360deg); }
}

/************************************/
/***    Navigation Animation   	 ***/
/************************************/ 

.navigation ul li a {
    position: relative;
    overflow: hidden;
    z-index: 1;
    font-size: 16px;
    font-weight: 500;
    color: var(--c1);
    text-transform: uppercase;
    padding: 2px 0px;
    display: block !important;
}

.navigation ul li a::before,
.navigation ul li a::after {
  content: "";
  position: absolute;
  background: linear-gradient(to left, #000000, #A6A6A6);
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transition: transform 0.4s;
}
.navigation ul li a::after {
	background: linear-gradient(to left,#A6A6A6, #000000);
}

.navigation ul li a::before {
  top: 0;
  left: 0;
  transform-origin: left;
}

.navigation ul li a::after {
  bottom: 0;
  right: 0;
  transform-origin: right;
}

.navigation ul li a:hover::before,
.navigation ul li a:hover::after {
  transform: scaleX(1);
	
}
.shopping a:hover {
    color: var(--c4);
    text-shadow: 0px 0px 1px;
}

.search a:hover {
    color: var(--c4);
    text-shadow: 0px 0px 1px;
}

/* ___BUTTON_ANIMATION____ */

.dswipe a:first-of-type, .dswipe input {
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: transform 0.6s ease-in-out, box-shadow 0.3s ease-in-out;
}
.dswipe a:first-of-type::before, .dswipe button::before{
  content: '';
  position: absolute;
  top: 0;
  right: -50px;
  bottom: 0;
  left: 0;
  border-right: 50px solid transparent;
  border-bottom: 50px solid var(--c2);
  transform: translateX(-100%);
  transition: transform 0.4s ease-in-out;
  z-index: -1;
}
.dswipe a:first-of-type:hover, .dswipe input:hover{
  color: var(--c4);
  box-shadow: 0px 0px 8px #000000;
  border-color: var(--c4);
}
.dswipe a:hover::before, 
.dswipe button:hover::before{
  transform: translateX(0);
}

/* _____ */
/* Card animation */

.card-hover {
  position: relative;
  overflow: hidden;
  transition: all 0.5s ease;
}

.card-hover::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(0deg,
      transparent,
      transparent 30%,
      rgba(255, 255, 255, 0.877));
  transform: rotate(-45deg);
  transition: all 0.7s ease-in-out;
  opacity: 0;
}

.card-hover:hover {
  transform: scale(1.03) translateY(-10px);
  box-shadow: 0 0 20px rgba(39, 39, 39, 0.5);
}

.card-hover:hover::before {
  opacity: 1;
  transform: rotate(-45deg) translateY(100%);
}


/*****************************************/
/***********     00   HEADER      *******/
/*****************************************/
.navigation ul {
    display: flex;
    justify-content: center;
    gap: 18px;
}

.heaader-item-main {
    gap: 26px;
    display: flex;
    align-items: center;
    justify-content: end;
}

.header-logo img {
    width: 70%;
    margin: 0 auto;
}

.h-item {
    display: flex;
    align-items: center;
}

header.header {
    padding: 10px 0px;
}
/*****************************************/
/***********     01 Banner      *******/
/*****************************************/

.banner {
    position: relative;
    height: 100dvh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-size: cover;
    background-position: center;
}
.banner-shape {
    position: absolute;
    width: 500px;
    left: 40px;
}

.banner-title {
    position: relative;
}

.banner-title h1 {
    font-size: 68px;
    color: var(--c2);
    font-family: var(--f2);
}


.banner-title h1 span {
    display: block;
    font-size: 100px;
    text-transform: uppercase;
}

.banner-title h2 {
    color: var(--c2);
    padding-bottom: 20px;
    font-size: 40px;
    font-weight: 400;
}

.banner-btn {
    display: flex;
    gap: 20px;
}

.banner-btn a:first-child {
    background: transparent;
    border: 2px solid;
}

.banner-btn a:last-child {
    background: var(--c2);
    color: var(--c34);
}

.banner:before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, black 0%, #00000059, transparent);
}

/*****************************************/
/***********     02  Find Corsa    *******/
/*****************************************/

.find-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 40px;
}
.find-corsa-image {
    height: 450px;
    border-radius: 10px;
    /* overflow: hidden; */
}

.find-corsa-content {
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.find-corsa-box-title h3 {
    font-weight: 500;
    color: var(--c4);
    font-size: 33px;
}

.find-corsa-box-title h4 {
    font-size: 21px;
    padding-top: 6px;
}

.find-corsa-box-detail ul li i {
    padding-right: 5px;
    font-size: 14px;
}

.find-corsa-box-detail ul li {
    font-weight: 500;
    font-size: 15px;
    line-height: 32px;
}

/*****************************************/
/*********     03  Spring Menu    *******/
/*****************************************/
.sparing-menu {
    background-size: cover;
}

.sparing-menu-content {
    background: var(--c5);
    padding: 40px 40px;
    border-radius: 20px;
    text-align: center;
    border: 3px solid transparent;
    transition: all 0.3s cubic-bezier(0.65, 0.05, 0.36, 1);
}

.menu-box {
    margin: 0px 10px;
}
.menu-box-image {
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
}

.sparing-logo img {
    width: 130px;
    margin: 0 auto;
}

.sparing-menu-content h2 {
    padding: 20px;
}

.sparing-menu-content ul li {
    text-transform: capitalize;
    color: var(--c4);
    font-weight: 500;
    font-size: 16px;
    line-height: 38px;
}

.sparing-menu-content ul li span {
    color: var(--c4);
    font-weight: 700;
}

/*****************************************/
/*********       04  The Menu      *******/
/*****************************************/

.menu-title {
    text-align: center;
    padding-bottom: 10px;
}

.main-title h1 {
    color: var(--c1);
    font-family: var(--f2);
    font-size: 100px;
    text-transform: uppercase;
}

.menu-title strong {
  text-transform: capitalize;
  font-size: 20px;
  color: var(--c4);
}

.menu-tabs-button ul {
    justify-content: center;
    border: none;
    gap: 40px;
}
.menu-tabs-button .nav-link {
    font-family: var(--f2);
    color: #999;
    font-size: 18px;
    border: none;
    border-bottom: 1px solid transparent;
    padding-bottom: 0px;
    transition: all 0.3s cubic-bezier(0.55, 0.06, 0.68, 0.19);
}

.menu-tabs-button .nav-link.active {
    color: var(--c1);
    border-color: var(--c4);
}
.menu-tabs-button .nav-item {
    position: relative;
}

.menu-tabs-button .nav-item:before {
    content: '';
    position: absolute;
    height: 60%;
    width: 1px;
    background: #888;
    right: -20px;
    border-radius: 12%;
    top: 25%;
}

.menu-tabs-button .nav-item:last-child::before {
    background: transparent;
}
.menu-tabs-button {
    padding: 20px 0px 40px;
}
.menu-box-content {
    padding-top: 16px;
}

.menu-box-content h3 {
    font-size: 22px;
    font-family: var(--f2);
    color: var(--c1);
}

/* Menu Slider Arrow */
/* Slider wrapper */
.menu-slider {
    position: relative;
    padding-bottom: 80px; /* space for arrows */
}

/* Base arrow styles */
.menu-slider .slick-prev,
.menu-slider .slick-next {
    position: absolute;
    bottom: 0;
    top: auto;
    z-index: 10;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid;
    display: flex !important;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Center alignment */
.menu-slider .slick-prev {
    left: 35%;
    transform: translateX(-65px);
}

.menu-slider .slick-next {
    left: 65%;
    transform: translateX(20px);
}

/* Icon style */
.menu-slider .slick-prev i,
.menu-slider .slick-next i {
    color: var(--c4);
    font-size: 16px;
}

/* Hover effect */
.menu-slider .slick-prev:hover,
.menu-slider .slick-next:hover {
    background: #c49b63; /* coffee / accent color */
}

/* Dots wrapper Ã¢â‚¬â€œ absolute bottom center */
.menu-slider .slick-dots {
    position: absolute;
    bottom: 12px; /* adjust as needed */
    left: 50%;
    transform: translateX(-50%);
    display: flex !important;
    gap: 12px;
    padding: 0;
    margin: 0;
    justify-content: center;
}

/* Remove list styling */
.menu-slider .slick-dots li {
    list-style: none;
    margin: 0;
    padding: 0;
    width: auto;
    height: auto;
}

/* Flat line dot button */
.menu-slider .slick-dots li button {
    width: 70px;
    height: 3px;
    padding: 0;
    border: none;
    background: #d0d0d0; /* inactive */
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0 !important;     /* Ã°Å¸â€Â¥ KILLS NUMBER TEXT */
    line-height: 0 !important;   /* Ã°Å¸â€Â¥ */
}

/* Remove default number text completely */
.menu-slider .slick-dots li button::before {
    content: '';
    display: none !important;
}

/* Active dot */
.menu-slider .slick-dots li.slick-active button {
    background: #000000; /* plumbing orange */
    width: 80px;
    border-radius: 20px;
}


/*****************************************/
/*********       05  About        *******/
/*****************************************/

section.about {
    position: relative;
}

section.about:before {
    content: '';
    background: #EAE9D1;
    inset: 0;
    position: absolute;
    opacity: 90%;
}

.about-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.about-content {
    position: relative;
    padding-left: 30px;
}

.about-content p {
    padding: 15px 0px;
    color: var(--c1);
    font-weight: 500;
}

.about-btn a {
    display: inline-block !important;
    margin-top: 10px;
}

.about-content h2 {
    padding-bottom: 10px;
}

/*****************************************/
/*********      06  Instagram      *******/
/*****************************************/


.instagram-title img {width: 400px;margin: 0 auto;}

.instagram-title {
    padding-bottom: 30px;
}
.instagram-title img {width: 400px;margin: 0 auto;}

.instagram-title {
    padding-bottom: 30px;
}
.instagram-image img {
    height: 390px;
}

.instagram-main {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 35px;
    position: relative;
}

.instagram-image {
    width: 48%;
    border-radius: 12px;
    overflow: hidden;
}

.instagram-logo {
    background: linear-gradient(  45deg,  #f09433 0%,  #e6683c 25%,  #dc2743 50%,  #cc2366 75%,  #bc1888 100%);
    color: var(--c2);
    height: 140px;
    width: 144px;
    border-radius: 24px;
    text-align: center;
    line-height: 144px;
    font-size: 88px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    z-index: 2;
}

/*****************************************/
/*********      00  Footer      *******/
/*****************************************/
footer.footer {
    padding-top: 60px;
    background-size: cover;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 80px;
}

.footer-top ul li a {
    color: var(--c2);
    font-size: 15px;
}

.f-items {
    display: flex;
    gap: 16px;
    color: var(--c3);
    align-items: center;
    justify-content: center;
}

.f-items a {
    font-size: 20px;
    transition: all 0.3s ease;
}

.f-items i {
    background: var(--c2);
    color: var(--c1);
    border-radius: 3px;
    font-size: 19px;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
}

.f-logo img {
    width: 60%;
    margin: 0 auto;
}

.f-logo {
    padding: 13px 0px;
}

.socials ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.socials ul li a {
    background: var(--c2);
    height: 40px;
    width: 40px;
    border-radius: 30%;
    text-align: center;
    line-height: 40px;
    font-size: 20px;
    color: var(--c1);
    transition: all 0.4s cubic-bezier(0.65, 0.05, 0.36, 1);
}



.copyright {
    text-align: center;
    padding: 20px 0px;
    margin-top: 40px;
    border-top: 1px solid var(--c2);
    color: var(--c3);
    display: flex;
    justify-content: space-between;
}
/* Hover Animation */
.socials ul li a:hover {
    background: var(--c1);
    color: var(--c2);
    box-shadow: 0px 0px 10px;
    border-radius: 50%;
}

.f-items a:hover {
    color: #888;
}

.instagram-logo:hover {box-shadow: 0px 0px 10px var(--c1);}

.sparing-menu-content:hover {
    border-color: var(--c2);
    box-shadow: 0px 0px 12px #ffffffab;
    transform: translateY(-10px);
}
.banner-btn a:hover {
    background: var(--c4);
    color: white;
    box-shadow: 0px 0px 5px #fff;
}
.about-image img {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-image:hover img {
    transform: scale(1.1);
}
/* Image Hover Animation */
.Img-hover a {
    display: inline-block!important;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    height: inherit;
    width: 100%;
}
.Img-hover a:before,
.Img-hover a:after {
  content: "";
  position: absolute;
  width: 0%;
  height: 0%;
  background: linear-gradient(45deg, black, #00000085);
  opacity: 0;
  z-index: 1;
  transition: all 0.8s cubic-bezier(1, -0.09, 0.86, 0.93);
}
.Img-hover a:before {
  top: 0;
  left: 0;
}
.Img-hover a:after {
  bottom: 0;
  right: 0;
}
.Img-hover:hover a:before,
.Img-hover:hover a:after {
  width: 100%;
  height: 100%;
  transition: all 0.8s ease;
}
.Img-hover:hover a:before {
  opacity: 0.5;
}
.Img-hover:hover a:after {
  opacity: 0.9;
}

.Img-hover-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--c2);
    opacity: 0;
    z-index: 5;
    transition: all 0.3s ease-in-out 0.2s;
}
.Img-hover:hover .Img-hover-content {
    opacity: 1;
}
.main-f-item {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: end;
}
.contact-info {
    align-items: self-start;
    gap: 25px;
    padding-top:30px;
}

.contact-info a {
    color: #000;
}
.form-field input, .form-field textarea {
    width: 100%;
    border: 1px solid #0000004d;
    padding: 8px 10px;
    border-radius: 8px;
    box-shadow: 0px 0px 10px #0000002b;
}

.form-field {
    margin-bottom: 20px;
}

.form-btn button {
    background: vaR(--c4);
    color: var(--c2);
    border: none;
    padding: 9px 50px;
    border-radius: 4px;
}

.form-field textarea {
    height: 170px;
}
.find-corsa-image iframe {
    width: 100%;
    border-radius: 10px;
}
.footer-top .navigation {
    width: 50%;
}

.footer-top {}.footer-top .navigation {
    width: 50%;
}
.menu-single-image {
    box-shadow: 0px 0px 10px #0000002e;
}
.find-corsa-box-detail ul li a {
    display: inline-block !important;
}
.responsive-links .head-btn {
    display: inline-flex;
    margin-top: 20px;
}