
/* =====================================================
   STYLE.CSS – ARCHIVO UNIFICADO
   Proyecto: Free Tour Arequipa
   -----------------------------------------------------
   Este archivo combina:
   - modern.css  (estilos generales / desktop)
   - responsive.css (ajustes mobile)
   
   Objetivo:
   - Tener UN solo CSS
   - Fácil mantenimiento
   - Evitar conflictos futuros
   ===================================================== */


/* =====================================================
   1. ESTILOS GENERALES (BASE / RESET)
   -----------------------------------------------------
   Tipografías, body, reglas globales
   ===================================================== */
/* modern.css - safe overrides (mobile-first) */
:root{
  --bg: #f6f7fb;
  --card: #ffffff;
  --text: #111827;
  --muted: #6b7280;
  --border: rgba(17,24,39,.12);
  --shadow: 0 10px 30px rgba(0,0,0,.08);
  --radius: 16px;
  --accent: #f5c400; /* warm yellow */
  --accent2:#111827;
}

html,body{height:100%;}
body{
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Make main container breathe a bit */
#container{
  max-width: 1200px;
  margin: 0 auto;
}

/* Improve text readability */
#main p, #main li, .introduction p{
  line-height: 1.6;
}

/* Cards for main content blocks (gentle, non-breaking) */
#main article, .introduction, #galeria, #the_footer{
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* spacing */
#main article{padding: 18px;}
.introduction{padding: 18px; margin-top: 14px;}
#galeria{padding: 14px; margin-top: 14px;}
#the_footer{margin-top: 18px;}

/* Booking card */
.booking-card{
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 16px;
  overflow: hidden;
}

.booking-title{
  margin: 0 0 6px 0;
  font-size: 22px;
  letter-spacing: .2px;
}

.booking-sub{
  margin: 0 0 12px 0;
  color: var(--muted);
  font-size: 14px;
}

.booking-cta{margin: 10px 0 14px 0;}
.btn-whatsapp{
  display:block;
  text-decoration:none;
  background: rgba(17,24,39,.06);
  border: 1px solid var(--border);
  padding: 12px 12px;
  border-radius: 12px;
  color: var(--text);
  font-weight: 600;
  text-align:center;
}
.btn-whatsapp:hover{filter: brightness(.98);}

.booking-form .field{margin-bottom: 10px;}
.booking-form label{
  display:block;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 6px;
}
.booking-form input,
.booking-form select,
.booking-form textarea{
  width: 100%;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text);
  outline: none;
}
.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus{
  border-color: rgba(245,196,0,.7);
  box-shadow: 0 0 0 4px rgba(245,196,0,.18);
}

.btn-book{
  width: 100%;
  padding: 14px 14px;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,.12);
  background: var(--accent);
  color: var(--accent2);
  font-weight: 800;
  cursor: pointer;
  letter-spacing: .3px;
}
.btn-book:hover{filter: brightness(.98);}
.booking-footnote{
  margin-top: 10px;
  font-size: 12px;
  color: var(--muted);
}

/* Tripadvisor icon */
.booking-card .tripadvisor{margin-top: 12px; text-align:center;}
.booking-card .tripadvisor img{max-width: 160px; height:auto;}

/* Better layout on smaller screens */
@media (max-width: 900px){
  #main_section{display:block;}
  #rigth_aside{width: 100% !important; float:none !important;}
  #main{width: 100% !important; float:none !important;}
  #side-menu{display:none;} /* clean mobile */
  #slideshow-container img{height:auto; max-height: 360px; object-fit: cover;}
}

/* Make gallery images look cleaner */
.gallery{
  border-radius: 14px;
  overflow:hidden;
  border: 1px solid var(--border);
  box-shadow: 0 10px 22px rgba(0,0,0,.06);
}
.gallery img{display:block; width:100%; height:auto;}
.desc{padding: 10px 12px;}

/* =========================
   VT_HERO_MOSAIC (Viajerotours-like)
   - Main rotating image (left)
   - 3 thumbs (right)
   ========================= */
#slideshow-container.vt-mosaic {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 12px;
  max-width: 1500px;
  margin: 20px auto 40px;
  position: relative;
}
#slideshow-container.vt-mosaic .vt-main {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 14px;
  grid-column: 1 / 2;
}
#slideshow-container.vt-mosaic .vt-thumbs {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  gap: 12px;
  grid-column: 2 / 3;
}
#slideshow-container.vt-mosaic .vt-thumbs img {
  width: 100%;
  height: 168px;
  object-fit: cover;
  border-radius: 14px;
  cursor: pointer;
}
#slideshow-container.vt-mosaic .vt-view-btn {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(255,255,255,0.9);
  padding: 8px 14px;
  border-radius: 8px;
  font-weight: 600;
  border: 0;
  cursor: pointer;
  z-index: 5;
}

