@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@200;300;400;600;700;800&amp;display=swap');


:root{
    --main-color:#000000;
    --black:#d3ad7f;
    --bg:#F9F4F0;
    /* --border:.1rem solid rgba(255,255,255,.3); */
    
}

*{
    font-family: 'Roboto', sans-serif;
    margin:0; padding:0;
    box-sizing: border-box;
    outline: none; border:none;
    text-decoration: none;
    text-transform: capitalize;
    transition: .2s linear;
}


html{
    font-size: 62.5%;
    overflow-x: hidden;
    scroll-padding-top: 9rem;
    scroll-behavior: smooth;
}

html::-webkit-scrollbar{
    width: .8rem;
}

html::-webkit-scrollbar-track{
    background: transparent;
}

html::-webkit-scrollbar-thumb{
    background: #fff;
    border-radius: 5rem;
}

button {
    font-size: 16px;
    position: relative;
    margin: auto;
    padding: 1em 2.5em 1em 2.5em;
    border: none;
    background: #fff;
    transition: all 0.1s linear;
    box-shadow: 0 0.4em 1em rgba(0, 0, 0, 0.1);
   }
   
   button:active {
    transform: scale(0.95);
   }
   
   button span {
    color: #464646;
   }
   
   button .border {
    position: absolute;
    border: 0.15em solid #fff;
    transition: all 0.3s 0.08s linear;
    top: 50%;
    left: 50%;
    width: 9em;
    height: 3em;
    transform: translate(-50%, -50%);
   }
   
   button:hover .border {
    display: block;
    width: 9.9em;
    height: 3.7em;
   }
   
   .full-rounded {
    border-radius: 2em;
   }



body{
    background: var(--bg);
}

section{
    padding:2rem 7%;
}

.heading{
    text-align: center;
    color:#fff;
    text-transform: uppercase;
    padding-bottom: 3.5rem;
    font-size: 4rem;
}

.heading span{
    color:var(--main-color);
    /* text-transform: uppercase; */
}

.btn{
    margin-top: 1rem;
    display: inline-block;
    padding:.9rem 3rem;
    font-size: 1.7rem;
    color:#fff;
    background: var(--main-color);
    cursor: pointer;
}

.btn:hover{
    letter-spacing: .2rem;
}

.header{
    background: rgba(0,0,0,.3);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding:1.5rem 7%;
    border-bottom: var(--border);
    position: fixed;
    top:0; left: 0; right: 0;
    z-index: 1000;
}

.header .logo img{
    height: 6rem;
}

.header .navbar a{
    margin:0 1rem;
    font-size: 1.6rem;
    color:#fff;
}

.header .navbar a:hover{
    color:var(--main-color);
    border-bottom: .1rem solid var(--main-color);
    padding-bottom: .5rem;
}

.header .icons div{
    color:#fff;
    cursor: pointer;
    font-size: 2.5rem;
    margin-left: 2rem;
}

.header .icons div:hover{
    color:var(--main-color);
}

#menu-btn{
    display: none;
}

.header .search-form{
    position: absolute;
    top:115%; right: 7%;
    background: #fff;
    width: 50rem;
    height: 5rem;
    display: flex;
    align-items: center;
    transform: scaleY(0);
    transform-origin: top;
}

.header .search-form.active{
    transform: scaleY(1);
}

.header .search-form input{
    height: 100%;
    width: 100%;
    font-size: 1.6rem;
    color:var(--black);
    padding:1rem;
    text-transform: none;
}

.header .search-form label{
    cursor: pointer;
    font-size: 2.2rem;
    margin-right: 1.5rem;
    color:var(--black);
}

.header .search-form label:hover{
    color:var(--main-color);
}

.home {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: url(../images/home-img1.jpg) no-repeat;
  background-size: cover;
  background-position: bottom;
}

.home .content {
  max-width: 60rem;
}

.home .content h3 {
  font-size: 4rem;
  background-color: rgba(0, 0, 0, 0.3);
  text-transform: uppercase;
  color: #fff;
}

