/* Best Western Regency Inn & Suites - Longview, Texas
   Classic Hotel Design - Professional Blue, Beige, Gold
   Unique horizontal navigation layout */

:root {
  --primary-blue: #003b8b;
  --light-blue: #0055c8;
  --beige: #E8E2D4;
  --gold: #FFCC33;
  --dark-text: #2c2c2c;
  --light-text: #666;
  --border-color: #d4ceb8;
  --shadow: rgba(0, 59, 139, 0.1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Georgia', 'Times New Roman', serif;
  line-height: 1.7;
  color: var(--dark-text);
  background-color: #ffffff;
}

/* Header Section */
.site-header {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 100%);
  color: white;
  padding: 0;
  box-shadow: 0 4px 12px var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-top {
  background-color: rgba(0, 0, 0, 0.2);
  padding: 12px 0;
  border-bottom: 2px solid var(--gold);
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 20px;
}

.logo-section h1 {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.logo-section .tagline {
  font-size: 13px;
  font-style: italic;
  opacity: 0.9;
  font-family: 'Georgia', serif;
}

.contact-info {
  display: flex;
  gap: 30px;
  font-size: 14px;
  font-family: 'Arial', sans-serif;
}

.contact-info a {
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s;
}

.contact-info a:hover {
  color: var(--gold);
}

/* Navigation */
nav {
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

nav ul {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 5px;
}

nav li {
  position: relative;
}

nav a {
  display: block;
  padding: 18px 24px;
  color: var(--primary-blue);
  text-decoration: none;
  font-family: 'Arial', sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s;
  border-bottom: 3px solid transparent;
}

nav a:hover,
nav a.active {
  background-color: var(--beige);
  border-bottom-color: var(--gold);
  color: var(--primary-blue);
}

/* Hero Section */
.hero {
  position: relative;
  height: 550px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0, 59, 139, 0.5), rgba(0, 59, 139, 0.7));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 40px;
  background: rgba(0, 0, 0, 0.4);
  border: 3px solid var(--gold);
  border-radius: 8px;
}

.hero h2 {
  font-size: 52px;
  margin-bottom: 20px;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
  font-weight: 700;
  line-height: 1.2;
}

.hero p {
  font-size: 22px;
  margin-bottom: 30px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  font-family: 'Georgia', serif;
}

.cta-button {
  display: inline-block;
  padding: 16px 40px;
  background-color: var(--gold);
  color: var(--primary-blue);
  text-decoration: none;
  font-weight: 700;
  font-size: 17px;
  border-radius: 50px;
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(255, 204, 51, 0.4);
  font-family: 'Arial', sans-serif;
}

.cta-button:hover {
  background-color: #ffd954;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 204, 51, 0.6);
}

/* Main Content */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px 30px;
}

.content-section {
  background-color: white;
  padding: 50px;
  margin-bottom: 40px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  box-shadow: 0 2px 10px var(--shadow);
}

.content-section h1 {
  font-size: 42px;
  color: var(--primary-blue);
  margin-bottom: 15px;
  border-bottom: 4px solid var(--gold);
  padding-bottom: 15px;
}

.content-section h2 {
  font-size: 32px;
  color: var(--primary-blue);
  margin: 35px 0 20px;
  font-weight: 600;
}

.content-section h3 {
  font-size: 24px;
  color: var(--light-blue);
  margin: 25px 0 15px;
  font-weight: 600;
}

.content-section p {
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 20px;
  color: var(--dark-text);
}

.content-section ul {
  margin: 20px 0 20px 30px;
  line-height: 1.9;
}

.content-section li {
  font-size: 17px;
  margin-bottom: 10px;
  color: var(--dark-text);
}

.content-section strong {
  color: var(--primary-blue);
  font-weight: 700;
}

.content-section a {
  color: var(--light-blue);
  text-decoration: none;
  border-bottom: 1px solid var(--light-blue);
  transition: all 0.3s;
}

.content-section a:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

/* Image Styling */
.content-image {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 30px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  border: 5px solid var(--beige);
}

.image-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin: 30px 0;
}

.image-row img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  border: 5px solid var(--beige);
  transition: transform 0.3s;
}

.image-row img:hover {
  transform: scale(1.03);
}

/* Feature Boxes */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.feature-box {
  background: linear-gradient(135deg, var(--beige) 0%, #f5f1e6 100%);
  padding: 35px;
  border-radius: 8px;
  text-align: center;
  border: 2px solid var(--border-color);
  transition: all 0.3s;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 59, 139, 0.15);
  border-color: var(--gold);
}

.feature-box h3 {
  color: var(--primary-blue);
  font-size: 22px;
  margin-bottom: 15px;
}

.feature-box p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--dark-text);
  margin: 0;
}

/* Info Box */
.info-box {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 100%);
  color: white;
  padding: 40px;
  border-radius: 8px;
  margin: 40px 0;
  border-left: 6px solid var(--gold);
  box-shadow: 0 4px 20px rgba(0, 59, 139, 0.3);
}

.info-box h3 {
  font-size: 28px;
  margin-bottom: 15px;
  color: white;
}

.info-box p {
  font-size: 17px;
  line-height: 1.8;
  margin: 0;
  color: white;
}

/* Contact Section */
.contact-details {
  background: var(--beige);
  padding: 40px;
  border-radius: 8px;
  margin: 40px 0;
  border: 2px solid var(--border-color);
}

.contact-details h3 {
  color: var(--primary-blue);
  font-size: 26px;
  margin-bottom: 20px;
}

.contact-details p {
  font-size: 18px;
  margin: 12px 0;
  color: var(--dark-text);
}

.contact-details a {
  color: var(--light-blue);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 2px solid var(--light-blue);
}

.contact-details a:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

/* Footer */
.site-footer {
  background: linear-gradient(135deg, var(--primary-blue) 0%, #002a66 100%);
  color: white;
  padding: 50px 30px 30px;
  margin-top: 60px;
  border-top: 5px solid var(--gold);
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h3 {
  font-size: 20px;
  margin-bottom: 20px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-section p,
.footer-section ul {
  font-size: 15px;
  line-height: 1.8;
  opacity: 0.95;
}

.footer-section ul {
  list-style: none;
}

.footer-section li {
  margin-bottom: 10px;
}

.footer-section a {
  color: white;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section a:hover {
  color: var(--gold);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 14px;
  opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 968px) {
  .header-container {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .contact-info {
    flex-direction: column;
    gap: 10px;
  }

  nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }

  nav a {
    padding: 14px 18px;
    font-size: 14px;
  }

  .hero {
    height: 450px;
  }

  .hero h2 {
    font-size: 38px;
  }

  .hero p {
    font-size: 18px;
  }

  .content-section {
    padding: 30px;
  }

  .content-section h1 {
    font-size: 34px;
  }

  .content-section h2 {
    font-size: 26px;
  }
}

@media (max-width: 640px) {
  .logo-section h1 {
    font-size: 20px;
  }

  nav ul {
    flex-direction: column;
    padding: 0;
  }

  nav a {
    border-bottom: 1px solid var(--border-color);
  }

  .hero {
    height: 350px;
  }

  .hero-content {
    padding: 25px;
  }

  .hero h2 {
    font-size: 28px;
  }

  .hero p {
    font-size: 16px;
  }

  .cta-button {
    padding: 12px 30px;
    font-size: 15px;
  }

  .container {
    padding: 40px 20px;
  }

  .content-section {
    padding: 25px;
  }

  .content-section h1 {
    font-size: 28px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }
}
