/* =============================================
   Awad Agency — Stylesheet
   Modeled after Rambach Insurance layout
   ============================================= */

/* --- 1. Reset & Base --- */
@import url('https://fonts.googleapis.com/css2?family=Lora:wght@400;500;600;700&family=Open+Sans:wght@400;500;600;700&display=swap');

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

html {
  height: 100%;
}

body {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7em;
  color: #666666;
  background: #ffffff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: #A81C0D;
  text-decoration: none;
}

a:hover {
  color: #8a1609;
}

strong {
  color: #333333;
}

ul, ol {
  padding-left: 1.5em;
}

/* --- 2. Layout --- */
.container {
  width: 80%;
  max-width: 1080px;
  margin: 0 auto;
}

/* Sticky footer: main content stretches */
.home-content,
.legal {
  flex: 1;
}

/* --- 3. Top Bar --- */
.top-bar {
  background: #ffffff;
  padding: 10px 30px 0;
  font-size: 14px;
  font-weight: 600;
  color: #000C44;
}

.top-bar .container {
  display: flex;
  align-items: center;
  gap: 13px;
}

.top-bar a {
  color: #000C44;
  transition: color 0.2s;
}

.top-bar a:hover {
  color: #A81C0D;
}

.top-bar a i {
  margin-right: 3px;
}

/* --- 4. Header & Nav --- */
.site-header {
  background: #ffffff;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
  padding: 20px 0 0;
  text-align: center;
}

.header-logo {
  margin-bottom: 8px;
}

.header-logo img {
  width: 200px;
  height: auto;
}

.logo {
  font-size: 32px;
  font-weight: 700;
  color: #333333;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 16px;
}

.logo span {
  color: #A81C0D;
}

.main-nav {
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 0;
}

.main-nav li {
  padding-right: 22px;
}

.main-nav li:last-child {
  padding-right: 0;
}

.main-nav a {
  color: rgba(0, 0, 0, 0.6);
  font-size: 19px;
  font-weight: 700;
  padding: 0 0 23px;
  display: inline-block;
  transition: color 0.2s;
}

.main-nav a i {
  margin-right: 4px;
  font-size: 0.85em;
}

.main-nav a:hover {
  color: #A81C0D;
}

.main-nav a.active {
  color: #A81C0D;
}

/* --- 5. Typography --- */
h1, h2, h3 {
  font-family: 'Lora', Georgia, "Times New Roman", serif;
  color: #333333;
}

h1 {
  font-size: 36px;
  font-weight: 700;
  line-height: 1em;
  padding-bottom: 10px;
  margin-bottom: 0;
  color: #A81C0D;
}

h2 {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 14px;
}

h3 {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 10px;
}

p {
  margin-bottom: 14px;
}

/* --- 6. Hero Banner (full-width image-style) --- */
.hero-banner {
  background: linear-gradient(135deg, #1a0a08 0%, #A81C0D 40%, #d4a574 70%, #f5c882 100%);
  padding: 0;
  overflow: hidden;
}

.hero-banner-inner {
  max-width: 1080px;
  width: 80%;
  margin: 0 auto;
  padding: 100px 0;
  position: relative;
}

.hero-banner-text {
  font-family: 'Lora', Georgia, "Times New Roman", serif;
  font-size: 36px;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  line-height: 1.2;
  display: block;
  max-width: 80%;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
}

.btn-quote {
  display: inline-block;
  margin-top: 30px;
  padding: 14px 36px;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #A81C0D;
  background: #ffffff;
  border: none;
  border-radius: 4px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: background 0.2s, color 0.2s;
}

.btn-quote:hover {
  background: #A81C0D;
  color: #ffffff;
}

/* --- 7. Home Content (2/3 + 1/3 layout) --- */
.home-content {
  padding: 50px 0;
  background: #ffffff;
}

.content-row {
  display: flex;
  gap: 40px;
  padding: 3px 0 25px;
}

.content-main {
  flex: 2;
}

.content-main h1 {
  font-size: 36px;
  color: #A81C0D;
  line-height: 1em;
  padding-bottom: 10px;
}

.content-main p {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.7em;
  color: #000000;
}

.content-sidebar {
  flex: 1;
}

.sidebar-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}

