
/************************************************************************************
ST JAMES JUNE 2026
*************************************************************************************/
:root{
  --navy:#071b45;
  --navy2:#0d2d64;
  --gold:#c99525;
  --gold2:#f3d16b;
  --cream:#fff7e8;
  --soft:#f8efe0;
  --white:#ffffff;
}

*{box-sizing:border-box}

body{
  margin:0;
  font-family: Georgia, "Times New Roman", serif;
  color:var(--navy);
  background:
    radial-gradient(circle at top right, rgba(243,209,107,.45), transparent 30%),
    linear-gradient(180deg, var(--cream), var(--soft));
}

.site-header{
  background:linear-gradient(135deg,var(--navy),var(--navy2));
  border-bottom:5px solid var(--gold);
  color:white;
  position:sticky;
  top:0;
  z-index:50;
}

.header-inner{
  max-width:1220px;
  margin:auto;
  padding:14px 24px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}

.brand{
  font-size:1.45rem;
  font-weight:bold;
  letter-spacing:.04em;
  text-decoration:none;
  color:white;
}

.brand span{
  display:block;
  font-size:.78rem;
  font-family:Arial, sans-serif;
  letter-spacing:.18em;
  color:var(--gold2);
  margin-top:2px;
}

.menu-toggle{
  display:none;
}

.menu-button{
  display:none;
  cursor:pointer;
  padding:10px 14px;
  border:1px solid rgba(255,255,255,.5);
  border-radius:8px;
  font-family:Arial, sans-serif;
  font-weight:bold;
}

nav ul{
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  gap:6px;
  align-items:center;
}

nav a{
  color:white;
  text-decoration:none;
  font-family:Arial, sans-serif;
  font-size:.92rem;
  font-weight:bold;
  letter-spacing:.04em;
  padding:10px 12px;
  border-radius:999px;
  display:block;
}

nav a:hover,
nav a.active{
  background:var(--gold);
  color:var(--navy);
}

.hero{
  text-align:center;
  padding:46px 22px 26px;
}

.hero h1{
  margin:0;
  font-size:clamp(2.2rem,5vw,4.5rem);
  line-height:1;
  color:var(--navy);
}

.hero .script{
  color:#9b6b08;
  font-style:italic;
  font-weight:normal;
}

.hero p{
  max-width:760px;
  margin:18px auto 0;
  font-family:Arial, sans-serif;
  font-size:1.08rem;
  line-height:1.55;
}

.flyer-section{
  max-width:1320px;
  margin:0 auto 50px;
  padding:0 24px 34px;
}

.flyer-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:28px;
  align-items:start;
}

.flyer-card{
  background:white;
  border:2px solid rgba(201,149,37,.55);
  border-radius:22px;
  padding:14px;
  box-shadow:0 18px 45px rgba(7,27,69,.18);
}

.flyer-card h2{
  margin:0 0 12px;
  text-align:center;
  font-size:1.4rem;
  color:var(--navy);
}

.flyer-card img{
  width:100%;
  height:auto;
  display:block;
  border-radius:14px;
}

