/* ==========================================================================
   The Belize Project — Hope Gala
   Design tokens: keep the existing brand purple, add a warm gold accent
   (the "hope"/candlelight motif), ground everything in a deep plum-ink
   and a warm ivory base rather than a generic gray/white.
   ========================================================================== */
:root{
	--plum: #9424a2;      /* existing brand color — unchanged */
	--ink: #241726;       /* deep plum-black, for dark sections + high-emphasis text */
	--gold: #c7973f;      /* new accent — warm, candlelight/"hope" motif */
	--ivory: #fbf7f2;     /* warm page background */
	--mist: #f1e4ef;      /* pale plum-tinted section background */
	--charcoal: #362a38;  /* body text — near-black with a whisper of plum */
	--font-display: 'Fraunces', Georgia, serif;
	--font-body: 'Work Sans', 'Open Sans', sans-serif;
}

*{
	margin: 0;
	padding: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

body{
	background-color: var(--ivory);
	color: var(--charcoal);
	font-family: var(--font-body);
	line-height: 1.6;
}
body p{
	color: var(--charcoal);
	font-family: var(--font-body);
	font-size: 18px;
	line-height: 1.7;
}

/* Unused elsewhere on this page, kept intact for other pages */
.titulo{
	justify-content: center;
	display: flex;
	color: black;
	font-size: 50px;
	margin: 50px 0 0 0;
}

/* ==========================================================================
   NAVIGATION — shared across every page
   ========================================================================== */
.navegacion{
	max-width: 1100px;
	margin: 0 auto;
	padding: 20px 24px;
	background: var(--ivory);
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-bottom: 1px solid rgba(36,23,38,0.1);
	text-align: left;
}
.navegacion > a img{
	height: 48px;
	width: auto;
	display: block;
}
.navegacion ul{
	width: auto;
	list-style: none;
	border: none;
	display: flex;
	gap: 4px;
	flex-wrap: wrap;
}

.menu > li{
	position: relative;
	display: inline-block;
}

.menu li a{
	display: block;
	padding: 10px 16px;
	color: var(--ink);
	font-family: var(--font-body);
	font-size: 15px;
	font-weight: 600;
	letter-spacing: 0.02em;
	text-decoration: none;
	position: relative;
}

.menu li a::after{
	content: "";
	position: absolute;
	left: 16px;
	right: 16px;
	bottom: 4px;
	height: 2px;
	background: var(--gold);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform .25s ease;
}

.menu li a:hover{
	color: var(--plum);
	transition: color .25s ease;
}
.menu li a:hover::after{
	transform: scaleX(1);
}
.menu li a:focus-visible{
	outline: 2px solid var(--gold);
	outline-offset: 2px;
}

.menu li ul{
	display:none;
	position: absolute;
	padding: 15px 20px;
	font-family: var(--font-body);
	text-decoration: none;
}

/* ==========================================================================
   HERO SLIDER — shared with gala.html
   ========================================================================== */
.slider {
	width: 100%;
	max-height: 480px;
	margin: 0 auto;
	overflow: hidden;
	position: relative;
}

.slider ul {
	display: flex;
	padding: 0;
	width: 400%;
	animation: cambio 24s infinite;
}

.slider li {
	width: 100%;
	list-style: none;
}

.slider img {
	width: 100%;
	height: 480px;
	object-fit: cover;
	display: block;
}

@keyframes cambio{
	0% {margin-left: 0;}
	20% {margin-left: 0;}

	25% {margin-left: -100%;}
	45% {margin-left: -100%;}

	50% {margin-left: -200%;}
	70% {margin-left: -200%;}

	75% {margin-left: -300%;}
	95% {margin-left: -300%;}
}

@media (prefers-reduced-motion: reduce){
	.slider ul{ animation: none; }
}

/* ==========================================================================
   HERO INTRO + SIGNATURE DIVIDER — new, index.html only for now
   ========================================================================== */
.hero-intro{
	text-align: center;
	padding: 48px 24px 8px;
	background: var(--ivory);
}
.hero-intro h1{
	font-family: var(--font-display);
	font-size: clamp(32px, 5vw, 56px);
	font-weight: 600;
	color: var(--ink);
}
.hero-intro p{
	font-family: var(--font-body);
	color: var(--plum);
	font-size: 18px;
	letter-spacing: .03em;
	margin-top: 8px;
}

/* a soft "candlelight" rule — the one signature flourish, used sparingly */
.divider{
	height: 2px;
	max-width: 320px;
	margin: 40px auto;
	background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* ==========================================================================
   FULL-WIDTH BANNER IMAGES — new (2025.jpg, P1.png)
   ========================================================================== */
.banner-image{
	text-align: center;
	padding: 8px 24px 48px;
	background: var(--ivory);
}
.banner-image img{
	max-width: 900px;
	width: 100%;
	height: auto;
	border-radius: 8px;
}

/* ==========================================================================
   VIDEO / STORY SECTION — new
   ========================================================================== */
.story{
	max-width: 900px;
	margin: 0 auto;
	padding: 8px 24px 56px;
	text-align: center;
}
.story h2{
	font-family: var(--font-display);
	font-size: clamp(26px, 3.5vw, 38px);
	color: var(--ink);
	margin-bottom: 24px;
}
.story video{
	width: 100%;
	max-width: 820px;
	border-radius: 10px;
	box-shadow: 0 18px 40px rgba(36,23,38,0.18);
}
.story video:focus-visible{
	outline: 2px solid var(--gold);
	outline-offset: 4px;
}

/* Unused on this page, kept intact for other pages */
.body{
	margin-left: 5%;
	width: 90%;
	text-align: center;
	margin-top: 5%;
	margin-bottom: 5%;
	border-style: hidden;
}
.body h1{
	width: 100%;
	text-align: center;
}
.body img{
	width: 50%;
	margin:auto;
	text-align: center;
	margin-left: auto;
	margin-right: auto;
	margin-top: auto;
	float: center;
}
.text{
	width: 80%;
	margin:auto;
	text-align: center;
	margin-left: auto;
	margin-right: auto;
	margin-top: auto;
	float: center;
}
.text img{
	width: 50%;
	margin:auto;
	text-align: center;
	margin-left: auto;
	margin-right: auto;
	margin-top: auto;
	float: center;
}
.text h1 img{
	width: 40%;
	text-align: left;
}
.x{
	width: 20%;
	margin: right;
	text-align: center;
	margin-right: 5px;
	margin-left: auto;
	margin-top: auto;
	float: right;
	margin-top: auto;	
}
.x img{
	width: 20%;
	min-height: 100%;
	min-width: 100%;
}
.bod{
	width: 100%;
	text-align: center;
	margin-top: 5px;
}

/* ==========================================================================
   FOOTER — shared across every page
   ========================================================================== */
footer{
	background-color: var(--ink);
	color: var(--ivory);
	text-align: center;
	padding: 48px 24px 32px;
	font-family: var(--font-body);
	font-size: 14px;
	letter-spacing: .02em;
	line-height: 1.9;
}

.foot{
	background-color: transparent;
	margin-bottom: 16px;
}
.foot img{
	height: 56px;
	width: auto;
}

/* Unused on this page, kept intact for other pages */
.rooms{
	width: 20%;
	text-align: left;
	margin: left;
	margin-left: 50px;
	margin-right: auto;
	margin-top: auto;
	float: left;
}
.room{
	width: 80%;
	text-align: left;
	margin: right;
	margin-left: 5px;
	margin-right: auto;
	margin-top: auto;
	float: right;
}
.spa{
	text-align: left;
	margin-left: 50px;
	margin-right: 50px;
}

.container{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	margin: 40px 20px 0 20px;
}
.container .heading{
	width: 50%;
	padding-bottom: 50px;
}
.container .heading h3{
	font-size: 3em;
	font-weight: bolder;
	padding-bottom: 10px;
	border-bottom: 3px solid #9424a2;
}
.container .heading h3 span{
	font-weight: 50;
}
.container .box{
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}
.container .box .dream{
	display: flex;
	flex-direction: column;
	width: 32.5%;
}
.container .box .dream img{
	width: 100%;
	padding-bottom: 15px;
	border-radius: 5px;
}
@media only screen and (max-width: 769px){
	.container .box{
		flex-direction: column;
	}
	.container .box .dream{
		width: 100%;
	}
}
@media only screen and (max-width: 643px){
	.container .heading{
		width: 100%;
	}
	.container .heading h3{
		font-size: 1em;
	}
}

/* ==========================================================================
   CONTENT SECTIONS (image + text pairing) — shared with gala.html, ministries.html
   ========================================================================== */
.container2{
	background-color: var(--mist);
	margin: 0;
	max-width: 100%;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	padding: 56px 24px;
	gap: 40px;
}
.container2 img{
	max-width: 460px;
	width: 100%;
	height: auto;
	border-radius: 8px;
}
.text2 {
	max-width: 460px;
	width: 100%;
	font-family: var(--font-body);
	text-align: left;
	margin: 0;
	padding: 0;
}
.text2 h1{
	font-family: var(--font-display);
	color: var(--ink);
	font-size: 30px;
	margin-bottom: 16px;
}
.text2 p{
	font-size: 17px;
	line-height: 1.75;
	color: var(--charcoal);
}

/* ==========================================================================
   RESPONSIVE — new page elements
   ========================================================================== */
@media (max-width: 700px){
	.navegacion{ flex-direction: column; gap: 14px; }
	.navegacion ul{ justify-content: center; }
	.slider, .slider img{ max-height: 320px; height: 320px; }
	.container2{ flex-direction: column; padding: 40px 20px; }
	.text2{ text-align: center; }
}
