/* Miami Beach Visitors Center Homepage Styles
   Green brand version based on existing site skin: #00b106 / #038b07
   Save as: /css/home.css
*/

:root {
  --mbvc-green: #00b106;
  --mbvc-dark-green: #038b07;
  --mbvc-soft-green: #eaffeb;
  --mbvc-blue: #00b106;
  --mbvc-dark-blue: #038b07;
  --mbvc-aqua: #4ee456;
  --mbvc-sand: #f5fff5;
  --mbvc-orange: #00b106;
  --mbvc-dark: #203322;
  --mbvc-muted: #607466;
  --mbvc-border: #dff1e1;
  --mbvc-white: #ffffff;
}

.mbvc-hero {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
  background: linear-gradient(90deg, rgba(3,139,7,.86), rgba(0,177,6,.48)), url('../images/bg/miami-beach.jpg') center center/cover no-repeat;
  overflow: hidden;
}

.mbvc-hero:after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 75% 30%, rgba(255,255,255,.16), transparent 12%);
  pointer-events: none;
}

.mbvc-hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 160px 0 90px;
}

.mbvc-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.25);
  color: #fff;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: .4px;
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 18px;
}

.mbvc-hero h1 {
  color: #fff;
  font-size: 62px;
  line-height: 1.05;
  font-weight: 900;
  margin: 0 0 18px;
  max-width: 820px;
}

.mbvc-hero p {
  color: rgba(255,255,255,.92);
  font-size: 20px;
  line-height: 1.65;
  max-width: 760px;
  margin-bottom: 30px;
}

.mbvc-hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 34px;
}

.mbvc-btn-primary,
.mbvc-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 800;
  transition: all .2s ease;
}

.mbvc-btn-primary {
  background: var(--mbvc-orange);
  color: #fff;
  box-shadow: 0 14px 28px rgba(0,177,6,.28);
}

.mbvc-btn-primary:hover { color: #fff; transform: translateY(-2px); }

.mbvc-btn-secondary {
  background: rgba(255,255,255,.12);
  color: #fff;
  border: 1px solid rgba(255,255,255,.42);
}

.mbvc-btn-secondary:hover { background: #fff; color: var(--mbvc-dark-blue); }

.mbvc-search-card {
  background: #fff;
  border-radius: 22px;
  padding: 18px;
  box-shadow: 0 24px 60px rgba(0,0,0,.22);
  max-width: 980px;
}

.mbvc-search-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr auto;
  gap: 12px;
  align-items: center;
}

.mbvc-field label {
  display: block;
  font-size: 11px;
  font-weight: 800;
  color: var(--mbvc-muted);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.mbvc-field input,
.mbvc-field select {
  width: 100%;
  border: 1px solid var(--mbvc-border);
  border-radius: 14px;
  min-height: 48px;
  padding: 10px 14px;
  color: var(--mbvc-dark);
  font-weight: 600;
  background: #f8fff8;
}

.mbvc-search-submit {
  border: 0;
  background: var(--mbvc-blue);
  color: #fff;
  min-height: 48px;
  border-radius: 14px;
  padding: 0 24px;
  font-weight: 900;
  cursor: pointer;
}

.mbvc-section {
  padding: 82px 0;
}

.mbvc-section-light { background: #f6fff6; }
.mbvc-section-sand { background: var(--mbvc-sand); }

.mbvc-section-title {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.mbvc-section-title .kicker {
  color: var(--mbvc-blue);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .8px;
  margin-bottom: 8px;
}

.mbvc-section-title h2 {
  color: var(--mbvc-dark);
  font-size: 38px;
  line-height: 1.18;
  font-weight: 900;
  margin-bottom: 14px;
}

.mbvc-section-title p {
  color: var(--mbvc-muted);
  font-size: 17px;
  line-height: 1.7;
}

.mbvc-card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.mbvc-card {
  background: #fff;
  border: 1px solid var(--mbvc-border);
  border-radius: 22px;
  padding: 24px;
  box-shadow: 0 12px 30px rgba(16,42,67,.06);
  height: 100%;
  transition: all .2s ease;
}

.mbvc-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 42px rgba(16,42,67,.12);
}

.mbvc-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--mbvc-blue), var(--mbvc-aqua));
  color: #fff;
  font-size: 22px;
  margin-bottom: 18px;
}

