/******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: #a80089;
     --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-top: 1.5rem;
    padding-bottom: 0.5rem;
    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: 10vw;
    
}
.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: 25px;
}

.navbuttons i:hover{
     border-bottom: 1px solid white;
}


.logo-img{
    width: 100px;
    height: auto;
    position: relative;
    bottom: 10px;
}

.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: 10rem; 
  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;
 
  justify-content: center;
  
}

.homecontainer{
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 3rem;
  justify-content: center;

}

.homedata{
  padding-bottom: 7rem;
  text-align: center;
}
.home-section-img{
  width: 550px;
  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: 22px;
  font-weight: 300;
  letter-spacing: .5px;
  color:#ccc;
  
  position: relative;
  margin-top: .5rem;
  line-height: 1.5;
  margin-bottom: 2rem;
}

.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; 
  
 
}

.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-ceca{
  height: 700px;
  width: auto;
   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(vikendphotos/ceca.jpg);
     background-size: cover;
  background-position: center;
  padding: 2rem;
  background-repeat: no-repeat;
  border-radius: 25px;
}
.section-card-toni{
  height: 700px;
  width: auto;
   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(vikendphotos/toni.jpg);
     background-size: cover;
  background-position: center;
  padding: 2rem;
  background-repeat: no-repeat;
   border-radius: 25px;
}
.section-card-content{
  position: relative;
  top: 65%;
}
.section-card-title{
 font-weight: 700;
 text-transform: uppercase;
 letter-spacing: 1px;
  font-size: 24px;
  margin-bottom: 4rem;
}

.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(2, 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;
  text-transform: uppercase;
}

.services-text{
color: #9e9e9e;
font-weight: 300;
margin-bottom: 5rem;
font-size: 19px;
}

/*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(vikendphotos/vikendfestbg3.jpg);
     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;
}

.gallery-text{
color: #ccc;
font-weight: 300;
margin-bottom: 5rem;
font-size: 19px;
}

.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;
}

.gallery-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, #44002d, #99007f);
  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 #b9074c, 0 0 40px #ff40a9;
  transform: scale(1.05);
}


/*abouttwo*/

.abouttwo{
  padding: 5rem 2rem;
  display: flex;
 align-items: center;
 justify-content: center;
}

.abouttwo-container{
  display: flex;
  justify-content: space-between;
  gap: 10rem;
  
}


.abouttwo-img img{
   width: auto;
  height: 100%; 
  max-width: 600px;
  border-radius: 30px;
  object-fit: cover; 
}
.abouttwo-data{
 margin-top: 6rem;
}

.abouttwo-title{
  font-size: 60px;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.abouttwo-text{
  font-size: 19px;
  color: #ccc;
  margin-bottom: 15rem;
  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);
   
}

/*aboutthree*/

.aboutthree{
  padding: 5rem 2rem;
  display: flex;
 align-items: center;
 justify-content: center;
}

.aboutthree-container{
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  gap: 10rem;
  
}


.aboutthree-img img{
   width: auto;
  height: 100%; 
  max-width: 600px;
  border-radius: 30px;
  object-fit: cover; 
}
.aboutthree-data{
 display: flex;
 flex-direction: column;
 justify-content: space-between;
}

.aboutthree-title{
  font-size: 60px;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.aboutthree-text{
  font-size: 19px;
  color: #ccc;
  margin-bottom: 15rem;
  line-height: 1.3;
}



/*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: 450px;
   text-align: center;
}

.contact-title{
  font-size: 50px;
  text-transform: uppercase;
  font-weight: 500;
 
  margin-bottom: 3rem;
}

.contact-text{
  font-size: 19px;
  font-weight: 300;
  color: #ffffff;
  margin-bottom: 3rem;
}

.contact-button{
 color: white;
}
.contact-box a{
  font-weight: 600;
 
}
.contact-button{
 
   display: block; 

}



/* 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, 165, 236);
}

/*responsive*/

@media (max-width: 1500px){
  .logo-img{
    padding-top: 10px;
    width: 100px;
  }
 
  .navmenu{
    height: var(--header-height);
   padding-top: 2.5rem;
   padding-bottom: 2.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; /* leave space for the fixed header */
  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;
  
}

.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;
  
  position: relative;

  line-height: 1.5;
}

.home-button {
  margin-bottom: 8rem;
}

.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;
}

.aboutthree{
  padding: 2rem 2rem;
 height: auto;
}

.aboutthree-container{
  
  gap: 4rem;
  flex-wrap: wrap;
  
}


.aboutthree-img img{
   width: 100%;
  height: auto; 
  max-height: 400px;
  object-fit: cover; 
}
.aboutthree-data{
 margin-top: 0;
}

.aboutthree-title{
  font-size: 50px;
  margin-bottom: 1rem;
}

.aboutthree-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-bottom: 1rem;
}
.home-section-img{
  width: 100%;
  height: auto;
}

.homeimg{
  width: 400px;
}

.home-section-text {
  font-size: 18px;
  text-align: center;
  
  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: 500px;
}
}

@media (max-width: 800px){

   .logo-img{
    padding-top: 10px;
    width: 80px;
  }

  .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){

  .logo-img{
    
    width: 70px;
  }

 .home {
  padding-top: 10rem; 
  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-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;
}

.abouttwo-title{
  font-size: 40px;
}
.abouttwo-text{
  font-size: 16px;
}
.abouttwo-button{
  font-size: 18px;
}

.aboutthree-title{
  font-size: 40px;
}
.aboutthree-text{
  font-size: 16px;
}
.aboutthree-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;
}

}



