
/*  ########################################################################################## */
/*  ## DESIGNED BY PANKAJ PATEL                                                             ## */
/*  ##                                                                                      ## */
/*  ## © 2026 PANKAJ PATEL                                                                  ## */
/*  ## ALL RIGHTS RESERVED                                                                  ## */
/*  ##                                                                                      ## */ 
/*  ## Version: 2.5.3.3                                                                     ## */
/*  ########################################################################################## */

/* Declaring global variables */

:root {
--gold: #C9A84C;
--gold-light: #E8C97A;
--gold-pale: #e7c571;
--deep: #0D0A06;
--dark: #1A1410;
--mid: #2C2318;
--cream: #FAF6EE;
--text: #3D2E1A;
--accent: #8B2020;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* Element selector: styles the whole page */
html { 
	scroll-behavior: smooth; 
}

body {
	font-family: 'Lato', sans-serif;
	background: var(--cream);
	color: var(--text);
	overflow-x: hidden;
}

/* ── NAV ── */
nav {
position: fixed; top: 0; left: 0; right: 0; z-index: 100;
background: rgba(13, 10, 6, 0.95);
backdrop-filter: blur(10px);
display: flex; align-items: center; justify-content: space-between;
padding: 0 3rem;
height: 70px;
border-bottom: 1px solid rgba(201, 168, 76, 0.25);
}
.nav-logo {
font-family: 'Cinzel', serif;
font-size: 2rem;
letter-spacing: 0.15em;
color: var(--gold);
text-decoration: none;
}
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
font-family: 'Lato', sans-serif;
font-size: 0.8rem;
letter-spacing: 0.15em;
text-transform: uppercase;
color: rgba(255,255,255,0.7);
text-decoration: none;
transition: color 0.3s;
}
.nav-links a:hover { color: var(--gold); }

/* hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 5px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--gold); transition: 0.3s; }
.mobile-menu {
display: none; position: fixed; top: 70px; left: 0; right: 0; bottom: 0;
background: rgba(13,10,6,0.97); z-index: 99; flex-direction: column;
align-items: center; justify-content: center; gap: 2rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
font-family: 'Cinzel', serif; font-size: 1.3rem; letter-spacing: 0.1em;
color: var(--gold-light); text-decoration: none;
}

/* ── HERO ── */
#hero {
min-height: 100vh;
background: var(--deep);
position: relative;
display: flex; align-items: center; justify-content: center;
overflow: hidden;
}
.hero-bg {
position: absolute; inset: 0;
background:
  radial-gradient(ellipse 80% 60% at 50% 40%, rgba(201,168,76,0.08) 0%, transparent 70%),
  radial-gradient(ellipse 50% 80% at 20% 60%, rgba(139,32,32,0.08) 0%, transparent 60%);
}
.hero-lines {
position: absolute; inset: 0;
background-image:
  repeating-linear-gradient(0deg, transparent, transparent 79px, rgba(201,168,76,0.04) 80px),
  repeating-linear-gradient(90deg, transparent, transparent 79px, rgba(201,168,76,0.04) 80px);
}
.hero-cross {
position: absolute;
width: 2px; height: 220px;
background: linear-gradient(to bottom, transparent, var(--gold), transparent);
left: 50%; top: 50%; transform: translate(-50%, -60%);
opacity: 0.3;
}
.hero-cross::after {
content: '';
position: absolute;
width: 100px; height: 2px;
background: linear-gradient(to right, transparent, var(--gold), transparent);
top: 40%; left: 50%; transform: translate(-50%, 0);
}
.hero-content {
position: relative; text-align: center; padding: 2rem;
animation: fadeUp 1.2s ease forwards;
}
@keyframes fadeUp {
from { opacity: 0; transform: translateY(30px); }
to { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow {
font-family: 'Lato', sans-serif;
font-size: 0.85rem; letter-spacing: 0.35em; text-transform: uppercase;
color: var(--gold);
margin-bottom: 1.5rem;
animation: fadeUp 1.2s 0.2s both;
}
.hero-title {
font-family: 'Cinzel', serif;
font-size: clamp(2.5rem, 7vw, 5.5rem);
font-weight: 800;
color: #fff;
line-height: 1.05;
letter-spacing: 0.03em;
animation: fadeUp 1.2s 0.3s both;
}
.hero-title span { color: var(--gold); }
.hero-subtitle {
font-family: 'Cormorant Garamond', serif;
font-style: italic;
font-size: clamp(1.1rem, 2.5vw, 1.6rem);
color: rgba(255,255,255,0.55);
margin-top: 1.2rem;
animation: fadeUp 1.2s 0.4s both;
}
.hero-divider {
width: 80px; height: 1px;
background: linear-gradient(to right, transparent, var(--gold), transparent);
margin: 2rem auto;
animation: fadeUp 1.2s 0.5s both;
}
.hero-info {
display: flex; flex-wrap: wrap; justify-content: center; gap: 2.5rem;
animation: fadeUp 1.2s 0.6s both;
}
.hero-info-item {
text-align: center;
}
.hero-info-item .label {
font-size: 0.85rem; letter-spacing: 0.2em; text-transform: uppercase;
color: var(--gold); margin-bottom: 0.3rem;
}
.hero-info-item .value {
font-family: 'Cormorant Garamond', serif;
font-size: 1.5rem; color: rgba(255,255,255,0.85);
}
.hero-cta {
margin-top: 2.5rem; display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
animation: fadeUp 1.2s 0.7s both;
}
.btn-primary {
display: inline-block;
padding: 0.9rem 2.2rem;
background: var(--gold);
color: var(--deep);
font-family: 'Lato', sans-serif;
font-size: 0.72rem; font-weight: 700;
letter-spacing: 0.2em; text-transform: uppercase;
text-decoration: none;
border: none; cursor: pointer;
transition: background 0.3s, transform 0.2s;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-outline {
display: inline-block;
padding: 0.9rem 2.2rem;
border: 1px solid rgba(201,168,76,0.5);
color: var(--gold);
font-family: 'Lato', sans-serif;
font-size: 0.72rem; font-weight: 700;
letter-spacing: 0.2em; text-transform: uppercase;
text-decoration: none;
cursor: pointer; background: transparent;
transition: border-color 0.3s, color 0.3s, transform 0.2s;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold-light); transform: translateY(-2px); }

/* ── SECTIONS general ── */
section { padding: 6rem 2rem; }
.container { max-width: 1100px; margin: 0 auto; }
.section-label {
font-size: 0.85rem; letter-spacing: 0.3em; text-transform: uppercase;
color: var(--gold); margin-bottom: 0.8rem;
}
.section-title {
font-family: 'Cinzel', serif;
font-size: clamp(1.7rem, 4vw, 2.8rem);
font-weight: 400;
color: var(--deep);
line-height: 1.2;
}
.section-title.light { color: #fff; }
.section-divider {
width: 60px; height: 2px;
background: var(--gold);
margin: 1.5rem 0;
}
.section-divider.center { margin: 1.5rem auto; }
.section-body {
font-family: 'Cormorant Garamond', serif;
font-size: 1.25rem;
color: rgba(61,46,26,0.8);
line-height: 1.8;
/* max-width: 650px;*/
}

.section-body ul { list-style: none; }
.section-body li {
font-family: 'Cormorant Garamond', serif;
font-size: 1.25rem;
line-height: 1.8;
color: rgba(61,46,26,0.8);
padding-left: 1rem; position: relative;
}
.section-body li::before {
content: '›'; position: absolute; left: 0;
color: var(--gold); font-weight: 700;
}

/* ── WELCOME STRIP ── */
#welcome {
background: var(--dark);
padding: 5rem 2rem;
}
.welcome-grid {
display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}
.welcome-quote {
font-family: 'Cormorant Garamond', serif;
font-size: clamp(1.5rem, 3vw, 2.2rem);
font-style: italic;
color: rgba(255,255,255,0.85);
line-height: 1.5;
border-left: 3px solid var(--gold);
padding-left: 2rem;
}
.welcome-quote cite {
display: block; margin-top: 1rem;
font-style: normal; font-size: 0.9rem;
letter-spacing: 0.15em; text-transform: uppercase;
color: var(--gold);
}
.welcome-right .section-body { color: rgba(255,255,255,0.65); }

/* ── VISIT ── */
#visit { background: var(--cream); }
.visit-cards {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
gap: 1.5px;
margin-top: 3rem;
background: rgba(201,168,76,0.2);
}
.visit-card {
background: #fff;
padding: 2.5rem 2rem;
transition: transform 0.3s;
}
.visit-card:hover { transform: translateY(-4px); }
.visit-card .icon {
font-size: 1.8rem; margin-bottom: 1rem;
}
.visit-card h3 {
font-family: 'Cinzel', serif;
font-size: 0.95rem; letter-spacing: 0.12em; font-weight: 600;
color: var(--deep); margin-bottom: 0.7rem;
}
.visit-card p {
font-family: 'Lato', sans-serif;
font-size: 1rem; line-height: 1.7;
color: rgba(61,46,26,0.7);
}
.visit-card p strong { color: var(--gold); font-weight: 700; }

/* ── BELIEFS ── */
#beliefs { background: var(--dark);
position: relative; overflow: hidden;
}
#beliefs::before {
content: '';
position: absolute; top: -50%; right: -20%;
width: 600px; height: 600px;
border-radius: 50%;
background: radial-gradient(circle, rgba(201,168,76,0.05) 0%, transparent 70%);
}
.beliefs-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 2rem; margin-top: 3rem;
}
.belief-item {
border-top: 1px solid rgba(201,168,76,0.25);
padding-top: 1.5rem;
}
.belief-num {
font-family: 'Cinzel', serif;
font-size: 1rem; letter-spacing: 0.2em;
color: var(--gold); margin-bottom: 0.5rem;
}
.belief-title {
font-family: 'Cinzel', serif;
font-size: 1rem; font-weight: 600;
color: #fff; margin-bottom: 0.7rem;
}
.belief-text {
font-size: 1rem; line-height: 1.7;
color: rgba(255,255,255,0.55);
}
.belief-verse {
display: block; margin-top: 1rem;
font-family: 'Cormorant Garamond', serif;
font-style: italic; font-size: 1rem;
color: var(--gold-light); opacity: 0.75;
}

