/* ========================================
   WESTERN SKIES HERO BANNER - MAIN STYLES
   ======================================== */

@font-face {
  font-family: 'Bree Serif'; /* Define the custom font name */
  src:  url('../fonts/BreeSerif-Regular.ttf') format('truetype'),
        url('./assets/fonts/BreeSerif-Regular.woff') format('woff'),
		url('./assets/fonts/BreeSerif-Regular.woff2') format('woff2'); /* Path to the font file and format */
  font-display: fallback; /* Define how the browser behaves during download */
}  
.sancreek-regular {
  font-family: "Bree Serif", serif;
  font-weight: 400;
  font-style: normal;
}


.wsc-hero-banner {
	width: 100%;
	height: 400px;
	background: #f0f0f0;
	position: relative;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

/* ========================================
   SLIDES CONTAINER
   ======================================== */

.wsc-hero-slides {
	width: 100%;
	height: 100%;
	position: relative;
	overflow: hidden;
}

.wsc-hero-slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: opacity var(--wsc-transition-speed, 0.8s) ease-in-out;
	z-index: 1;
}

.wsc-hero-slide.active {
	opacity: 1;
	z-index: 2;
}

/* ========================================
   SLIDE IMAGE
   ======================================== */

.wsc-hero-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
}

/* ========================================
   OVERLAY
   ======================================== */

.wsc-hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.3);
	z-index: 2;
}

/* ========================================
   SLIDE CONTENT
   ======================================== */

.wsc-hero-content {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 3;
	color: #fff;
	text-align: center;
	padding: 20px;
	box-sizing: border-box;
}

.wsc-hero-inner {
    max-width: 800px;
    animation: slideInUp 0.8s ease-out forwards;
    background-color: #f2ca8f59;
    padding: 2rem;
    border: 2px solid #f1ca91;
    border-radius: 2rem;
}

@keyframes slideInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* ========================================
   TEXT ELEMENTS
   ======================================== */

.wsc-hero-title {
	font-size: 4.5rem;
	font-weight: 700;
	margin: 0 0 0.5rem 0;
	line-height: 1.1;
	text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
	letter-spacing: -0.5px;
	color: #fff;
}

.wsc-hero-subtitle {
	font-size: 1.5rem;
	font-weight: 400;
	margin: 0 0 2rem 0;
	line-height: 1.4;
	text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
	letter-spacing: 0.5px;
}

/* ========================================
   BUTTON
   ======================================== */

.wsc-hero-button {
	display: inline-block;
	padding: 14px 42px;
	background-color: #c97d4c;
	background-image: url('../../../../uploads/2026/02/btn-bg.png');
  	background-repeat: no-repeat;
  	background-size: cover;
	color: #fff;
	border: none;
	border-radius: 4px;
	font-size: 1.2rem;
	font-weight: 600;
	text-decoration: none;
	cursor: pointer;
	transition: all 0.3s ease;
	text-transform: uppercase;
	letter-spacing: 1px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.wsc-hero-button:hover {
	background-color: #a5633d;
	box-shadow: 0 6px 20px rgba(201, 125, 76, 0.5);
	transform: translateY(-2px);
	text-decoration: none;
	color: #fff;
}

.wsc-hero-button:focus {
	outline: 2px solid #fff;
	outline-offset: 2px;
}

/* ========================================
   NAVIGATION ARROWS (HIDDEN - Using dots instead)
   ======================================== */

.wsc-hero-nav {
	display: none;
}

/* ========================================
   DOT NAVIGATION
   ======================================== */

.wsc-hero-dots {
	position: absolute;
	bottom: 25px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 8px;
	z-index: 10;
}

.wsc-hero-dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.5);
	border: 2px solid rgba(255, 255, 255, 0.7);
	cursor: pointer;
	transition: all 0.3s ease;
	padding: 0;
	font-size: 0;
	line-height: 0;
	pointer-events: auto;
}

.wsc-hero-dot:hover {
	background: rgba(255, 255, 255, 0.8);
}

.wsc-hero-dot.active {
	background: #c97d4c;
	border-color: #c97d4c;
	transform: scale(1.2);
}

.wsc-hero-dot:focus {
	outline: 2px solid #fff;
	outline-offset: 2px;
}

/* ========================================
   RESPONSIVE - TABLETS (768px+)
   ======================================== */

@media (min-width: 768px) {

	.wsc-hero-title {
		font-size: 4.5rem;
	}

	.wsc-hero-subtitle {
		font-size: 1.5rem;
	}

	.wsc-hero-nav {
		width: 45px;
		height: 45px;
		font-size: 20px;
	}

	.wsc-hero-prev {
		left: 25px;
	}

	.wsc-hero-next {
		right: 25px;
	}
}

/* ========================================
   RESPONSIVE - PHONES (max-width: 767px)
   ======================================== */

@media (max-width: 767px) {

	.wsc-hero-banner {
		height: 300px;
	}

	.wsc-hero-title {
		font-size: 4.5rem;
	}

	.wsc-hero-subtitle {
		font-size: 1rem;
		margin-bottom: 1.5rem;
	}

	.wsc-hero-button {
		padding: 12px 28px;
		font-size: 0.9rem;
	}

	.wsc-hero-nav {
		width: 40px;
		height: 40px;
		font-size: 18px;
	}

	.wsc-hero-prev {
		left: 10px;
	}

	.wsc-hero-next {
		right: 10px;
	}

	.wsc-hero-content {
		padding: 15px;
	}

	.wsc-hero-inner {
		max-width: 100%;
	}

	.wsc-hero-dots {
		bottom: 15px;
		gap: 6px;
	}

	.wsc-hero-dot {
		width: 10px;
		height: 10px;
	}
}

/* ========================================
   RESPONSIVE - SMALL PHONES (max-width: 479px)
   ======================================== */

@media (max-width: 479px) {
	.wsc-hero-banner {
		height: 250px;
	}

	.wsc-hero-title {
		font-size: 2.2rem;
	}

	.wsc-hero-subtitle {
		font-size: 1.2rem;
		margin-bottom: 1rem;
	}

	.wsc-hero-button {
		padding: 10px 20px;
		font-size: 0.85rem;
	}

	.wsc-hero-nav {
		width: 35px;
		height: 35px;
		font-size: 16px;
	}

	.wsc-hero-prev {
		left: 5px;
	}

	.wsc-hero-next {
		right: 5px;
	}

	.wsc-hero-dots {
		bottom: 10px;
		gap: 4px;
	}

	.wsc-hero-dot {
		width: 8px;
		height: 8px;
	}
}

/* ========================================
   REDUCED MOTION
   ======================================== */

@media (prefers-reduced-motion: reduce) {
	.wsc-hero-slide,
	.wsc-hero-button,
	.wsc-hero-nav,
	.wsc-hero-dot,
	.wsc-hero-inner {
		transition: none !important;
		animation: none !important;
	}
}

/* ========================================
   DARK MODE SUPPORT
   ======================================== */

@media (prefers-color-scheme: dark) {
	.wsc-hero-banner {
		background: #1a1a1a;
	}
}
