/* 	Color Palette										COLOR PALETTE */
:root {
    /* (Light Mode) */
    --bg-main: #f5f5f0;
    --bg-card: #fdfdfb;
    --bg-overlay: rgba(245, 245, 240, 0.8);
    --text-primary: #121812;
    --text-secondary: #2d382d;
    --text-muted: #4a544a;
	--accent-color: #31a331;
    --accent-hover: #3bc43b;
	--bg-card-icon: #298820;
    --header-bg: rgba(245, 245, 240, 0.82);
    --border-color: #a4b2a4;
    --shadow: 0 12px 40px rgba(18, 24, 18, 0.15);	
}

@media (prefers-color-scheme: dark) {
    :root {
        /* (Dark Mode) */
		--bg-main: #0d110d;
        --bg-card: #151a15;
        --text-primary: #f0f5f0;
        --text-secondary: #d1ddd1;
        --text-muted: #a3b3a3;
        --accent-color: #3bc43b;
        --accent-hover: #45e045;
        --header-bg: rgba(13, 17, 13, 0.88);
        --border-color: #242e24;
        --shadow: 0 15px 45px rgba(0, 0, 0, 0.6);
        --bg-overlay: rgba(13, 17, 13, 0.55);
        --bg-card-icon: #31a331;
	}
	
	.content-link,
	.footer-moto,
	.content-block .content-label,
	.content-section h2.content-label,
    .content-section h3.content-label {
		color: var(--accent-color) !important;
	}
	
	.direction-highlight,
	.warning-text {
        color: #ff5252 !important;
    }
}

/* END COLOR PALETTE */


/* inter-v20-latin-regular */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/inter-v20-latin-regular.woff2') format('woff2');
}

/* inter-v20-latin-600 */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/inter-v20-latin-600.woff2') format('woff2');
}

/* inter-v20-latin-700 */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/inter-v20-latin-700.woff2') format('woff2');
}

/* cinzel-v26-latin-regular */
@font-face {
  font-family: 'Cinzel';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/cinzel-v26-latin-regular.woff2') format('woff2');
}

/* cinzel-v26-latin-700 */
@font-face {
  font-family: 'Cinzel';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/cinzel-v26-latin-700.woff2') format('woff2');
}




* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
	min-height: 100%;
    scroll-padding-top: 120px;
    scroll-behavior: smooth;
}

p {
    word-spacing: 0.0rem; 
    letter-spacing: 0.01rem;
}

main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

body {
	scrollbar-gutter: stable;
	min-height: 100vh;
    font-family: 'Inter', sans-serif;
    line-height: 1.7;
    background-color: var(--bg-main);
	background-repeat: repeat;
	background-image: linear-gradient(var(--bg-overlay), var(--bg-overlay)), 
                      url("../images/alt/background.png");
	/* -- "https://transparenttextures.com/patterns/egg-shell.png" --*/
    color: var(--text-primary);
    overflow-x: hidden;
	background-attachment: fixed;
}

body:has(#menu-toggle:checked) {
	overflow:hidden;
}


/* -- 													HEADER (SITE NAVIGATION) -- */
header {
    background-color: var(--header-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 2px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 2rem;
}

/* Logo Link Styling */
h1 a.logo-link {
    text-decoration: none;
    color: var(--text-primary);
    display: inline-block;
    transition: transform 0.3s ease, color 0.3s ease, border-bottom-color 0.3s ease;
    border-bottom: 2px solid transparent;
    padding-bottom: 2px;
}

h1 a.logo-link:hover {
    color: var(--accent-color);
    transform: translateY(-3px);
    border-bottom-color: var(--accent-color);
}
h1 {
    font-family: 'Cinzel', serif;
    font-size: 1.6rem;
    letter-spacing: 2px;
}

.main-nav {
    display: flex;
    gap: 2rem;
}

.main-nav a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 600;
    transition: all 0.3s ease;
    padding-bottom: 4px;
    border-bottom: 2px solid transparent;
}

.main-nav a:hover {
    color: var(--accent-hover);
    border-bottom-color: var(--accent-hover);
	transform: translateY(-2px);
}

.main-nav a.active {
    color: var(--accent-color);
    border-bottom-color: var(--accent-color);
    font-weight: 700;
}



/* --- 													WELCOME SECTION --- */
.welcome-section {
    max-width: 1200px;
    margin: 4rem auto 4rem auto;
    padding: 3rem 2rem;
    text-align: center;
    border-radius: 24px;
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    box-shadow: var(--shadow);
}

