/******FONTS-ROBOTO SERIF AND MONTSERRAT*******/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto+Serif:ital,opsz,wght@0,8..144,100..900;1,8..144,100..900&display=swap');


/************* VARIABLES CSS *************/
:root{
     --header-height: 3rem;

     /************* colors *************/
     --body-color:#0A0A0A;
     --second-body-color:#1A1A1A;
     --text-color: #ffffff;
     --theme-color: #4e0000;
     --themehover-color: #a00000;

     /**************fonts*******************/
     --body-font: "Montserrat", sans-serif;
     --title-font: "Montserrat", sans-serif;
     --navbar-font:"Montserrat", sans-serif;
     --bottom-two-font: "Montserrat", sans-serif;
     
     /************* font-sizes *************/
     --title-font-size: 170px;
     --span--font-size: 15px;
     --text-font-size: 25px;
     --button-font-size: 36px;
     --other-title-font-size:70px;

     /************* letter-spacing *************/
      --title-letter-spacing: 12%;
      --navlist-letter-spacing: 2px;
      --text-letter-spacing: 2%;
      color-scheme: only light; 
}


@media (max-width: 1440px){
  :root{
     --title-font-size: 110px;
     --span--font-size: 13px;
     --text-font-size: 22px;
     --button-font-size: 35px;
     --other-title-font-size:70px;
  }
}

@media (max-width: 800px){
:root{
  --title-font-size: 80px;
   --text-font-size: 18px;
    --other-title-font-size:70px;
  }
}

@media (max-width: 500px){
:root{
 
    --other-title-font-size:60px;
  }
}


body.dark-mode {
 --body-color: #2C2A00;
     --text-color: #ffffff;
     --text-emphasis-color: #cc9d02;
     --second-button-color: #524e01;
}

/************** BASE **************/
section{
  height: 100%;
}
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
   
}


html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  
}

body {
  
  font-family: var(--body-font);
  font-size: var(--text-font-size);
  background-color: var(--body-color);
  color: var(--text-color);
 
   max-width: 100%;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  font-weight: 100;
}

img,
video {
  max-width: 100%;
  height: auto;
}

.main {
  overflow-x: hidden;
  
}

.swiper-pagination-bullet {
  background: var(--body-color) !important;
  opacity: .75 !important;
}

.swiper-pagination-bullet-active {
  background: var(--second-button-color) !important;
}

/* HEADER */

.header{
    padding-block: 2rem;
    width: 100%;
    position: fixed;
  top: 0;
  left: 0;
  z-index: 5555000;
  background-color: transparent;
  display: block;
  transition: ease-in 0.7s;
}
header.scrolled {
  background-color: rgba(0, 0, 0, 0.8);
    box-shadow: 0 4px 6px rgba(129, 129, 129, 0.1);
  }

.menu-icon, .close-icon{
    display: none;
}

.navmenu{
  position: relative; 
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 10vw;
    padding-top: .5rem;
    padding-right: 11.2vw;
    
}
.navmenu ul{
     background: rgba(255, 255, 255, 0.05); 
  backdrop-filter: blur(10px) saturate(180%);
  -webkit-backdrop-filter: blur(10px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.1); 
  border-radius: 20px; 
  padding: 1rem 3rem; 
}

.navlist{
    display: flex;
    justify-content: space-between;
    gap: 60px;
    align-items: center;
      position: absolute;
  top: 5%;
  left: 50%;
  transform: translateX(-50%);
  gap: 60px;
  background: rgba(0,0,0,0.8);
  padding: 0.5rem 1rem;
  border-radius: 8px;
}

.navitem{
    font-size: 20px;
    font-family: var(--body-font);
    letter-spacing: var(--navlist-letter-spacing);
    border-bottom: 1px solid transparent;
    transition: ease-in-out 0.5s;
}
.navitem i{
    font-size: 1.5rem;
    font-weight: 100;
}
.navitem:hover{
    border-bottom: 1px solid white;
    
}

