/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { background: #000; color: #fff; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block;
  background: #E81F24;
  color: #fff;
  padding: 14px 36px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: background 0.2s;
}
.btn-primary:hover { background: #c0141a; }
.btn-secondary {
  display: inline-block;
  background: transparent;
  color: #E81F24;
  border: 2px solid #E81F24;
  padding: 10px 24px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-secondary:hover { background: #E81F24; color: #fff; }

/* ===== NAVBAR ===== */
header { border-bottom: 1px solid #333; }
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 40px;
  background: #000;
}
.nav-logo a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
}
.logo-squares { display: flex; gap: 3px; }
.sq-red { width: 14px; height: 14px; background: #E81F24; }
.sq-yellow { width: 14px; height: 14px; background: #F5A623; }
.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
  align-items: center;
}
.nav-links a {
  color: #fff;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: #E81F24; }
.dropdown { position: relative; }
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #111;
  list-style: none;
  min-width: 180px;
  padding: 8px 0;
  border: 1px solid #333;
  z-index: 100;
}
.dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu li a { display: block; padding: 8px 16px; color: #fff; }
.dropdown-menu li a:hover { color: #E81F24; background: #222; }
.cart-icon { color: #fff; font-size: 1.2rem; cursor: pointer; }

/* ===== TICKER TAPE ===== */
.ticker-wrap {
  background: #000;
  overflow: hidden;
  padding: 8px 0;
  border-top: 1px solid #333;
}
.ticker {
  display: inline-block;
  white-space: nowrap;
  animation: ticker 20s linear infinite;
  color: #F5A623;
  font-weight: 600;
  font-size: 0.95rem;
}
@keyframes ticker { 0% { transform: translateX(100vw); } 100% { transform: translateX(-100%); } }

/* ===== HERO ===== */
.hero { padding: 60px 40px; background: #000; }
.hero-content {
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
}
.hero-image { flex: 0 0 320px; text-align: center; }
.hero-image img { border-radius: 8px; width: 100%; max-width: 320px; margin: 0 auto; }
.hero-caption { margin-top: 12px; color: #fff; font-weight: 600; font-size: 1rem; }
.hero-text { flex: 1; }
.hero-text h1 { font-size: 3.2rem; font-weight: 900; line-height: 1.1; margin-bottom: 24px; color: #fff; }
.hero-text p { font-size: 1.1rem; line-height: 1.7; color: #ddd; margin-bottom: 32px; }

/* ===== LATEST EPISODE ===== */
.latest-episode {
  padding: 40px;
  background: #111;
  text-align: center;
}
.latest-episode h2 { font-size: 1.8rem; margin-bottom: 16px; color: #fff; }
.episode-title { font-size: 1.1rem; color: #F5A623; font-weight: 700; margin-bottom: 10px; }

/* ===== SOCIAL SECTION ===== */
.social-section { padding: 40px; background: #000; text-align: center; }
.social-section h2 { font-size: 1.8rem; margin-bottom: 24px; color: #F5A623; }
.social-bar { list-style: none; display: flex; gap: 24px; justify-content: center; flex-wrap: wrap; }
.social-bar li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: #fff;
  font-size: 0.85rem;
  transition: color 0.2s;
}
.social-bar li a:hover { color: #F5A623; }
.social-bar img { width: 39px; height: 39px; border-radius: 50%; }

/* ===== QUESTION OF THE WEEK ===== */
.qotw { padding: 60px 40px; background: #111; }
.qotw-content { max-width: 800px; margin: 0 auto; text-align: center; }
.qotw-content h2 { font-size: 2rem; margin-bottom: 24px; color: #fff; }
.houston-map { margin: 0 auto 24px; max-width: 400px; opacity: 0.7; }
.qotw-form { display: flex; flex-direction: column; gap: 12px; text-align: left; }
.qotw-form label { color: #ccc; font-size: 0.95rem; }
.qotw-form textarea {
  padding: 12px;
  border: 1px solid #444;
  background: #222;
  color: #fff;
  border-radius: 6px;
  min-height: 120px;
  resize: vertical;
  font-size: 1rem;
}

/* ===== PRODUCTS SECTION ===== */
.products-section { padding: 60px 40px; background: #000; }
.products-section h2 { font-size: 1.5rem; color: #fff; text-align: center; margin-bottom: 8px; }
.products-section h3 { font-size: 2rem; color: #fff; text-align: center; margin-bottom: 40px; }
.products-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 32px; max-width: 1100px; margin: 0 auto; }
.product-card { background: #111; border-radius: 10px; padding: 24px; text-align: center; }
.product-card img { border-radius: 6px; margin-bottom: 16px; max-height: 220px; object-fit: cover; width: 100%; }
.product-card h4 { font-size: 1rem; color: #fff; margin-bottom: 16px; line-height: 1.4; }
.view-all { display: block; margin: 40px auto 0; width: fit-content; }

/* ===== FOOTER ===== */
footer { background: #111; padding: 60px 40px 24px; border-top: 1px solid #333; }
.footer-content { display: flex; gap: 40px; flex-wrap: wrap; max-width: 1100px; margin: 0 auto; }
.footer-col { flex: 1; min-width: 260px; }
.footer-col h3 { font-size: 1.1rem; color: #F5A623; margin-bottom: 16px; }
.footer-social { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-social a { color: #ccc; transition: color 0.2s; }
.footer-social a:hover { color: #F5A623; }
.newsletter-form { display: flex; flex-direction: column; gap: 10px; margin-top: 12px; }
.newsletter-form input[type="email"] {
  padding: 10px 14px; background: #222; border: 1px solid #444; color: #fff; border-radius: 6px; font-size: 0.95rem;
}
.newsletter-form label { color: #aaa; font-size: 0.85rem; display: flex; align-items: center; gap: 8px; }
.footer-bottom { text-align: center; margin-top: 40px; color: #666; font-size: 0.85rem; border-top: 1px solid #333; padding-top: 20px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero-content { flex-direction: column; }
  .hero-text h1 { font-size: 2.2rem; }
  .navbar { padding: 12px 20px; }
  .nav-links { gap: 16px; }
  .products-grid { grid-template-columns: 1fr; }
  .footer-content { flex-direction: column; }
}

/* ===== FORM PAGES ===== */
.page-container { max-width: 900px; margin: 0 auto; padding: 60px 40px; }
.page-container h1 { font-size: 2.2rem; color: #2d6a4f; margin-bottom: 32px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group.full-width { grid-column: 1 / -1; }
.form-group label { color: #333; font-size: 0.95rem; font-weight: 500; }
.form-group input, .form-group textarea, .form-group select {
  padding: 12px; border: 1px solid #ccc; border-radius: 6px; font-size: 1rem; width: 100%;
}
.star-rating { display: flex; gap: 6px; font-size: 1.8rem; color: #2d6a4f; cursor: pointer; }
.radio-group { display: flex; flex-direction: column; gap: 8px; }
.radio-group label { display: flex; align-items: center; gap: 8px; color: #333; cursor: pointer; font-weight: 400; }
.btn-submit {
  background: #2d6a4f; color: #fff; padding: 14px 40px; border: none; border-radius: 6px;
  font-size: 1rem; font-weight: 700; cursor: pointer; transition: background 0.2s;
}
.btn-submit:hover { background: #1b4332; }

/* Tell Us page has white bg */
.page-light { background: #fff; color: #222; }
.page-light header { background: #fff; border-bottom: 1px solid #eee; }
.page-light .nav-logo a { color: #222; }
.page-light .nav-links a { color: #222; }
.page-light .cart-icon { color: #222; }

/* Real Estate Stories */
.stories-list { max-width: 900px; margin: 0 auto; padding: 60px 40px; }
.stories-list h1 { font-size: 2.5rem; font-weight: 900; margin-bottom: 40px; text-align: center; }
.story-card { background: #111; border: 1px solid #333; border-radius: 8px; padding: 32px; margin-bottom: 24px; }
.story-card h2 { font-size: 1.4rem; color: #F5A623; margin-bottom: 12px; }
.story-card p { color: #ccc; margin-bottom: 16px; line-height: 1.6; }
.story-card a { color: #E81F24; font-weight: 600; }
.story-card a:hover { text-decoration: underline; }

/* Shop */
.shop-container { max-width: 1200px; margin: 0 auto; padding: 40px; }
.shop-container h1 { font-size: 2.5rem; font-weight: 900; margin-bottom: 8px; }
.shop-layout { display: grid; grid-template-columns: 240px 1fr; gap: 40px; margin-top: 40px; }
.shop-sidebar h3 { font-size: 1.1rem; margin-bottom: 16px; color: #ccc; }
.filter-section { margin-bottom: 24px; }
.filter-section h4 { font-size: 0.9rem; color: #aaa; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.shop-products { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }
.shop-product-card { background: #111; border-radius: 8px; overflow: hidden; }
.shop-product-card img { width: 100%; height: 280px; object-fit: cover; }
.shop-product-info { padding: 16px; }
.shop-product-info h3 { font-size: 1rem; color: #fff; margin-bottom: 8px; }
.shop-product-info .price { color: #F5A623; font-weight: 700; font-size: 1.1rem; }
