*{
	margin:0;
	padding:0;
	box-sizing:border-box;}
	
	html,body{
  height:100%;
  font-family: Roboto Condensed, sans-serif;
  background-color: #fff;
}


/*HEADER SLIDESHOW*/

.slideshow-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  z-index: 0; 
}



.slide{
  position:absolute;
  inset:0;                         
  width:100%;
  height:100%;
  object-fit:cover;                
  object-position:center;
  opacity:0;
  transition:opacity 1s ease-in-out;
  z-index:0;
}
.slide.active{opacity:1;}

/* centred logo */
.logo{
  position:absolute;
  top:50%; left:50%;
  transform:translate(-50%,-50%);
  z-index:2;
  width:300px;                      
  height:auto;
}

/* MENU */
.main {
  padding: 16px;
  margin-top: 30px;
  height: 1500px; /* Used to enable scrolling */
}

.combined-navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  top: 0;
  width: 100%;
  height: 60px;
  padding: 0 20px;
  z-index: 9999;
  transition: background-color 0.3s ease, opacity 0.3s ease;
  background-color: rgba(0, 0, 0, 0.2); 
  max-width: 100vw;
  overflow-x: hidden;
  box-sizing: border-box;
}

.combined-navbar .menu-links a {
  color: #fff;
  text-decoration: none;
  font-size: 20px;
  font-weight: bold;
  padding: 20px ;
  line-height: 1;
  white-space: nowrap;
  margin: auto;
}

.combined-navbar .menu-links a:hover {
  background: #596887;
  color: #fff;
}

.combined-navbar.scrolled {
  background-color: #52607d !important;
  opacity: 1 !important;
}

.logo-fixed img:hover,
.combined-navbar.scrolled .logo-fixed img {
  opacity: 1;
}

.logo-fixed img {
  height: 60px;
  width: auto;
  display: flex;
  align-items: center;
  opacity: 1
  /*opacity: 0.3;
  transition: opacity 0.3s ease;*/
}


/* Language */

.language {
  display: flex;
  align-items: center;
  margin-left: auto;
}

.menu-links .language a {
  padding: 0 20px !important;
}

.language a {
  color: #52607d;
  font-size: 20px;
  font-weight: bold;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  opacity: 1; /* всегда непрозрачная */
  border: 1px solid white;
  border-radius: 30px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  padding: 0 15px;
  white-space: nowrap;
}

.language a:hover {
  color: #fff;
  background-color: #52607d;
  opacity: 1 !important;
}

.language:hover {  
  opacity: 1 !important;

}

.menu-links {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
}

@media (max-width: 860px){
.combined-navbar .menu-links a {
  padding: 10px ;
}
}



/*TOURS*/

.main-blocks {
  display: flex;
  justify-content: center;
  gap: 15px;
  padding: 50px 50px;    
  max-width: 100%;          
  flex-wrap:wrap;
  margin: 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
  margin-top: 100vh;
  background-color: #fff;
}

.block {
  background-color: #dfdfe0;
  padding: 0;
  width: 30%;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  margin-bottom: 0; 
}

.block h3 {
  font-size: 24px;
  color: #515f7c;
  margin-bottom: 10px;
  margin-top: 20px;
}

.block p {
  font-size: 16px;
  color: #515f7c;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 50px;
}


.block img {
  width: 100%;
  height: auto; 
  object-fit: cover;
  display: block;
  border-radius: 0;
  margin-bottom: 0;
}

.block-link {
  text-decoration: none;
  color: inherit;
  display: block;

}

/*INSPIRE*/


.inspire {
  background-image: url("images/inspire/canal.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  height: 610px;
  margin-top: 0px;
  overflow: hidden;
  display: flex;
  align-items: center;     
  margin: 0 auto;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}

.inspire-leftside {
  width: 850px;
}

.inspire h1 {
  color: #fff;
  width: 700px;
  font-size: 40px;
  text-align:left;
  margin-left: 100px;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.8); 
}

.inspire p {
  color: #fff;
  width: 650px;
  font-size: 30px;
  text-align:right;
  margin-left: 100px;
  margin-top: 50px;
  margin-bottom: 80px;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.8); 
}