/* ── VALUES ── */
#values { background: var(--cream); }
.values-list {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
gap: 2rem; margin-top: 3rem;
}
.value-item {
display: flex; gap: 1.2rem; align-items: flex-start;
}
.value-num {
font-family: 'Cinzel', serif;
font-size: 2rem; font-weight: 800;
color: var(--gold-pale); line-height: 1;
flex-shrink: 0;
}
.value-name {
font-family: 'Cinzel', serif;
font-size: 1rem; font-weight: 400;
color: var(--deep); margin-bottom: 0.4rem;
}
.value-desc { font-size: 1rem; line-height: 1.7; color: rgba(61,46,26,0.65); }

/* ── SERVE ── */
#serve { background: var(--dark); }
.serve-areas {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
gap: 1px; margin-top: 3rem;
background: rgba(201,168,76,0.15);
}
.serve-area {
background: var(--mid);
padding: 2rem;
transition: background 0.3s;
}
.serve-area:hover { background: #261e14; }
.serve-area h3 {
font-family: 'Cinzel', serif;
font-size: 1rem; font-weight: 400;
color: var(--gold); letter-spacing: 0.08em;
margin-bottom: 0.8rem;
}
.serve-area ul { list-style: none; }
.serve-area li {
font-size: 1rem; line-height: 2;
color: rgba(255,255,255,0.55);
padding-left: 1rem; position: relative;
}
.serve-area li::before {
content: '›'; position: absolute; left: 0;
color: var(--gold); font-weight: 700;
}

/* ── CONNECT / GROUPS ── */
#connect { background: var(--cream); }
.steps-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 2rem; margin-top: 3rem;
}
.step-card {
background: #fff;
padding: 2rem;
border-bottom: 3px solid transparent;
transition: border-color 0.3s, box-shadow 0.3s;
}
.step-card:hover {
border-color: var(--gold);
box-shadow: 0 8px 30px rgba(201,168,76,0.1);
}
.step-num {
font-family: 'Cinzel', serif;
font-size: 2.5rem; font-weight: 800;
color: var(--gold-pale); line-height: 1; margin-bottom: 0.7rem;
}
.step-title {
font-family: 'Cinzel', serif;
font-size: 1rem; font-weight: 400;
letter-spacing: 0.05em;
color: var(--deep); margin-bottom: 0.7rem;
}
.step-text { font-size: 1rem; line-height: 1.7; color: rgba(61,46,26,0.65); }