/* Mobile */
@media (max-width: 900px) {
  #slideshow-container.vt-mosaic {
    grid-template-columns: 1fr;
  }
  #slideshow-container.vt-mosaic .vt-main {
    height: 320px;
  }
  #slideshow-container.vt-mosaic .vt-thumbs {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 1fr;
  }
  #slideshow-container.vt-mosaic .vt-thumbs img {
    height: 90px;
  }
}

/* =========================
   VT_ALSO (También te puede interesar)
   ========================= */
.vt-also {
  max-width: 1200px;
  margin: 70px auto 30px;
  padding: 0 15px;
}
.vt-also h2 {
  text-align: center;
  margin-bottom: 25px;
}
.vt-also-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.vt-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,.08);
  text-decoration: none;
  color: #111;
  display: block;
}
.vt-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.vt-card .vt-card-body {
  padding: 14px 14px 16px;
}
.vt-card .vt-title {
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 10px;
}
.vt-card .vt-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 14px;
  opacity: .85;
}
.vt-card .vt-price {
  font-weight: 800;
  color: #1f7a2e;
}
@media (max-width: 1100px) {
  .vt-also-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 650px) {
  .vt-also-grid { grid-template-columns: 1fr; }
  .vt-card img { height: 210px; }
}



/* =====================================================
   2. ESTILOS RESPONSIVE / MOBILE
   -----------------------------------------------------
   Ajustes SOLO para pantallas pequeñas
   Aquí está el arreglo del slideshow móvil
   ===================================================== */

@charset "utf-8";


/*Style Sheets for Mobile to Desktop */


/* HTML5 display-role reset for older browsers */
header, section, footer, aside, nav, main, article, figure hgroup{
  display: block; 
}

body {
	line-height: 1; /*this is the space between lines*/
	
/* Prevent mobile zooming while remain desktop zooming.
	github.com/shichuan/mobile-html5-boilerplate/issues/closed#issue/14
	*/
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: none;
}

*{
	margin: 0px;
	padding: 0px;
}

blockquote, q {
	quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}

table {
	border-collapse: collapse ;
	border-spacing: 0;
}

/* GENERAL
---------------------------------------------- */
html{
	color:#333;
}

body {
	font-size: 100%;
	font-family: "Trebuchet MS", Verdana, sans-serif;
	margin:0px auto;
	padding-bottom: 4px;
	}
	
img {
	max-width:100%; /*so the pictures don't loose quality if we stretch them out*/
	float:center;
}

header{
			/*its all in the masthead now*/	
	}

h3,
h4,
h5,
h6 {
	color: black;
	font-weight: bold;
}

h1 {
	font-size: 24px; /* 24px/16px */
	margin-bottom: 4px;
	color:#802415; /*brown*/
	text-transform: uppercase ;
}        

h2 {
	font-size: 17px; /* 22px/16px */
	color:#553500;
	font-weight: bold;
	text-shadow: 2px 2px 5px yellow;
}

p {
	margin: 0 0 2px;
	padding-right: 10px;
	font-size: 17px;
}



/* CONTAINERS FLOATING
---------------------------------------------- */
#container {                        
	background-color:#;		/*I wont use color background*/
	max-width: 100%;
	margin: 0px auto; 	/*this makes the container to be centered*/
	margin-top: 0px;
	margin-bottom: 1px;
	border: px solid lightblue;       /* I erased THE gray LINE OUTSIDE*/
	padding: 0px;
}

.ie6 #container { /* for IE6 only.  */
	width: 100%;
}

	
#top_header {
	background-size:%; /*makes the image of your header to occupy the whole screen*/
	max-width:100%;
	margin: 1px auto;
	padding-top:1px;
	border: 0px solid blue;
}

#index_main {			/*this is for the index.html only*/
  max-width: 100%;
  margin: 10px 15px;  /*this makes the container to be centered*/
  text-align:center;
}

#main_section{			/*this is for the other htmls, so we can make columns*/
	overflow:hidden;  /* I didn't write "auto" for not having the lines surrounding it*/
	max-width:100%;
}

#side-menu {
  float: left;
  width: 5%;
  max-width: 100%;
  text-align:left;
  margin-left:0px;
}

.ie6 #masthead div,
.ie7 #masthead div { /* for IE6 and IE7 only. */
	width: 30%;
}


#main {
	float:left ;
	width: 70%;
	max-width: 100%;
	margin: 1px auto;
	border: .em solid blue; 
	padding: 1px auto;
	padding-bottom: 2px;
	overflow: hidden;
	margin-left:10px;
	padding-left:10px;
}
#rigth_aside{  			/*this is the id for the sidebar*/
	float: left;
	width: 20%;			
	max-width:100% ;
	margin:1px auto;
	border: 0px solid blue; 
	padding-bottom: 4px;
	padding-right: 1px;
	padding-left: 1px;
	margin-left: 1px;
	margin-right: 1px;	
}

