:root {
  --primary: #99c22f;
  /* Vibrant purple */
  --primary-dark: #6a8621;
  --secondary: #ff6584;
  /* Pink accent */
  --accent: #42e2b8;
  /* Teal accent */
  --dark: #1a1a2e;
  --light: #f8f9ff;
  --white: #ffffff;
  --gray: #8c8b9f;
  --light-gray: #e6e6f0;
  --gradient: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-dark) 100%
  );
}

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

html {
  overflow-x: hidden !important;
}

body {
  font-family: Poppins, sans-serif;
  background-color: white;
  color: var(--dark);
  line-height: 1.7;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

h3 {
  font-weight: 700;
  line-height: 1.3;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: white;
  padding: 10px 2%;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  flex-direction: column;
  gap: 5px;
}

.logo-container {
  background: white;
  padding: 5px;
  display: flex;
  align-items: center;
}

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

.nav-right {
  display: flex;
  align-items: end;
  flex-direction: column;
}

.inquires-text {
  text-align: center;
  font-size: 16px;
  line-height: 1.2;
  margin-right: 15px;
  font-weight: 500;
}

.start-here {
  text-decoration: underline;
  color: var(--primary);
  font-weight: 600;
}

footer {
  background: var(--dark);
  color: var(--white);
  padding: 100px 5% 50px;
  position: relative;
}

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

.footer-logo {
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  font-family: "Playfair Display", serif;
}

.footer-about {
  color: var(--white);
  margin-bottom: 20px;
  font-size: 14px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

footer {
  background: var(--dark);
  color: var(--white);
  padding: 80px 5% 40px;
}

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

.footer-logo {
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  font-family: "Playfair Display", serif;
  margin-bottom: 16px;
}

.footer-about {
  color: var(--white);
  margin-bottom: 20px;
  font-size: 14px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-decoration: none;
  transition:
    background 0.3s ease,
    transform 0.3s ease;
}

.social-link:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

.footer-heading {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--white);
  position: relative;
  padding-bottom: 10px;
}

.footer-heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--primary);
}

.footer-contact p {
  color: var(--white);
  margin-bottom: 14px;
  font-size: 14px;
  display: flex;
  align-items: flex-start;
}

.footer-contact i {
  margin-right: 10px;
  color: var(--primary);
  font-size: 15px;
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-bottom {
  text-align: center;
  padding-top: 40px;
  margin-top: 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.states-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 10px;
  margin-top: 20px;
}

.state-item {
  color: var(--white);
  font-size: 13px;
}

/* ===== PRESS ROOM ===== */
.press-room-section {
  padding: 100px 5% 80px;
  background: var(--white);
  margin-top: 70px; /* offset for fixed nav */
  flex-grow: 1;
}

.press-room-container {
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1400px;
  margin: 0 auto;
}

.press-room-graphic {
  flex: 1 1 40%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.press-room-graphic img {
  width: 100%;
  max-width: 600px;
  height: auto;
  object-fit: contain;
}

.press-room-content {
  flex: 1 1 50%;
}

.press-room-title {
  font-family: "Playfair Display", serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
  position: relative;
  padding-bottom: 12px;
}

.press-room-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--primary);
}

.press-room-desc {
  font-size: 15px;
  color: var(--dark);
  margin: 18px 0 28px;
  line-height: 1.6;
}

.press-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 2px solid var(--light-gray);
  border-radius: 8px;
  overflow: hidden;
  max-width: 500px;
}

.press-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--light-gray);
  text-decoration: none;
  background: var(--white);
  transition: background 0.2s ease;
}

.press-row:last-child {
  border-bottom: none;
}

.press-row:hover {
  background: var(--light);
}

.press-logo-wrap {
  display: flex;
  align-items: center;
  min-width: 160px;
}

.press-logo {
  max-height: 40px;
  max-width: 160px;
  object-fit: contain;
}

.press-logo-fallback {
  align-items: center;
}

.press-read-btn {
  background: var(--primary);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 8px 18px;
  border-radius: 20px;
  white-space: nowrap;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.press-row:hover .press-read-btn {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

@media (max-width: 576px) {
  .logo img {
    max-width: 150px;
  }
  .inquires-text {
    font-size: 12px;
  }

  .press-room-container {
    flex-direction: column;
    gap: 30px;
  }
  .press-room-graphic img {
    max-width: 280px;
  }
  .press-room-title {
    font-size: 28px;
  }

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

@media (max-width: 324px) {
  .inquires-text {
    font-size: 11px;
  }
}