.home .content p {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.8;
  padding: 1rem 0;
  background-color: rgba(0, 0, 0, 0.3);
  color: #eee;
}

/* Mobile background cropping control */
@media (max-width: 768px) {
  .home {
    background-position: bottom center; /* or try bottom center, left center, etc. */
  }
}
.about .row{
    display: flex;
    align-items: center;
    background:var(--black);
    border-radius:10px;
    flex-wrap: wrap;
}

.about .row .image{
    flex:1 1 45rem;
}

.about .row .image img{
    width: 100%;
    border-radius:10px;

}
.about .row .content{
    flex:1 1 45rem;
    position: relative;
    padding:2rem;
}

.about .row .content h3{
    font-size: 3rem;
    color:#fff;
}

.about .row .content p{
    font-size: 1.6rem;
    color:#000000;
    padding:1rem 0;
    line-height: 1.8;
      position: relative;
}


/* .about .social-icons {
  position: absolute;
  top: 2rem;
  right: 2rem;
  display: flex;
  gap: 1.5rem;
}

.about .social-icons svg {
  width: 30px;
  height: 30px;
  transition: transform 0.3s ease;
}

.about .social-icons svg:hover {
  transform: scale(1.1);
} */

.menu .box-container{
    display: grid;
    grid-template-columns: repeat(4, minmax(21rem, 1fr));
    gap:1.5rem;
    padding: 2rem;
    background:var(--black);
    border-radius:10px;
    justify-content: center;
}

@media only screen and (min-width: 992px) and (max-width: 1089px){
    .menu .box-container{
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
        gap:1.5rem;
        justify-content: center;
    }  
}


@media only screen and (min-width: 676px) and (max-width: 991px){
    .menu .box-container{
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(23rem, 1fr));
        gap:1.5rem;
        justify-content: center;
    }  
}
@media only screen and (min-width: 375px) and (max-width: 675px)

{
    .menu .box-container{
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(17rem, 1fr));
        gap:0rem;
        justify-content: center;
    } 

    .menu .box-container .box{
     height: 254px;
     background: rgb(255, 255, 255);
     border-radius: 5px;
     border: 0px solid rgba(0, 0, 255, .2);
     transition: all .2s;
    }

}

.menu .box-container .box{
    padding:5rem;
    
    cursor: pointer;
 width: 190px;
 height: 254px;
 background: rgb(255, 255, 255);
 border-radius: 5px;
 border: 1px solid rgba(0, 0, 255, .2);
 transition: all .2s;
 box-shadow: 12px 12px 2px 1px #000000;
}

.menu .box-container .box:hover {
    box-shadow: -12px 12px 2px -1px #000000;
   }

#box1{
    background-image: url("../images/pool swimming mosaic design.jpeg");
    background-size: cover; /* or contain, depending on your preference */
  background-position: center center;
}
#box2{
    background-image: url("../images/bathroom1.jpg");
    background-size: cover; /* or contain, depending on your preference */
  background-position: center center;
}
#box3{
    background-image: url("../images/menu-3.jpg");
    background-size: cover; /* or contain, depending on your preference */
  background-position: center center;
}
#box4{
    background-image: url("../images/menu-4.jpg");
    background-size: cover; /* or contain, depending on your preference */
  background-position: center center;
}
#box5{
    background-image: url("../images/menu-5.jpg");
    background-size: cover; /* or contain, depending on your preference */
  background-position: center center;
}
#box6{
    background-image: url("../images/menu-6.jpg");
    background-size: cover; /* or contain, depending on your preference */
  background-position: center center;
}
#box7{
    background-image: url("../images/menu-7.jpg");
    background-size: cover; /* or contain, depending on your preference */
  background-position: center center;
}
#box8{
    background-image: url("../images/menu-8.jpg");
    background-size: cover; /* or contain, depending on your preference */
  background-position: center center;
}

.contact .row{
    display: flex;
    background:var(--black);
    flex-wrap: wrap;
    padding: 2rem;
    border-radius: 10px;
    gap:1rem;
}

.contact .row .map{
    flex:1;
    width: 100%;
    object-fit: cover;
}