#wrapper {
	max-width: 100%;
}

#the_footer {
	clear:both;    /* Clear floats after the columns */
	max-width: 100%;
	margin:1px auto;
	border: px auto; 
	padding-bottom: 40px;
	padding-top: 30px;
	border-top: px dotted #b74e07;
	margin-top: 4px;
	margin-bottom: 0px;
	text-align:center;	
}


/* MASTHEAD
---------------------------------------------- */
#top_header {
	background-color:white;		/* lightblue color */	
	border-bottom: px dotted lightblue;	/* I erased for aesthetic reasons */	
	padding-bottom: 1px;
	margin-bottom: 1px;	
	border: 0px solid #4CAF50;
	position: sticky;		/* this sticks the top_header when scrolling the web page down */
	top: 0px;				/* this is necessary after the position */
	z-index: 1;  /*The z-index property specifies the stack order of an element , top_header shows up infront when scroll down*/
}

#cabeza{
	overflow: hidden ;	/* I didn't write "auto" for not having the lines surrounding it*/
    text-align:center ;
	margin: 2px 5px;  /* I use this to center all the elements of cabeza in the top-header*/
	display:inline;   /*makes the nav links appear horizontaly*/
}

#top_header #logo{
	float: left;    /* If i use float , I also must use "overflow:hidden" as in "cabeza" so words dont overflow each other*/
	width:15%;
	margin:1px;
	background:none;
	margin-bottom: 1px;
	margin-left: 15px;
	margin-top:20px;	
}

#logo .logo {
	max-width:100%;
}
#top_header #logo span {           /* The letters for the logo*/
	font-family: 'Lucida Handwriting'; 
	font-size:24px;
	color:#D4B46A;
	float:center;
	font-weight: bold;
	text-shadow: 2px 2px 5px FFE5AA;;
}

	
#top_header .topnav {
	float:left;
	width:60%;
	overflow: hidden;
	background-color:;
	margin-left: 5%;
	margin-right: auto;
	margin-top:80px;
	text-align: center;
	display:inline;  /*makes the nav links appear horizontaly*/
}	

#top_header form {			/* This is for the search area, but I am not using it now*/
	float: left;
	width:0%;
	text-align: center;	
	margin-top:10px;
	color:black;
}

#top_header input,
#top_header label{
	font-size: 16px; /* 12px/16px */
	color:black; /*black*/
}
	
input[type="text"] {
	padding: .2em .3em;
	max-width: 50%;
}

input[type="submit"] {
	vertical-align: top;
	margin:.2em;
}


#top_header .lang{			/* This is for the language area*/
		float:left;
		width:15%;
		margin:1px auto;
		padding:1px auto;
		margin-left:1px;
		margin-top:15px;
		color:#553B00;
		text-align:center;
		margin-bottom:10px;
		display:inline;  /*makes the nav links appear horizontaly*/
}

#top_header .lang img{
		border-radius:65px;
}
#top_header .lang span {
		color:green;
		font-size:18px;
	}	
#top_header .lang a {
		color:green;
		font-weight:bold;
		font-size:16px;
		text-decoration: none;   /* It eliminates the underline  */
	}		


/*  Site Navigation  on Footer only
---------------------------------------------- */
.nav {
	margin-bottom: 2px;
	margin-top:0px;
	list-style: none;  /*it erases the bullets in the lists*/
	background:none;
}

.nav li {
	display: inline; /*makes the nav links appear horizontaly*/
	margin-top:1px;
	font-size:  px;
	background:none; /*this is the lightblue color in the nav li*/
	padding: 4px;
}

.nav li a {
	font-size: 20px; /* 18px/12px */  /* makes the linked text larger than the bullets */
	color: #cc3300 ;
	padding: 1px; 
}

.nav li:first-child {
	list-style: none;
	padding-left: 0;
}

.nav li:last-child {
	padding-right: 0;
}

/* TOP DROPDOWN MENU */

.topnav {
  
}

.topnav a {
  float: left;
  display: block;
  color: #553B00;
  text-align: center;
  padding: 5px 10px;
  text-decoration: none;
  font-size:19px;
  margin:5px 10px;
}

.active {
  background-color: #4CAF50;
  color: white;
}

.topnav .icon {
  display: none;
}

.dropdown {
  float: left;
  overflow: hidden;
}

