/* ==========================================================================
   Swiss Design System - Shalom Assembly of God Church
   ========================================================================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: #FAF8F5;
  color: #1C1C1C;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #1C1C1C;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  text-transform: uppercase;
}

h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  text-transform: uppercase;
  border-bottom: 2px solid #1C1C1C;
  padding-bottom: 0.5rem;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  margin-bottom: 0.75rem;
}

p {
  margin-bottom: 1.25rem;
  font-weight: 400;
  color: #1C1C1C;
}

.text-lead {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  line-height: 1.5;
  font-weight: 500;
}

a {
  color: #1C1C1C;
  text-decoration: none;
  transition: all 0.25s ease-in-out;
}

.site-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  border-left: 1.5px solid #1C1C1C;
  border-right: 1.5px solid #1C1C1C;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.swiss-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 2rem;
}

@media (max-width: 768px) {
  .swiss-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
}

.col-12 {
  grid-column: span 12;
}

.col-8 {
  grid-column: span 8;
}

.col-6 {
  grid-column: span 6;
}

.col-4 {
  grid-column: span 4;
}

.col-3 {
  grid-column: span 3;
}

.border-box {
  border: 1.5px solid #1C1C1C;
  padding: 2.5rem;
  background-color: #FAF8F5;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.border-box:hover {
  background-color: #f7f4f0;
  transform: translateY(-4px);
  box-shadow: 4px 4px 0px #1C1C1C;
}

.border-top-line {
  border-top: 1.5px solid #1C1C1C;
  padding-top: 2rem;
}

.border-bottom-line {
  border-bottom: 1.5px solid #1C1C1C;
  padding-bottom: 2rem;
}

.site-header {
  border-bottom: 1.5px solid #1C1C1C;
  padding: 1.5rem 0;
}

.site-header .nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 768px) {
  .site-header .nav-container {
    flex-direction: column;
    gap: 1rem;
  }
}

.site-header .logo {
  font-weight: 900;
  font-size: 1.5rem;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #1C1C1C;
}

.site-header .logo .logo-symbol {
  background-color: #D62229;
  color: #FAF8F5;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 900;
}

.site-header .nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

@media (max-width: 480px) {
  .site-header .nav-links {
    gap: 1rem;
  }
}

.site-header .nav-links a {
  text-transform: uppercase;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 0.25rem 0;
  position: relative;
}

.site-header .nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #D62229;
  transition: width 0.25s ease;
}

.site-header .nav-links a:hover {
  color: #D62229;
}

.site-header .nav-links a:hover::after {
  width: 100%;
}

.site-header .nav-links a.active {
  color: #D62229;
}

.site-header .nav-links a.active::after {
  width: 100%;
}

.hero-block {
  padding: 4rem 0;
  border-bottom: 1.5px solid #1C1C1C;
}

.hero-block .hero-tag {
  color: #D62229;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.15em;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  display: block;
}

.hero-block .hero-headline {
  margin-bottom: 2rem;
  font-weight: 900;
}

.hero-block .hero-description {
  color: #555555;
  max-width: 800px;
  margin-bottom: 2.5rem;
}

.btn-swiss {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background-color: #1C1C1C;
  color: #FAF8F5;
  padding: 0.85rem 2rem;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  border: 1.5px solid #1C1C1C;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.btn-swiss:hover {
  background-color: #D62229;
  border-color: #D62229;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(214, 34, 41, 0.2);
}

.btn-swiss.btn-secondary {
  background-color: transparent;
  color: #1C1C1C;
}

.btn-swiss.btn-secondary:hover {
  background-color: #1C1C1C;
  color: #FAF8F5;
  border-color: #1C1C1C;
  box-shadow: none;
}

.swiss-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.swiss-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.swiss-form label {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: #1C1C1C;
}

.swiss-form input, .swiss-form textarea {
  background-color: #FAF8F5;
  border: 1.5px solid #1C1C1C;
  padding: 0.85rem 1rem;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 1rem;
  color: #1C1C1C;
  transition: all 0.25s ease;
}

.swiss-form input:focus, .swiss-form textarea:focus {
  outline: none;
  border-color: #D62229;
  box-shadow: 4px 4px 0px rgba(214, 34, 41, 0.1);
}

.swiss-form input:user-valid:not(:placeholder-shown), .swiss-form textarea:user-valid:not(:placeholder-shown) {
  border-color: #2b8a3e;
}

.swiss-form textarea {
  resize: vertical;
  min-height: 120px;
}

.section-padding {
  padding: 4.5rem 0;
}

.badge-swiss {
  display: inline-block;
  background-color: rgba(214, 34, 41, 0.1);
  color: #D62229;
  padding: 0.25rem 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.pastor-profile {
  display: flex;
  gap: 3rem;
  align-items: center;
}

@media (max-width: 768px) {
  .pastor-profile {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
}

.pastor-profile .pastor-avatar-box {
  flex-shrink: 0;
  width: 150px;
  height: 150px;
  border: 1.5px solid #1C1C1C;
  background-color: #D62229;
  color: #FAF8F5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 3rem;
  text-transform: uppercase;
  box-shadow: 4px 4px 0px #1C1C1C;
}

.pastor-profile .pastor-info h3 {
  font-size: 1.8rem;
  margin-bottom: 0.25rem;
}

.pastor-profile .pastor-info .pastor-role {
  font-weight: 700;
  color: #D62229;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}

.timeline {
  margin: 2rem 0;
  border-left: 2px solid #1C1C1C;
  padding-left: 2rem;
  position: relative;
}

.timeline .timeline-item {
  position: relative;
  margin-bottom: 2.5rem;
}

.timeline .timeline-item::before {
  content: '';
  position: absolute;
  left: calc(-2rem - 6px);
  top: 6px;
  width: 10px;
  height: 10px;
  background-color: #D62229;
  border: 2px solid #1C1C1C;
  border-radius: 50%;
}

.timeline .timeline-year {
  font-weight: 900;
  font-size: 1.4rem;
  color: #D62229;
  margin-bottom: 0.25rem;
}

.timeline .timeline-title {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.map-box {
  background-color: #FAF8F5;
  border: 1.5px solid #1C1C1C;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.map-box .map-graphic {
  height: 250px;
  background-color: #EAE5DE;
  border: 1.5px solid #1C1C1C;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.map-box .map-graphic .grid-lines {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: 20px 20px;
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.03) 1px, transparent 1px), linear-gradient(to bottom, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
}

.site-footer {
  border-top: 1.5px solid #1C1C1C;
  padding: 4rem 0 2rem 0;
  margin-top: auto;
}

.site-footer .footer-copyright {
  margin-top: 3rem;
  border-top: 1.5px solid #1C1C1C;
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: #555555;
}

@media (max-width: 768px) {
  .site-footer .footer-copyright {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

/*# sourceMappingURL=main.css.map */