/*
Theme Name: Tourismo Theme
*/

body {
  margin: 0;
  font-family: Arial, sans-serif;
}

/* HEADER */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 65px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  z-index: 1000;
}

.header-inner {
  max-width: 1100px;
  margin: auto;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 15px;
}

/* LOGO */
.logo img {
  height: 30px;
  width: auto;
  display: block;
}

@media(max-width:768px){
  .logo img {
    height: 32px;
  }
}

/* MENU */
.menu {
  display: flex;
  gap: 20px;
}

.menu a {
  text-decoration: none;
  color: #333;
  font-size: 18px;
  position: relative;
  padding: 5px 0;
}

.menu a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: #000;
  transition: 0.3s;
}

.menu a:hover::after {
  width: 100%;
}

/* MOBILE MENU */
.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

@media(max-width:768px){
  .menu-toggle {
    display: block;
  }

  .menu {
    position: fixed;
    top: 65px;
    right: 0;
    width: 70%;
    max-width: 260px;
    height: calc(100vh - 65px);
    background: white;
    flex-direction: column;
    padding: 25px;
    gap: 18px;
    transform: translateX(100%);
    transition: 0.3s;
  }

  .menu a {
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    padding:18px;
    border-radius:14px;
    background: rgba(0,0,0,0.08);
    font-size:17px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    transition:0.2s;
  }

  .menu a img {
    width:20px;
    height:20px;
    opacity:0.8;
  }

  .menu a:hover {
    transform: translateY(-2px);
    background: rgba(0,0,0,0.12);
  }

  body.menu-open .menu {
    transform: translateX(0);
  }
}

/* HERO */
.hero {
  height: 100vh;
  background-image: url('/wp-content/uploads/2026/04/Main_BG.webp');
  background-size: cover;
  background-position: center;
  position: relative;
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.25);
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-menu {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  width: 90%;
  max-width: 360px;
}

/* volle Breite */
.hero-full {
  grid-column: span 2;
}

/* Icon links + Text rechts */
.hero-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

/* extra Abstand vor Historia */
.hero-gap {
  margin-top: 80px;
}

.hero-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  text-align: center;
  color: white;
  text-decoration: none;
  font-size: 16px;

  padding: 8px 6px;
  border-radius: 12px;

  backdrop-filter: blur(8px);
  background: rgba(255,255,255,0.15);
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);

  transition: 0.3s;
}

.hero-item:hover {
  transform: translateY(-5px) scale(1.02);
  background: rgba(255,255,255,0.25);
}

.hero-item img {
  width: 36px;
  height: 36px;
  margin-top: 4px;
  margin-bottom: 4px;
}

.hero-item p {
  margin: 2px 0 0 0;
}

/* Atractivos + Artesania + Historia: Icon links & kleiner */
.hero-full,
.hero-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

/* kleinere Icons nur für diese */
.hero-full img,
.hero-row img {
  width: 28px;
  height: 28px;
  margin: 0;
}

/* GRID */
.grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  padding: 90px 15px 20px;
  max-width: 1100px;
  margin: auto;
}

@media(min-width:768px){
  .grid {
    grid-template-columns: repeat(3,1fr);
  }
}

/* CARD */
.card {
  position: relative;
  background: #f8f8f8; /* NEU */
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
  transition: 0.3s;
}

.card:not(.mini-card) {
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 12px 28px rgba(0,0,0,0.25);
}

