/* ===== CSS VARIABLES ===== */
:root {
  --gold: #C9960C;
  --gold-light: #e0a80d;
  --dark: #0B1320;
  --dark2: #111B2D;
  --cream: #FAF8F3;
  --warm: #F3EFE6;
  --text: #1C1713;
  --text2: #5C5347;
  --text3: #9C9080;
  --border: rgba(0, 0, 0, 0.1);
  --shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.14);
  --radius: 12px;
  --radius-lg: 20px;
}
/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont,
               'Segoe UI', Arial, sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
img {
  max-width: 100%;
}

/* ===== SHARED HELPERS ===== */
.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.section-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 12px;
}
.gold-line {
  width: 48px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin-bottom: 24px;
}
.gold-text {
  color: var(--gold);
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9);
}
/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.25s;
  letter-spacing: 0.2px;
}
.btn-gold {
  background: var(--gold);
  color: var(--dark);
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201, 150, 12, 0.35);
}
.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.4);
}
.btn-outline:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
}
.btn-outline-dark {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--border);
}
.btn-outline-dark:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ===== NAVBAR ===== */
.navbar {
  background: var(--dark);
  height: 80px;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(201, 150, 12, 0.2);
}
.nav-container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-log {
  display: flex;
  align-items: center;
   gap: 10px;
   /* height: 100%; */
}
.logo-ross {
  width: 36px;
  height: 36px;
  overflow: hidden;
  /* background: var(--gold); */
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  /* font-size: 18px; */
  /* color: var(--dark); */
  /* font-weight: 700; */
}
.logo-cross {
  width: 36;
  height: 36;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  
}
.logo-text {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.logo-subtitle {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.4);
  display: block;
  margin-top: 1px;
}
.nav-links {
  display: flex;
  gap: 4px;
}
.nav-links a {
  padding: 7px 14px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.2s;
}
.nav-links a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}
.nav-links a.active {
  background: var(--gold);
  color: var(--dark);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}


/* ===== LANGUAGE TOGGLE ===== */
.lang-toggle {
  display: flex;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  overflow: hidden;
}

.lang-btn {
  padding: 5px 12px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.6);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s;
}

.lang-btn.active {
  background: var(--gold);
  color: var(--dark);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}

/* ===== HERO ===== */
/* IMAGES PLACE HERE */

    .hero {
  background-color: rgba(0, 0, 0, 0.10);
  background-image: url(../images/St.jorg.jpg);
  background-size: cover;
  background-position: center top;
  background-blend-mode: overlay;
  min-height: 560px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

 /* LOGO CROSS IMGE */

.logo-cross img {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  object-fit: cover;
}

.nav-brand-text {
  display: flex;
  flex-direction: column;
}

.logo-subtitle {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.3px;
  display: block;
}

/* Background cross decoration */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 0;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 500px;
  color: rgba(255, 255, 255, 0.02);
  line-height: 1;
  pointer-events: none;
}