.welcome-section h2 {
    font-family: 'Cinzel', serif;
    font-size: 2.2rem;
    margin-top: 0;
    margin-bottom: 1.5rem;
	text-align: center;
	font-weight: 700;
    letter-spacing: 2px;
	color: var(--text-primary);
}

.welcome-section p {
    max-width: 1000px;
    margin: 0 auto;
    font-size: 1.15rem;
    color: var(--text-secondary);
}

.welcome-section p + p {
    margin-top: 1.25rem;
}


/* --- 													CONTENT SECTION --- */
.content-section {
    max-width: 1200px;
    margin: 2rem auto 4rem auto;
    text-align: center;
}

.content-section h2.content-label {
    font-family: 'Cinzel', serif;
    font-size: 2.2rem;
    margin-top: 0;
    margin-bottom: 1.5rem;
	text-align: center;
	font-weight: 700;
    letter-spacing: 2px;
	color: var(--text-primary);
}

h3.content-label, 
.features-section h3 {
    font-family: 'Cinzel', serif;
    color: var(--text-primary);
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
}

.content-block {
    background: var(--bg-card);
    padding: 3rem 2rem;
    border-radius: 24px;
    border: 2px solid var(--border-color);
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.content-block .content-label:first-of-type {
    margin-top: 0;
}

.content-block .content-label {
    font-family: 'Cinzel', serif;
    color: var(--text-primary);
    margin-top: 1.5rem;
    font-size: 1.7rem;
    letter-spacing: 1.5px;
    font-weight: 700;
}

.content-text {
	width: 100%;
}

.content-text p {
    max-width: 100% !important;
    margin: 0 auto;
    font-size: 1.15rem;
    color: var(--text-secondary);
}

.content-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    padding: 2px 4px;
    margin: 0 -2px;
    border-radius: 4px;
    transition: all 0.25s ease-in-out;
    display: inline-block; /* Helps with tap target sizing */
}

.content-link:hover {
    color: var(--accent-hover);
    text-decoration: underline;
    transform: translateY(-1px);
}

/* --- 													FEATURE CARDS SECTION --- */
.features-section h3 {
    text-align: center;
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    justify-content: center;
    margin-bottom: 5rem;
}

.feature-card {
    background: var(--bg-card);
    padding: 2rem 2rem;
    border-radius: 24px;
    border: 2px solid var(--border-color);
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/*
.feature-card:hover {
    border-color: var(--accent-color);
}
*/

div.feature-card .card-content {
    margin-top: 1rem;
}

/* 					CUSTOM ICON CONTAINER */
.card-icon {
    width: 60px;
    height: 60px;
    background: var(--bg-card-icon);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.feature-card img {
    transition: transform 0.3s ease-in-out;
}

/* 					SVG/IMG Icon Handling */
.card-icon img, 
.card-icon svg {
    width: 32px;
    height: 32px;
    object-fit: contain;
	display: block;
	filter: brightness(0) invert(1);
}

.card-title {
    font-size: 1.3rem;
    font-weight: 700;
}

.card-content p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
}

/* --- 													INDEX.HTML --- */
/* --- Hero Carousel								HERO CAROUSEL --- */
.hero-carousel {
    position: relative;
    max-width: 1200px;
    margin: 2rem auto 4rem auto;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.carousel-viewport {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    touch-action: pan-x;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.carousel-viewport::-webkit-scrollbar {
    display: none;
}

.carousel-slide {
    flex: 0 0 100%;
    scroll-snap-align: start;
	width: 100%;
    aspect-ratio: 2 / 1;
    position: relative;
    scroll-margin-top: 120px;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
	display: block;
}

/* CAROUSEL IMAGE BOTTOM LEFT DESCRIPTION */
.carousel-caption {
    position: absolute;
    bottom: 40px;
    left: 40px;
    background: rgba(0,0,0,0.6);
    color: white;
    padding: 10px 25px;
    border-radius: 50px;
    font-family: 'Cinzel', serif;
    backdrop-filter: blur(5px);
	-webkit-backdrop-filter: blur(5px);
    z-index: 5;
}

/* CAROUSEL CONTROLS (EDGE-TO-EDGE) */
.carousel-controls a {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 8%;
    background: linear-gradient(to right, rgba(0,0,0,0.1), transparent);
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-decoration: none;
    font-size: 2.5rem;
    transition: background 0.3s ease;
    z-index: 10;
}

.next-arrow {
    right: 0;
    background: linear-gradient(to left, rgba(0,0,0,0.1), transparent) !important;
}

.prev-arrow {
    left: 0;
}

.carousel-controls a:hover {
    background: rgba(0,0,0,0.2) !important;
}





/* --- 													CONTACT.HTML --- */
.contact-address-text {
	font-style: normal;
	font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-primary);
    text-decoration: none;
    letter-spacing: 2px;
    transition: color 0.3s ease;
}

.contact-coords {
    font-size: .92rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

.nav-button {
	display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 1rem 2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    background-color: var(--accent-color);
    color: #121812;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    box-shadow: var(--shadow);
    transition: background-color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
}

.contact-methods {
    margin-bottom: 20px;
}

.contact-divider {
    margin: 0 10px;
    color: var(--accent-color);
    font-weight: bold;
}

.nav-button:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
}

.phone-feature-card:hover .phone-icon {
    transform: scale(1.15);
}

.phone-icon {
    pointer-events: none; 
    transition: transform 0.2s ease-in-out;
}

.icon-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    text-decoration: none;
}



/* --- 													TV.HTML --- */
.tv-channels-table {
    width: 100%;
    margin-top: 2rem;
    border-collapse: separate; 
    border-spacing: 0;
    text-align: left;
    overflow: hidden;
    background: var(--bg-card);
    border-top-radius: 16px;
}

.tv-channels-table th, 
.tv-channels-table td {
    padding: 1.1rem 1.5rem;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-secondary);
}