.aboutbutton {
  padding: 8px 16px;
  background-color: #fff;
  color: #52607d;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  font-weight: bold;
  font-size: 20px;
  text-decoration: none;
  padding-left: 25px;
  padding-right: 25px;
  
}

.aboutbutton:hover {
	background-color: #ddd;
}

.button-wrapper {
  display: flex;
  justify-content: center;  
  align-items: center;      

}

/* GALLERY*/

.gallery-container {
      position: relative;
      overflow: hidden;



      background: #dfdfe0;
      padding: 10px;
      position: relative;
      z-index: 1;
    }

    .gallery-track {
      display: flex;
      transition: transform 0.7s ease-in-out;
      will-change: transform;
    }

    .gallery-track img {
      width: 350px;
      height: 478px;
      flex-shrink: 0;
      object-fit: cover;
      margin-right: 10px;
      border-radius: 16px;
    }

    .nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      font-size: 2rem;
      background: rgba(0, 0, 0, 0.5);
      color: white;
      border: none;
      padding: 10px;
      cursor: pointer;
      z-index: 1;
    }

    .nav.left {
      left: 10px;
    }

    .nav.right {
      right: 10px;
    }
    
    .gallery-heading{
		position: inherit;    
		margin:0;
		padding:0;

    }
    
    /*REVIEWS*/

.reviews-slider {
  background-color: #fff;
  width: 100%;
  height: 450px;
  position: relative;
  margin: 0;
  margin-top: 0;
  padding-top: 0;
  background-image: url(images/review-bg/kea.JPG);
  background-repeat: no-repeat;
  background-size: 100%;
  z-index: 1;
}

.section-title {
  color: #ffffff;
  font-size: 36px;
  text-align: right;
  margin-right: 30%;
  padding-top: 35px;
  padding-bottom: 25px;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.8); 
}

.arrow-left,
.arrow-right {
  background-color: rgba(255,255,255,0.7);
  color: #515f7c;
  border: none;
  font-size: 26px;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  transition: background-color 0.3s, transform 0.2s;
}

.arrow-left {
  left: 50px; 
}

.arrow-right {
  right: 50px; 
}

.arrow-left:hover,
.arrow-right:hover {
  background-color: rgba(255,255,255,0.9);
  transform: translateY(-50%) scale(1.1);
}


.slider-container {
  position: absolute;
  right: 0;
  width: 70%;
  margin: 0 auto;
  overflow: hidden;
  display: flex;
  align-items: center;

 }

.slider-wrapper {
  display: flex;
  transition: transform 0.5s ease-in-out;
  gap: 20px;
  scroll-behavior: smooth;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none; 
  width: 70%;
  position: relative;
  margin: 0 auto;
}

.slider-wrapper::-webkit-scrollbar {
  display: none; 
}

.review-slide {
  width: 100%;
  flex-shrink: 0;
  scroll-snap-align: center;
  background-color: rgba(50, 50, 50, 0.5); 
  border-radius: 25px;
  padding-bottom: 3%;
  padding-top: 3%;
  padding-right: 3%;
  padding-left: 3%;
  font-size: 20px;
  font-style: italic;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.6);
  color: #fff;
  text-align: right;
}


.review-slide .author {
  display: block;
  margin-top: 15px;
  font-size: 18px;
  color: #fff;
  font-style: normal;
  font-weight: bold;
}

/* FOOTER */

#footer {
  background-color: #52607d;
  color: #fff;
  padding: 40px 20px;
  position: relative;
  z-index: 1;
}

.footer-accent {
  text-align: center;
  margin-bottom: 40px;
}
.footer-accent h2 {
  font-size: 28px;
  margin-bottom: 0;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto 40px auto;
}
.footer-column {
  flex: 1;
  min-width: 200px;
}
.footer-column h3 {
  font-size: 20px;
  margin-bottom: 10px;
}
.footer-column p,
.footer-column a {
  font-size: 16px;
  color: #fff;
  text-decoration: none;
  line-height: 1.7;
}
.footer-column a:hover {
  text-decoration: underline;
}

.footer-divider {
  width: 2px;
  background-color: rgba(255, 255, 255, 0.3);
  margin: 0 10px;
}