.navlink{
    letter-spacing: var(--navlist-letter-spacing);
    color: var(--text-color);
    font-weight: 400 ;
 display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.navlink i {
  transition: transform 0.3s ease;
}

.navbuttons{
    display: inline-flex;
    gap: .5rem;
    padding-bottom: 5px;
}

.navbuttons i:hover{
     border-bottom: 1px solid white;
}


.logo-img{
    width: 180px;
    height: auto;
    position: relative;
    bottom: 2px;
}

.navtext {
  display: block;
  font-size: 12px;
  color: var(--text-color);
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transform: translateY(-5px);
  transition: opacity 0.3s ease, max-height 0.3s ease, transform 0.3s ease;
}

.navitem:hover .navlink i {
  transform: translateY(-5px);
}

.navitem:hover .navtext {
  opacity: 1;
  max-height: 20px; 
  transform: translateY(0);
}


  /*HOME*/

 .home {
  padding-top: 8rem; 
  height: auto;
  min-height: 100vh;
  background: radial-gradient(circle at center, #1A1A1A 0%, #0A0A0A 65%);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  padding-left: 3rem;
  
}

.homecontainer{
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 3rem;

}

.homedata{

  padding-bottom: 7rem;
}
.home-section-img{
  width: 1000px;
  height: auto;
  
}

.homeimg{
  width: 800px;
   filter: brightness(0.5); 
  transition: filter 0.3s ease;
}

.homeimg:hover {
  filter: brightness(0.7);
}

.home-section-text {
  font-size: 1.4rem;
  font-weight: 300;
  letter-spacing: 1px;
  color:#ccc;
  margin-left: 16rem;
  position: relative;
  bottom: 3.5rem;
  line-height: 1.5;
}

.home-button {
  position: relative;
  display: inline-block;
  padding: 1.2rem 3.5rem;
  font-size: 1.4rem;
  font-weight: 500;
  border-radius: 20px;
  color: var(--text-color);
  background-color: var(--theme-color);
  overflow: hidden;
  z-index: 1;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  isolation: isolate; 
  margin-left: 16rem;
 
}

.home-button::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(
    from 0deg,
    var(--theme-color),
    var(--themehover-color),
    var(--theme-color),
    var(--themehover-color)
  );
  animation: rotate 3s linear infinite;
  z-index: -1;
  border-radius: 50%;
  filter: blur(30px);
  opacity: 0.4;
  transition: opacity 0.3s ease;
 
}

.home-button::after {
  content: '';
  position: absolute;
  inset: 0;
  background-color: var(--theme-color);
  border-radius: 50px;
  z-index: -2;
}

.home-button:hover {
  transform: scale(1.08);
  box-shadow: 0 0 20px var(--theme-color);
}

.home-button:hover::before {
  opacity: 0.8;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}


.reviews-section {
  position: absolute;
  height: 100px;
  width: 100%;
  background: transparent;
  backdrop-filter: blur(6px);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  overflow: hidden;
  top: 89.5%;
}

.review {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: var(--text-color);
}

.stars {
  display: flex;
  gap: 4px;
  color: var(--theme-color);
  font-size: 1rem;
}

.review-text {
  font-size: 0.85rem;
  margin-top: 6px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.85);
  white-space: nowrap;
}

/*card*/
.services{
  padding: 8rem 2rem;
  height: auto;
  
}
.section-card{
  height: 700px;
  width: auto;
padding: 2rem;
transition: ease-in-out 0.3s;
}
.section-card:hover{
  scale: 1.009;
}

.section-card:active{
  scale: 1.009;
}