.tv-channels-table thead th {
    background-color: var(--border-color); 
    color: var(--text-primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

/* Targeting specific corners for rounding on the header row */
.tv-channels-table thead th:first-child {
    border-top-left-radius: 16px;
    border-left: 1px solid var(--border-color);
	text-align: center;
}

.tv-channels-table thead th:last-child {
    border-top-right-radius: 16px;
    border-right: 1px solid var(--border-color);
}

.tv-channels-table tbody tr:hover {
    background-color: rgba(44, 144, 35, 0.1);
    color: var(--text-primary);
    cursor: pointer;
}

/* Specific styling for the actual Channel Number */
.tv-channels-table td:first-child {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: var(--accent-color);
    background: rgba(33, 109, 26, 0.05);
	text-align: center;
}





/* ---													DIRECTIONS.HTML --- */
/* ---													MAP SECTION --- */
.map-container {
    margin: 2.5rem auto;
    width: 100%;
    max-width: 1000px;
    height: 80vh;
    overflow: hidden;
    border-radius: 20px;
    border: 2px solid var(--border-color);
    box-shadow: var(--shadow);
    background-color: var(--bg-card);
}

.map-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    transition: border-color 0.3s ease;
}

.map-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.5s ease, filter 0.3s ease;
}

/* Hover Effects */
.map-link:hover {
    border-color: var(--accent-color);
}

.map-link:hover .map-img {
    transform: scale(1.05); 
    filter: brightness(1.05);
}

p.direction-text {
    margin: 1rem 2rem;
    width: auto;
    padding: 1.5rem 2rem;
    font-weight: 700;
    text-align: center;
    line-height: 1.6;
    background: rgba(33, 109, 26, 0.08);
    border-left: 5px solid var(--accent-color);
    border-right: 5px solid var(--accent-color);
	border-radius: 12px;
}