.dropdown .dropbtn {
  font-size: 19px;    
  border: none;
  outline: none;
  color: #553B00;
  padding: 4px 8px;
  background-color: inherit;
  font-family: inherit;
   margin:5px 10px;   
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color:#f9f9f9 ;
  min-width: 120px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  float: none;
  color: black;
  padding: 5px 10px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.topnav a:hover, .dropdown:hover .dropbtn {
  background-color: #555;
  color: white;
  border-radius: 50%;
}

.dropdown-content a:hover {
  background-color: #ddd;
  color: black;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* LINK STATES only for FOOTER*/

.nav a {
	padding: 1px;
}

.nav a:link {
	text-decoration: none ;
	color: #660033;  /*purple color*/
	background-color:transparent ;
}

.nav a:visited {
	text-decoration: none ;
	color:  #660033	;  /*purple color*/
	background-color: ;
	text-shadow: #7A1420 3px 3px 3px;
}

.nav a:hover {background-color: #B3E095;/*green color*/
			text-decoration:none;
			color:white;
			padding:1px;  /*makes the green background when hovering the link be thinner*/
			border-radius:25px;
			box-shadow: #B3E095 8px 8px 8px ; /*green color*/
			cursor: pointer;  /*shows the hand*/
}

.nav a:focus,
.nav a:active {
	background-color:orange;
	color:#B3E095; /*green color*/
	text-decoration: none;   /* It eliminates the underline  */
	font-weight:bold;
	border-radius:15px;
	box-shadow: orange 8px 8px 8px ;
}

.nav li a.active {
  background-color: #4CAF50;
  color: white;
  border-radius:15px;
}

.nav  li a:hover:not(.active) {
  background-color:;
  color: black;
}



/* MAIN PHOTO (BANNER) */

* {box-sizing:border-box ;}

/* Slideshow container */
#slideshow-container {
  max-width: 50%;
  height: auto;
  position: relative;
  margin: auto;			/* This command aligns the slidehow container to center */
  display: block;		/* This command aligns the slidehow container to center */
}
#slideshow-container .mySlides {
	display:none;
}
.mySlides img {
	vertical-align: middle;
	width: 100%;
	height: auto;	
	border-radius:10px;	
}	

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  height: 10px;
  width: 10px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
   margin-bottom:20px;
}

.active {
  background-color: #717171;
}

/* Fading animation */
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}

@-webkit-keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}


/*INDEX_MAIN       (this is for index.html)
---------------------------------------------- */

#index_main .intro p {					/*for the intro in the index */
  text-align:left;
}
#index_main article .back {				/*for the back buttom */
  text-align:right;
}
#index_main article .intro p{		
	text-align:justify;	/* This is for the TEXT IN ARTICLES to be in the justified, close to the photo  */
	}
/* 	Introduction  in the index.html
---------------------------------------------- */
.introduction {
  max-width:80%;
  text-align:center;
  margin:15px auto;
  margin-bottom:4slide0px;
  
}
.introduction h1{
  text-align:center;
  color:#995c00;
  font-weight: bold;
  text-shadow: 2px 2px 5px yellow;
  
}
.introduction p{
	text-align:justify;
	color:black;
	font-size:18px;
}

/* MAIN_SECTION     main   (this is for all the other .html )
---------------------------------------------- */

/* side_menu
---------------------------------------------- */
#side-menu .side-menu {
	padding: 0px;
	margin-left: 0px;		
	list-style: none; 
	max-width:100%;
}
#side-menu .side-menu a {
  background-image: linear-gradient(#,#);  /* This is the orange gradient color  */
  padding: 0px;
  display: block;  /* It makes the links appear verticaly */
  margin-left: 0px;
  margin-right: auto;
  max-width:100%;
  color:black;
  list-style: none; 
  margin-top: 20px;
  text-decoration: none;  /* It eliminates the underline  */
  border-bottom: 0px solid #f1f1f1;
  border-radius:10px;  /* It adds a border to every link in the menu  */
  box-shadow: # 1px 1px 1px ; /* It adds a shadow 8px in the right and 8px at the bottom 
									and a blur of 8px to every link in the menu */
}

#side-menu .side-menu img{
	width:50px; 
	height:50px;		
	margin-left: 1px;
	list-style: none; 
	max-width:100%;
	border-radius:7px;
}

/* main
---------------------------------------------- */
#main{
	background: #;	
}

#main h1{
	font-size:px;
	text-align:center;
	}
	
#main p{
	font-size:16px;
	text-align:center;
	}

#main article{
	margin-top:35px;
	}
	
#main article .intro p{		
	text-align:justify;	/* This is for the TEXT IN ARTICLES to be in the justified, close to the photo  */
	}
	
#main .date{
	text-align:center;
	}
#main article .back{
	text-align:right;
	}
#main #galeria{
	margin-left:35px;
	max-width: 100%;
	text-align:center;
	}	
	
/* Responsive Image Gallery
---------------------------------------------*/
#index_main #galeria{
	margin-top:5px;
	margin-left:80px; 
	text-align:center;
	max-width: 100%;
}
	
#galeria h4{
	text-align:center;
}
div.gallery {
  border: 1px solid #ccc;
  border-radius:15px;
  max-width: 90%;
  margin-left:10px; 
  margin-top: 0px;
}