/* --- 8. Legal / Policy Content --- */
.legal {
  padding: 50px 0 60px;
}

.legal h1 {
  text-align: center;
  font-size: 22px;
  font-family: 'Open Sans', Arial, sans-serif;
  color: #333333;
  text-transform: none;
  line-height: 1.3;
  padding-bottom: 14px;
  margin-bottom: 6px;
}

.legal .effective-date {
  margin-bottom: 28px;
}

.legal h2 {
  font-size: 14px;
  font-weight: 700;
  font-family: 'Open Sans', Arial, sans-serif;
  margin-top: 28px;
  margin-bottom: 8px;
  color: #666666;
}

.legal p {
  margin-bottom: 0;
  padding-bottom: 14px;
}

.legal ul, .legal ol {
  margin-bottom: 10px;
}

.legal li {
  margin-bottom: 4px;
}

.callout {
  background: #fff8e1;
  border-left: 4px solid #f9a825;
  padding: 18px 22px;
  margin: 20px 0;
  border-radius: 0 4px 4px 0;
}

.callout strong {
  color: #333333;
}

/* --- 9. Footer --- */
.site-footer {
  background: none;
  padding: 0;
}

.footer-columns {
  background: #222222;
  padding: 40px 0 30px;
}

.footer-grid {
  display: flex;
  gap: 40px;
}

.footer-col {
  flex: 1;
}

.footer-col h4 {
  font-family: 'Lora', Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-weight: 700;
  color: #A81C0D;
  margin-bottom: 14px;
}

.footer-col p,
.footer-col li {
  color: #ffffff;
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 4px;
}

.footer-col a {
  color: #ffffff;
  opacity: 0.85;
  transition: opacity 0.2s;
}

.footer-col a:hover {
  opacity: 1;
  color: #ffffff;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 6px;
}

.footer-bottom {
  background: #000C44;
  color: #ffffff;
  padding: 15px 0 5px;
  text-align: center;
  font-size: 18px;
}

/* --- 10. Responsive --- */
@media (max-width: 768px) {
  .main-nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .main-nav li {
    padding-right: 12px;
  }

  .main-nav a {
    font-size: 15px;
    padding: 0 0 14px;
  }

  .logo {
    font-size: 26px;
  }

  .header-logo img {
    width: 150px;
  }

  .hero-banner-inner {
    padding: 60px 0;
  }

  .hero-banner-text {
    font-size: 26px;
    max-width: 100%;
  }

  .btn-quote {
    font-size: 16px;
    padding: 12px 28px;
    margin-top: 24px;
  }

  .content-row {
    flex-direction: column;
    gap: 30px;
  }

  .content-main p {
    font-size: 16px;
  }

  h1 { font-size: 28px; }
  h2 { font-size: 22px; }

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

  .legal h1 {
    font-size: 20px;
  }

  .legal h2 {
    font-size: 14px;
  }

  .footer-grid {
    flex-direction: column;
    gap: 30px;
  }
}

@media (max-width: 480px) {
  .container {
    width: 92%;
  }

  .top-bar {
    padding: 10px 15px 0;
  }

  .top-bar .container {
    flex-wrap: wrap;
    gap: 8px;
  }

  .header-logo img {
    width: 120px;
  }

  .hero-banner-inner {
    padding: 40px 0;
    width: 92%;
  }

  .hero-banner-text {
    font-size: 20px;
  }

  .content-main h1 {
    font-size: 24px;
  }

  .content-main p {
    font-size: 15px;
  }

  .legal {
    padding: 30px 0 40px;
  }
}
