
/* BASE */
body {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  background: #f5f5f5;
  color: #333;
}

/* TIPOGRAFÍA */
h1, .brand-name {
  font-family: 'Pacifico', cursive;
}

h2 {
  font-weight: 600;
  color: #546432;
}

/* NAV */
.navbar {
  position: fixed;
  width: 100%;
  padding: 15px 40px;
  display: flex;
  align-items: center;
  background: transparent;
  z-index: 10;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-name {
  color: white;
  font-size: 1.2rem;
}

.logo {
  height: 55px;
}

/* HERO */
.hero {
  height: 100vh;
  display: flex;
}

/* LEFT HERO */
.hero-left {
  flex: 1;
  position: relative;
  background: url('img/hero.jpg') center/cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
  overflow: hidden;
  background-size: 110%;
  animation: zoom 12s infinite alternate ease-in-out;
}

/* overlay + suavizado */
.hero-left::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(2px);
}

.hero-left > * {
  position: relative;
  z-index: 2;
}

@keyframes zoom {
  from { background-size: 110%; }
  to { background-size: 120%; }
}

/* RIGHT HERO */
.hero-right {
  flex: 1;
  background: #546432;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* SLIDER */
.slider {
  width: 70%;
  height: 55%;
  position: relative;
  overflow: hidden;
  border-radius: 15px;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide.active {
  opacity: 1;
}

/* TEXTO SLIDE */
.slide-text {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;

  color: white;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;

  background: rgba(0,0,0,0.25);
  text-shadow: 0 2px 10px rgba(0,0,0,0.6);
}

/* TICKET */
.coffee-ticket {
  position: relative;
  background: #546432;
  color: white;
  padding: 80px 20px;
  text-align: center;
  overflow: hidden;
}

.coffee-ticket::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('img/Fondo.jpg');
  background-size: cover;
  opacity: 0.12;
}

.ticket {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(200px,1fr));
  gap: 20px;
  max-width: 900px;
  margin: auto;
  position: relative;
  z-index: 1;
}

.item {
  background: rgba(255,255,255,0.1);
  padding: 20px;
  border-radius: 10px;
}

.item h3 {
  font-family: 'DM Mono', monospace;
}

/* SECTION */
.section {
  padding: 80px 20px;
  max-width: 900px;
  margin: auto;
}

.contact {
  padding: 100px 20px;
  background: #f5f5f5;
  text-align: center;
}

.contact h2 {
  color: #546432;
  margin-bottom: 40px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: auto;
}

.contact-card {
  background: white;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
}

.contact-card h3 {
  color: #546432;
  margin-bottom: 10px;
}

.contact-card p {
  margin: 5px 0;
  font-family: 'Cormorant Garamond', serif;
}

.contact-card a {
  color: #849b55;
  text-decoration: none;
  font-weight: bold;
}

.contact-card a:hover {
  text-decoration: underline;
}

/* FOOTER */
footer {
  background: #546432;
  color: white;
  text-align: center;
  padding: 30px;
}