.card-link {
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* GROSSE CARDS */
.card:not(.mini-card) img {
  width: 100%;
  height: auto;
  display: block;
}

/* MINI CARDS */
.mini-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.card-content {
  position: relative;
  width: 100%;
  padding: 18px 70px 14px 16px;
  background: #f8f8f8;
  box-sizing: border-box;
}

.card-content h3 {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.4px;
  margin: 0;
  color: #111;
  display: inline-block;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(0,0,0,0.15);
}

.card-subtitle {
  font-size: 12px;
  color: #777;
  margin-top: 6px;
  padding: 0; /* statt 0 6px */
}

/* TITLE SCRIPT */
.page-title {
  font-family: "Brush Script MT", cursive;
  font-size: 28px;
  font-weight: 400;
  color: #111;
  margin: 0;
}

/* CONTAINER */
.container {
  max-width: 900px;
  margin: 90px auto 40px;
  padding: 0 15px;
}

/* ===== DETAILSEITE ORIGINAL ===== */

.single-logo {
  text-align: center;
  margin-bottom: 25px;
}

.single-logo img {
  max-width: 180px; 
}

@media(min-width:768px){
  .single-logo img {
    max-width: 240px; 
  }
}
.single-image {
  position: relative;
}

.single-image {
  position: relative;
  overflow: hidden;
}

.single-image img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 12px;
}

@media(min-width:768px){
  .single-image img {
    height: 380px;
  }
}

.big-text {
  text-align: center;
  margin: 20px 0;
}

.btn-carta {
  display: block;
  text-align: center;
  background: linear-gradient(135deg,#ff7a18,#ffb347);
  color: white;
  padding: 14px;
  border-radius: 14px;
  margin: 20px 0;
  text-decoration: none;
}

.section-box {
  background: #f7f7f7;
  padding: 15px;
  border-radius: 12px;
  margin: 15px 0;
}

.title {
  margin: 0 0 10px 0;
  font-weight: 600;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 8px;
}

.gallery img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 8px;
}

@media(min-width:768px){
  .gallery {
    grid-template-columns: repeat(6,1fr);
  }
}

.info-box {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 10px;
  margin: 25px 0;
}

.info-box div {
  background: #f2f2f2;
  padding: 12px;
  border-radius: 10px;
  text-align: center;
}

@media(max-width:768px){
  .info-box div {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    font-size: 13px;
  }
}

.single-text {
  margin-top: 20px;
  line-height: 1.6;
}

.socials {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap:10px;
  margin: 20px 0;
}