/* ── TESTIMONIALS ── */
#testimonials { background: var(--dark); }
.testimonials-list {
	/*  display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 2rem; margin-top: 3rem;
	*/
	margin-top: 3rem; display: flex; flex-direction: column; gap: 1;
	background: rgba(201,168,76,0.15);
	}
.testimonial-item {
	border-top: 1px solid rgba(201,168,76,0.4);
	display: flex; 
	gap: 1.2rem; 
	margin: 0.3rem;
	align-items: flex-start;
	transition: background 0.3s;
	}
.testimonial-item:hover { 
	background: #261e14; 
	}	
.testimonial-desc { 
	font-size: 1rem; 
	line-height: 1.7; 
	margin: 0.3rem;	
	color: rgba(61,46,26,0.65); 
	color: rgba(255,255,255,0.55);
	}
.testimonial-desc p strong { color: var(--gold);  }

/* ── BAPTISM ── */
#baptism { background: var(--cream); }
.baptism-layout {
display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start;
margin-top: 3rem;
}
.baptism-highlight {
background: var(--deep);
padding: 3rem;
position: relative; overflow: hidden;
}
.baptism-highlight::before {
content: '✦';
position: absolute; top: -30px; right: -20px;
font-size: 10rem; color: rgba(201,168,76,0.04);
}
.baptism-highlight blockquote {
font-family: 'Cormorant Garamond', serif;
font-style: italic;
font-size: 1.1rem;
color: rgba(255,255,255,0.75);
line-height: 1.8; border-left: 2px solid var(--gold);
padding-left: 1.5rem; margin-bottom: 1.5rem;
}
.baptism-highlight cite {
font-style: normal; font-size: 0.7rem;
letter-spacing: 0.15em; text-transform: uppercase;
color: var(--gold);
}
.baptism-steps { display: flex; flex-direction: column; gap: 1.5rem; }
.bstep {
display: flex; gap: 1.2rem; align-items: flex-start;
}
.bstep-icon {
width: 40px; height: 40px; flex-shrink: 0;
background: var(--gold-pale);
display: flex; align-items: center; justify-content: center;
font-size: 1.1rem;
}
.bstep h4 {
font-family: 'Cinzel', serif;
font-size: 0.9rem; font-weight: 600;
color: var(--deep); margin-bottom: 0.3rem;
}
.bstep p { font-size: 0.9rem; line-height: 1.6; color: rgba(61,46,26,0.65); }

/* ── GIVE ── */
#give { background: var(--dark); }
.give-list { margin-top: 3rem; display: flex; flex-direction: column; gap: 0; }

/* ── FAQ ── */
#faq { background: var(--cream); }
.faq-list { margin-top: 3rem; display: flex; flex-direction: column; gap: 0; }
.faq-item {
border-top: 1px solid rgba(201,168,76,0.4);
}
.faq-item:last-child { border-bottom: 1px solid rgba(201,168,76,0.2); }
.faq-q {
width: 100%; background: none; border: none; text-align: left; cursor: pointer;
padding: 1.5rem 0;
display: flex; justify-content: space-between; align-items: center;
font-family: 'Cinzel', serif;
font-size: 0.9rem; font-weight: 600; letter-spacing: 0.04em;
color: var(--deep); transition: color 0.3s;
}
.faq-q:hover { color: var(--gold); }
.faq-q .arrow {
font-size: 1.2rem; color: var(--gold); transition: transform 0.3s; flex-shrink: 0;
}
.faq-q.open .arrow { transform: rotate(180deg); }
.faq-a {
max-height: 0; overflow: hidden; transition: max-height 0.4s ease;
}
.faq-a-inner {
padding-bottom: 1.5rem;
font-size: 0.93rem; line-height: 1.8;
color: rgba(61,46,26,1.0);
font-family: 'Cormorant Garamond', serif;
font-size: 1.05rem;
}