div.gallery img {
  max-width: 100%;
  height: auto;
  border-radius:15px;
}

div.gallery:hover {
  border: 1px solid #777;
  box-shadow: 0 0 3px 2px rgba(0, 140, 186, 0.5);
}

div.desc {
  padding: 15px;
  text-align: center;
}

* {
  box-sizing: border-box;
}

#galeria .responsive {
  padding: 0 3px;
  float: left;
  width: 25%;
}

/* -------Clear floats after the columns ***** VERY IMPORTANT *****---------*/
.clearfix:after {
  content: "";
  clear: both;
  display: table;
}

					/* Blog ARTICLES */
					
article {
	max-width:90%;
	border:0px solid green;
	margin: 4px auto;
	margin-top: 25px ;
	margin-bottom: 15px;
	padding:15px;
	border-radius:25px;
}

.ie6 article { /* for IE6 only. */
	margin-right: 0;
}

article h2 {
	font-size: 22px;
    line-height: 1;
	text-align:center;
}

article .date {
	font-size:15px;
	line-height: 1;
	margin: .5em 0 .4em;
	padding: 0;
	color:black;
	text-align:center;
}

.ie6 .intro { /* for IE6 only. */
	margin-top: 0;
}

/* :::: ARTICLE PHOTOS :::: */
article .photo {
	float:left;   /* makes the photo to be on left and text on right*/
	max-width:35%; /* with max-width the image never loses quality as it expands*/
	transition:transform 2s; /*this delays the rotation of transform by 2 seconds*/
}

article .photo a {
	margin: 1px auto;
	padding: 1px auto;
}
article .photo img{
	max-width:100%;
	height:100%;
	border-radius:10px;	
}	

article .photo:hover{
	transform:rotate(0deg); /*this rotates de image some degrees to the left*/
}

article .photo a:focus,
article .photo a:hover,
article .photo a:active {
	background: orange;
	border-radius:15px;	
	
}
article .intro { 
	float:left;   /* makes the photo to be on left and text on right*/
	max-width:60%;
}
article .intro p{ 
	font-size:16px;
	margin-top:3px;
	text-align:justify;
}
article .intro p a:link { 
	background-color: #FFDFAA ;
	color: black;
	text-align: center;
	text-decoration: none;
	border-radius:15px;
}

article .intro p a:hover {
  background-color: lightgreen;
  color: white;
  border-radius:15px;	
}
article .intro p span{ 
	font-size:17px;
	margin-top:3px;
	font-weight:bold;
}

article .back  {
	font-style: italic;
	font-weight: bold;
	font-size: 15px;	
	text-align: right; /* this makes the "back to top" go to the right*/
}

article .back a {
	 text-shadow: 2px 2px 5px orange;
	text-decoration: none;  /* It eliminates the underline  */
}

#entry{
	margin-bottom:450px ;
}



/* For the Blog Page - Javascript*/

#thumbnails {width:20%; height:15%; float:left;}
#thumbnails img{width:100%;}
#thumbnails ul{list-style-type:none;}
			
#bigpicture {width:60%; height:40%;float:left;margin:5px;}
#bigpicture img {width:100%;}



/* SIDEBAR
---------------------------------------------- */
#rigth_aside {
	background-color: #FFDFAA; /*this is the green color background*/
	border-radius:20px;
	box-shadow: #ffb380 8px 8px 8px; /* ligth orange shadow */
}

#rigth_aside h3 {
	font-size: 16px; /* 15px/16px */
	margin: 2px auto;
	text-transform: uppercase;
}
#rigth_aside h2 {
	font-size: .9375em; /* 15px/16px */
	margin: .5em auto;
	text-transform: ;
}

#rigth_aside .youtube, 
#rigth_aside .skin,
#rigth_aside .video_java{
	float:none;
	width:90%;
}

/* VIDEO
---------------------------------------------- */ /* For the Video Section*/
.skin {
	float:left;
	width: 45%;
	margin:20px auto;
	margin-top:30px;
	padding:5px;
	background:red;
	border: 1.5px solid black;
	border-radius:25px;
	text-align:center; /*this makes the container to be centered*/
}

.skin video{
    max-width:100%;
	border-radius:25px;
	margin:5px auto;
	width:100%;
	height:100%;
}

.video_java{
	float:left;
	width: 45%;
	text-align:center;
}

.video_java video{
	max-width:100%;
	border-radius:25px;
	margin:5px auto;
	
}

.youtube {
	float:left;
	width: 45%;
	margin:10px auto;
	padding:5px;
	background: #FFF3AA ;
	border: 1.5px solid black;
	border-radius:25px;
	text-align:center; /*this makes the container to be centered*/
}

.youtube iframe{
	max-width:100%;
	border-radius:25px;
	margin:2px auto;	
}