.socials a:nth-child(1){ background:#25D366; }
.socials a:nth-child(2){ background:#1877F2; }
.socials a:nth-child(3){ background:#E1306C; }
.socials a:nth-child(4){ background:#333; }

.socials a {
  display:flex;
  justify-content:center;
  align-items:center;
  padding:14px;
  border-radius:12px;
}

.socials img {
  width:22px;
  height:22px;
  filter: brightness(0) invert(1);
}

.payments-box {
  background: #eef6ff;
  padding: 15px;
  border-radius: 12px;
  margin: 15px 0;
}

.pay {
  display: inline-block;
  background: white;
  padding: 6px 10px;
  margin: 5px;
  border-radius: 8px;
  text-transform: uppercase;
}

.btn-map {
  display: block;
  text-align: center;
  padding: 14px;
  border-radius: 12px;
  background: linear-gradient(135deg,#4facfe,#00f2fe);
  color: white;
  text-decoration: none;
  margin-top: 20px;
}

/* ===== MINI ===== */

.mini-divider {
  max-width: 1100px;
  margin: 10px auto 0;
  padding: 0 15px;
  display: flex;
  align-items: center;
  gap: 12px;
}

#attractions-grid {
  margin-top: 0 !important;
  padding-top: 5px;
}

.mini-divider::before,
.mini-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #ddd;
}

.mini-divider span {
  font-size: 12px;
  letter-spacing: 1px;
  color: #777;
}

.mini-grid {
  grid-template-columns: repeat(2,1fr);
}

@media(min-width:768px){
  .mini-grid {
    grid-template-columns: repeat(4,1fr);
  }
}

.mini-card img {
  height: 180px;
}

.mini-card .card-content {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 18px 16px 14px 16px;
  background: #f8f8f8;
}

.mini-title-row {
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.mini-title-row h3 {
  font-size: 13px;
  font-weight: 600;
  margin: 0;
  color: #111;
}

.mini-inline-icon {
  width:10px;
  height:10px;
  opacity:0.7;
}


/* MINI: weniger weiße Fläche + volle Deckkraft */
.mini-card .card-content {
  padding: 8px 10px;
  background: #f8f8f8;
}

/* Titel kompakter */
.mini-title-row h3 {
	font-size: 14px;
  font-weight: 600;
}


/* MINI: Social Icon sicher entfernen */
.mini-card .mini-inline-icon {
  display: none !important;
}

/* KEIN ABSTAND ZWISCHEN "MAS LUGARES" UND MINI GRID */
.mini-divider {
  margin-bottom: 10 !important;
}

.mini-divider + .grid {
  margin-top: 0 !important;
  padding-top: 15px;
}

/* DETAILSEITE – EDLE SECTION TITEL */
.title {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #111;
  display: inline-block;
  padding-bottom: 4px;
  margin-bottom: 12px;
  border-bottom: 1px solid rgba(0,0,0,0.15);
}

/* STARTSEITE INFO TEXT */
.home-info {
  text-align: center;
  padding: 18px 15px;
  background: #f2f2f2;
  font-size: 14px;
  color: #333;
}

/* STARTSEITE SOCIAL LINKS */
.home-socials {
  display: flex;
  justify-content: center;
  gap: 18px;
  padding: 18px 0;
  background: #e4e4e4;
}

.home-socials a {
  width: 48px;
  height: 48px;
  background: #ffffff;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.home-socials img {
  width: 22px;
  height: 22px;
  opacity: 0.6; /* NEU */
}

/* FOOTER */
.site-footer {
  background: #aaaaaa;
  padding: 25px 15px;
  text-align: center;
}

.footer-inner a {
  display: block;
  color: #ffffff;
  text-decoration: none;
  font-size: 13px;
  margin-bottom: 10px;
}

.footer-inner p {
  margin: 0;
  font-size: 12px;
  color: #f5f5f5;
}

.footer-inner a:hover {
  text-decoration: underline;
  opacity: 0.8;
}

/* WHATSAPP ICON CARD */
.card-whatsapp {
  position: absolute;
  bottom: 40px;
  right: 12px;
  z-index: 999;
  width: 44px;
  height: 44px;
  background: #25D366; /* offizielles WhatsApp Grün */
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}

.card-whatsapp img {
  width: 22px;
  height: 22px;
  filter: brightness(0) invert(1); /* macht Icon garantiert weiß */
}

.card-whatsapp:hover {
  transform: scale(1.08);
}


@media(max-width:768px){
  .grid {
    padding: 65px 15px 20px;
  }
}

/* SCROLL TO TOP BUTTON */
.scroll-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 48px;
  height: 48px;
  background: #333;
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  font-size: 20px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 999;
}

.scroll-top.show {
  opacity: 1;
  transform: translateY(0);
}

.filter {
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  justify-content:center;
  margin-bottom:10px;
}

.filter a {
  padding:10px 16px;
  background:#eaeaea;
  border-radius:12px;
  text-decoration:none;
  color:#333;
  font-size:14px;
  transition:0.2s;
}

.filter a.active {
  background:#222;
  color:#fff;
}

.filter a:hover {
  background:#777;
}

.single .page-title {
  font-family: Arial, sans-serif;
  font-size: 22px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 15px;
}

@media(min-width:769px){
  .menu a {
    display:inline-block;
    background:none;
    box-shadow:none;
    padding:5px 0;
  }

  .menu a img {
    display:none;
  }
}
.hero-logo {
  position: absolute;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  
  width: 140px; /* Größe anpassen */
  height: auto;
}

.historia-section {
  max-width: 1100px;
  margin: 90px auto 40px;
  padding: 0 15px;
}

.historia-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
  margin-bottom: 30px;
}

@media(min-width:768px){
  .historia-grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}

.historia-img img {
  width: 100%;
  border-radius: 12px;
}

.historia-text {
  font-size: 14px;
  line-height: 1.6;
}

.historia-datos {
  display:grid;
  grid-template-columns: repeat(2,1fr);
  gap:10px;
}

@media(min-width:768px){
  .historia-datos {
    grid-template-columns: repeat(4,1fr);
  }
}

.historia-datos div {
  background:#f2f2f2;
  padding:12px;
  border-radius:10px;
  text-align:center;
  font-size:13px;
}