* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Reemplazo de background por capa blur + overlay */
body {
    font-family: 'Palatino', serif;
    min-height: 100vh;
    color: #333;
    margin: 0;
    position: relative;
    z-index: 0;
}

/* Imagen de fondo difuminada */
body::before {
    content: "minas.png";
    position: fixed;
    inset: 0;
    background-image: url("minas.png");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    filter: blur(1px) brightness(0.9);
    transform: scale(1.03);
    z-index: -2;
}

/* Overlay semi-transparente para mejorar legibilidad */
body::after {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.75);
    z-index: -1;
}

/* Asegurar que el contenido esté por encima del fondo */
body > * {
    position: relative;
    z-index: 1;
}

header {
    position: relative;
    text-align: center;
    padding: 4rem 0 1.6rem; /* aumentado para espacio del logo más grande */
    background-color: rgba(255, 255, 255, 0.78);
    box-shadow: 0 2px 15px rgba(92, 65, 34, 0.12);
    backdrop-filter: blur(4px);
}

.logo {
    position: absolute;
    left: 18px;
    top: 8px;
    height: 120px; /* logo más grande */
    width: auto;
    z-index: 10;
}

.top-right {
    position: absolute;
    right: 18px;
    top: 12px;
    display: flex;
    gap: 10px;
    align-items: center;
    z-index: 10;
}

/* booking button (puedes reemplazar href cuando haya hosting/servicio contratado) */
.booking-btn {
    padding: 10px 18px;
    background-color: rgb(92, 65, 34);
    color: white;
    border: none;
    border-radius: 22px;
    font-size: 0.95rem;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}
.booking-btn:hover { background-color: rgb(122,85,44); transform: translateY(-2px); }

/* dropdown menú */
.dropdown { position: relative; display: inline-block; }
.dropbtn {
    background: rgba(92,65,34,0.95);
    color: #fff;
    padding: 8px 12px;
    border-radius: 20px;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
}
.dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    background-color: #fff;
    min-width: 180px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    border-radius: 8px;
    overflow: hidden;
    z-index: 20;
}
.dropdown-content a {
    color: #333;
    padding: 10px 14px;
    text-decoration: none;
    display: block;
}
.dropdown-content a:hover { background: rgba(92,65,34,0.06); color: rgb(92,65,34); }
.dropdown:hover .dropdown-content { display: block; }

/* título */
h1 {
    color: rgb(92, 65, 34);
    font-size: 3rem;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.08);
    margin: 0;
}

/* Intro card */
.intro {
    max-width: 900px;
    margin: 1.8rem auto;
    padding: 22px;
    text-align: center;
    line-height: 1.6;
    color: #444;
    font-size: 1.12rem;
    background-color: rgba(255,255,255,0.9);
    border-radius: 14px;
    box-shadow: 0 6px 20px rgba(92,65,34,0.06);
}

/* slideshow */
.slideshow-wrapper { max-width: 1100px; margin: 1.6rem auto 3rem; padding: 0 16px; }
.slideshow-container {
    position: relative;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.18);
    border-radius: 16px;
    overflow: hidden;
    background: #111;
    max-height: 560px;
}

.slide {
    display: none;
    transform-origin: center center;
}

.slide img {
    display:block;
    width: 100%;
    height: 520px;
    object-fit: cover;
}

/* swing animation */
@keyframes swingIn {
    0% { transform: rotate(-3deg) scale(0.97); opacity: 0; }
    60% { transform: rotate(2deg) scale(1.01); opacity: 1; }
    100% { transform: rotate(0deg) scale(1); opacity: 1; }
}
.slide.show {
    animation: swingIn 1s cubic-bezier(.2,.8,.2,1);
}

/* nav arrows, ambos redondos */
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-weight: bold;
    font-size: 20px;
    transition: 0.25s ease;
    user-select: none;
    background-color: rgba(92,65,34,0.72);
    backdrop-filter: blur(3px);
    border-radius: 50% !important;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    box-shadow: 0 6px 16px rgba(0,0,0,0.25);
    z-index: 5;
}
.prev { left: 12px; }
.next { right: 12px; }
.prev:hover, .next:hover { transform: translateY(-50%) scale(1.06); background-color: rgba(92,65,34,0.92); }

/* responsive */
@media (max-width: 700px) {
    h1 { font-size: 2rem; }
    .slide img { height: 320px; }
    .logo { height: 80px; left: 12px; top: 10px; } /* ajuste móvil */
    .top-right { right: 10px; top: 8px; gap:6px; }
}

p {
    color: #5A4630;
    font: monserrat ,sans-serif;
}

title {
    color: #5A4630;
    font: Cormorant Garamond;
    
}

h2, h3, h4 {
    color: #5A4630;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #f5f1e6;
  color: #4b382d;
  border-top: 2px solid #6b4e3d;
  text-align: center;
  padding: 15px;
  font-family: Lato, sans-serif;
  z-index: 1000;
}
.cookie-banner button {
  background-color: #6b4e3d;
  color: white;
  border: none;
  padding: 8px 15px;
  margin: 5px;
  border-radius: 4px;
  cursor: pointer;
}
.cookie-banner button:hover {
  background-color: #3f6b4a;
}
#map-placeholder {
  background-color: #f5f1e6;
  border: 1px solid #ccc;
  text-align: center;
  padding: 30px;
  margin: 20px auto;
  max-width: 600px;
  border-radius: 8px;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Reemplazo de background por capa blur + overlay */
