/* Baymont Delaware, OH — site stylesheet */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500;600;700&family=Inter:wght@400;500;600&display=swap');

:root {
  --navy: #0b2d52;
  --navy-dark: #071d38;
  --gold: #d9a441;
  --gold-dark: #b9852b;
  --bg: #f7f8fa;
  --card: #ffffff;
  --text: #23303f;
  --muted: #64748b;
  --line: #e2e6ec;
  --radius: 10px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: 'Poppins', 'Segoe UI', sans-serif;
  color: var(--navy);
  line-height: 1.25;
  margin: 0 0 0.5em;
}

p { margin: 0 0 1em; }

a { color: var(--navy); text-decoration: none; }
a:hover { color: var(--gold-dark); }

img { max-width: 100%; display: block; }

.container {
  width: min(1140px, 100% - 2.5rem);
  margin-inline: auto;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.8rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.btn:hover { transform: translateY(-2px); }

.btn-gold {
  background: var(--gold);
  color: var(--navy-dark);
}
.btn-gold:hover { background: var(--gold-dark); color: #fff; }

.btn-outline {
  background: transparent;
  border-color: #ffffffaa;
  color: #fff;
}
.btn-outline:hover { background: #ffffff1a; border-color: #fff; color: #fff; }

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

/* Top bar */
.topbar {
  background: var(--navy-dark);
  color: #cfd8e3;
  font-size: 0.85rem;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.4rem 0;
  flex-wrap: wrap;
  gap: 0.3rem;
}
.topbar a { color: #cfd8e3; }
.topbar a:hover { color: var(--gold); }
.topbar-links { display: flex; gap: 1.2rem; flex-wrap: wrap; }

/* Header / nav */
header.site-header {
  background: #fff;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.brand img { height: 48px; width: auto; }
.brand-text {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: var(--navy);
  font-size: 1.05rem;
  line-height: 1.2;
}
.brand-text span {
  display: block;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.75rem;
  color: var(--muted);
}

nav.main-nav ul {
  list-style: none;
  display: flex;
  gap: 1.8rem;
  margin: 0;
  padding: 0;
  align-items: center;
}
nav.main-nav a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
}
nav.main-nav a:hover, nav.main-nav a.active { color: var(--navy); border-bottom: 2px solid var(--gold); padding-bottom: 4px; }

.nav-actions { display: flex; align-items: center; gap: 1rem; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--navy);
  cursor: pointer;
}

@media (max-width: 880px) {
  nav.main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    display: none;
    box-shadow: 0 8px 16px rgba(0,0,0,0.06);
  }
  nav.main-nav.open { display: block; }
  nav.main-nav ul {
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 1.5rem;
    gap: 1rem;
  }
  .nav-toggle { display: block; }
  .topbar-links { display: none; }
}

@media (max-width: 480px) {
  .brand-text span { display: none; }
  .brand-text { font-size: 0.9rem; }
  .brand img { height: 36px; }
  .nav-actions .btn-gold { padding: 0.6rem 1rem; font-size: 0.85rem; }
}

/* Hero */
.hero {
  position: relative;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(11,45,82,0.90) 0%, rgba(7,29,56,0.94) 100%),
    url('../media/hotel/hotel-front-building1.jpg') center/cover no-repeat;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(217,164,65,0.25), transparent 55%);
}
.hero .container {
  position: relative;
  padding: 5rem 0 6rem;
}
.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.8rem;
}
.hero h1 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.1rem);
  max-width: 720px;
}
.hero p.lead {
  color: #dbe4f0;
  max-width: 560px;
  font-size: 1.1rem;
}
.hero-cta { display: flex; gap: 1rem; margin-top: 1.8rem; flex-wrap: wrap; }
.hero-address {
  margin-top: 2.2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: #cfd8e3;
  font-size: 0.95rem;
}

