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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Work Sans', sans-serif;
  background-color: #f8f9fa;
  color: #1a2e3a;
  line-height: 1.6;
}

/* GLOBAL CLASSES */
.min-h-screen {
  min-height: 100vh;
}

.bg-background {
  background-color: #f8f9fa;
}

.container {
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 24px;
}

/* HERO SECTION */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #1a2f43 0%, #1f3a50 100%);
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.4;
  background-image: 
    linear-gradient(45deg, transparent 30%, rgba(223, 189, 104, 0.08) 30%, rgba(223, 189, 104, 0.08) 70%, transparent 70%),
    linear-gradient(-45deg, transparent 30%, rgba(184, 48, 41, 0.05) 30%, rgba(184, 48, 41, 0.05) 70%, transparent 70%);
  background-size: 60px 60px;
  animation: slidePattern 20s linear infinite;
}

@keyframes slidePattern {
  0% { background-position: 0 0; }
  100% { background-position: 60px 60px; }
}

.hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-inner {
  text-align: center;
  color: white;
  animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.logo {
  width: 192px;
  height: auto;
  margin: 0 auto 32px;
  display: block;
  animation: fadeInUp 1s ease-out 0.2s both;
}

.badge {
  display: inline-block;
  padding: 8px 24px;
  border-radius: 9999px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 32px;
  background: rgba(223, 189, 104, 0.15);
  border: 1px solid #dfbd68;
  color: #dfbd68;
  animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 8vw, 4rem);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 24px;
  animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-title strong {
  display: block;
  font-weight: 700;
  margin-top: 8px;
  color: #dfbd68;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 300;
  max-width: 42rem;
  margin: 0 auto 48px;
  opacity: 0.9;
  line-height: 1.6;
  animation: fadeInUp 1s ease-out 0.8s both;
}

/* BRIDGE GRID */
.bridge-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
  max-width: 42rem;
  margin: 0 auto;
  animation: fadeInUp 1s ease-out 1s both;
}

@media (max-width: 768px) {
  .bridge-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
}

.bridge-box {
  text-align: center;
  padding: 16px 8px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: default;
  transition: all 0.3s ease;
}

.bridge-box:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.bridge-letter {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  display: block;
  color: #dfbd68;
}

.bridge-word {
  display: block;
  font-size: clamp(0.75rem, 2vw, 0.875rem);
  font-weight: 600;
  uppercase;
  letter-spacing: 0.05em;
  margin-top: 4px;
  color: #dfbd68;
}

.bridge-desc {
  opacity: 0.8;
  font-size: 0.75rem;
  display: block;
  margin-top: 4px;
}

/* MAIN CONTENT */
.main-content {
  padding: 128px 0;
}

/* RESOURCES SECTION */
.resources-header {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 64px;
}

.resources-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.875rem, 5vw, 2.25rem);
  font-weight: 600;
  margin-bottom: 24px;
  color: #1a2f43;
}

.resources-header p {
  font-size: 1.125rem;
  color: #6b7280;
  line-height: 1.6;
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-bottom: 96px;
}

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

/* RESOURCE CARD */
.resource-card {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 32px 40px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.resource-card:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.card-accent-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #1a2f43, #dfbd68);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.resource-card:hover .card-accent-bar {
  transform: scaleX(1);
}

.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 24px;
  background: #1a2f43;
  box-shadow: 0 10px 20px rgba(26, 47, 67, 0.2);
}

.card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: #1a2f43;
}

.card-status {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 9999px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 16px;
  background: rgba(223, 189, 104, 0.15);
  color: #8b7a3e;
}

.card-description {
  color: #6b7280;
  margin-bottom: 24px;
  line-height: 1.6;
}

.additional-content {
  margin-bottom: 16px;
}

.additional-content strong {
  display: block;
  color: #1a2e3a;
  margin-bottom: 4px;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  color: #1a2f43;
  text-decoration: none;
  transition: all 0.3s ease;
}

.card-link:hover {
  color: #dfbd68;
  gap: 12px;
}

.card-link svg {
  stroke-width: 2;
}

/* ABOUT SECTION */
.about-section {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 24px;
  padding: 32px 48px;
  margin-bottom: 96px;
}

@media (max-width: 1024px) {
  .about-section {
    padding: 48px 32px;
  }
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.about-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 24px;
  color: #1a2f43;
}

.about-text p {
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 24px;
}

.credentials {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.credential-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  border-radius: 8px;
  background: #f8f9fa;
}

.credential-icon {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  background: #1a2f43;
  color: white;
  flex-shrink: 0;
}

.credential-item strong {
  display: block;
  color: #1a2e3a;
  font-size: 0.95rem;
}

.credential-item span {
  display: block;
  font-size: 0.875rem;
  color: #6b7280;
  margin-top: 2px;
}

/* SOCIAL SECTION */
.social-section {
  text-align: center;
  padding: 64px 0;
}

.social-section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 32px;
  color: #1a2f43;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

@media (max-width: 768px) {
  .social-links {
    gap: 12px;
  }
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  background: white;
  border: 2px solid #e5e7eb;
  border-radius: 9999px;
  font-weight: 500;
  color: #1a2f43;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  border-color: #1a2f43;
  background: #1a2f43;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(26, 47, 67, 0.2);
}

.social-link svg {
  width: 20px;
  height: 20px;
}

/* FOOTER */
.footer {
  background: #1a2f43;
  color: white;
  text-align: center;
  padding: 48px 24px;
  margin-top: 96px;
  opacity: 0.8;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }

  .hero-inner {
    padding: 0 16px;
  }

  .about-section {
    padding: 32px 24px;
  }

  .resources-header h2,
  .social-section h2 {
    font-size: 1.875rem;
  }

  .social-links {
    flex-direction: column;
    align-items: center;
  }

  .social-link {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .bridge-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .resource-card {
    padding: 24px 20px;
  }

  .about-section {
    padding: 24px 16px;
  }

  .main-content {
    padding: 64px 0;
  }
}
