/* ===== styles.css ===== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: #f5f5f5;
  color: #111;
}

a {
  text-decoration: none;
  color: inherit;
}

/* HEADER */
.site-header {
  background-color: #ffffff;
  border-bottom: 1px solid #e5e5e5;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  font-size: 22px;
  line-height: 1.2;
}

.brand-title {
  letter-spacing: 0.25em;
  font-weight: 700;
  color: #0057a6;
  text-transform: uppercase;
}

.brand-subtitle {
  font-size: 12px;
  color: #444444;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 24px;
  align-items: center;
}

.main-nav a {
  font-size: 14px;
  color: #111111;
}

.main-nav a:hover {
  text-decoration: underline;
}

.main-nav .login-btn {
  padding: 8px 18px;
  border-radius: 999px;
  background-color: #ffcc00;
  color: #000000;
  font-weight: 600;
  border: 1px solid #111111;
  text-decoration: none;
}

.main-nav .login-btn:hover {
  filter: brightness(1.05);
}

/* LAYOUT */
.page-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

/* HOME – HERO IMAGE */
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px 120px;
  background-color: #f5f5f5;
}

.hero-image-wrapper {
  width: 460px;
  max-width: 90vw;
  aspect-ratio: 4 / 3;
  border-radius: 50%;
  overflow: hidden;
  background-color: #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ministerio-image {
  width: 900px;
  margin: 0 auto;
  display: block;
}

/* CONTACT / FOOTER AREA */
.contact-section {
  background-color: #222222;
  color: #ffffff;
  padding: 60px 20px 30px;
  text-align: center;
}

.contact-card {
  max-width: 420px;
  margin: 0 auto 30px;
}

.contact-logo {
  margin-bottom: 18px;
}

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

.contact-name {
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.contact-details {
  font-size: 13px;
  line-height: 1.6;
}

.footer-copy {
  font-size: 12px;
  text-align: left;
  max-width: 980px;
  margin: 0 auto;
  opacity: 0.8;
}

/* INNER PAGES (LEGAL / PRIVACY) */
.inner-main {
  padding: 40px 40px 80px;
  background-color: #ffffff;
}

.inner-container {
  max-width: 980px;
  margin: 0 auto;
  padding-bottom: 80px;
  font-size: 14px;
  line-height: 1.7;
  text-align: justify;
}

.inner-title {
  font-size: 22px;
  color: #e62727;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.inner-container h2 {
  margin-top: 18px;
  margin-bottom: 6px;
  font-size: 15px;
  font-weight: 700;
}

.inner-container p {
  margin-bottom: 8px;
}

/* Small responsive tweak */
@media (max-width: 640px) {
  .site-header {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
  .main-nav ul {
    gap: 16px;
    flex-wrap: wrap;
  }
}

/*BUTTON LOGIN*/
.btn-login {
    background-color: #000000;      
    color: #D4AF37;             
    font-weight: 700;              
    font-size: 18px;
    padding: 10px 28px;
    border: none;
    border-radius: 40px;        
    cursor: pointer;
    transition: 0.2s ease-in-out;
    letter-spacing: 1px;
}

.btn-login:hover {
    background-color: #111111;
    transform: scale(1.03);
}