.contact .row form{
    flex:1;
    padding:5rem 2rem;
    text-align: center;
}

.contact .row form h3{
    text-transform: uppercase;
    font-size: 3.5rem;
    color:#fff;
}

.contact .row form .inputBox{
    display: flex;
    align-items: center;
    margin-top: 2rem;
    margin-bottom: 2rem;
    background:var(--bg);
    border:var(--border);
}

.contact .row form .inputBox span{
    color:#fff;
    font-size: 2rem;
    padding-left: 2rem;
}

.contact .row form .inputBox input{
    width: 100%;
    padding:2rem;
    font-size: 1.7rem;
    color:#fff;
    text-transform: none;
    background:none;
}

.callback .callback__row {
  display: flex;
  background: var(--black);
  flex-wrap: wrap;
  border-radius: 10px;
  justify-content: center;
}

.callback .callback__form {
  flex: 1;
  padding: 5rem 2rem;
  text-align: center;
}

.callback .callback__form h3 {
  text-transform: uppercase;
  font-size: 3.5rem;
  color: #fff;
  margin-bottom: 2rem;
}

.callback .inputBox {
  display: flex;
  align-items: center;
  margin-top: 2rem;
  margin-bottom: 2rem;
  background: var(--bg);
  border: var(--border);
  border-radius: 5px;
  padding: 0 1rem;
}

.callback .inputBox span {
  color: #fff;
  font-size: 2rem;
  margin-right: 1rem;
}

.callback .inputBox input,
.callback .inputBox textarea {
  width: 100%;
  padding: 1.5rem;
  font-size: 1.7rem;
  text-transform: none;
  background: none;
  border: none;
  resize: none;
  outline: none;
}

.callback .btn {
  padding: 1rem 3rem;
  background-color: #fff;
  color: var(--black);
  border: none;
  font-size: 1.6rem;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.callback .btn:hover {
  background-color: var(--main-color);
  color: #fff;
}

.container {
  width: 100%;
  max-width: 1200px;     /* or whatever feels good */
  margin: 0 auto;         /* centers it */
  padding: 0 1.5rem;      /* adds breathing space on small screens */
  box-sizing: border-box;
}


.footer{
    background: rgba(0,0,0,0.5);;
    text-align: center;
}

.footer .share{
    padding:1rem 0;
}

.footer .share a{
    height: 5rem;
    width: 5rem;
    line-height: 5rem;
    font-size: 2rem;
    color:#fff;
    border:var(--border);
    margin:.3rem;
    border-radius: 50%;
}

.footer .share a:hover{
    background-color: var(--main-color);
}

.footer .links a:hover{
    background:var(--main-color);
}

.footer .credit{
    font-size: 2rem;
    color:#fff;
    font-weight: lighter;
    padding:1.5rem;
}

.footer .credit span{
    color:var(--main-color);
}

/* media queries  */
@media (max-width:991px){

    html{
        font-size: 55%;
    }

    .header{
        padding:1.5rem 2rem;
    }

    section{
        padding:2rem;
    }

}

@media (max-width:768px){

    #menu-btn{
        display: inline-block;
    }

    .header .navbar{
        position: absolute;
        top:100%; right: -100%;
        background: #fff;
        width: 30rem;
        height: calc(100vh - 9.5rem);
    }

    .header .navbar.active{
        right:0;
    }

    .header .navbar a{
        color:var(--black);
        display: block;
        margin:1.5rem;
        padding:.5rem;
        font-size: 2rem;
    }

    .header .search-form{
        width: 90%;
        right: 2rem;
    }

    .home{
        justify-content: center;
        text-align: center;
    }

    .home .content h3{
        font-size: 4.5rem;
    }

    .home .content p{
        font-size: 1.5rem;
    }

}

@media (max-width:450px){

    html{
        font-size: 50%;
    }

    
}
.contact .row .contact-info {
    flex: 1;
    padding: 2rem;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
}

.contact .row .contact-info h3 {
    font-size: 2.8rem;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 0.5rem;
}