/* WRAPPER
---------------------------------------------- */ /* For the Booking Page*/
#index_main .wrapper{ 
		float:center;  /*this makes the container to be centered*/
		text-align:left;	
		max-width: 70%;				
}

#wrapper h1{
	text-align:center;
}

#wrapper h2,
.book{
	max-width:100%;
	background-color: #dedede;
	border-bottom: 1px solid #d4d4d4;
	border-top: 1px solid #d4d4d4;
	border-radius: 5px;
	box-shadow: 3px 3px 3px #ccc;
	color: #fff;
	font-size: 1.1em;
	margin: 12px;
	padding: 0.3em 1em;
	text-shadow: #9FBEB9 1px 1px 1px;
	text-transform: uppercase;
	text-align:center;
}

#wrapper h2.name	{ background-color: #0B5586 ; }
#wrapper h2.tour	{ background-color: #4494C9; }
#wrapper h2.language { background-color: #377D87; }	
#wrapper h2.size	{ background-color: #A6373F; }	
#wrapper h2.extra_instructions	{ background-color: #599532; }

#wrapper .fieldset{
	max-width:100%;
	background-color: #f1f1f1;
	border: none;
	border-radius: 5px;
	margin-bottom: 10px;
	margin-right: 2px;
	overflow: hidden;
	padding: 0 10px;
}

#wrapper .fieldset input, select, option  {
	width:100%;
	font: inherit;
}

#wrapper .fieldset textarea {
	font: inherit;
	width:100%;
}

#wrapper .inside {          /* This is the navigation area or inside */
	width:100%;
	background-color: #fff;
	border: 1px solid #eaeaea;
	list-style: none;
	margin: 8px;
	padding: 8px;
}


#wrapper .inside label {
	display: inline;  /*makes the nav links appear horizontaly*/
	padding: 3px 6px;
	text-align: left;
	width: 100%;
	vertical-align: top;
}


#wrapper .language ul{
	background-color: #D8F0A0;
	border: none;
	display: ;
	list-style: none;
	margin: 0;
	padding: 0;
}

#wrapper .inside  li {   /* This is the navigation area links of the language */
	margin: 1px;
	display: inline-block;
}

#wrapper.language label {
	margin-right: 10px;
	width: auto;
}

#wrapper.language input {
	margin-top: 1px;
}

#wrapper .instructions {
	font-size: 80%;
	padding-left: 10px;
	font-style: italic;
}

#wrapper .submit {
	background-color: #FCD500;
	border: none;
	border-radius: 4px;
	box-shadow: 2px 2px 2px #333;
	cursor: pointer;
	color: #000;
	font-weight: bold;
	margin: 4px 12px 8px;
	padding: 14px 18px;
	text-shadow: none;
	width: calc(100% - 24px);
}

#wrapper .booking-status{
	margin: 0 12px 8px;
	font-size: 14px;
	color: #553B00;
}
#wrapper button * {
	vertical-align: middle;
}


/* :::: Info :::: */
.info {
	font-style: comic-sans;
	margin:2px auto;
	padding:1px auto;
}

/* :::: Archive :::: */
.archive h2 {
	margin-top: 8px;
}

.archive ol {
	list-style: disc; /* changes list items from numbers to bullets */
	margin-bottom: 10px;
	padding-left: 20px;
	list-style-type:katakana; /* changes list items from bullets to japanese alphabet */
	color:red;
	font-weight: bold;
}
.archive ol li{
	font-size: 17px;
	
}
.archive ol li a{
	font-size: 17px;
	color:orange;
	display:block;
}

.archive .back a {
	margin-top: 4px auto;
	padding: 2px auto;
	margin-left:4px auto;
	margin-right:4px auto;
	margin-bottom:6px auto;
}


/* FOOTER
---------------------------------------------- */
#the_footer{
	background-color: #805715; /*this is the yellow green gradient color*/
	color: white;
	border-radius: 0px;
	box-shadow: #B3E095 8px 8px 8px ;
}

#the_footer p {
	font-size: 16px;
	margin: 2px auto;
}


#the_footer .nav{
	
		margin-left:1px;
		margin-bottom: 26px;
		text-align:center;
	}
#the_footer .nav li {
		width:13%;
		margin:25px; /*margin between words*/
		
	}	
#the_footer .nav li a {	
		color:white;  /*none pink color*/
		
}

#address{
	overflow:hidden;
	margin-top:60px;
	margin-left:0px;
}

#the_footer .address1 {
  float: left;
  width: 25%;
  text-align:left;
  margin-left:2px;
}
#the_footer .address2 {
  float: left;
  width: 50%;
  text-align:center;
}
#the_footer .address2 a{
  color:black;	
  font-weight: bold;
  text-decoration: none;   /* It eliminates the underline  */
}
#the_footer .address3 {
  float: right;
  width: 20%;
  text-align:center;
}
#the_footer .address3 img {
  width:70px; 
  height:70px;
 
}
#the_footer .copyrigth{
	clear: both;
	text-align:center;
	margin-top:40px;
}

