/* ============================================= */
/*                 TEAM SECTION                  */
/* ============================================= */

.team-section {
  background: #ffffff;
  padding: 80px 0;
}

.team-box {
  width: 80%;
  margin: 0 auto;
  text-align: center;
}

.team-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 34px;
  color: #111c2e;
  margin-bottom: 50px;
}

/* GRID */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* CARD */
.team-card {
  background: #fff;
  border-radius: 16px;
  padding: 25px 20px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.08);
  transition: transform .25s ease, box-shadow .25s ease;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 34px rgba(0,0,0,0.12);
}

/* PHOTO */
.team-photo {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 18px;
}

/* NAME */
.team-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #111c2e;
  margin-bottom: 6px;
}

/* ROLE */
.team-role {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #444;
}


/* ============================================= */
/*                 RESPONSIVE                    */
/* ============================================= */

/* TABLETĂ – 2 pe rând */
@media (max-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-photo {
    height: 220px;
  }
}

/* MOBIL – 1 pe rând */
@media (max-width: 600px) {

  .team-section {
    padding: 60px 0;
  }

  .team-title {
    font-size: 26px;
    margin-bottom: 35px;
  }

  .team-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .team-card {
    padding: 22px 18px;
  }

  .team-photo {
    height: 200px;
  }
}


/* ========================================================= */
/*             PROGRAM RADIO – STACKED MINIMALIST            */
/* ========================================================= */

.program-section {
  background: #0d1421;
  padding: 100px 0;
}

.program-box {
  width: 80%;
  margin: 0 auto;
  text-align: center;
}

/* TITLU */
.program-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 36px;
  color: #ffffff;
  margin-bottom: 12px;
}

.program-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: #cfcfcf;
  margin-bottom: 45px;
}

/* STACKED CARDS (4 coloane pe desktop) */
.program-stack {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  justify-content: center;
}

/* CARD */
.program-card {
  background: #111c2e;
  border-radius: 16px;
  padding: 20px 26px;

  box-shadow: 0 18px 38px rgba(0,0,0,0.25);

  text-align: left;
  transition: all .25s ease;
}

.program-card:hover {
  background: #152038;
  box-shadow: 0 24px 48px rgba(0,0,0,0.35);
}

/* ZIUA */
.program-day {
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  margin-bottom: 20px;

  color: #ffffff;
  letter-spacing: 0.5px;
}

/* LINES */
.program-lines .line {
  display: flex;
  gap: 14px;
  margin-bottom: 12px;
  align-items: center;
}

/* ORĂ – badge minimalist */
.time {
  background: #f2a65a;
  color: #0d1421;
  padding: 5px 11px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  min-width: 60px;
  text-align: center;
}

/* TEXT */
.text {
  color: #e9e9e9;
  font-size: 15px;
  font-family: 'Inter', sans-serif;
}


/* ========================================================= */
/*                       MOBILE VERSION                      */
/* ========================================================= */

@media (max-width: 768px) {

  .program-stack {
    grid-template-columns: 1fr;  /* toate sub formă de column stack */
    gap: 20px;
  }

  .program-title {
    font-size: 28px;
  }

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

  .time {
    font-size: 12px;
    min-width: 52px;
  }

  .text {
    font-size: 14px;
  }
}


/* ========================================================= */
/*                  SHOWS SECTION (WHITE)                    */
/* ========================================================= */

.shows-section {
  background: #ffffff;
  padding: 90px 0;
}

.shows-box {
  width: 80%;
  margin: 0 auto;
  text-align: center;
}

.shows-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 36px;
  color: #111c2e;
  margin-bottom: 10px;
}

.shows-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: #444;
  margin-bottom: 50px;
}

/* GRID — 2 pe linie */
.shows-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

/* CARD */
.show-card {
  background: #f7f7f7;
  border-radius: 20px;
  padding: 32px 26px;
  text-align: left;
  box-shadow: 0 20px 45px rgba(0,0,0,0.07);
  transition: all .25s ease;
}

.show-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 55px rgba(0,0,0,0.12);
}

/* ICON */
.show-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 18px;
}

/* NAME */
.show-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  margin-bottom: 16px;
  color: #111c2e;
}

/* INFO */
.show-info {
  margin-bottom: 16px;
}

.show-info p {
  margin: 4px 0;
  color: #333;
  font-family: 'Inter', sans-serif;
}

/* DESCRIPTION */
.show-desc {
  color: #555;
  font-size: 15px;
  line-height: 1.5;
  font-family: 'Inter', sans-serif;
}



/* ========================================================= */
/*                  RESPONSIVE MOBILE                        */
/* ========================================================= */

@media (max-width: 768px) {

  .shows-title {
    font-size: 28px;
  }

  .shows-grid {
    grid-template-columns: 1fr; /* 1 per line */
    gap: 22px;
  }

  .show-card {
    padding: 26px 20px;
  }

  .show-icon {
    width: 50px;
    height: 50px;
  }

  .show-name {
    font-size: 20px;
  }
}


/* ========================================================= */
/*                   CHURCHES SECTION (WHITE)               */
/* ========================================================= */

.church-section {
  background: #ffffff;
  padding: 90px 0;
}

.church-box {
  width: 80%;
  margin: 0 auto;
  text-align: center;
}

.church-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 36px;
  color: #111c2e;
  margin-bottom: 10px;
}

.church-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: #444;
  margin-bottom: 40px;
}

/* SELECT ORAȘ — stylizat modern */
.city-select-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