.contact .row .contact-info p {
    font-size: 1.6rem;
    color: #000;
    background: var(--bg);
    padding: 1.5rem;
    border-radius: 10px;
}

.contact .row .contact-info i {
    margin-right: 1rem;
    color: var(--main-color);
}

.whatsapp-btn {
    margin-top: 2rem;
    padding: 1.2rem 2rem;
    background-color: #25D366;
    color: white;
    font-size: 1.6rem;
    text-align: center;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    transition: background 0.3s;
}

.whatsapp-btn i {
    margin-right: 0.8rem;
    font-size: 2rem;
}

.whatsapp-btn:hover {
    background-color: #1da851;
}
/*=============== FOOTER STYLING ===============*/
.footer {
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  background-color: #1e1e1e;
  color: #fff;
  transition: 0.5s;
  padding-bottom: 2rem;
}
.footer__container {
  max-width: 968px;
  margin-left: 1.5rem;
  margin-right: 1.5rem;
  row-gap: 2rem;
  display: grid;
  gap: 1.5rem;
}
.footer__title {
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
  line-height: 1.5;
}
.footer__link {
  text-decoration: none;
  color: darkgray;
  font-size: 0.813rem;
}
.footer__links {
  list-style: none;
  display: grid;
  row-gap: 0.5rem;
}
.footer__social {
  display: flex;
  column-gap: 1.5rem;
}
.footer__link:hover {
  text-decoration: underline;
  color: rgb(213, 213, 213);
}
.footer__social-link {
  color: white;
  font-size: 1.25rem;
}
.footer__copy {
  margin-top: 6rem;
  text-align: center;
  font-size: 0.75rem;
}

/* Responsive Breakpoints */
@media screen and (max-width: 360px) {
  .footer {
    padding: 3.5rem 0 1rem;
  }
}
@media screen and (min-width: 576px) {
  .footer__container {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (min-width: 767px) {
  .footer {
    margin: 0;
    padding: 6rem 0 2rem;
  }
}
@media screen and (min-width: 968px) {
  .footer__container {
    grid-template-columns: repeat(4, 1fr);
  }
  .footer__social {
    align-items: flex-start;
  }
  .footer__social-link {
    font-size: 1.45rem;
  }
}
@media screen and (min-width: 1024px) {
  .footer__container {
    margin-left: auto;
    margin-right: auto;
    column-gap: 3rem;
  }
}
.footer {
  font-family: "Poppins", sans-serif;
  background-color: #f9f4f0;
  color: #333;
  padding: 4rem 2rem 2rem;
  transition: 0.5s;
  text-align: left;
  border-top: 1px solid #ddd;
}

.footer__container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
  justify-content: space-between;
}

.footer__info {
  font-size: 1.4rem;
  line-height: 2.4rem;
}

.footer__brand {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer__social {
  display: flex;
  gap: 2rem;
  align-items: center;
  font-size: 2rem;
}

.footer__social-link {
  color: #333;
  transition: color 0.3s;
}

.footer__social-link:hover {
  color: var(--main-color); /* Will use your site's black highlight color */
}

.footer__copy {
  text-align: center;
  font-size: 1.2rem;
  margin-top: 3rem;
  color: #666;
}

/* Responsive layout */
@media (min-width: 768px) {
  .footer__container {
    flex-direction: row;
    align-items: flex-start;
  }
}
.footer {
  font-family: "Poppins", sans-serif;
  background-color: #f9f4f0;
  color: #333;
  padding: 4rem 2rem 2rem;
  transition: 0.5s;
  border-top: 1px solid #ddd;
}

.footer__container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
  justify-content: space-between;
}

.footer__info {
  font-size: 1.4rem;
  line-height: 2.4rem;
}

.footer__brand {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer__info p {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer__info i {
  font-size: 1.6rem;
  color: var(--main-color); /* uses your brand black */
}

.footer__social {
  display: flex;
  gap: 2rem;
  align-items: center;
  font-size: 2rem;
}

.footer__social-link {
  color: #333;
  transition: color 0.3s;
  font-size: 60px; 
}

.footer__social-link:hover {
  color: var(--main-color);
}

.footer__copy {
  text-align: center;
  font-size: 1.2rem;
  margin-top: 3rem;
  color: #666;
}

@media (min-width: 768px) {
  .footer__container {
    flex-direction: row;
    align-items: flex-start;
  }
}
.carousel {
  position: relative;
  max-width: 100%;
  margin: auto;
  overflow: hidden;
  background-color: #f9f4f0;
  border-radius: 10px;
}

.carousel-container {
  position: relative;
  width: 400px;
  height: 400px;
  margin: auto;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  z-index: 0;
}

.carousel-slide.active {
  opacity: 1;
  z-index: 1;
}

.carousel-slide img {
  width: 400px;
  height: 400px;
  object-fit: cover;
  display: block;
  margin: 0 auto;
  border-radius: 10px;
}

.carousel-prev,
.carousel-next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  padding: 1rem;
  color: #333;
  font-size: 2rem;
  font-weight: bold;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  user-select: none;
  transform: translateY(-50%);
  z-index: 10;
}

.carousel-prev {
  left: 10px;
}

.carousel-next {
  right: 10px;
}

.carousel-dots {
  text-align: center;
  position: absolute;
  bottom: 10px;
  width: 100%;
}

.carousel-dots .dot {
  cursor: pointer;
  height: 12px;
  width: 12px;
  margin: 0 5px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background 0.3s;
}

.carousel-dots .dot.active,
.carousel-dots .dot:hover {
  background-color: #333;
}

.image-gallery {
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  justify-items: center;
}

.gallery-grid img {
  width: 100%;
  max-width: 300px;
  height: 300px;
  object-fit: contain;
  border: 1px solid #ccc;
  border-radius: 10px;
  background-color: #f9f9f9;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s;
}

.gallery-grid img:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* ===== Make it a scrollable row on mobile devices ===== */
@media (max-width: 768px) {
  .gallery-grid {
    display: flex;
    overflow-x: auto;
    gap: 16px;
    padding-bottom: 10px;
    scroll-snap-type: x mandatory;
  }

  .gallery-grid img {
    flex: 0 0 auto;
    scroll-snap-align: start;
    max-width: 80%;
    height: auto;
  }
}

.model-row-section {
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  font-family: 'Nunito', sans-serif;
}

.model-row-section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 30px;
  color: #242424;
}

/* ===== GRID layout for larger screens ===== */
.model-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
}