#address .bottom-menu {    /* ----- links to social media at the bottom ------- */
		color:white;
		background-color:;
		padding:1px auto;
		border: px solid red  ;
		max-width:80%;
		text-align:center;
	}
	
#address .bottom-menu li{
		display: inline;   /*makes the nav links appear horizontaly*/
		margin:1px;    /* distance between words */
}

#address .bottom-menu img{
	width:60px; 
	height:60px;		
	margin-left:1px;
	border-radius:15px;
}
	
/* ---- QUOTES SLIDESHOW -----*/




/* -------------- end of base styles for all devices -------------------- */



/* =========== Media Query Styles for Specific Viewport Sizes =========== */

/* Responsive layout - makes the  columns/boxes stack on top of each other instead of next to each other, on small screens */

@media only screen and (max-width:900px) {
  /* For tablets: */
  
  /* For the columns in the main_section: side-menu, main, and right_aside */
  #side-menu{
	  width:10%
  }
  
  #main {
    width: 80%;
    padding: 0;
  }
  
  #rigth_aside {
    width: 90%;
	text-align: center;
	margin-left:50px;
  }
  
 /* For inside the header: */ 
  #logo {
    width: 40%;
    padding: 0;
  }
  
  #top_header .topnav{
	  width:60%;
	  float: right;
  }
  
  #top_header .lang{
    width: 100%;
  }
  
  #slideshow-container {
	  float:center;
	  max-width: 80%;
	  height:auto;
  }  
   /* For the rigth_aside wrapper section: */ 
  #wrapper{ 
		display: block;
		margin-left: auto;
		margin-right: auto;
		width: 90%;				
}   

   /* For responsive Image Gallery */ 
 #galeria .responsive {
    width: 50%;
    margin: 6px 0px ;
  }
}

 /* For responsive Navbar Dropdown */ 
@media screen and (max-width: 700px) {
  .topnav a:not(:first-child), .dropdown .dropbtn {
    display: none;
  }
  .topnav a.icon {
    float: right;
    display: block;
  }
}

@media screen and (max-width: 700px) {
  .topnav.responsive {position: relative;}
  .topnav.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: center;
  }
  .topnav.responsive .dropdown {float: none;}
  .topnav.responsive .dropdown-content {position: relative;}
  .topnav.responsive .dropdown .dropbtn {
    display: block;
    width: 100%;
    text-align: center;
  }
}
 
@media only screen and (max-width:500px) {
  /* For mobile phones: */
  #side-menu, #main, #rigth_aside, #the_footer, article
  #logo, #top_header form{
    width: 100%;
  }
  
  #top_header{
     max-width:100%;
  }
  #top_header #logo{  
	text-align:center;
	width: 100%;
  }
  #top_header .topnav{
    width: 100%;
  }
  #cabeza{
    text-align:center ;
	margin: 2px 10px;
}
  #slideshow-container {
	  float:center;
	  max-width: 100%;
	  height:auto;
  }  
  #side-menu .side-menu{
	 padding: 2px 2px;
	 margin: 1px 45px;
	 text-align: center;
  }
  #side-menu .side-menu a{
	float: left;		/*makes the nav links appear horizontaly*/
	padding: 1px 3px 3px 2px;
	text-decoration: none;
	margin:1px 4px 4px 2px;
	text-align: center;
  }
  
  #index_main {
    margin-left:10px;
  }
  #main {
    margin-left:10px;
  }
  
  article .photo {
	  clear: both;
	  max-width: 90%;
	  float:left;
  }
  
  article .intro{
	  clear:both;
	  max-width: 90%;
	  float:left;
  }
  article .intro iframe{
	  max-width: 100%;
	  float:left;
  }
/* For responsive Image Gallery */    
   
   #main #galeria{
	margin-left:3px;
   }
   
   #index_main #galeria{
	margin-left:3px;
   }
   
   #galeria .responsive {
    width: 100%;
	float:left;
  } 
  
/* For the wraper */  
#rigth_aside {
	width:90%;
	text-align:center;
	margin-left:20px;
} 
 
#wrapper{ 
		display: block;
		width: 90%;				
}   
}	
   
/* On smaller screens, decrease text size for AUTOMATIC SLIDESHOW */
@media only screen and (max-width: 300px) {
  .text {font-size: 11px}
}	
   


