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

:root {
  --background: #f8fafc;
  --foreground: #1e293b;
  --primary: #2563eb;
  --primary-light: #f0f7ff;
  --primary-medium: #e5eeff;
  --primary-dark: #2563eb;
  --primary-text: #1e293b;
  --secondary-text: #64748b;
  --border: #e2e8f0;
  --card: #ffffff;
  --radius: 0.75rem;
}

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

body {
  font-family: 'Open Sans', sans-serif;
  color: var(--foreground);
  background-color: var(--background);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Lora', serif;
  color: var(--primary-text);
  line-height: 1.3;
}

a {
  color: var(--primary-dark);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Header */
.header {
  background-color: white;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 50;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 5rem;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 4rem;
  max-width: 76px;
  object-fit: contain;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 1.5rem;
}

.nav-list a {
  color: var(--primary-text);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 0;
}

.nav-list a:hover {
  color: var(--primary-dark);
  text-decoration: none;
}

.dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 0.5rem 0;
  min-width: 200px;
  z-index: 100;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu li {
  list-style: none;
}

.dropdown-menu a {
  display: block;
  padding: 0.5rem 1rem;
  color: var(--primary-text);
  font-size: 0.875rem;
  font-weight: 400;
}

.dropdown-menu a:hover,
.dropdown-menu a.active {
  background-color: var(--primary-light);
}

.mobile-menu-button {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  cursor: pointer;
}

.mobile-menu-button span {
  height: 2px;
  width: 100%;
  background-color: var(--primary-text);
}

/* Hero Section */
.hero {
  background: linear-gradient(to bottom, var(--primary-light), white);
  border-bottom: 1px solid #e2e8f0;
  padding: 4rem 1rem;
}

.hero-content {
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(4px);
  border-radius: var(--radius);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
  padding: 2rem;
  border: 1px solid rgba(100, 116, 139, 0.1);
  text-align: center;
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: 500;
  margin-bottom: 2rem;
  background: linear-gradient(to right, var(--primary-text), var(--primary-dark));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-text {
  font-size: 1.25rem;
  max-width: 800px;
  margin: 0 auto 2rem;
  color: var(--secondary-text);
}

.hero-note {
  font-size: 1.125rem;
  max-width: 800px;
  margin: 0 auto 2rem;
  color: var(--secondary-text);
  background-color: rgba(229, 238, 255, 0.5);
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid rgba(100, 116, 139, 0.1);
}

.hero-button {
  display: flex;
  justify-content: center;
}

/* Info Blocks */
.info-blocks {
  padding: 4rem 1rem;
  background-color: white;
  border-bottom: 1px solid #e2e8f0;
}

.section-title {
  font-size: 1.75rem;
  font-weight: 500;
  text-align: center;
  margin-bottom: 3rem;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.info-card {
  border: 1px solid rgba(100, 116, 139, 0.1);
  border-radius: var(--radius);
  padding: 2rem;
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(4px);
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.07);
  border-color: rgba(37, 99, 235, 0.2);
}

.card-header {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.card-icon {
  width: 2.5rem;
  height: 2.5rem;
  background-color: var(--primary-dark);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  font-size: 1.5rem;
}

.card-header h3 {
  font-size: 1.25rem;
}

.info-card p {
  color: var(--secondary-text);
  margin-bottom: 1rem;
}

.card-link {
  color: var(--primary-dark);
  font-weight: 500;
  display: flex;
  align-items: center;
}

.important-info {
  margin-top: 4rem;
  background-color: var(--primary-light);
  border-radius: var(--radius);
  padding: 2.5rem;
  border: 1px solid rgba(100, 116, 139, 0.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.important-info:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.07);
}

.important-info h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.important-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  color: var(--secondary-text);
}

/* Page Section */
.page-section {
  padding: 4rem 1rem;
}

.page-title {
  font-size: 2.5rem;
  font-weight: 500;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(to right, var(--primary-text), var(--primary-dark));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.page-description {
  text-align: center;
  color: var(--secondary-text);
  max-width: 800px;
  margin: 0 auto 3rem;
}

.content-card {
  background-color: white;
  border-radius: var(--radius);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  padding: 2rem;
  margin-bottom: 2rem;
  border: 1px solid rgba(100, 116, 139, 0.05);
}

.card-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.info-block {
  margin-bottom: 2rem;
}

.subcard-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.list-info, .list-directory {
  list-style-position: inside;
  margin-bottom: 1rem;
  padding-left: 1.25rem;
}

.list-info li, .list-directory li {
  margin-bottom: 0.5rem;
}

.accent-link {
  color: var(--primary-dark);
}

.accent-link:hover {
  text-decoration: underline;
}

.alert-box {
  background-color: #fef2f2;
  border-left: 4px solid #ef4444;
  padding: 1rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-top: 1rem;
}

.double-column {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.hospice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.hospice-card {
  border: 1px solid rgba(100, 116, 139, 0.1);
  border-radius: var(--radius);
  padding: 1.5rem;
  background-color: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.hospice-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.07);
}

.hospice-name {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.hospice-info p {
  margin-bottom: 0.5rem;
}

.directory-link-box {
  background-color: white;
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 2rem;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.external-link {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-dark);
}

.button-center {
  text-align: center;
  margin-top: 2rem;
}

/* Contact Block */
.contact-card {
  background-color: var(--primary-light);
  border-radius: var(--radius);
  padding: 2rem;
  margin-bottom: 2rem;
  border: 1px solid rgba(100, 116, 139, 0.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.contact-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.contact-text {
  margin-bottom: 1rem;
}

/* Buttons */
.primary-button {
  display: inline-flex;
  align-items: center;
  background-color: var(--primary-dark);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.primary-button:hover {
  background-color: rgba(37, 99, 235, 0.9);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.3);
  text-decoration: none;
}

/* Footer */
.footer {
  background-color: var(--primary-light);
  padding: 2rem 0;
  margin-top: auto;
}

.footer-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-info {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.footer-logo {
  height: 3rem;
  max-width: 60px;
  object-fit: contain;
}

.footer-title {
  font-size: 1.125rem;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.footer-desc {
  font-size: 0.875rem;
  color: var(--secondary-text);
}

.footer-heading {
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  font-size: 0.875rem;
  color: var(--secondary-text);
}

.footer-links a:hover {
  color: var(--primary-dark);
}

.footer-contact-info {
  font-size: 0.875rem;
  color: var(--secondary-text);
  margin-bottom: 0.5rem;
}

.footer-bottom {
  border-top: 1px solid rgba(100, 116, 139, 0.1);
  padding-top: 1.5rem;
}

.copyright {
  font-size: 0.875rem;
  color: var(--secondary-text);
  text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav {
    display: none;
    position: absolute;
    top: 5rem;
    left: 0;
    right: 0;
    background-color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 1rem;
    z-index: 50;
  }
  
  .nav.active {
    display: block;
  }
  
  .nav-list {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .dropdown-menu {
    position: static;
    display: block;
    box-shadow: none;
    border: none;
    padding: 0.5rem 0 0.5rem 1rem;
  }
  
  .mobile-menu-button {
    display: flex;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero-text, .hero-note {
    font-size: 1rem;
  }
  
  .section-title, .card-title, .page-title {
    font-size: 1.5rem;
  }
}
