/* HoneyLatins.com - Modern, High-End Responsive CSS */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700&family=Playfair+Display:wght@700&display=swap');
:root {
  --primary: #f7c873;
  --primary-dark: #b8860b;
  --secondary: #fff8dc;
  --accent: #fffbe9;
  --background: #fefaf5;
  --text: #222;
  --footer-bg: #f5e9c6;
  --entertainment-bg: #fff8dc;
  --card-bg: #fffbe9;
  --shadow: 0 6px 32px #b8860b33, 0 1.5px 6px #ffb34722;
  --radius: 1.4rem;
  --gradient: linear-gradient(120deg, #ffb347 0%, #ffcc33 100%);
  --hero-gradient: linear-gradient(120deg, #fffbe9 0%, #ffb347 80%);
}
* { box-sizing: border-box; }
html, body {
  margin: 0; padding: 0;
  font-family: 'Montserrat', Arial, sans-serif;
  background: var(--background);
  color: var(--text);
  min-height: 100vh;
}
header {
  background: var(--hero-gradient);
  padding: 0 0 0 0;
  text-align: center;
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.hero {
  padding: 3.5rem 0 2.5rem 0;
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-logo {
  width: 80px;
  height: 80px;
  margin-bottom: 1rem;
  filter: drop-shadow(0 2px 8px #b8860b44);
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.9rem;
  color: var(--primary-dark);
  margin: 0 0 0.8rem 0;
  letter-spacing: 2px;
  text-shadow: 0 2px 16px #fffbe9cc;
}
.hero-subtitle {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  color: #6d5200;
  margin-bottom: 1.6rem;
  letter-spacing: 0.5px;
}
.hero-btn {
  display: inline-block;
  background: var(--gradient);
  color: #fff;
  font-weight: bold;
  font-size: 1.1rem;
  padding: 0.7rem 2.2rem;
  border: none;
  border-radius: 2rem;
  box-shadow: 0 2px 12px #ffb34733;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  margin-top: 0.5rem;
}
.hero-btn:hover {
  background: linear-gradient(120deg, #ffcc33 0%, #ffb347 100%);
  transform: translateY(-3px) scale(1.04);
}
nav {
  margin: 0.5rem 0 1.5rem 0;
}
nav a {
  color: var(--primary-dark);
  text-decoration: none;
  margin: 0 1.2rem;
  font-weight: 700;
  font-size: 1.05rem;
  transition: color 0.2s;
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
}
nav a:hover { color: #ffb347; border-bottom: 2px solid #ffb347; }
main {
  max-width: 980px;
  margin: 2.3rem auto 1.5rem auto;
  background: var(--background);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2.8rem 2.2rem 2.2rem 2.2rem;
  position: relative;
}
section {
  margin-bottom: 2.7rem;
  border-radius: var(--radius);
  background: var(--card-bg);
  box-shadow: 0 2px 14px #ffb34711;
  padding: 2.1rem 1.6rem 1.3rem 1.6rem;
  transition: box-shadow 0.2s;
}
section:last-child { margin-bottom: 0; }
section.intro {
  margin-bottom: 2.5rem;
}
section.intro h2 {
  color: var(--primary);
  font-size: 1.8rem;
}
section.intro p {
  font-size: 1.12rem;
  line-height: 1.7;
}
.entertainment {
  background: var(--entertainment-bg);
  border-radius: var(--radius);
  padding: 2.2rem 1.2rem 1.2rem 1.2rem;
  margin: 2.7rem 0 2.2rem 0;
  box-shadow: 0 4px 24px #b8860b22, 0 1.5px 6px #ffb34722;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.entertainment h3 {
  grid-column: 1/-1;
  color: var(--primary-dark);
  font-size: 1.45rem;
  margin-bottom: 1.1rem;
  text-align: left;
  font-family: 'Montserrat', Arial, sans-serif;
}
.entertainment ul {
  grid-column: 1/-1;
  display: contents;
  list-style: none;
  padding: 0;
}
.entertainment li {
  background: #fff;
  border-radius: 1.1rem;
  box-shadow: 0 2px 12px #ffb34722;
  margin: 0;
  font-size: 1.1rem;
  padding: 1.1rem 1.1rem 1.1rem 1.5rem;
  display: flex;
  align-items: center;
  min-height: 64px;
  transition: box-shadow 0.18s, transform 0.18s;
  position: relative;
  overflow: hidden;
  border-left: 6px solid #ffb347;
}
.entertainment li:hover {
  box-shadow: 0 6px 32px #ffb34744, 0 1.5px 6px #ffb34722;
  transform: translateY(-3px) scale(1.03);
  border-left: 6px solid #b8860b;
}
.entertainment a {
  color: #b8860b;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.08rem;
  transition: color 0.16s;
}
.entertainment a:hover {
  color: #ffb347;
  text-decoration: underline;
}
.entertainment li::before {
  content: '\1F4A1'; /* 💡 */
  font-size: 1.4rem;
  margin-right: 1.1rem;
  color: #ffb347;
  opacity: 0.7;
  transition: color 0.18s;
}
.entertainment li:hover::before {
  color: #b8860b;
  opacity: 1;
}
footer {
  background: var(--footer-bg);
  padding: 2.3rem 0 1.2rem 0;
  text-align: center;
  margin-top: 3.2rem;
  border-radius: var(--radius) var(--radius) 0 0;
  box-shadow: 0 -2px 16px #ffb34722;
  position: relative;
}
footer .footer-logo {
  display: inline-block;
  width: 56px;
  height: 56px;
  vertical-align: middle;
  margin-bottom: 0.7rem;
  filter: drop-shadow(0 2px 8px #b8860b33);
}
footer p {
  margin: 0.8rem 0 0 0;
  color: #b8860b;
  font-size: 1.07rem;
  letter-spacing: 0.2px;
}
@media (max-width: 900px) {
  main { padding: 1.1rem 0.4rem; }
  .entertainment { grid-template-columns: 1fr; padding: 1.1rem 0.2rem; }
  section { padding: 1.2rem 0.7rem 0.7rem 0.7rem; }
}
@media (max-width: 600px) {
  .hero-title { font-size: 1.48rem; }
  .hero-logo { width: 48px; height: 48px; }
  nav a { margin: 0 0.5rem; font-size: 0.98rem; }
  footer .footer-logo { width: 36px; height: 36px; }
}