/* Social Media */
.footer-social a {
  margin-right: 15px;
}
.footer-social img {
  width: 26px;
  height: 26px;

}
.footer-social img:hover {
  transform: scale(1.1);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.3); 
  padding-top: 15px;
  padding-bottom: 10px; 
  text-align: center;
  font-size: 16px;
  opacity: 0.9;
}
.footer-bottom p {
  margin: 0;
  font-weight: bold;
}
.footer-bottom small {
  display: block;
  margin-top: 5px;
  font-size: 14px;
  opacity: 0.7;
}

#nz-time {
  font-weight: bold;
}

/* CONTACTS */

#contactspicture {
	background-image: url(images/header/maraetotara.jpg);          
	background-repeat: no-repeat;
   background-position: center;
   background-size: cover;
   height: 100vh;
   position: fixed;
 	inset: 0;
   padding-bottom: 60px;
   display: flex; 
   align-items: center;   
  justify-content: center;
  z-index: 0;
}

.contact-section {
   display: flex;
   align-items: center;
   flex-wrap: wrap;
   gap: 150px;
   margin: 0 auto;
	padding-left: 100px;
	padding-right: 100px;
	padding-top: 60px;
	min-height: 100vh;
	position: relative;
	z-index: 1;
  display: flex;
}

.contact-details {
  flex: 1;
  color: #333;
  background-color: #dfdfe0;
  border-radius: 16px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  padding: 30px;
  width: 50%;
  align-self: center;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .9s ease, transform .9s ease;
  justify-content: center;
}

.contact-details,
.contact-form {
  height: 100%; /* одинаковая высота в пределах секции */
}

.contact-details.visible {
  opacity: 1;
  transform: translateY(0);
}


.contact-section h2 {
	font-size: 26px;
  color: #000e1c;
  margin-bottom: 20px;
}


.contact-section p {
	font-size: 16px;
  line-height: 1.6;
  color: #333;
}

.contact-text a {
  color: #5484de;
  text-decoration: none;
}

.contact-form {
  flex: 1;
  width: 50%;
  background-color: #dfdfe0;
  border-radius: 16px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  padding: 30px;
  display: flex;
  flex-direction: column; /* ключевой момент */
  gap: 10px;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .9s ease, transform .9s ease;
  justify-content: center;
}

.contact-form.visible {
  opacity: 1;
  transform: translateY(0);
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-form input,
.contact-form textarea {
  padding: 8px 12px;
  font-size: 15px;
  border-radius: 20px;
  border: 1px solid #ccc;
  width: 100%;
  font-family: inherit;
}

.contact-form textarea {
  resize: vertical;
  min-height: 70px;
}

.contact-form button {
  align-self: flex-start;
  background-color: #52607d;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 20px;
  font-size: 15px;
  cursor: pointer;
  transition: background-color 0.3s;
  font-family: inherit;
}

.contact-form button:hover {
  background-color: #39445f;
}

#form-status {
  margin-top: 15px;
  font-weight: bold;
  color: #000e1c;
  background: rgba(255,255,255,0.7);
  padding: 10px 15px;
  border-radius: 10px;
}

/* ABOUT US */

#aboutus {
	position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   height: 100vh;
   background-image: url(images/header/makara.jpg);          
	background-repeat: no-repeat;
   background-position: center;
   background-size: cover;
	z-index: 0;
   display: flex; 
   align-items: center;   
  justify-content: center;
}

.aboutus-section {
  min-height: 100vh;            
  display: flex;               
  justify-content: center;     
  align-items: center;          
  flex-wrap: wrap;              
  gap: 50px;                    
  position: relative;
  z-index: 1;
  padding-left: 50px;
  padding-right: 50px;
  padding-top: 30px;
}

.aboutus-section::after {
  content: "";
  display: block;
  height: 100vh; 
}


.aboutus-image {
  flex: 0 0 325px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background-color: #dfdfe0;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease, transform 1s ease;
}

.aboutus-image img {
  width: 100%;
  height: auto;
  border-radius: 30px;
  padding:15px;
}

.aboutus-image.visible {
  opacity: 1;
  transform: translateY(0);
}

.text-container {
  display: flex;
  flex-direction: column;
  gap: 30px; 
  flex: 1; 
}