.mbvc-card h3 {
  color: var(--mbvc-dark);
  font-size: 19px;
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: 10px;
}

.mbvc-card p {
  color: var(--mbvc-muted);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 14px;
}

.mbvc-card a {
  color: var(--mbvc-blue);
  font-weight: 900;
}

.mbvc-feature-layout {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 42px;
  align-items: center;
}

.mbvc-feature-copy h2 {
  color: var(--mbvc-dark);
  font-size: 42px;
  line-height: 1.15;
  font-weight: 900;
  margin-bottom: 18px;
}

.mbvc-feature-copy p {
  color: var(--mbvc-muted);
  font-size: 17px;
  line-height: 1.8;
}

.mbvc-check-list {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.mbvc-check-list li {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  color: var(--mbvc-dark);
  font-weight: 700;
}

.mbvc-check-list i {
  color: var(--mbvc-orange);
  margin-top: 4px;
}

.mbvc-image-panel {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 22px 55px rgba(16,42,67,.16);
  background: #fff;
}

.mbvc-image-panel img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  display: block;
}

.mbvc-guide-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.mbvc-guide-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--mbvc-border);
  box-shadow: 0 14px 35px rgba(16,42,67,.07);
}

.mbvc-guide-card img {
  width: 100%;
  height: 205px;
  object-fit: cover;
  display: block;
}

.mbvc-guide-body {
  padding: 22px;
}

.mbvc-guide-body span {
  display: inline-block;
  color: var(--mbvc-orange);
  font-weight: 900;
  font-size: 12px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.mbvc-guide-body h3 {
  color: var(--mbvc-dark);
  font-size: 21px;
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: 10px;
}

.mbvc-guide-body p {
  color: var(--mbvc-muted);
  line-height: 1.7;
  margin-bottom: 12px;
}

.mbvc-band {
  background: linear-gradient(135deg, var(--mbvc-dark-blue), var(--mbvc-blue));
  color: #fff;
  border-radius: 30px;
  padding: 42px;
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 24px;
  align-items: center;
  box-shadow: 0 24px 60px rgba(0,177,6,.20);
}

.mbvc-band h2 {
  color: #fff;
  font-size: 34px;
  font-weight: 900;
  margin-bottom: 10px;
}

.mbvc-band p {
  color: rgba(255,255,255,.88);
  font-size: 17px;
  line-height: 1.7;
  margin: 0;
}

.mbvc-faq {
  max-width: 900px;
  margin: 0 auto;
}

.mbvc-faq-item {
  background: #fff;
  border: 1px solid var(--mbvc-border);
  border-radius: 18px;
  padding: 22px 24px;
  margin-bottom: 14px;
}

.mbvc-faq-item h3 {
  color: var(--mbvc-dark);
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 8px;
}

.mbvc-faq-item p {
  color: var(--mbvc-muted);
  line-height: 1.7;
  margin: 0;
}

.mbvc-map-wrap {
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(16,42,67,.12);
  border: 1px solid var(--mbvc-border);
}

.mbvc-map-wrap iframe {
  display: block;
}

@media (max-width: 991px) {
  .mbvc-hero h1 { font-size: 44px; }
  .mbvc-search-grid { grid-template-columns: 1fr; }
  .mbvc-card-grid { grid-template-columns: repeat(2, 1fr); }
  .mbvc-feature-layout { grid-template-columns: 1fr; }
  .mbvc-guide-grid { grid-template-columns: 1fr; }
  .mbvc-band { grid-template-columns: 1fr; }
}

@media (max-width: 575px) {
  .mbvc-hero { min-height: auto; }
  .mbvc-hero-inner { padding: 130px 0 60px; }
  .mbvc-hero h1 { font-size: 36px; }
  .mbvc-hero p { font-size: 17px; }
  .mbvc-card-grid { grid-template-columns: 1fr; }
  .mbvc-section { padding: 58px 0; }
  .mbvc-section-title h2 { font-size: 30px; }
  .mbvc-band { padding: 28px; }
}