/* -------------- For the FLEXIBLE BOX MODEL EXAMPLES BUCKY -------------------- */
/* 

display: flex;                        =   display: -webkit-box;
justify-content:center;       =   -webkit-box-pack: center; (start,end)
flex-direction: column;      =   -webkit-box-orient: vertical;
flex: 1;                                  =   -webkit-box-flex: 1;
flex-direction: row-reverse;  =   -webkit-box-direction: reverse; (advantage in old method as it reverse within axis)
order: 3;                              =   -webkit-box-ordinal-group: 3;
align-items: center;           =   -webkit-box-align: center;
border-radius: 25px;         =   -webkit-border-radius: 25px;
box-shadow: 10px 10px 10px rgba(110, 110, 110, .3);         =        -webkit-box-shadow-radius:rgba(110, 110, 110, .3) 10px 10px 10px;
background-image: linear-gradient(red,yellow);   =    background: -webkit-linear-gradient(top,red,yellow);
background-image: radial-gradient(circle,red 1%,yellow 50% );   =    background: webkit-radial-gradient(circle,red 1%,yellow 50%); 
transform:rotate(45deg); ----->  /*this rotates the image some degrees*/
*/


/* ==================================================
   MOBILE FIX – SLIDESHOW (REAL STRUCTURE)
   Works with .mySlides used in index and walk*
   ================================================== */
@media (max-width: 768px) {

  /* slideshow container */
  #slideshow-container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
  }

  /* each slide */
  #slideshow-container .mySlides {
    display: none; /* JS will show one at a time */
    width: 100%;
  }

  /* active slide image */
  #slideshow-container .mySlides img {
    width: 100%;
    height: auto;
    max-height: 60vh;
    object-fit: cover;
    display: block;
    border-radius: 10px;
  }

  /* caption text */
  #slideshow-container .text {
    font-size: 14px;
    padding: 6px 10px;
  }

  /* dots centered */
  .dot {
    height: 10px;
    width: 10px;
    margin: 0 4px;
  }

  /* remove floats / side effects */
  #slideshow-container * {
    float: none !important;
  }
}


/* =====================================================
   HOTFIX – SLIDESHOW MOBILE (POST CSS MERGE)
   -----------------------------------------------------
   Corrige el problema de imágenes apiladas/estrechas
   en modo móvil después de unificar los CSS.
   ===================================================== */
@media only screen and (max-width: 768px) {

  /* contenedor del slider */
  #slideshow-container {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    padding: 0 !important;
    overflow: hidden;
  }

  /* cada slide */
  .mySlides {
    width: 100% !important;
    float: none !important;
    margin: 0 !important;
  }

  /* imagen del slide */
  .mySlides img {
    width: 100% !important;
    height: auto !important;
    display: block !important;
    object-fit: cover;
    border-radius: 14px;
  }

  /* evita miniaturas heredadas */
  .mySlides:not(:first-child) {
    display: none;
  }
}



/* =====================================================
   DESKTOP MOSAIC FIX – VIAJEROTOURS STYLE (FINAL)
   -----------------------------------------------------
   PC: 1 imagen grande izquierda + 3 pequeñas derecha
   Mobile: NO afecta (solo desktop)
   ===================================================== */
@media (min-width: 769px) {

  #slideshow-container {
    display: grid !important;
    grid-template-columns: 2fr 1fr !important;
    grid-template-rows: repeat(3, 1fr) !important;
    gap: 12px !important;
    max-width: 1200px !important;
    margin: 20px auto 30px !important;
  }

  #slideshow-container .mySlides {
    display: block !important;
    position: relative;
  }

  /* imagen grande */
  #slideshow-container .mySlides:first-child {
    grid-row: 1 / span 3;
    grid-column: 1 / 2;
  }

  #slideshow-container .mySlides img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 14px;
  }

  /* elimina efectos mobile heredados */
  #slideshow-container * {
    float: none !important;
  }
}


/* =====================================================
   DESKTOP MOSAIC OVERRIDE – 4 FOTOS (1 GRANDE + 3)
   -----------------------------------------------------
   Si hay más de 4 .mySlides, en desktop se ocultan para
   mantener el diseño tipo Viajerotours.
   ===================================================== */
@media (min-width: 769px) {

  /* Mantén SOLO 4 slides visibles en desktop */
  #slideshow-container .mySlides:nth-child(n+5){
    display: none !important;
  }

  /* Grid exacto: 1 grande izquierda + 3 pequeñas derecha */
  #slideshow-container{
    grid-template-columns: 2fr 1fr !important;
    grid-template-rows: repeat(3, 190px) !important;
    align-items: stretch !important;
  }

  /* La grande ocupa 3 filas */
  #slideshow-container .mySlides:first-child{
    grid-row: 1 / span 3;
    grid-column: 1 / 2;
  }

  /* Las pequeñas ocupan columna derecha, 3 filas */
  #slideshow-container .mySlides:nth-child(2){ grid-row: 1; grid-column: 2; }
  #slideshow-container .mySlides:nth-child(3){ grid-row: 2; grid-column: 2; }
  #slideshow-container .mySlides:nth-child(4){ grid-row: 3; grid-column: 2; }

  /* Ajuste de alto consistente */
  #slideshow-container .mySlides img{
    height: 100% !important;
  }
}
