
/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Open Sans', sans-serif;
  color: #333;
  background: #fff;
  line-height: 1.65;
}
a { color: #e07b00; text-decoration: none; }
a:hover { color: #ffbf00; }
img { max-width: 100%; height: auto; }
ul { list-style: none; }

/* === HEADER === */
.site-header {
  background: #252628;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,.4);
}
.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 24px;
  gap: 16px;
}
.brand-name {
  font-family: 'Fredoka One', cursive;
  font-size: 1.5rem;
  color: #ffbf00;
  white-space: nowrap;
}
.header-contact { display: flex; gap: 12px; flex-wrap: wrap; }
.phone-btn, .whatsapp-btn {
  display: flex; align-items: center; gap: 7px;
  padding: 7px 14px;
  border-radius: 6px;
  font-weight: 600;
  font-size: .88rem;
  transition: background .2s, color .2s;
}
.phone-btn {
  background: #ff9900; color: #fff;
}
.phone-btn:hover { background: #ffbf00; color: #252628; }
.whatsapp-btn {
  background: #25d366; color: #fff;
}
.whatsapp-btn:hover { background: #1fb355; color: #fff; }

.hamburger {
  display: none;
  background: none;
  border: 2px solid #ffbf00;
  color: #ffbf00;
  font-size: 1.4rem;
  padding: 4px 10px;
  cursor: pointer;
  border-radius: 5px;
}

/* === NAV === */
.main-nav { border-top: 1px solid rgba(255,255,255,.07); }
.main-nav > ul {
  display: flex;
  align-items: center;
  padding: 0 24px;
  flex-wrap: wrap;
}
.main-nav > ul > li { position: relative; }
.main-nav > ul > li > a {
  display: block;
  padding: 12px 18px;
  color: #e0e0e0;
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .02em;
  transition: color .2s, background .2s;
}
.main-nav > ul > li > a:hover,
.main-nav > ul > li.active > a {
  color: #ffbf00;
  background: rgba(255,191,0,.07);
}
.submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #1e1f21;
  min-width: 200px;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 6px 20px rgba(0,0,0,.4);
  z-index: 100;
}
.has-sub:hover .submenu,
.has-sub.active .submenu { display: block; }
.submenu li a {
  display: block;
  padding: 10px 18px;
  color: #ccc;
  font-size: .87rem;
  border-bottom: 1px solid rgba(255,255,255,.05);
  transition: color .2s, background .2s;
}
.submenu li a:hover { color: #ffbf00; background: rgba(255,191,0,.08); }

/* === HERO === */
.hero {
  background: linear-gradient(135deg, #252628 0%, #3a3d40 100%);
  color: #fff;
  padding: 60px 24px 50px;
  text-align: center;
}
.hero h1 {
  font-family: 'Fredoka One', cursive;
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: #ffbf00;
  margin-bottom: 16px;
  text-shadow: 0 2px 8px rgba(0,0,0,.3);
}
.hero p {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 28px;
  color: #d0d0d0;
}
.hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px;
  border-radius: 8px;
  font-weight: 700;
  font-size: .97rem;
  transition: all .2s;
  cursor: pointer;
}
.btn-primary { background: #ff9900; color: #fff; }
.btn-primary:hover { background: #ffbf00; color: #252628; }
.btn-ghost { background: transparent; color: #ffbf00; border: 2px solid #ffbf00; }
.btn-ghost:hover { background: #ffbf00; color: #252628; }

/* === SERVICES === */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
  padding: 40px 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.service-card {
  background: #f8f8f8;
  border-radius: 12px;
  padding: 24px 20px;
  text-align: center;
  transition: transform .2s, box-shadow .2s;
  border: 1px solid #ebebeb;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,.1); }
.service-card img { width: 80px; height: 80px; object-fit: cover; border-radius: 10px; margin-bottom: 12px; }
.service-card h3 { font-family: 'Fredoka One', cursive; font-size: 1.1rem; color: #252628; margin-bottom: 8px; }
.service-card p { font-size: .9rem; color: #555; }

/* === SECTION BLOCKS === */
.section { padding: 50px 24px; }
.section-alt { background: #f6f6f6; }
.section-dark { background: #252628; color: #e0e0e0; }
.section-dark h2 { color: #ffbf00; }
.container { max-width: 1000px; margin: 0 auto; }
.section-title {
  font-family: 'Fredoka One', cursive;
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  color: #252628;
  margin-bottom: 16px;
}
.section-subtitle { font-size: 1rem; color: #666; margin-bottom: 32px; max-width: 650px; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: center; }
@media (max-width: 700px) { .two-col { grid-template-columns: 1fr; } }

/* === PRICE TABLES === */
.price-table { width: 100%; border-collapse: collapse; margin: 20px 0; }
.price-table th {
  background: #252628; color: #ffbf00;
  padding: 12px 16px; text-align: left; font-family: 'Fredoka One', cursive;
}
.price-table td { padding: 11px 16px; border-bottom: 1px solid #eee; }
.price-table tr:nth-child(even) td { background: #f9f9f9; }
.price-table tr:hover td { background: #fff8e1; }
.price-from { font-weight: 700; color: #e07b00; white-space: nowrap; }

/* === TARIFF CARDS === */
.tariff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px; margin-top: 24px;
}
.tariff-card {
  background: #fff; border: 2px solid #e0e0e0;
  border-radius: 12px; padding: 24px;
  transition: border-color .2s, box-shadow .2s;
}
.tariff-card:hover { border-color: #ff9900; box-shadow: 0 4px 16px rgba(255,153,0,.15); }
.tariff-card h3 { font-family: 'Fredoka One', cursive; color: #252628; margin-bottom: 10px; font-size: 1.15rem; }
.tariff-card p { font-size: .9rem; color: #555; line-height: 1.6; }
.tariff-tag {
  display: inline-block; background: #ffbf00; color: #252628;
  font-size: .75rem; font-weight: 700; padding: 2px 9px; border-radius: 20px; margin-bottom: 8px;
}

/* === ROUTES === */
.routes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px; margin-top: 24px;
}
.route-card {
  background: #fff; border-radius: 12px; overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,.08);
  transition: transform .2s, box-shadow .2s;
}
.route-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,.14); }
.route-card-body { padding: 18px; }
.route-card h3 { font-family: 'Fredoka One', cursive; color: #252628; margin-bottom: 8px; }
.route-card p { font-size: .88rem; color: #555; margin-bottom: 12px; }
.route-card a.btn { font-size: .82rem; padding: 8px 16px; }

/* === CONTACT === */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px; margin-top: 24px;
}
.contact-card {
  background: #fff; border-radius: 12px; padding: 28px 24px;
  box-shadow: 0 2px 14px rgba(0,0,0,.07);
  text-align: center;
}
.contact-card .icon { font-size: 2.5rem; margin-bottom: 12px; }
.contact-card h3 { font-family: 'Fredoka One', cursive; font-size: 1.15rem; margin-bottom: 8px; color: #252628; }
.contact-card a { font-size: 1.05rem; font-weight: 700; color: #ff9900; }
.contact-card a:hover { color: #ffbf00; }

/* === INFO STRIP === */
.info-strip {
  background: #ff9900;
  color: #fff;
  text-align: center;
  padding: 18px 24px;
  font-size: 1.05rem;
  font-weight: 600;
}
.info-strip a { color: #fff; text-decoration: underline; }

/* === MUNICIPALITY PAGE === */
.muni-content { max-width: 800px; margin: 0 auto; }
.muni-content p { margin-bottom: 16px; font-size: 1rem; line-height: 1.75; }
.muni-content h2 { font-family: 'Fredoka One', cursive; color: #252628; margin: 24px 0 12px; font-size: 1.5rem; }
.muni-img { float: right; margin: 0 0 20px 24px; max-width: 320px; border-radius: 10px; box-shadow: 0 4px 16px rgba(0,0,0,.12); }
@media (max-width: 600px) { .muni-img { float: none; max-width: 100%; margin: 0 0 20px 0; } }

/* === 404 === */
.page-404 {
  min-height: 60vh; display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 40px 24px;
}
.page-404 h1 { font-family: 'Fredoka One', cursive; font-size: 5rem; color: #ffbf00; }
.page-404 h2 { font-family: 'Fredoka One', cursive; font-size: 1.8rem; color: #252628; margin-bottom: 16px; }
.page-404 p { color: #666; margin-bottom: 24px; }

/* === CASINO ARTICLE PAGE === */
.article-wrap {
  max-width: 780px; margin: 0 auto; padding: 40px 24px;
}
.article-wrap h1 { font-family: 'Fredoka One', cursive; color: #252628; font-size: 2rem; margin-bottom: 20px; }
.article-wrap h2 { font-family: 'Fredoka One', cursive; color: #e07b00; font-size: 1.35rem; margin: 28px 0 12px; }
.article-wrap h3 { color: #252628; font-size: 1.1rem; margin: 20px 0 8px; }
.article-wrap p { margin-bottom: 14px; line-height: 1.75; }
.article-wrap ul, .article-wrap ol { margin: 12px 0 12px 24px; }
.article-wrap li { margin-bottom: 8px; }
.article-wrap table { width: 100%; border-collapse: collapse; margin: 20px 0; }
.article-wrap th { background: #252628; color: #ffbf00; padding: 10px 14px; text-align: left; }
.article-wrap td { padding: 9px 14px; border-bottom: 1px solid #eee; font-size: .92rem; }
.article-wrap tr:nth-child(even) td { background: #f9f9f9; }
.article-disclaimer {
  background: #fff8e1; border-left: 4px solid #ff9900;
  padding: 14px 18px; border-radius: 0 8px 8px 0;
  font-size: .88rem; color: #555; margin: 28px 0;
}

/* === FOOTER === */
.site-footer { background: #252628; color: #999; padding: 40px 24px 0; }
.footer-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 28px; max-width: 1100px; margin: 0 auto 28px;
}
.footer-col h3 { font-family: 'Fredoka One', cursive; color: #ffbf00; font-size: 1.05rem; margin-bottom: 12px; }
.footer-col p { font-size: .88rem; line-height: 1.6; margin-bottom: 8px; }
.footer-col ul li { margin-bottom: 6px; }
.footer-col ul li a, .footer-col p a { color: #aaa; font-size: .88rem; }
.footer-col ul li a:hover, .footer-col p a:hover { color: #ffbf00; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  text-align: center; padding: 16px 0;
  font-size: .82rem; color: #666;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .hamburger { display: block; }
  .header-contact span { display: none; }
  .main-nav {
    display: none;
    padding: 10px 0;
  }
  .main-nav.open { display: block; }
  .main-nav > ul { flex-direction: column; padding: 0; }
  .main-nav > ul > li > a { padding: 13px 20px; border-bottom: 1px solid rgba(255,255,255,.05); }
  .submenu { position: static; box-shadow: none; background: #1a1b1d; }
  .submenu li a { padding-left: 36px; }
}