.aboutus-text {
  background-color: #dfdfe0;
  border-radius: 16px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  padding: 15px;
  flex: 1;
  font-size: 16px;
  line-height: 1.4;
  text-align: justify;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease, transform 1s ease;
}

.aboutus-text.visible {
	opacity: 1;
  transform: translateY(0);
  }

.aboutus-text h2 {
  font-size: 25px;
  color: #000e1c;
  margin-bottom: 15px;
  text-align: center;
}


/*REVIEWS*/

#testimonials {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-image: url(images/header/seaviewmarina.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-section {
  background-color: transparent;
  padding: 0;
  text-align: center;
  z-index: 1;
  position: relative;
}

.testimonial-section .testimonial-title {
  font-size: 60px;
  color: #fff;
  text-align: center;

  margin-top: 20vh;
  text-shadow: 2px 2px 5px rgba(0,0,0,1);
}

.testimonial-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
  padding: 100px 20px;
  max-width: 800px;
  margin: 0 auto;
}

.testimonial-card {
  background-color: #dfdfe0;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease, transform 1s ease;
}

.testimonial-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.testimonial-text {
  font-style: italic;
  font-size: 18px;
  color: #333;
  margin-bottom: 20px;
  line-height: 1.6;
}

.testimonial-author {
  display: block;
  font-weight: bold;
  font-size: 16px;
  color: #000e1c;
}

.testimonial-tour {
  font-size: 14px;
  color: #555;
  display: block;
}

/*NEW ZEALAND*/

#newzealand {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-image: url(images/header/queenstownstation.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.newzealand-section {
  background-color: transparent;
  padding: 0;
  text-align: center;
  z-index: 1;
  position: relative;
}

.newzealand-section .newzealand-title {
  font-size: 60px;
  color: #fff;
  text-align: center;
  margin-top: 20vh;
  text-shadow: 2px 2px 5px rgba(0,0,0,1);
  opacity: 0;
  transform: translateY(40px);
  animation: ucFadeUp 1s ease forwards .3s;
}

.newzealand-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
  padding: 100px 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.newzealand-card1 {
  background-color: #dfdfe0;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease, transform 1s ease;
}

.newzealand-card2 {
  background-color: #c7c7db;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease, transform 1s ease;
}

.newzealand-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.newzealand-text {
  text-align: justify;
  font-size: 18px;
  color: #333;

  line-height: 1.6;
}

.newzealand-card h3{
  text-align: center;
  font-size: 20px;
  color: #000;
  margin-bottom: 20px;
  line-height: 1.6;
}

#fj {
	width: 50%;
	height: auto;
	margin-right: 20px;
	float: left;
	border-radius: 16px;
}

#worldmap {
	width: 50%;
	height: auto;
	margin-left: 20px;
	float: right;
	border-radius: 16px;
}

.seasons {
	margin-bottom: 20px;
	margin-top: 20px;
}

.seasons img{
	width: 24%;
}

/* TOURS */

