

/* ============================================================
   SECTION 1 — HERO / PAGE HEADER
   ============================================================ */

/* Eyebrow text above the h1 */
.warm-eyebrow {
	display: block;
	font-size: 1rem;
	letter-spacing: 0.04em;
	margin-bottom: 0.75rem;
	/* text-white applied via UVU class */
}

/* h1 rendered as a solid forest-green title box */
.warm-hero-h1 {
	display: inline-block;
	background-color: #00843d; /* bg-forest */
	color: #fff;
	padding: 0.75rem 1.25rem;
	font-size: 2rem;
	line-height: 1.2;
	margin-bottom: 1.5rem;
}

/* "Learn more ↓" link */
.warm-learn-more {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	font-size: 0.9rem;
	text-decoration: none;
	/* text-lime applied via UVU class */
}

.warm-learn-more:hover {
	text-decoration: underline;
}


/* ============================================================
   SECTION 1 — INTRO (Your Launchpad)
   Two-col layout: heading left, body text right
   ============================================================ */

.warm-launchpad-heading {
	font-size: 1.75rem;
	line-height: 1.3;
	/* text-forest and font-weight-400 applied via UVU classes */
}

.warm-launchpad-heading span {
	display: block;
	/* font-weight-700 applied via UVU class */
}


/* ============================================================
   SECTION 2 — QUICK LINK CARDS
   Three equal columns, each holding a .warm-card
   ============================================================ */

.warm-card {
	position: relative;
	display: flex;
	flex-direction: row;
	align-items: center;
	background-color: #fff;
	border: 1px solid #e8e8e8;
	border-radius: 3px;
	overflow: hidden;
	padding: 1rem;
	height: 100%;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.07);
	transition: box-shadow 0.2s ease;
}

.warm-card:hover {
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12);
}

/* Thumbnail image — square crop, left side of card */
.warm-card-img {
	width: 120px;
	height: 90px;
	object-fit: cover;
	border-radius: 2px;
	flex-shrink: 0;
}

/* Text content — right side of card */
.warm-card-content {
	padding-left: 1rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.warm-card-label {
	font-size: 0.85rem;
	color: #333;
	margin: 0 0 0.2rem 0;
	line-height: 1.2;
}

.warm-card-link {
	font-size: 0.85rem;
	text-decoration: underline;
	font-weight: 400;
	line-height: 1.3;
	/* text-uvu-green applied via UVU class */
}

.warm-card-link:hover {
	color: #1e482c;
}

/* Arrow icon — top-right corner of card */
.warm-card-arrow {
	position: absolute;
	top: 0.6rem;
	right: 0.75rem;
	color: #00843d; /* forest green */
	font-size: 1.1rem;
	text-decoration: none;
	line-height: 1;
}

/* Diagonal arrow variant (↗) */
.warm-card-arrow--diag {
	color: #4ba23f; /* clover green */
}


/* ============================================================
   SECTION 3 — PARTNER HOTEL LOGOS
   One column: flex row of logo images
   ============================================================ */

.warm-logo-grid {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 1.5rem 2rem;
	padding: 0.5rem 0;
}

.warm-logo-grid img {
	height: 55px;
	width: auto;
	max-width: 140px;
	object-fit: contain;
	/* logos display at their natural color */
	opacity: 0.85;
	transition: opacity 0.2s ease;
}

.warm-logo-grid img:hover {
	opacity: 1;
}


/* ============================================================
   SECTION 4 — FIVE-STAR EXPERIENCE (Dark Section)
   Two-col: text + stars left, video right
   bg-black applied via UVU class on <section>
   ============================================================ */

/* Bottom decorative diagonal stripe on the dark section */
.warm-dark-section {
	position: relative;
}

.warm-dark-section::after {
	content: "";
	display: block;
	position: absolute;
	bottom: 0;
	right: 0;
	width: 55%;
	height: 12px;
	background: repeating-linear-gradient(
		-45deg,
		#c5e86c,
		#c5e86c 6px,
		transparent 6px,
		transparent 12px
	);
}

/* Star rating row */
.warm-stars {
	font-size: 1.6rem;
	color: #c5e86c; /* lime */
	letter-spacing: 0.15rem;
	margin-top: 1.25rem;
	line-height: 1;
}

/* Video container with dot-grid decorative element */
.warm-video-wrap {
	position: relative;
}

/* Decorative + dot grid (top-right of video) */
.warm-dot-grid {
	position: absolute;
	top: -1rem;
	right: -1rem;
	width: 120px;
	height: 100px;
	background-image: radial-gradient(circle, #c5e86c 1.5px, transparent 1.5px);
	background-size: 14px 14px;
	opacity: 0.6;
	z-index: 0;
	pointer-events: none;
}

.warm-video-container {
	position: relative;
	z-index: 1;
}

.warm-video-container img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 2px;
}

/* Video controls bar below thumbnail */
.warm-video-controls {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 0.5rem;
}

.warm-video-label {
	font-size: 0.8rem;
	text-decoration: underline;
	/* text-lime applied via UVU class */
}

.warm-video-playbar {
	display: flex;
	gap: 0.5rem;
}

.warm-play-btn,
.warm-pause-btn {
	background: none;
	border: none;
	color: #fff;
	font-size: 0.9rem;
	cursor: pointer;
	padding: 0;
	line-height: 1;
}

.warm-play-btn:hover,
.warm-pause-btn:hover {
	color: #c5e86c;
}


/* ============================================================
   SECTION 5 — WHY CHOOSE WARM?
   One column: heading, body text, bordered definition list
   ============================================================ */

/* Bordered list — each dt/dd pair has a left green border */
.warm-bordered-list {
	list-style: none;
	padding: 0;
	margin: 1.5rem 0 0 0;
}

.warm-bordered-list dt {
	font-weight: 700;
	color: #275d38; /* uvu-green */
	padding: 0.6rem 0 0 1rem;
	border-left: 3px solid #275d38;
	margin: 0.75rem 0 0 0;
	font-size: 0.95rem;
}

/* Remove top margin on first dt */
.warm-bordered-list dt:first-child {
	margin-top: 0;
}

.warm-bordered-list dd {
	margin: 0;
	padding: 0.15rem 0 0.5rem 1rem;
	border-left: 3px solid #275d38;
	color: #333;
	font-size: 0.9rem;
	line-height: 1.5;
}


/* ============================================================
   SECTION 6 — JOIN THE WARM COHORT
   Two-col: image left, CTA content right
   ============================================================ */

/* Full-width image inside its column */
.warm-full-img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 2px;
	object-fit: cover;
}