.info-band{
  background:linear-gradient(135deg,var(--navy),#06122d);
  color:white;
  border-top:4px solid var(--gold);
  border-bottom:4px solid var(--gold);
  padding:28px 24px;
  text-align:center;
  font-family:Arial, sans-serif;
}

.info-band strong{
  color:var(--gold2);
}

.footer{
  text-align:center;
  padding:26px 18px 36px;
  font-family:Arial, sans-serif;
  color:var(--navy);
}

@media (max-width:800px){
  .header-inner{
    align-items:flex-start;
  }

  .menu-button{
    display:block;
    color:white;
  }

  nav{
    width:100%;
  }

  nav ul{
    display:none;
    flex-direction:column;
    align-items:stretch;
    background:#061637;
    margin-top:14px;
    border-radius:12px;
    overflow:hidden;
  }

  .menu-toggle:checked ~ nav ul{
    display:flex;
  }

  nav a{
    border-radius:0;
    padding:14px 16px;
    border-top:1px solid rgba(255,255,255,.12);
  }

  .header-inner{
    flex-wrap:wrap;
  }

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

  .anniversary{
    order:1;
  }

  .prayer{
    order:2;
  }

  .hero{
    padding-top:32px;
  }
}


.single-flyer-section{
  max-width:1220px;
}

.single-flyer-wrap{
  display:grid;
  grid-template-columns:minmax(320px, 560px) 1fr;
  gap:32px;
  align-items:start;
}

.featured-flyer img{
  width:100%;
  height:auto;
}

.worship-info-card{
  background:#fff;
  border:2px solid rgba(201,149,37,.55);
  border-radius:22px;
  padding:28px;
  box-shadow:0 18px 45px rgba(7,27,69,.14);
}

.worship-info-card h2{
  margin-top:0;
  color:var(--navy);
  font-size:2rem;
}

.worship-info-card p{
  font-family:Arial, sans-serif;
  line-height:1.6;
  font-size:1.05rem;
}

.worship-highlight{
  background:linear-gradient(135deg,var(--navy),var(--navy2));
  color:#fff;
  border-left:6px solid var(--gold);
  border-radius:14px;
  padding:18px 20px;
  margin:16px 0;
  font-family:Arial, sans-serif;
}

.worship-highlight strong,
.worship-highlight span{
  display:block;
}

.worship-highlight strong{
  color:var(--gold2);
  font-size:.95rem;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.worship-highlight span{
  font-size:1.35rem;
  font-weight:bold;
  margin-top:5px;
}

.small-note{
  color:#6b5b3b;
  font-style:italic;
}

@media (max-width:800px){
  .single-flyer-wrap{
    grid-template-columns:1fr;
  }

  .featured-flyer{
    order:1;
  }

  .worship-info-card{
    order:2;
  }
}


.church-life-section{
  max-width:1220px;
  margin:0 auto 36px;
  padding:0 24px;
}

.church-life-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:22px;
}

.life-card{
  background:#fff;
  border:2px solid rgba(201,149,37,.55);
  border-radius:22px;
  padding:26px;
  box-shadow:0 18px 45px rgba(7,27,69,.12);
}

.life-card h2{
  margin:0 0 12px;
  color:var(--navy);
}

.life-card p{
  font-family:Arial, sans-serif;
  line-height:1.55;
}

.life-time{
  margin-top:18px;
  padding-top:14px;
  border-top:1px solid rgba(201,149,37,.55);
  font-family:Arial, sans-serif;
  font-weight:bold;
  color:#9b6b08;
}

@media (max-width:900px){
  .church-life-grid{
    grid-template-columns:1fr;
  }
}



.history-section{
  max-width:1220px;
  margin:0 auto 42px;
  padding:0 24px;
}

.history-wrap{
  display:grid;
  grid-template-columns:1fr minmax(320px, 520px);
  gap:32px;
  align-items:start;
}

.history-card{
  background:#fff;
  border:2px solid rgba(201,149,37,.55);
  border-radius:22px;
  padding:34px;
  box-shadow:0 18px 45px rgba(7,27,69,.12);
}

.history-card h2{
  margin-top:0;
  color:var(--navy);
  font-size:2rem;
}

.history-card p{
  font-family:Arial, sans-serif;
  font-size:1.08rem;
  line-height:1.65;
}

.history-quote{
  margin-top:24px;
  padding:22px;
  background:linear-gradient(135deg,var(--navy),var(--navy2));
  color:var(--gold2);
  border-radius:16px;
  font-size:1.45rem;
  font-style:italic;
  text-align:center;
}

.history-flyer img{
  width:100%;
  height:auto;
}

.history-timeline{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:22px;
}

@media (max-width:900px){
  .history-wrap,
  .history-timeline{
    grid-template-columns:1fr;
  }

  .history-flyer{
    order:-1;
  }
}



.weddings-section{
  max-width:1220px;
  margin:0 auto 42px;
  padding:0 24px;
}

.weddings-wrap{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:32px;
  align-items:start;
}

.weddings-card{
  background:#fff;
  border:2px solid rgba(201,149,37,.55);
  border-radius:22px;
  padding:34px;
  box-shadow:0 18px 45px rgba(7,27,69,.12);
}

.weddings-card h2{
  margin-top:0;
  color:var(--navy);
  font-size:2rem;
}

.weddings-card p{
  font-family:Arial, sans-serif;
  font-size:1.08rem;
  line-height:1.65;
}

.wedding-highlight{
  margin-top:24px;
  padding:22px;
  background:linear-gradient(135deg,var(--navy),var(--navy2));
  color:#fff;
  border-left:6px solid var(--gold);
  border-radius:16px;
  font-family:Arial, sans-serif;
}

.wedding-highlight strong,
.wedding-highlight span{
  display:block;
}

.wedding-highlight strong{
  color:var(--gold2);
  text-transform:uppercase;
  letter-spacing:.08em;
  font-size:.95rem;
}

.wedding-highlight span{
  font-size:1.35rem;
  font-weight:bold;
  margin-top:5px;
}

.button-link{
  display:inline-block;
  background:var(--gold);
  color:var(--navy);
  padding:13px 20px;
  border-radius:999px;
  font-family:Arial, sans-serif;
  font-weight:bold;
  text-decoration:none;
}

.button-link:hover{
  background:var(--gold2);
}

@media (max-width:900px){
  .weddings-wrap{
    grid-template-columns:1fr;
  }
}



.photos-section{
  max-width:1220px;
  margin:0 auto 42px;
  padding:0 24px;
}

.photo-intro-card{
  background:#fff;
  border:2px solid rgba(201,149,37,.55);
  border-radius:22px;
  padding:30px;
  margin-bottom:28px;
  text-align:center;
  box-shadow:0 18px 45px rgba(7,27,69,.12);
}

.photo-intro-card h2{
  margin-top:0;
  color:var(--navy);
  font-size:2rem;
}

.photo-intro-card p{
  max-width:760px;
  margin:0 auto;
  font-family:Arial, sans-serif;
  font-size:1.08rem;
  line-height:1.6;
}

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

.photo-tile{
  display:block;
  background:#fff;
  border:2px solid rgba(201,149,37,.55);
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 16px 36px rgba(7,27,69,.12);
}

.photo-tile img{
  width:100%;
  height:260px;
  object-fit:cover;
  display:block;
  transition:transform .25s ease;
}

.photo-tile:hover img{
  transform:scale(1.04);
}

@media (max-width:900px){
  .photo-gallery-grid{
    grid-template-columns:repeat(2, 1fr);
  }
}

@media (max-width:600px){
  .photo-gallery-grid{
    grid-template-columns:1fr;
  }

  .photo-tile img{
    height:auto;
  }
}



.contact-section{
  max-width:1220px;
  margin:0 auto 40px;
  padding:0 24px;
}

.contact-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:30px;
}