.starry{
    background:linear-gradient(to top, rgb(26, 26, 26) 0%, rgba(26, 26, 26,1) 30%, rgba(26, 26, 26,0.9) 50%, transparent 70%),
    url(starsphotos/starryskystarsnspoilers.jpg);
     background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.ambient{
    background:linear-gradient(to top, rgb(26, 26, 26) 0%, rgba(26, 26, 26, 1) 30%, rgba(26, 26, 26, 0.9) 50%, transparent 70%),
    url(starsphotos/ambijentsarajevo.jpg);
     background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.tuning{
    background:linear-gradient(to top, rgb(26, 26, 26) 0%, rgba(26, 26, 26,1) 30%, rgba(26, 26, 26,0.9) 50%, transparent 70%),
    url(starsphotos/sarajevotuning.webp);
     background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.wraps{
    background:linear-gradient(to top, rgb(26, 26, 26) 0%, rgba(26, 26, 26,1) 30%, rgba(26, 26, 26,0.9) 50%, transparent 70%),
    url(starsphotos/starsnspoilerswrap.jpg);
     background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.section-card-content{
  position: relative;
  top: 65%;
}
.section-card-title{
 font-weight: 300;
 text-transform: uppercase;
 letter-spacing: 2px;
  font-size: 20px;
  margin-bottom: 2rem;
}

.section-card-text{
  font-size: 15px;
  margin-bottom: 4rem;
  font-weight: 300;
  color: #ccc;
}

.section-card-button{
  color: white;
  font-size: 20px;
  border-radius: 25px;
   border: .5px solid white;
   padding: .6rem 2rem;
   transition: ease-in-out .5s;
}
.section-card-button:hover{
  color: black;
  font-size: 20px;
  font-weight: 400;
  border-radius: 25px;
   border: .5px solid transparent;
   background-color: white;
    padding: .6rem 2rem;
}

.services-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .5rem;
}

.services-data{
  text-align: center;
  margin-bottom: 3rem;
}

.services-title{
   font-size: 60px;
  font-weight: 500;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.services-text{
color: #9e9e9e;
font-weight: 300;
margin-bottom: 5rem;
font-size: 19px;
}


/* Modal Base  */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  justify-content: center;
  align-items: center;
  z-index: 1000;
  padding: 2rem;
}

.modal-content {
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 3rem;
  border-radius: 15px;
  max-width: 800px;
  width: 100%;
  min-height: 500px;
  position: relative;
  box-shadow: 0 10px 30px rgba(0,0,0,0.7);
  text-align: center;
}

.modal-content h2 {
    font-size: 40px;
  font-weight: 500;
  letter-spacing: 2px;
  margin-bottom: 7rem;
  text-transform: uppercase;
  text-shadow: 2px 2px 5px rgba(0,0,0,0.7);
}

.modal-content p {
  line-height: 1.6;
  font-size: 18px;
  text-shadow: 2px 2px 5px rgba(0,0,0,0.7);
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 2rem;
  cursor: pointer;
  color: white;
}

.starry-modal { background-image: url("starsphotos/starry.jpg"); }
.ambient-modal { background-image: url("starsphotos/ambient.jpg"); }
.tuning-modal { background-image: url("starsphotos/tuning.jpg"); }
.wraps-modal { background-image: url("starsphotos/wraps.jpg"); }

@media (max-width: 800px) {
  .modal-content h2 {
    font-size: 38px;
  margin-bottom: 6rem;
}

.modal-content p {
  font-size: 17px;
}
}

@media (max-width: 600px) {

  .modal-content {
  padding: 2rem;
  padding-top: 4rem;
}
  .modal-content h2 {
    font-size: 28px;
  margin-bottom: 4rem;

}

.modal-content p {
  font-size: 16px;
}
}
/*aboutzero*/

.aboutzero{
  padding: 2rem 3rem 8rem 3rem;
  display: flex;
 align-items: center;
 justify-content: center;
}

.aboutzero-container{
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  gap: 15rem;
  text-align: left;
  align-items: stretch; 
  
}
.aboutzero-data{
  display: flex;
  flex-direction: column;
  justify-content: space-between; 
  padding: 1rem;
  flex: 1; 
}
.aboutzero-img {
  flex: 1;
  overflow: hidden; /* hides the cropped parts */
}
.aboutzero-img img{
width: 100%;         /* keep full width */
  height: 500px;
  max-width: 650px;
  border-radius: 30px;
  object-fit: cover; 
}


.aboutzero-title{
  font-size: 60px;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
}

.aboutzero-text{
  font-size: 19px;
  color: #ccc;
 
  line-height: 1.3;
}

.aboutzero-button{
  display: inline;
  padding: 14px 32px;
  font-size: 20px;
  font-weight: 400;
  color: #fff;
  background: transparent;
  border: 2px solid transparent;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.4s ease;
  overflow: hidden;
  border: 1px solid white;
   align-self: flex-start;
}

.aboutzero-button:hover{
  
  color: #000000;
  background: white;
  border: 2px solid transparent;
 
  border: 1px solid rgba(255, 255, 255, 0);
   
}

/*gallery*/

.gallery{
  height: auto;
  min-height: 100vh;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
   background:linear-gradient(to top, rgb(0, 0, 0, 0.7) 0%, rgb(0, 0, 0, 0.6) 30%, rgba(0, 0, 0, 0.3) 50%, transparent 70%),
    url(starsphotos/starsgallerysarajevobg.png);
     background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.gallery-data{
  text-align: center;
}
.gallery-title{
font-size: 110px;
  font-weight: 500;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 5px rgba(0,0,0,0.7);
}

.gallery-text{
color: #ccc;
font-weight: 300;
margin-bottom: 5rem;
font-size: 19px;
text-shadow: 2px 2px 5px rgba(0,0,0,0.7);
}

.gallery-button {
  display: inline-block;
  padding: 14px 32px;
  font-size: 20px;
  font-weight: 400;
  color: #fff;
  background: transparent;
  border: 2px solid transparent;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
  text-shadow: 2px 2px 5px rgba(0,0,0,0.7);
}

.gallery-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, #eb0404, #611e03);
  transition: all 0.4s ease;
  z-index: -1;
}

.gallery-button:hover::before {
  left: 0;
}

.gallery-button:hover {
  color: #fff;
  border-color: #fff;
  box-shadow: 0 0 20px #e7b308, 0 0 40px #eb8705;
  transform: scale(1.05);
}

/*about*/
.about{
  padding: 5rem 3rem;
}

.about-data{
  text-align: center;
}
.about-title{
font-size: 60px;
  font-weight: 500;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.about-text{
  font-size: 19px;
color: #ccc;
font-weight: 300;
margin-bottom: 5rem;
}

.about-cards{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  overflow-x: hidden;
}

.about-card{
  border-radius: 15px;
  text-align: center;
  padding: 3rem 5rem;
  height: 450px;
  width: auto;
  background-color: var(--second-body-color);
}
.about-card i{
  font-size: 60px;
  
}
.about-card-title{
  margin-top: 2rem;
  font-size: 40px;
  font-weight: 300;
  letter-spacing: 2px;
   margin-bottom: 2rem;
}
.about-card-text{
  font-size: 18px;
  font-weight: 300;
  color: #ccc;
  line-height: 1.4;
  letter-spacing: .1px;
}

/*abouttwo*/

.abouttwo{
  padding: 5rem 2rem;
  display: flex;
 align-items: center;
 justify-content: center;
}

.abouttwo-container{
  display: flex;
  justify-content: space-between;
  gap: 15rem;
  align-items: stretch; /* both text and image same height */
  
}

.abouttwo-data{
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* pushes text up, button down */
  padding: 1rem; /* optional, for breathing room */
}
.abouttwo-img img{
  
  height: 100%; 
  max-width: 650px;
  border-radius: 30px;
  object-fit: cover; 
}


.abouttwo-title{
  font-size: 60px;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.abouttwo-text{
  font-size: 19px;
  color: #ccc;
  
  line-height: 1.3;
}

.abouttwo-button{
  display: inline;
  padding: 14px 32px;
  font-size: 20px;
  font-weight: 400;
  color: #fff;
  background: transparent;
  border: 2px solid transparent;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.4s ease;
  overflow: hidden;
  border: 1px solid white;
   align-self: flex-start;
}

.abouttwo-button:hover{
  
  color: #000000;
  background: white;
  border: 2px solid transparent;
 
  border: 1px solid rgba(255, 255, 255, 0);
   
}

/*Contact*/

.contact{
  padding:5rem 0;
  width: 100%;
  overflow-x: hidden;
   position: relative;
  
}

.contact-map iframe{
  width: 100%;
}
.contact-map{
  position: relative;
  width: 100%;
}

.contact-map::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
 height: 98.7%;
  z-index: 1;
  background:linear-gradient(to top, rgba(59, 0, 0, 0.6) 0%, rgba(59, 0, 0, 0.5) 30%, rgba(26, 26, 26,0.3) 50%, transparent 70%) ;
  pointer-events: none;
}


.contact-box {
  position: absolute;
  top: 50px;
  left: 40px;
  z-index: 2;
  background-color: var(--theme-color);
  padding: 3rem;
  box-shadow: 0 25px 25px rgba(0, 0, 0, 0.719);
  border-radius: 12px;
 width: 600px;
height: 400px;
   text-align: center;
}

.contact-title{
  font-size: 50px;
  text-transform: uppercase;
  font-weight: 500;
 
  margin-bottom: 5rem;
}

.contact-text{
  font-size: 19px;
  font-weight: 300;
  color: #ffffff;
  margin-bottom: 5rem;
}

.contact-button{
 color: white;
 pointer-events: none;
 font-weight: 400;
}



/* FOOTER */
.footer {
 
   background: linear-gradient(to bottom, #0A0A0A,#1b1b1b );
  padding: 4rem 2rem;
  color: var(--text-color);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-logo {
max-width: 150px;
}

.footer-links {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--text-color);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 16px;
  font-weight: 200;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--themehover-color);
}

.footer-socials {
  display: flex;
  gap: 1.5rem;
}

.footer-socials a {
  color: var(--theme-color);
  font-size: 1.5rem;
  transition: color 0.3s ease;
}

.footer-socials a:hover {
  color: var(--themehover-color);
}

.footer-text {
  font-size: 0.8rem;
  font-weight: 300;
  opacity: 0.8;
}

.footer-text a{
  color: white;
}

.footer-text a:hover{
  color: rgb(255, 161, 161);
}

/* Slike Section */
.slike {
  position: relative;
  width: 100%;
  height: 130vh; 
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  padding-top: 8rem;
  padding-bottom: 8rem;
}

.slike-background {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: blur(20px) brightness(0.5);
  z-index: 1;
  transition: background-image 0.4s ease-in-out;
}


.slike-swiper {
  position: relative;
  z-index: 2;
  width: 80%;
  max-width: 1000px;
}

.slike-swiper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.slike-swiper .swiper-slide img {
  width: 100%;
  aspect-ratio: 10.5/9;   
  object-fit: cover;    
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.6);
}


.swiper-button-next,
.swiper-button-prev {
  color: white;
}

.swiper-pagination-bullet {
  background: white;
}

@media (max-width: 600px) {
.slike {
 height: auto;
 min-height: 100vh;
  padding-top: 3rem;
  padding-bottom: 3rem;
}
  .slike-swiper {
    width: 100%; 
  }

  .slike-swiper .swiper-slide img {
    aspect-ratio: 3/3; 
  }
}
/*responsive*/

@media (max-width: 1500px){
  .logo-img{
    padding-top: 10px;
    width: 110px;
  }
 
  .navmenu{
    height: var(--header-height);
   padding-top: 1.5rem;
   padding-bottom: 1.5rem;
   
  }

  .navlist{
    position: fixed;
    top: -120%;
    left:50%;
    background-color: var(--body-color);
    width: 100%;
    padding-block: 8rem;
    box-shadow: 0 2px 16px var(--text-color);
    border-radius: 0 0 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    transition: ease-in-out .3s;
    
  }

  .navmenu ul{
     padding-top: 2rem;
  }
   
 .navitem{
  padding-block: 1rem;
 }
  .navbuttons{
    display: inline-flex;
    justify-content: space-around;
    gap: .5rem;
    z-index: 1000;
    font-size: 22px;
    opacity: 0.9;
    padding-top: .5rem;
  }

  .menu-icon{
    display: block;
  }
  .show-menu{
    top: -10px;
  }
  
  .fb-icon, .ig-icon{
    z-index: -100000000;
  }

  .navtext {
    opacity: 1 !important;
    max-height: none !important;
    transform: none !important;
    transition: none !important;
  }

  .navlink i {
    transform: none !important;
    transition: none !important;
  }

  .navitem:hover .navlink i,
  .navitem:hover .navtext {
    transform: none !important;
  }




.home {
  padding-top: 8rem; 
  height: auto;
  min-height: 1vh;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;

}

.homecontainer{
  position: relative;
  flex-direction: column;
  gap: 0;

}

.homedata{
  padding-bottom: 0;
  margin-right: 5rem;
}

.home-section-img{
  width: auto;
  height: auto; 
}
.home-img{
  display: flex;
  justify-content: center;
}
.homeimg{
  width: 60%;
  
   filter: brightness(0.5); 
  transition: filter 0.3s ease;
}

.homeimg:hover {
  filter: brightness(0.7);
}

.home-section-text {
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 1px;
  color:#ccc;
  margin-left: 12rem;
  position: relative;
  bottom: 3.5rem;
  line-height: 1.5;
}

.home-button {
   margin-left: 18rem;
}
.services{
  padding-bottom: 1.5rem;
}
.services-grid{
  
  grid-template-columns: repeat(2, 1fr);
 
}


.abouttwo{
  padding: 2rem 2rem;
 height: auto;
}

.abouttwo-container{
  
  gap: 4rem;
  flex-wrap: wrap;
  
}


.abouttwo-img img{
   width: 100%;
  height: auto; 
  max-height: 400px;
  object-fit: cover; 
}
.abouttwo-data{
 margin-top: 0;
}

.abouttwo-title{
  font-size: 50px;
  margin-bottom: 1rem;
}

.abouttwo-text{
  font-size: 17px;
  margin-bottom: 3rem;
  line-height: 1.5;
}

.aboutzero{
  padding: 5rem 2rem;
 height: auto;
}

.aboutzero-container{
  
  gap: 4rem;
  flex-wrap: wrap;
   flex-direction: column; 
}


.aboutzero-img img{
   width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover; 
}
.aboutzero-data{
 margin-top: 0;
}

.aboutzero-title{
  font-size: 50px;
  margin-bottom: 1rem;
}

.aboutzero-text{
  font-size: 17px;
  margin-bottom: 3rem;
  line-height: 1.5;
}

.contact-box {
  padding: 2rem;
   width: 100%;
  height: auto; 
 max-width: 600px;
max-height: 500px;
 
}

.contact-title{
  font-size: 40px;
  text-transform: uppercase;
  font-weight: 500;
 
  margin-bottom: 5rem;
}

.contact-text{
  font-size: 16px;
  font-weight: 300;
  color: #ffffff;
  margin-bottom: 5rem;
}
}

@media (max-width: 1235px){

   .home {
  height: auto;
}

.homecontainer{
  flex-direction: column;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;

}

.homedata{
  padding-bottom: 0;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  margin-right: 0;
  justify-content: center;
  align-items: center;
}

.home-section-title{
  width: 70%;
  height: auto;
  display: flex;
  justify-content: center;
  margin-right: 2rem;
  margin-bottom: 1rem;
}
.home-section-img{
  width: 100%;
  height: auto;
}

.homeimg{
  width: 400px;
}

.home-section-text {
  font-size: 18px;
  text-align: center;
  margin-left: 1rem;
  margin-right: 1rem;
  bottom: 0;
  margin-bottom: 2rem;

}

.home-button {
  font-size: 19px;
  margin-left: 0;
}
.about-cards{
  
  grid-template-columns: repeat(1, 1fr);
  place-items: center;
  
}
.about-card{
max-width: 600px;
}

.about-card i{
font-size: 50px;

}
}

@media (max-width: 800px){

  .home-section-text {
  font-size: 17px;
}

.home-button {
  font-size: 17px;
}

.services-grid{
  
  grid-template-columns: repeat(1, 1fr);
 
}

.gallery-title{
font-size: 60px;
  font-weight: 500;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}



}

@media (max-width: 600px){
.about-card{
  padding: 2rem 2rem;
}

}

@media (max-width: 500px){

 .home {
  padding-top: 8rem; 
  height: auto;
}

.homecontainer{
  flex-direction: row;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;

}

.homedata{
  padding-bottom: 0;
  display: flex;
  flex-wrap: wrap;
  margin-right: 0;
  justify-content: center;
}

.home-section-title{
  width: 70%;
  height: auto;
  display: flex;
  justify-content: center;
  margin-right: 2rem;
  margin-bottom: 1rem;
}
.home-section-img{
  width: 100%;
  height: auto;
}

.homeimg{
  width: 400px;
}

.home-section-text {
  font-size: 15px;
  text-align: center;
  margin-left: 1rem;
  margin-right: 1rem;
  bottom: 0;
  margin-bottom: 2rem;

}

.home-button {
  font-size: 16px;
  margin-left: 0;
}
.services-title{
   font-size: 40px;
}

.services-text{
font-size: 16px;
margin-bottom: 2rem;
}

.gallery{
  min-height: 80vh;
}
.gallery-title{
font-size: 50px;
}

.gallery-text{
margin-bottom: 3rem;

}

.about{
  padding: 3rem 1rem;
}
.about-title{
  font-size: 40px;
}
.about-text{
  font-size: 16px;
  margin-bottom: 2rem;
}

.about-card{
  padding: 2rem 1rem;
}
.about-card i{
  font-size: 50px;
  
}
.about-card-title{
  font-size: 30px;
}
.about-card-text{
  font-size: 16px;
  line-height: 1.3;
}

.aboutzero-title{
  font-size: 40px;
}
.aboutzero-text{
  font-size: 16px;
}
.aboutzero-button{
  font-size: 18px;
}

.abouttwo-title{
  font-size: 40px;
}
.abouttwo-text{
  font-size: 16px;
}
.abouttwo-button{
  font-size: 18px;
}


.contact-box{
  left: 0;
}

.contact-title{
  font-size: 30px;
  margin-bottom: 2rem;
}

.contact-text{
  font-size: 16px;
}
/* FOOTER */
.footer {
  padding: 2rem 2rem;
}
.footer-top {
  justify-content: center;
    gap: 3rem;
}

.footer-logo {
margin-right: 1rem;
}


.footer-links {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

}


/* Price List Section */
.price-list {
 
  padding: 4rem 2rem;
  text-align: center;
}

.price-title {
  color: var(--theme-color);
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.price-card {
  background-color: var(--body-color);
  border: 2px solid var(--theme-color);
  border-radius: 1rem;
  padding: 1.5rem;
  transition: transform 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.price-card:hover {
  transform: translateY(-8px);
  border-color: var(--themehover-color);
}

.price-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 0.75rem;
  margin-bottom: 1rem;
}

.price-name {
  color: var(--text-color);
  font-size: 1.4rem;
  margin: 0.5rem 0;
}

.price-value {
  color: var(--theme-color);
  font-size: 1.2rem;
  font-weight: bold;
}

.price-btn {
  background-color: var(--theme-color);
  color: var(--text-color);
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  cursor: pointer;
  margin-top: 1rem;
  transition: background-color 0.3s ease;
}

.price-btn:hover {
  background-color: var(--themehover-color);
}


@media (max-width: 1024px) {
  .price-title {
    font-size: 2rem;
  }

  .price-img {
    height: 160px;
  }
}

@media (max-width: 600px) {
  .price-list {
    padding: 2rem 1rem;
  }

  .price-title {
    font-size: 1.8rem;
  }

  .price-card {
    padding: 1rem;
  }

  .price-img {
    height: 140px;
  }

  .price-name {
    font-size: 1.2rem;
  }

  .price-value {
    font-size: 1rem;
  }

  .price-btn {
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
  }
}

#loading-screen {
  position: fixed;
  inset: 0;
  background: var(--body-color);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#loading-screen.hidden {
  opacity: 0;
  visibility: hidden;
}
.loader-image {
  width: 300px;
  height: auto;
  animation: pulse 1.5s infinite ease-in-out;
  filter: drop-shadow(0 0 10px var(--theme-color));
}
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    filter: drop-shadow(0 0 5px var(--theme-color));
  }
  50% {
    transform: scale(1.1);
    filter: drop-shadow(0 0 20px var(--theme-color));
  }
}