.model-item {
  text-align: center;
}

.model-item img {
  height: 180px;
  width: 100%;
  object-fit: contain;
  background-color: #f2f2f2;
  border-radius: 8px;
  border: 1px solid #ddd;
}

.model-item img:hover{
   transform: scale(1.02);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.model-number {
  margin-top: 8px;
  font-weight: 500;
  font-size: 16px;
  color: #333;
}

/* ===== Slider layout for mobile ===== */
@media (max-width: 768px) {
  .model-gallery {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 10px;
    padding-bottom: 10px;
  }

  .model-item {
    flex: 0 0 80%;
    max-width: 80%;
    box-sizing: border-box;
  }

  .slider-btn {
    display: block;
  }
  .model-item img {
  height: 250px;
  object-fit: contain;
  background-color: #f2f2f2;
  border-radius: 8px;
  border: 1px solid #ddd;
}
}

/* ===== Slider buttons (mobile only) ===== */
.slider-btn {
  display: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 10px;
  font-size: 24px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 10;
}

.slider-btn.prev {
  left: 10px;
}

.slider-btn.next {
  right: 10px;
}

@media (max-width: 768px) {
  .slider-btn {
    display: block !important;
  }
}

.full-rounded {
  display: inline-block;
  padding: 12px 24px;
  background-color: #fff;
  color: black;
  border: 2px solid black;
  border-radius: 50px;
  text-decoration: none;
  position: relative;
  transition: all 0.3s ease;
}

.full-rounded:hover {
    transform: scale(1.05); /* Slight zoom effect */

}

.full-rounded .border {
  position: absolute;
  inset: 0;
  border: 2px solid black;
  border-radius: 50px;
  z-index: -1;
}