#tours {
  position: fixed;
  inset: 0;
  height: 100vh;
  background-image: url(images/header/milfordroad.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

#cruiseship{
  position: fixed;
  inset: 0;
  height: 100vh;
  background-image: url(images/header/onepoto.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

#individual {
  position: fixed;
  inset: 0;
  height: 100vh;
  background-image: url(images/header/pohutukawa.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

#group {
  position: fixed;
  inset: 0;
  height: 100vh;
  background-image: url(images/header/mtcook.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

.group-tours, 
.cruise-tours,
.tours-page {
  margin: 0 auto;
  color: #333;
  position: relative;
  z-index: 1;
  min-height: 100vh;
  padding: 0;
}

.tours-hero {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;      /* локальные боковые отступы только для hero */
}

.group-tours-title,
.cruise-tours-title,
.tours-page-title {
  font-size: 60px;
  color: #fff;
  text-align: center;
  margin-top: 30vh;
  margin-bottom: 15vh;
  text-shadow: 2px 2px 5px rgba(0,0,0,1);
  opacity: 0;
  transform: translateY(40px);
  animation: ucFadeUp 1s ease forwards .2s;
}

.group-tours-intro,
.cruise-tours-intro,
.tours-page-intro {
  background-color: #fff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  max-width: 1000px;
  margin: 20px auto 0;
  font-size: 1.2em;
  opacity: 0;
  transform: translateY(40px);
  animation: ucFadeUp 1s ease forwards .45s;
}


.tours-wrapper {
  width: 100%;          
  background: #fff;
  display: flex;           
  justify-content: center;
  margin-top: 40vh;
}

.tours-grid {
  max-width: 1000px;
  width:100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  background: #fff;  
  margin-bottom: 0;
  padding: 30px 20px;
  box-sizing: border-box;
}

.tour-card {
  background: #dfdfe0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  transition: transform 0.2s ease;
}

.tour-card:hover {
  transform: translateY(-5px);
}

.tour-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.tour-card h2 {
  font-size: 1.5em;
  margin: 16px;
}

.tour-card h3{
  font-size: 1em;
  margin-left: 16px;
  color: #787373;
  margin-bottom: 10px;
}

.tour-card p {
  font-size: 1em;
  margin: 0 16px 16px;
  color: #555;
}

.tour-button {
  display: inline-block;
  margin: 0 16px 20px;
  padding: 10px 20px;
  background-color: #52607d;
  color: white;
  border-radius: 20px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.tour-button:hover {
  background-color: #39445f;
}


.tour-cta-band {
  background: #fff;              
  padding: 10px 0 40px;          
}


.tour-cta-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;               
  box-sizing: border-box;
}


.tour-cta-card {
  background: #dfdfe0;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  transition: transform 0.2s ease;
}

.tour-cta-card:hover {
  transform: translateY(-5px); 
}

.tour-cta-card h2 { 
  font-size: 1.5em; 
  color: #000e1c; 
  margin-bottom: 15px; 
}
.tour-cta-card p { 
  font-size: 1em; 
  color: #444; 
  line-height: 1.6; 
}

/*Why group tours*/

.why-group-tours {
  background: #dfdfe0;
  border-radius: 16px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  overflow: hidden;
}

.why-group-tours h2 {
  font-size: 2em;
  margin-bottom: 20px;
  text-align: center;
}

.why-group-tours ul {
  list-style: none;
  padding: 0;
}

.why-group-tours li {
  font-size: 1.1em;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.why-text {
  padding: 25px 25px 15px 25px;
}

.why-image {
  width: 100%;
  display: block;
  object-fit: cover;
  height: auto;
}

/* CALENDAR */

.calendar-section {
  position: relative;   /* важное */
  z-index: 1; 
  width: 100%;
  background-color: #52607d;
  padding: 5px;
}

.tour-calendar {
  margin: 10px auto;
  padding: 40px;
  background: #52607d;
  border-radius: 16px;
  width: 75%;
}

.tour-calendar h2 {
  font-size: 2em;
  margin-bottom: 10px;
  color: #fff;
  text-align: center;
}

.calendar-note {
  font-size: 1em;
  color: #fff;
  margin-bottom: 20px;
  text-align: center;
}

.calendar-table {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.calendar-row {
  display: grid;
  grid-template-columns: 1fr 1.5fr 2fr 1fr;
  background: white;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  align-items: center;
}

.calendar-header {
  font-weight: bold;
  background: none;
  box-shadow: none;
  padding: 0 8px;
  color: #dfdfe0;
}

.calendar-row {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.calendar-row.visible {
  opacity: 1;
  transform: translateY(0);
}

.low-season-note {
  background: transparent;
  box-shadow: none;
  text-align: center;
}

.low-season-note .low-season-label {
  grid-column: 1 / -1;
  color: #fff;
  font-style: italic;
}

/* ===== Under Construction (desktop) ===== */

#underconstruction {
  position: fixed;
  inset: 0;
  height: 100vh;
  background-image: url(images/header/fern.jpg); 
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}


.uc-section {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  padding: 0;
  background: transparent;
}

.uc-hero {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}


.uc-title {
  font-size: 60px;
  color: #fff;
  text-align: center;
  margin-top: 30vh;         
  margin-bottom: 8vh;
  text-shadow: 2px 2px 5px rgba(0,0,0,1);
  opacity: 0;
  transform: translateY(40px);
  animation: ucFadeUp 1s ease forwards .2s;
}


.uc-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.05);
  max-width: 1000px;
  margin: 0 auto;
  padding: 30px;
  font-size: 1.15em;
  color: #333;
  line-height: 1.6;
  opacity: 0;
  transform: translateY(40px);
  animation: ucFadeUp 1s ease forwards .45s;
}


/*GROUP TOURS*/

#nzodyssey {
  position: fixed;
  inset: 0;
  height: 100vh;
  background-image: url(images/header/wellington.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

#nzwind {
  position: fixed;
  inset: 0;
  height: 100vh;
  background-image: url(images/header/haast.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}


.grouptour-hero{
  margin: 0 auto;
  padding: 0 20px;
  margin-bottom: 40vh;
  width: 800px;
}

.grouptour-title {
  font-size: 60px;
  color: #fff;
  text-align: center;
  margin-top: 30vh;
  margin-bottom: 15vh;
  text-shadow: 2px 2px 5px rgba(0,0,0,1);
  opacity: 0;
  transform: translateY(40px);
  animation: ucFadeUp 1s ease forwards .2s;
  }
  
.grouptour-intro {
  background-color: #fff;
    font-style: italic;
  border-radius: 20px;
  padding: 15px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  max-width: 1000px;
  margin: 20px auto 0;
  font-size: 1.2em;
  opacity: 0;
  text-align: center;
  transform: translateY(40px);
  animation: ucFadeUp 1s ease forwards .45s;
  }


.tour {
  margin: 0 auto;
  padding: 3rem 1rem;          /* старые внутренние отступы */
  color: #333;
  text-align: center;          /* как в старом варианте */
  position: relative;
  z-index: 1; 
  width: 100%;
  background-color: #fff;
}

.tour-container {
  background: #dfdfe0;         /* вернуть цвет старой карточки */
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 0;
  width: 900px;
  margin: 0 auto;
  margin-bottom: 20px;
}

.tour-content {
  padding: 25px; /* отступы для текста */
}

.tour .description {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 20px;
  text-align: justify;
}

.route-and-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 5px;
}

.route-and-facts .map {
  flex: 1 1 350px;
  max-width: 350px;
}

.route-and-facts .facts {
  flex: 1 1 300px;
  font-size: 1rem;
  list-style: none;
  padding: 0;
  margin: auto 0;
}

.route-and-facts .facts li {
  margin-bottom: 0.7rem;
  text-align: left;
}

.facts .li-spaced {
  margin-top: 3.8rem; /* или сколько нужно */
}

.route-and-facts .quote {
  border-left: 3px solid #ff6e2b;
  padding-left: 1rem;
  margin-top: 15px;
  font-style: italic;
  color: #555;
  font-size: 0.95rem;
}

.route-and-facts .quote span {
  display: block;
  margin-top: 15px;
  font-weight: bold;
  color: #444;
  font-size: 0.9rem;
}

.tour-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 0 0 16px 16px;
  display: block;
  margin: 0;
  display: block;
}

.why-this-tour {
  background-color: #dfdfe0;
  padding: 2rem;
  border-radius: 12px;
  margin-bottom: 3rem;
  margin-top: 20px;
  width: 900px;
  margin: 0 auto;
    
}

.why-this-tour h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.why-this-tour ul {
  list-style: disc inside;
  padding-left: 0;
  text-align: left;
  margin-left: 10%;
  margin-right: 10%;
}

.cta {
  text-align: center;
  margin-top: 2rem;
}

.button {
  background-color: #52607d;
  color: #fff;
  padding: 0.8rem 1.8rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: background 0.3s ease;
}

.button:hover {
  background-color: #39445f;
}

.tour-gallery {
  width: 900px;
  margin: 0 auto;
}

.tour-gallery h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  margin-top: 3rem;
  
}

.tour-gallery .tour-gallery-images {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;

}

.tour-gallery img {
  flex: 1 1 30%;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  max-width: 32%;
}


/* Анимация появления как на других страницах */
@keyframes ucFadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* Ссылки внутри карточки */
.uc-card a {
  color: #5484de;
  text-decoration: none;
}
.uc-card a:hover {
  text-decoration: underline;
}