/* Gold bottom line */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.hero-content {
  max-width: 1080px;
  margin: 0 auto;
  padding: 80px 24px;
  position: relative;
  z-index: 1;
}
.hero-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-tag::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}
.hero h1 {
  font-size: 42x;
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero-desc {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 520px;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ===== ABOUT ===== */
.about {
  padding: 80px 0;
  background: var(--warm);
}
.about-text {
  font-size: 16px;
  color: var(--text2);
  line-height: 1.8;
  max-width: 640px;
  margin-bottom: 40px;
}
.stats-row {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.stat h3 {
  font-size: 40px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}
.stat p {
  font-size: 13px;
  color: var(--text2);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ===== SERVICES ===== */
.services {
  padding: 80px 0;
  background: var(--cream);
}

.services-grid {
  display: flex;
  flex-direction: column;
  gap: 60px;
  margin-top: 24px;
}

.service-item {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 48px;
  align-items: center;
}

.service-item:nth-child(even) {
  grid-template-columns: 1fr 420px;
}

.service-item:nth-child(even) 
.service-img-box {
  order: 2;
}

.service-item:nth-child(even) 
.service-content {
  order: 1;
}

.service-img-box {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--warm);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-img-placeholder {
  font-size: 80px;
  opacity: 0.3;
  position: absolute;
}

.service-img-box img + 
.service-img-placeholder {
  display: none;
}

.service-content h3 {
  font-size: 26px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}

.service-content p {
  font-size: 15px;
  color: var(--text2);
  line-height: 1.8;
  margin-bottom: 24px;
}

.btn-sm {
  padding: 10px 22px;
  font-size: 13px;
}

@media (max-width: 768px) {
  .service-item,
  .service-item:nth-child(even) {
    grid-template-columns: 1fr;
  }
  .service-item:nth-child(even) 
  .service-img-box {
    order: 1;
  }
  .service-item:nth-child(even) 
  .service-content {
    order: 2;
  }
}

/* ===== SERMONS ===== */
.sermons {
  padding: 80px 0;
  background: var(--cream);
}

.sermon-filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.filter-btn {
  padding: 8px 20px;
  border: 2px solid var(--border);
  border-radius: 9px;
  background: #fff;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  font-family: inherit;
  color: var(--text);
  transition: all 0.2s;
}

.filter-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.filter-btn.active {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}

.sermon-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.sermon-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 18px;
  box-shadow: var(--shadow);
  transition: all 0.2s;
}

.sermon-card:hover {
  border-color: var(--gold);
  transform: translateX(6px);
}

.sermon-thumb {
  width: 58px;
  height: 58px;
  background: var(--dark);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 20px;
  flex-shrink: 0;
}

.sermon-info {
  flex: 1;
}

.sermon-info h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--text);
}

.sermon-info p {
  font-size: 13px;
  color: var(--text2);
  margin-bottom: 6px;
}

.sermon-tag {
  display: inline-block;
  padding: 2px 10px;
  background: rgba(201, 150, 12, 0.1);
  color: var(--gold);
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
}

.play-btn {
  width: 44px;
  height: 44px;
  background: var(--gold);
  border-radius: 50%;
  border: none;
  cursor: pointer;
  color: var(--dark);
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s;
}

.play-btn:hover {
  background: var(--gold-light);
  transform: scale(1.1);
}

/* ===== EVENTS ===== */
.events {
  padding: 80px 0;                   
  background: var(--dark);
}
.events .section-title {
  color: #fff;
}
.events-grid {
  display: grid;
  grid-template-columns: relative(2, 1fr);
  gap: 20px;
  margin-top: 8px;
  
}
.event-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 20px;
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: flex-start;
  transition: all 0.2s;
  word-wrap: break-word;
  overflow: hidden;
  
}
.event-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(201, 150, 12, 0.3);
}
.event-date {
  background: var(--gold);
  color: var(--dark);
  border-radius: 10px;
  padding: 10px 14px;
  text-align: center;
  min-width: 58px;
  flex-shrink: 0;
}
.date-day {
  display: block;
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
}
.date-month {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 3px;
}
.event-info h3 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
.event-info p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
  margin-bottom: 8px;
}
.event-time {
  font-size: 12px;
  color: var(--gold);
  font-weight: 600;
}

/* ===== GIVE METHODS ===== */
.give {
  padding: 80px 0;
  background: var(--warm);
}

.give-desc {
  font-size: 16px;
  color: var(--text2);
  max-width: 560px;
  margin-bottom: 40px;
  line-height: 1.7;
}

.give-methods-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.give-method-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all 0.25s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.give-method-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}

.give-icon {
  font-size: 40px;
}

.give-method-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
}

.give-method-card p {
  font-size: 13px;
  color: var(--text2);
  line-height: 1.6;
}

.give-info-box {
  background: var(--warm);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 16px;
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  width: 100%;
  text-align: center;
}

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

@media (max-width: 480px) {
  .give-methods-grid {
    grid-template-columns: 1fr;
  }
}


/* ===== GIVE ===== */
/* .give {
  padding: 80px 0;
  background: var(--warm);
  text-align: center;
}
.give-desc {
  font-size: 16px;
  color: var(--text2);
  max-width: 520px;
  margin: 0 auto 32px;
  line-height: 1.7;
}
.give-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
} */
/* ===== CONTACT ===== */
.contact {
  padding: 80px 0;
  background: var(--cream);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
  align-items: start;
  margin-top: 8px;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.info-item {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}
.info-item:last-child {
  border-bottom: none;
}
.info-icon {
  font-size: 22px;
  flex-shrink: 0;
  margin-top: 2px;
}
.info-item h4 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text3);
  margin-bottom: 5px;
}
.info-item p {
  font-size: 14px;
  color: var(--text);
  line-height: 1.6;
}