.city-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  width: 260px;
  padding: 14px 18px;
  font-size: 16px;
  font-family: 'Inter', sans-serif;

  border-radius: 12px;
  border: 1px solid #ccc;
  background: #f7f7f7 url("../imgs/icons/arrow-down.svg") no-repeat right 14px center;
  background-size: 14px 14px;

  cursor: pointer;
  transition: all .25s ease;
  outline: none;
}

.city-select:hover {
  border-color: #999;
}

.city-select:focus {
  border-color: #2f55c1;
  box-shadow: 0 0 0 3px rgba(47,85,193,0.2);
}

/* GRID Biserici — 2 pe linie desktop */
.church-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 40px;
  justify-items: center;
}

/* CARD BISERICĂ */
.church-card {
  background: #f7f7f7;
  border-radius: 20px;
  padding: 28px 22px;
  width: 100%;
  max-width: 500px;
  text-align: left;
  box-shadow: 0 20px 45px rgba(0,0,0,0.07);
  transition: transform .25s ease, box-shadow .25s ease;
}

.church-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 55px rgba(0,0,0,0.12);
}

.church-photo {
  width: 100%;
  aspect-ratio: 842 / 602; /* menține forma reală a imaginii */
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 18px;
}

.church-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  margin-bottom: 14px;
  color: #111c2e;
}

.church-info p {
  margin: 4px 0;
  font-family: 'Inter', sans-serif;
  color: #333;
  font-size: 15px;
}

.church-link {
  display: inline-block;
  margin-top: 10px;
  color: #2f55c1;
  text-decoration: none;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  transition: color .25s ease, text-shadow .25s ease;
}

.church-link:hover {
  color: var(--warm1);
  text-shadow: 0 0 6px rgba(242,166,90,0.5);
  text-decoration: none;
}

/* Mesaj când nu sunt biserici */
.no-churches-msg {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  color: #666;
  margin-top: 40px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .church-title {
    font-size: 28px;
  }

  .church-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .church-card {
    padding: 24px 18px;
  }

  .church-photo {
    height: 160px;
  }
}

/* ================================ */
/*        CONTACT PAGE SECTION      */
/* ================================ */

.contact-page-section {
  width: 100%;
  background: #ffffff;
  padding: 80px 0;
}

.contact-page-box {
  width: 80%;
  margin: 0 auto;
  text-align: center;
}

.contact-page-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 38px;
  font-weight: 700;
  color: #111c2e;
  margin-bottom: 10px;
}

.contact-page-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  color: #202020;
  margin-bottom: 50px;
}

/* GRID ITEMS */
.contact-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* CARD */
.contact-item {
  background: #f7f7f7;
  border-radius: 14px;
  padding: 35px 25px;
  text-align: center;
  transition: transform .25s ease, box-shadow .25s ease;
}

.contact-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

/* ICON */
.contact-icon {
  width: 55px;
  height: 55px;
  margin-bottom: 18px;
}

/* TITLE */
.contact-item h3 {
  font-size: 20px;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  color: #111c2e;
  margin-bottom: 8px;
}

/* LINK DOAR ÎN SECȚIUNEA DE CONTACT */
.contact-page-section .contact-link {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  color: #2f55c1;
  text-decoration: none;
  transition: color .25s ease, text-shadow .25s ease;
}

.contact-page-section .contact-link:hover {
  color: #2334ac;
  text-shadow: 0 0 10px rgba(47,85,193,0.4);
}

/* ========================== */
/*           MOBILE           */
/* ========================== */
@media (max-width: 900px) {
  .contact-items {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .contact-page-title {
    font-size: 32px;
  }

  .contact-page-subtitle {
    font-size: 16px;
    margin-bottom: 40px;
  }
}

/* ===================================== */
/*           DONATIONS SECTION           */
/* ===================================== */

.donations-section {
  width: 100%;
  background: linear-gradient(180deg, #111c2e 0%, #0c1424 100%);
  padding: 80px 0;
  color: #ffffff;
}

.donations-box {
  width: 80%;
  margin: 0 auto;
  text-align: center;
}

.donations-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
}

.donations-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  color: #cccccc;
  margin-bottom: 45px;
}

/* LISTĂ VERTICALĂ */
.donations-list {
  width: 100%;
  max-width: 650px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ROW */
.donation-row {
  background: rgba(255,255,255,0.05);
  border-radius: 12px;
  padding: 18px 20px;
  border: 1px solid rgba(255,255,255,0.08);

  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;

  cursor: pointer;
  transition: background .25s ease, transform .25s ease, box-shadow .25s ease;
}

.donation-row:hover {
  background: rgba(255,255,255,0.09);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.45);
}

.donation-row-label {
  grid-column: 1 / 2;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #bbbbbb;
  text-align: left;
}

.donation-row-value {
  grid-column: 1 / 2;
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  color: #ffffff;
  font-weight: 600;
  margin-top: 3px;
  text-align: left;
}

/* COPY ICON */
.copy-icon {
  width: 26px;
  height: 26px;
  grid-column: 2 / 3;
  opacity: 0.85;
  filter: brightness(0) invert(1);
  transition: opacity .25s ease;
}

.donation-row:hover .copy-icon {
  opacity: 1;
}

/* MESSAGE */
.copy-popup {
  position: absolute;
  background: #f2a65a;
  color: #111c2e;
  padding: 6px 14px;
  border-radius: 30px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;

  box-shadow: 0 6px 20px rgba(0,0,0,0.25);

  opacity: 0;
  transform: translateY(5px);
  transition: all .25s ease-in-out;
  pointer-events: none;
  z-index: 99999;
}

.copy-popup.show {
  opacity: 1;
  transform: translateY(0);
}


/* MOBILE */
@media (max-width: 768px) {
  .donations-title {
    font-size: 30px;
  }

  .donation-row-value {
    font-size: 13px;
  }
}