/* ── CONTACT ── */
#contact { background: var(--deep); }
.contact-grid /* 2 column grid */
{
	display: grid; 
	grid-template-columns: 1fr 1fr; 
	gap: 0.5rem;
	margin: 0.5rem;	
}
.contact-info {  /* 2 column grid - left column */
	background: var(--mid);
	border-radius: 10px;
	}
.contact-block { 
	margin:2rem;	
	}
.contact-block .label {
	font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase;
	color: var(--gold); margin-bottom: 0.5rem;
	}
.contact-block .value {
	font-family: 'Cormorant Garamond', serif;
	font-size: 1.2rem; color: rgba(255,255,255,0.8); line-height: 1.6;
	}
.contact-block a { 
	color: var(--gold-light); 
	text-decoration: none; 
	}
.contact-form { /* 2 column grid - right column */
	display: flex; 
	flex-direction: column; 
	gap: 0.2rem;
	background: var(--mid);
	border-radius: 10px;
	}
.form-group { 
	display: flex; 
	flex-direction: column; 
	gap: 0.1rem; 
	margin: 0.5rem;	
	}
.form-group label {
	font-size: 0.75rem; 
	letter-spacing: 0.2em; 
	text-transform: uppercase;
	color: rgba(255,255,255,0.5);
	margin: 0rem;
	}
.form-group p {
	font-style:	italic;
	font-size:1rem; 
	color: var(--gold); 
	}

.form-group input, .form-group textarea, .form-group select {
	background: rgba(255,255,255,0.05);
	border: 1px solid rgba(201,168,76,0.2);
	padding: 0.85rem 1rem;
	color: rgba(255,255,255,0.85);
	font-family: 'Lato', sans-serif; font-size: 0.9rem;
	outline: none; transition: border-color 0.3s;
	}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
	border-color: var(--gold);
	}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select option { background: var(--dark); color: #fff; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.3rem; }
.form-btn-primary {
	display: inline-block;
	padding: 0.9rem 2.2rem;
	background: var(--gold);
	color: var(--deep);
	font-family: 'Lato', sans-serif;
	font-size: 0.72rem; font-weight: 700;
	letter-spacing: 0.2em; text-transform: uppercase;
	text-decoration: none;
	cursor: pointer;
	margin: 0rem 1rem 0.5rem;
	transition: background 0.3s, transform 0.2s;
	border-radius: 10px;
	/*width:90%;*/
	text-align:center;
	}
.form-btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }

/* ── MEET THE TEAM ── */
#meetTeam { background: var(--cream); }
.meetTeam-list { margin-top: 3rem; display: flex; flex-direction: column; gap: 0; }

.meetTeam-grid /* 2 column grid */
{
	display: grid; 
	grid-template-columns: 1fr 1fr; 
	column-gap: 0rem;
	row-gap: 0.5rem;
	margin: 0.5rem;	
}

.meetTeam-TextBox {
	background: var(--deep);
	padding: 2rem;
	overflow: hidden;
	background: rgba(201,168,76,0.2);
	}
.meetTeam-TextBox p { 
	font-size: 0.9rem; 
	line-height: 1.6; 
	color: rgba(61,46,26,0.65); 
	}


/* ── FOOTER ── */
footer {
background: var(--deep);
border-top: 1px solid rgba(201,168,76,0.15);
padding: 2.5rem 2rem;
text-align: center;
}
.footer-logo {
font-family: 'Cinzel', serif;
font-size: 0.9rem; letter-spacing: 0.2em;
color: var(--gold); margin-bottom: 0.5rem;
}
.footer-tagline {
font-family: 'Cormorant Garamond', serif;
font-style: italic; font-size: 0.95rem;
color: rgba(255,255,255,0.35); margin-bottom: 1.5rem;
}
.footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem; margin-bottom: 1.5rem; }
.footer-links a {
font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase;
color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.3s;
}
.footer-links a:hover { color: var(--gold); }
.footer-copy {
font-size: 0.75rem; color: rgba(255,255,255,0.2);
}

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }

.reveal p strong { color: var(--gold); font-weight: 700; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
nav { padding: 0 1.5rem; }
.nav-links { display: none; }
.hamburger { display: flex; }
.welcome-grid, .baptism-layout, .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
section { padding: 4rem 1.5rem; }
.form-row { grid-template-columns: 1fr; }
}