/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
}

/* ===== Hero ===== */
.hero {
  text-align: center;
  background: #f5f5f5;
}

.hero-content {
  padding: 2rem 1rem;
}

.logo {
  width: 300px;
  margin-bottom: 1rem;
}

.hero-content h1 {
  font-size: 1.8rem;
}

.hero-image {
  position: relative;
}

.hero-image img {
  width: 100%;
  display: block;
  clip-path: polygon(0 0, 100% 0, 100% 85%, 50% 100%, 0 85%);
}

.contact-shortcuts {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 1rem;
}

.contact-shortcuts a {
  background: #0077cc;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  text-decoration: none;
  font-size: 0.9rem;
  transition: background 0.3s;
}

.contact-shortcuts a:hover {
  background: #005fa3;
}

/* ===== Sección 2: About ===== */
.about {
  padding: 2rem 1rem;
  text-align: center;
}

.about h2 {
  margin-bottom: 1rem;
}

/* ===== Sección 3: Galería ===== */
.gallery {
  padding: 2rem 1rem;
  background: #fafafa;
}

.gallery h2 {
  text-align: center;
  margin-bottom: 2rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.gallery-item {
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  padding: 1rem;
  text-align: center;
}

.gallery-item img {
  width: 100%;
  border-radius: 6px;
  margin-bottom: 0.5rem;
}

.gallery-item h3 {
  margin-bottom: 0.5rem;
}

.btn {
  display: inline-block;
  background: #0077cc;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  text-decoration: none;
  transition: background 0.3s;
}

.btn:hover {
  background: #005fa3;
}

/* ===== Sección 4: Contacto ===== */
.contact {
  padding: 2rem 1rem;
  text-align: center;
  background: #333;
  color: white;
}

.contact a {
  color: #ffdd55;
  text-decoration: none;
}

.contact a:hover {
  text-decoration: underline;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .hero-content h1 {
    font-size: 1.5rem;
  }
}

/* ===== Cabecera de carpeta ===== */
.gallery-header {
  padding: 2rem 1rem;
  text-align: center;
  background: #f5f5f5;
}

.gallery-header h1 {
  margin-bottom: 1rem;
  font-size: 2rem;
}

.gallery-header p {
  max-width: 700px;
  margin: 0 auto 1.5rem auto;
  font-size: 1rem;
}

.gallery-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.gallery-buttons .btn {
  background: #0077cc;
  color: white;
  padding: 0.6rem 1.2rem;
  border-radius: 20px;
  text-decoration: none;
  font-size: 0.9rem;
  transition: background 0.3s;
}

.gallery-buttons .btn:hover {
  background: #005fa3;
}

.gallery-buttons .back {
  background: #666;
}

.gallery-buttons .back:hover {
  background: #444;
}

/* ===== Fotos ===== */
.gallery-photos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  padding: 2rem 1rem;
  background: #fafafa;
}

.gallery-photos img {
  width: 100%;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