.content-block .park-map-img {
    display: block;
    max-width: 100%;
    height: auto;
    margin-top: 1rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.content-section + .content-section {
    margin-top: -2rem;
}

.welcome-section .contact-address-text {
    display: block;
    margin-bottom: 0.5rem;
}


/* --- 													MERIDIAN.HTML --- */
a.feature-card.clickable-card {
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

a.feature-card.clickable-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-color);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

a.feature-card.clickable-card:hover .card-title {
    color: var(--accent-color);
}






/* --- 													POLICY FOOTNOTES --- */
.policy-footnote {
    max-width: 1200px;
    margin: 0.5rem auto 2rem auto;
    padding: 0 2rem;
    text-align: center;
}

.policy-footnote:first-of-type {
    margin-top: 4rem; 
}


.policy-footnote h5 {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 0.4rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
	font-weight: 700;
}

.policy-footnote p {
    font-size: 0.9rem;
	letter-spacing: 0.02rem;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 1000px;
    margin: 0 auto;
}

.policy-footnote strong {
    color: var(--text-secondary);
}

.direction-highlight,
.warning-text {
    color: #d32f2f !important;
    font-weight: 700;
}


/* --- 													FOOTER --- */

footer {
    background: rgba(43, 97, 58, 0.15);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
	border-top: 1px solid var(--border-color);
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Left Side Stacked Content */
.footer-left {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* Phone Number Styling */
.footer-address a,
.footer-phone {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
    letter-spacing: 3px;
    word-spacing: 5px;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-address a:hover,
.footer-phone:hover {
    color: var(--accent-color);
    transform: scale(1.02);
}

.footer-address a {
    font-style: normal;
    font-size: 0.95rem;
    color: var(--text-secondary);
    letter-spacing: 0.5px;
    word-spacing: normal;
}

/* Right Side Stacked Content */
.footer-right {
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.footer-status {
    font-weight: 700;
    color: var(--text-primary);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-moto {
    color: var(--text-primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.copyright {
    color: var(--text-muted);
    font-size: 0.85rem;
}



/* --- 												MOBILE RESPONSIVENESS --- */
.menu-toggle, 
.menu-icon {
    display: none;
	transition: transform 0.3s ease;
}

/* ---                                           	TABLET & MOBILE REVAMP --- */

@media (max-width: 1024px) {
    /* Header & Navigation */
    .menu-icon {
        display: block;
        cursor: pointer;
        font-size: 2.2rem;
        padding: 0.5rem;
    }

    .main-nav {
		/*
		backdrop-filter: none;
		-webkit-backdrop-filter: none;
		*/
		backdrop-filter: blur(5px);
		-webkit-backdrop-filter: blur(5px);
		background-color: var(--bg-main);
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        flex-direction: column;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        text-align: center;
        z-index: 999;
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
    }

    .main-nav a {
        padding: 1.2rem;
        width: 100%;
		font-size: 1.1rem;
		text-decoration: none;
		color: var(--text-secondary);
		border-bottom: 1px solid var(--border-color);
		transition: background-color 0.2s ease;
    }
	
	.main-nav a:active {
		color: var(--accent-color);
	}
		
	.main-nav a:last-child {
		border-bottom: none;
		padding-bottom: 2rem;
	}
	
	#menu-toggle:checked ~ .main-nav {
        max-height: calc(100vh - 120px);
        border-bottom: 2px solid var(--accent-color);
    }
	
	#menu-toggle:checked + .menu-icon {
    color: var(--accent-color);
    transform: rotate(-90deg);
	}

    /* Content Layout */
    .carousel-slide {
        height: auto; 
        aspect-ratio: 2 / 1;
    }

    .carousel-controls a {
        width: 15%;
        font-size: 2rem;
    }

    /* Features & Tables */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

	.tv-channels-table {
        display: block; 
        width: fit-content;
        max-width: 100%;
        margin: 2rem auto;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        white-space: nowrap;
    }
	
	.tv-channels-table th, 
    .tv-channels-table td {
        text-align: left;
        padding: 0.8rem 1.2rem;
    }
	
	.tv-channels-table thead th:first-child,
    .tv-channels-table td:first-child {
        text-align: center;
    }
	
    
    .map-container {
        margin-top: 1.5rem;
		height: 60vh;
    }
	
	
    p.direction-text {
		margin: 1rem auto;
        padding: 1.25rem;
    }
	
	.content-block {
		display: flex;
		flex-direction: column;
		align-items: center;
		width: 100%;
	}
}

/* ---                                           SMALL MOBILE (600px) --- */

@media (max-width: 600px) {
    .header-content {
        padding: 1rem;
    }

    h1 {
        font-size: 1.4rem;
        letter-spacing: 1px;
    }
	
    .welcome-section h2 {
        font-size: 1.6rem;
        letter-spacing: 1px;
    }

    .content-section h2.content-label {
        font-size: 1.5rem;
        line-height: 1.3;
    }

    .features-section h3, 
    .content-block .content-label {
        font-size: 1.4rem;
        letter-spacing: 1px;
    }

    .welcome-section p {
        font-size: 1rem;
        line-height: 1.5;
    }
	
	.carousel-slide {
        height: 50vw;
    }

	.carousel-caption {
        bottom: 15px;
        left: 15px;
        font-size: 0.75rem;
        padding: 4px 12px;
    }
	
	.carousel-controls a {
        font-size: 1.5rem;
    }

    .welcome-section, .content-block {
        padding: 2rem 1.2rem;
        border-radius: 16px;
    }

    /* Maps */
    .map-container {
        height: 60dvh; 
        border-radius: 12px;
        margin: 1.5rem 0;
		width: 100%;
    }
    
    .map-link {
        border-radius: 10px;
    }

    /* Footer Stacking */
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        padding: 2rem 1rem;
    }

    .footer-left, .footer-right {
        align-items: center;
        text-align: center;
    }

    .footer-phone {
        font-size: 1.3rem;
    }
	.nav-button {
		padding: .5rem 1rem;
		min-height: 45px;
	}
}

@media (hover: hover) {
    body { background-attachment: fixed; }
}