.tickets {
   height: auto; 
  min-height: 100vh;
 
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;


  background: linear-gradient(135deg, #0a0a0a, #1a1a1a, #2a0020, #0a0a0a);
  background-size: 400% 400%;
  animation: gradientBG 12s ease infinite;
}


@keyframes gradientBG {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.tickets-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  max-width: 1000px;
  width: 100%;
  text-align: center;
}

.ticket-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 20px;
  padding: 2.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  backdrop-filter: blur(10px);
}

.ticket-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.5);
}

.ticket-title {
  font-size: 50px;
  color: var(--theme-color);
  margin-bottom: 2rem;
  font-weight: 500;
}

.ticket-subtitle {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  opacity: 0.9;
  display: inline;
}

.ticket-list {
  list-style: none;
  padding: 0;
  font-size: 1.1rem;
  line-height: 1.8;
  text-align: center;
}

.ticket-list li {
  margin: 0.6rem 0;
}

.ticket-list a {
  color: var(--theme-color);
  font-weight: 600;
  transition: color 0.3s ease;
}

.ticket-list a:hover {
  color: var(--themehover-color);
}

.footer-prodaja {
  color: var(--text-color);
 padding-left: 2rem;
 padding-right: 2rem;
 padding-top: 2rem;

  background: linear-gradient(135deg, #0a0a0a, #1a1a1a, #2a0020, #0a0a0a);
  background-size: 400% 400%;
  animation: gradientBG 14.5s ease infinite;
}


.ceca-wrapper {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  gap: 2rem;
  padding-top: 10rem;
}

.ceca-content {
  flex: 1 1 55%;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

.ceca-hero {
  flex: 1 1 40%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ceca-hero img {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  box-shadow: 0 0 30px rgba(0,0,0,0.7);
}


.ceca-content h1 {
  color: #b3002d;
  font-size: 3rem;
  text-align: center;
  margin-bottom: 1rem;
}

.ceca-content h2 {
  color: #b3002d;
  margin-top: 2rem;
  font-size: 1.3rem;
}

.ceca-content .intro {
  font-size: 1.1rem;
  text-align: center;
  margin-bottom: 2rem;
}

.ceca-content .closing {
  text-align: center;
  margin-top: 2rem;
  font-size: 1.2rem;
}


.event-info {
  background: rgba(179, 0, 45, 0.2);
  border-left: 4px solid #b3002d;
  padding: 1rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}
.event-info span {
  font-weight: bold;
  color: #ff3355;
}

.ceca-tickets {
  margin-top: 2rem;
}
.ticket-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}
.ticket-grid div {
  background: rgba(179, 0, 45, 0.15);
  border: 1px solid #b3002d;
  border-radius: 8px;
  padding: 0.8rem;
  text-align: center;
}
.ticket-grid span {
  display: block;
  margin-top: 0.3rem;
  font-size: 1.1rem;
  color: #ffcccc;
}


.ceca-sales ul {
  list-style: none;
  padding: 0;
}
.ceca-sales ul li {
  margin: 0.5rem 0;
}

@media (max-width: 1000px) {
  .ceca-wrapper {
    flex-direction: column;
    padding-top: 8rem;
  }
  .ceca-hero {
    order: 2; 
  }
  .ceca-content {
    order: 1;
    padding: 1.5rem;
  }
  .ceca-content h1 {
    font-size: 2rem;
  }
   .toni-title {
  font-size: 2rem;
 
}

.ticket-title {
  font-size: 30px;
  color: var(--theme-color);
  margin-bottom: 2rem;
  font-weight: 500;
}

.ticket-subtitle {
  font-size: 16px;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.ticket-list {
  list-style: none;
  padding: 0;
  font-size: 15px;
  line-height: 1.8;
  text-align: center;
}

}

.toni-section {
  padding: 60px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
   padding-top: 10rem;
}

.toni-container {
  max-width: 900px;
  text-align: center;
}

.toni-title {
  font-size: 3rem;
  margin-bottom: 20px;
  color: #ff4081; 
}

.toni-details {
  font-size: 1rem;
  margin-bottom: 20px;
  color: #ccc;
}

.toni-text {
  margin-bottom: 15px;
  font-size: 1.05rem;
}

.toni-subtitle {
  font-size: 1.3rem;
  margin: 25px 0 15px;
  color: #ff4081;
}

.toni-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.toni-list li {
  margin: 10px 0;
}

.toni-highlight {
  font-weight: bold;
  margin-top: 20px;
  color: #ffcc00;
}

.toni-image {
  margin-top: 30px;
}

.toni-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.5);
}

@media (max-width: 865px) {

  .tickets {
padding-top: 10rem;
}

.ticket-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 20px;
  padding: 2.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  backdrop-filter: blur(10px);
}
}



@media (max-width: 768px) {
 
   .toni-title {
  font-size: 2rem;
 
}

.tickets {
 padding-top: 8rem;
}


}


@media (max-width: 500px) {
 


.ticket-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 20px;
  padding: 2rem 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  backdrop-filter: blur(10px);
}

}

.ig-icon {
  position: relative;
  display: inline-block;
}

.instagraham{
  pointer-events: none;
}

.ig-icon i {
  font-size: 24px; 
  cursor: pointer;
}

.ig-popup {
  position: absolute;
  top: 40px; 
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--theme-color);
  border: 1px solid #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  padding: 8px;
  display: none; 
  flex-direction: column;
  gap: 6px;
  min-width: 150px;
  z-index: 100;
}

.ig-popup a {
  text-decoration: none;
  color: #ffffff;
  padding: 4px 8px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 17px;
}

.ig-popup a:hover {
  background-color: #330000;
}