/* Page hero (inner pages) */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: #fff;
  padding: 3.2rem 0;
}
.page-hero h1 { color: #fff; margin-bottom: 0.4rem; }
.page-hero p { color: #cfd8e3; margin: 0; }
.breadcrumb { font-size: 0.85rem; color: #b8c4d6; margin-bottom: 0.6rem; }
.breadcrumb a { color: #b8c4d6; }
.breadcrumb a:hover { color: var(--gold); }

/* Sections */
section { padding: 4rem 0; }
.section-heading { text-align: center; max-width: 640px; margin: 0 auto 2.5rem; }
.section-heading .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.8rem;
  color: var(--gold-dark);
  font-weight: 700;
}
.bg-alt { background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

/* Grid helpers */
.grid { display: grid; gap: 1.6rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-auto { grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }
@media (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* Placeholder photo blocks (no real photography yet) */
.photo-placeholder {
  background: linear-gradient(135deg, #e7edf5, #d9e2ee);
  border: 1px dashed #aebdd1;
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: var(--radius);
  min-height: 220px;
  padding: 1rem;
}

.card-photo {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}
.hero-photo {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 0.8rem;
  margin-top: 1.5rem;
}
.gallery-grid img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}
.gallery-grid.gallery-large {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.gallery-grid.gallery-large img {
  height: 220px;
  border-radius: var(--radius);
}

/* Cards */
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(11,45,82,0.06);
  display: flex;
  flex-direction: column;
}
.card-body { padding: 1.4rem; flex: 1; display: flex; flex-direction: column; }
.card h3 { font-size: 1.15rem; }
.card .tag {
  display: inline-block;
  background: #eef2f8;
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  margin-bottom: 0.6rem;
  align-self: flex-start;
}
.card .card-cta { margin-top: auto; padding-top: 1rem; }

/* Amenity items */
.amenity-item {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem 1.2rem;
  text-align: center;
}
.amenity-item .icon { font-size: 1.9rem; margin-bottom: 0.6rem; }
.amenity-item h3 { font-size: 1rem; margin-bottom: 0.3rem; }
.amenity-item p { color: var(--muted); font-size: 0.9rem; margin: 0; }

/* Feature list with icon */
.feature-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.9rem; }
.feature-list li { display: flex; gap: 0.7rem; align-items: flex-start; }
.feature-list .icon { color: var(--gold-dark); font-weight: 700; }

/* Attraction / room detail layout */
.detail-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: start;
}
@media (max-width: 900px) { .detail-layout { grid-template-columns: 1fr; } }

.info-box {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem;
}
.info-box h3 { font-size: 1rem; text-transform: uppercase; letter-spacing: 0.04em; color: var(--muted); margin-bottom: 1rem; }
.info-row { display: flex; justify-content: space-between; gap: 1rem; padding: 0.55rem 0; border-bottom: 1px solid var(--line); font-size: 0.92rem; }
.info-row:last-child { border-bottom: none; }
.info-row .label { color: var(--muted); }
.info-row .value { font-weight: 600; text-align: right; }

.note {
  font-size: 0.85rem;
  color: var(--muted);
  background: #eef2f8;
  border-radius: var(--radius);
  padding: 0.9rem 1.1rem;
  margin-top: 1rem;
}

/* CTA band */
.cta-band {
  background: linear-gradient(135deg, var(--navy), var(--navy-dark));
  color: #fff;
  text-align: center;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: #cfd8e3; }

/* Map */
.map-wrap { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); }
.map-wrap iframe { width: 100%; height: 380px; border: 0; display: block; }

/* Contact form */
.form-grid { display: grid; gap: 1rem; }
.form-grid label { font-size: 0.85rem; font-weight: 600; color: var(--navy); display: block; margin-bottom: 0.35rem; }
.form-grid input, .form-grid textarea, .form-grid select {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
  color: var(--text);
  background: #fff;
}
.form-grid input:focus, .form-grid textarea:focus, .form-grid select:focus {
  outline: 2px solid var(--gold);
  outline-offset: 1px;
}
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 620px) { .form-row-2 { grid-template-columns: 1fr; } }

/* Footer */
footer.site-footer {
  background: var(--navy-dark);
  color: #b8c4d6;
  padding: 3.5rem 0 1.5rem;
  font-size: 0.9rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2rem;
  padding-bottom: 2.2rem;
  border-bottom: 1px solid #1c3a5e;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-grid h4 { color: #fff; font-size: 0.95rem; margin-bottom: 1rem; }
.footer-grid ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.55rem; }
footer.site-footer a { color: #b8c4d6; }
footer.site-footer a:hover { color: var(--gold); }
.footer-logo { height: 40px; margin-bottom: 0.9rem; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.6rem;
  padding-top: 1.3rem;
  font-size: 0.8rem;
  color: #8ea1bc;
}