.contact-card{
  background:#fff;
  border:2px solid rgba(201,149,37,.55);
  border-radius:22px;
  padding:32px;
  box-shadow:0 18px 45px rgba(7,27,69,.12);
}

.contact-card h2{
  margin-top:0;
  color:var(--navy);
}

.contact-item{
  margin-bottom:22px;
}

.contact-item strong{
  display:block;
  color:#9b6b08;
  margin-bottom:6px;
  text-transform:uppercase;
  letter-spacing:.06em;
  font-size:.9rem;
}

.contact-item span{
  font-family:Arial, sans-serif;
  line-height:1.6;
}

.contact-form{
  display:flex;
  flex-direction:column;
  gap:14px;
}

.contact-form input,
.contact-form textarea{
  width:100%;
  padding:14px;
  border:1px solid #d8c8a4;
  border-radius:10px;
  font-family:Arial, sans-serif;
  font-size:1rem;
}

.contact-form textarea{
  resize:vertical;
}

.contact-form button{
  background:linear-gradient(135deg,var(--navy),var(--navy2));
  color:white;
  border:none;
  border-radius:999px;
  padding:15px 24px;
  font-weight:bold;
  font-size:1rem;
  cursor:pointer;
}

.contact-form button:hover{
  background:var(--gold);
  color:var(--navy);
}

.map-section{
  max-width:1220px;
  margin:0 auto 50px;
  padding:0 24px;
}

.map-card{
  background:#fff;
  border:2px solid rgba(201,149,37,.55);
  border-radius:22px;
  padding:30px;
  box-shadow:0 18px 45px rgba(7,27,69,.12);
}