/* Stacked button group (vertical) */
.warm-btn-stack {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.75rem;
	margin-top: 1.5rem;
}


/* ============================================================
   SHARED BUTTON STYLES
   ============================================================ */

.warm-btn-primary {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	padding: 0.7rem 1.4rem;
	background-color: #275d38; /* uvu-green */
	color: #fff;
	font-size: 0.9rem;
	font-weight: 600;
	text-decoration: none;
	border: 2px solid #275d38;
	border-radius: 2px;
	transition: background-color 0.2s ease, border-color 0.2s ease;
	cursor: pointer;
}

.warm-btn-primary:hover {
	background-color: #1e482c; /* uvu-green-d2 */
	border-color: #1e482c;
	color: #fff;
}

.warm-btn-outline {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	padding: 0.7rem 1.4rem;
	background-color: transparent;
	color: #275d38; /* uvu-green */
	font-size: 0.9rem;
	font-weight: 600;
	text-decoration: none;
	border: 2px solid #275d38;
	border-radius: 2px;
	transition: background-color 0.2s ease, color 0.2s ease;
	cursor: pointer;
}

.warm-btn-outline:hover {
	background-color: #275d38;
	color: #fff;
}


/* ============================================================
   SECTION 7 — IMMERSIVE WORK AND STUDY MODEL
   Two-col: text + bordered list left, image right
   bg-grey-xlight applied via UVU class on <section>
   ============================================================ */

/* h3 subtitle under the h2 */
section .warm-bordered-list ~ * {
	/* spacing is handled per-element */
}


/* ============================================================
   SECTION 8 — QUESTIONS? WE'RE HERE TO HELP.
   One column, centered content
   ============================================================ */

.warm-questions {
	text-align: center;
	max-width: 680px;
	margin: 0 auto;
}

.warm-questions h2 {
	margin-bottom: 0.5rem;
}

.warm-questions p {
	margin-bottom: 1.5rem;
	color: #555;
}

/* Horizontal button group (centered) */
.warm-btn-group {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 1rem;
}


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

@media (max-width: 768px) {

	.warm-hero-h1 {
		font-size: 1.4rem;
	}

	/* Cards go full-width and stack vertically on mobile */
	.warm-card {
		flex-direction: column;
		align-items: flex-start;
	}

	.warm-card-img {
		width: 100%;
		height: 160px;
		margin-bottom: 0.75rem;
	}

	.warm-card-content {
		padding-left: 0;
	}

	/* Logo grid wraps and centers */
	.warm-logo-grid {
		justify-content: center;
	}

	.warm-logo-grid img {
		height: 40px;
		max-width: 110px;
	}

	/* Dark section stripe removed on mobile */
	.warm-dark-section::after {
		display: none;
	}

	/* Dot grid repositioned */
	.warm-dot-grid {
		display: none;
	}

	/* Buttons go full width on mobile */
	.warm-btn-stack {
		width: 100%;
	}

	.warm-btn-primary,
	.warm-btn-outline {
		width: 100%;
		justify-content: center;
	}

	.warm-btn-group {
		flex-direction: column;
		align-items: stretch;
	}

	.warm-btn-group .warm-btn-outline {
		width: 100%;
		justify-content: center;
	}

	.warm-launchpad-heading {
		font-size: 1.4rem;
	}
}