body {
    font-family: 'Palatino', serif;
    min-height: 100vh;
    color: #333;
    margin: 0;
    position: relative;
    z-index: 0;
}

/* Imagen de fondo difuminada */
body::before {
    content: "minas.png";
    position: fixed;
    inset: 0;
    background-image: url("minas.png");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    filter: blur(1px) brightness(0.9);
    transform: scale(1.03);
    z-index: -2;
}

/* Overlay semi-transparente para mejorar legibilidad */
body::after {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.75);
    z-index: -1;
}

/* Asegurar que el contenido esté por encima del fondo */
body>* {
    position: relative;
    z-index: 1;
}

header {
    position: relative;
    text-align: center;
    padding: 4rem 0 1.6rem;
    /* aumentado para espacio del logo más grande */
    background-color: rgba(255, 255, 255, 0.78);
    box-shadow: 0 2px 15px rgba(92, 65, 34, 0.12);
    backdrop-filter: blur(4px);
}

.logo {
    position: absolute;
    left: 18px;
    top: 8px;
    height: 120px;
    /* logo más grande */
    width: auto;
    z-index: 10;
}

.top-right {
    position: absolute;
    right: 18px;
    top: 12px;
    display: flex;
    gap: 10px;
    align-items: center;
    z-index: 10;
}

/* booking button (puedes reemplazar href cuando haya hosting/servicio contratado) */
.booking-btn {
    padding: 10px 18px;
    background-color: rgb(92, 65, 34);
    color: white;
    border: none;
    border-radius: 22px;
    font-size: 0.95rem;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.booking-btn:hover {
    background-color: rgb(122, 85, 44);
    transform: translateY(-2px);
}

/* dropdown menú */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropbtn {
    background: rgba(92, 65, 34, 0.95);
    color: #fff;
    padding: 8px 12px;
    border-radius: 20px;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
}

.dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    background-color: #fff;
    min-width: 180px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    overflow: hidden;
    z-index: 20;
}

.dropdown-content a {
    color: #333;
    padding: 10px 14px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    background: rgba(92, 65, 34, 0.06);
    color: rgb(92, 65, 34);
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* título */
h1 {
    color: rgb(92, 65, 34);
    font-size: 3rem;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.08);
    margin: 0;
}

/* Intro card */
.intro {
    max-width: 900px;
    margin: 1.8rem auto;
    padding: 22px;
    text-align: center;
    line-height: 1.6;
    color: #444;
    font-size: 1.12rem;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 14px;
    box-shadow: 0 6px 20px rgba(92, 65, 34, 0.06);
}

/* slideshow */
.slideshow-wrapper {
    max-width: 1100px;
    margin: 1.6rem auto 3rem;
    padding: 0 16px;
}

.slideshow-container {
    position: relative;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
    border-radius: 16px;
    overflow: hidden;
    background: #111;
    max-height: 560px;
}

.slide {
    display: none;
    transform-origin: center center;
}

.slide img {
    display: block;
    width: 100%;
    height: 520px;
    object-fit: cover;
}

/* swing animation */
@keyframes swingIn {
    0% {
        transform: rotate(-3deg) scale(0.97);
        opacity: 0;
    }

    60% {
        transform: rotate(2deg) scale(1.01);
        opacity: 1;
    }

    100% {
        transform: rotate(0deg) scale(1);
        opacity: 1;
    }
}

.slide.show {
    animation: swingIn 1s cubic-bezier(.2, .8, .2, 1);
}

/* nav arrows, ambos redondos */
.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-weight: bold;
    font-size: 20px;
    transition: 0.25s ease;
    user-select: none;
    background-color: rgba(92, 65, 34, 0.72);
    backdrop-filter: blur(3px);
    border-radius: 50% !important;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
    z-index: 5;
}

.prev {
    left: 12px;
}

.next {
    right: 12px;
}

.prev:hover,
.next:hover {
    transform: translateY(-50%) scale(1.06);
    background-color: rgba(92, 65, 34, 0.92);
}

/* responsive */
@media (max-width: 700px) {
    h1 {
        font-size: 2rem;
    }

    .slide img {
        height: 320px;
    }

    .logo {
        height: 80px;
        left: 12px;
        top: 10px;
    }

    /* ajuste móvil */
    .top-right {
        right: 10px;
        top: 8px;
        gap: 6px;
    }
}

p {
    color: #5A4630;
    font: monserrat, sans-serif;
}

title {
    color: #5A4630;
    font: Cormorant Garamond;

}

h2,
h3,
h4 {
    color: #5A4630;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #f5f1e6;
    color: #4b382d;
    border-top: 2px solid #6b4e3d;
    text-align: center;
    padding: 15px;
    font-family: Lato, sans-serif;
    z-index: 1000;
}

.cookie-banner button {
    background-color: #6b4e3d;
    color: white;
    border: none;
    padding: 8px 15px;
    margin: 5px;
    border-radius: 4px;
    cursor: pointer;
}

.cookie-banner button:hover {
    background-color: #3f6b4a;
}

#map-placeholder {
    background-color: #f5f1e6;
    border: 1px solid #ccc;
    text-align: center;
    padding: 30px;
    margin: 20px auto;
    max-width: 600px;
    border-radius: 8px;
}