.map-card h2{
  margin-top:0;
  text-align:center;
  color:var(--navy);
}

.map-wrap{
  border-radius:16px;
  overflow:hidden;
}

.map-wrap iframe{
  width:100%;
  height:450px;
  border:0;
}

@media (max-width:900px){

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

  .map-wrap iframe{
    height:350px;
  }

}



.photo-viewer-section{
  max-width:1100px;
  margin:0 auto 50px;
  padding:0 24px;
}

.photo-viewer-card{
  background:#fff;
  border:2px solid rgba(201,149,37,.55);
  border-radius:22px;
  padding:18px;
  box-shadow:0 18px 45px rgba(7,27,69,.12);
  text-align:center;
}

.photo-viewer-card img{
  max-width:100%;
  height:auto;
  display:block;
  margin:0 auto;
  border-radius:14px;
}

.photo-viewer-nav{
  display:flex;
  justify-content:center;
  gap:14px;
  flex-wrap:wrap;
  margin-top:22px;
}

.photo-viewer-nav a{
  background:linear-gradient(135deg,var(--navy),var(--navy2));
  color:#fff;
  text-decoration:none;
  padding:12px 18px;
  border-radius:999px;
  font-family:Arial, sans-serif;
  font-weight:bold;
}

.photo-viewer-nav a:hover{
  background:var(--gold);
  color:var(--navy);
}




```css
.anniversary-event,
.theme-section,
.speaker-section,
.invitation-section{
    max-width:1200px;
    margin:0 auto 30px;
    padding:0 24px;
}

.event-banner{
    display:grid;
    grid-template-columns:180px 1fr;
    gap:30px;
    background:#fff;
    border:2px solid rgba(201,149,37,.55);
    border-radius:24px;
    padding:30px;
    box-shadow:0 18px 45px rgba(7,27,69,.12);
}

.event-date{
    background:linear-gradient(135deg,#071b45,#0d2d64);
    color:#fff;
    border-radius:20px;
    text-align:center;
    padding:20px;
}

.event-date .month{
    color:#f3d16b;
    font-weight:bold;
    letter-spacing:.15em;
}

.event-date .day{
    font-size:5rem;
    line-height:1;
    font-weight:bold;
}

.event-date .year{
    font-size:1.3rem;
}

.event-details h2{
    margin-top:0;
    color:#071b45;
}

.event-subtitle{
    color:#9b6b08;
    font-weight:bold;
    font-size:1.15rem;
}

.event-time{
    margin-top:20px;
    display:inline-block;
    background:#071b45;
    color:#fff;
    padding:12px 18px;
    border-radius:999px;
    font-weight:bold;
}

.theme-card,
.speaker-card,
.invitation-card{
    background:#fff;
    border:2px solid rgba(201,149,37,.55);
    border-radius:24px;
    padding:30px;
    box-shadow:0 18px 45px rgba(7,27,69,.12);
    text-align:center;
}

.theme-text{
    font-size:2.2rem;
    color:#071b45;
    font-style:italic;
    line-height:1.3;
}

.scripture{
    margin-top:20px;
    color:#555;
    font-size:1.15rem;
}

.speaker-card h3{
    color:#071b45;
    font-size:2rem;
    margin-bottom:10px;
}

.invitation-highlight{
    color:#9b6b08;
    font-size:1.3rem;
    font-weight:bold;
}

@media (max-width:768px){

    .event-banner{
        grid-template-columns:1fr;
    }

    .event-date .day{
        font-size:4rem;
    }

    .theme-text{
        font-size:1.7rem;
    }

}


.site-credit{
    margin-top:0;
    padding:14px 18px;
    border-top:1px solid rgba(201,149,37,.35);
    text-align:center;
    font-size:.82rem;
    letter-spacing:.03em;
    color:#071b45;
    font-family:Arial, Helvetica, sans-serif;
    background:#f3ead8;
}

.site-credit a{
    color:#9b6b08;
    font-weight:bold;
    text-decoration:none;
}

.site-credit a:hover{
    color:#071b45;
    text-decoration:underline;
}