/* ===== CONTACT FORM ===== */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.form-group label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text2);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 11px 14px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 9px;
  font-size: 14px;
  font-family: inherit;
  color: var(--text);
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 150, 12, 0.12);
}
.form-group textarea {
  resize: vertical;
  line-height: 1.6;
}

/* ===== LANGUAGE DROPDOWN ===== */
.lang-dropdown {
  position: relative;
}

.lang-drop-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s;
}

.lang-drop-btn:hover {
  background: rgba(255,255,255,0.12);
}

.lang-arrow {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
}

.lang-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  overflow: hidden;
  min-width: 140px;
  z-index: 2000;
  border: 1px solid var(--border);
}

.lang-menu.open {
  display: block;
}

.lang-option {
  padding: 11px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background 0.15s;
}

.lang-option:hover {
  background: var(--warm);
}

.lang-option:first-child {
  border-bottom: 1px solid var(--border);
}



/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
  padding: 48px 0 24px;
  border-top: 1px solid rgba(201, 150, 12, 0.15);
}
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 24px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-brand .logo-cross {
  width: 40px;
  height: 40px;
  font-size: 20px;
}.footer-church-name {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}
.footer-tagline {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 2px;
}
.footer-social {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.social-link {
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  font-weight: 600;
  transition: all 0.2s;
}
.social-link:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark);
}
.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 20px;
}
.footer-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.2s;
}
.footer-links a:hover {
  color: #fff;
}
.footer-bottom p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.25);
  text-align: center;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {

  .nav-links {
    display: none;
    position: fixed;
    top: 66px;
    left: 0;
    width: 100%;
    background: var(--dark2);
    flex-direction: column;
    padding: 16px;
    gap: 4px;
    z-index: 999;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 12px 16px;
    font-size: 15px;
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.8);
  }

  .hamburger {
    display: flex;
  }

  .hero h1 {
    font-size: 34px;
  }

  .section-title {
    font-size: 26px;
  }

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

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-top {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 28px;
  }

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

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

  .stats-row {
    gap: 24px;
  }
}


/* ===== CALENDAR ===== */
.calendar-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.calendar-nav button {
  background: var(--gold);
  border: none;
  color: white;
  padding: 8px 16px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 18px;
}

.calendar-nav h3 {
  color: var(--gold);
  font-size: 1.4rem;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 20px;
}

.cal-day-header {
  text-align: center;
  font-weight: bold;
  color: var(--gold);
  padding: 8px;
  font-size: 0.85rem;
}

.cal-day {
  text-align: center;
  padding: 6px 2px;
  border-radius: 6px;
  font-size: 0.85rem;
  cursor: default;
  min-height: 50px;

  flex-direction: column;
  align-items: center;
  justify-content: center;
}


.eth-num {
  font-size: 0.9rem;
  font-weight: bold;
  display: block;
  color: white;
}

.eth-date {
  font-size: 0.65rem;
  color: #aaa;
  display: block;
  margin-top: 1px;
}

.cal-day.has-event {
  background: rgba(212,175,55,0.15);
  border: 1px solid var(--gold);
  cursor: pointer;
  font-weight: bold;
  color: var(--gold);
}

.cal-day.has-event:hover {
  background: var(--gold);
  color: white;
}

.cal-day.empty {
  background: transparent;
}

.cal-day .eth-date {
  font-size: 0.75rem;
  color: #aaa;
  display: block;
  margin-top: 2px;
}

.calendar-events {
  background: rgba(212,175,55,0.1);
  border-radius: 10px;
  padding: 20px;
  min-height: 60px;
}

.calendar-events h4 {
  color: var(--gold);
  margin-bottom: 10px;
}

.event-item-cal {
  padding: 8px 0;
  border-bottom: 1px solid rgba(212,175,55,0.2);
  color: white;
  font-size: 1rem;
}

.calendar-events h4 {
  color: var(--gold);
  margin-bottom: 10px;
  font-size: 1.1rem;
}





