/* Complete Custom CSS - All additions extracted from Bootstrap file */

/* ================================================
   CUSTOM CSS VARIABLES
   ================================================ */
:root {
	--font-family-tempus: "Tempus Sans ITC", sans-serif;
}

/* ================================================
   STANDARD CSS OVERRIDES
   ================================================ */
*::before,
*::after {
	box-sizing: border-box;
}

.row::after {
	content: "";
	clear: both;
	display: table;
}

html {
	font-family: "Tempus Sans ITC", "Tondo Signage", Tondo, "Montserrat Medium", "Montserrat ExtraBold";
	line-height: 1.15;
	-webkit-text-size-adjust: 100%;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
	margin: 0;
	font-family: "Tempus Sans ITC", "Tondo Signage", Tondo, "Montserrat Medium", "Montserrat ExtraBold";
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5;
	color: #212529;
	text-align: center;
	background-color: #fff;
}

/* ================================================
   AREA LINK STYLES
   ================================================ */
area:link {
	cursor: url("../img/signs/Icons/CursorArrow1.png"), default;
}

area:visited {
	color: cornflowerblue;
}

area:hover {
	cursor: url("../img/signs/Icons/CursorArrow2.gif"), default;
}

/* ================================================
   CUSTOM LINK CLASSES
   ================================================ */

/* Link Class: .one */
a.one:link {
	color: #080956;
	cursor: url("../img/signs/Icons/CursorArrow1.png"), default;
}

a.one:visited {
	color: green;
}

a:hover {
	cursor: url("../img/signs/Icons/CursorArrow1.png"), default;
}

/* Link Class: .two */
a.two:link {
	color: #EA9F06;
	text-decoration: none;
}

a.two:visited {
	color: green;
}

a.two:hover {
	color: #70F060;
}

a.two:active {
	color: blue;
}

/* Link Class: .three */
a.three:link {
	color: #21F207;
	text-decoration: none;
}

a.three:visited {
	color: green;
}

a.three:hover {
	color: #0E055C;
	font-size: 110%;
}

a.three:active {
	color: blue;
}

/* Link Class: .four */
a.four:link {
	color: antiquewhite;
	text-decoration: none;
}

a.four:visited {
	color: antiquewhite;
	text-decoration: none;
}

a.four:hover {
	color: cyan;
	text-decoration: none;
}

a.four:active {
	color: aqua;
	text-decoration: none;
}

/* Additional Area Styles */
area:link {
	color: #ED090C;
}

area:visited {
	color: #CF1013;
}

area:hover {
	color: #866263;
	opacity: 20%;
}

/* ================================================
   Hamburger Menu
   ================================================ */
 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: Arial, sans-serif;
        }

        /* Header and navigation */
        header {
            background-image: url("/img/Headers_and_Footers/Crestonbanner2Ph.png");
			background-size: cover;
			background-position: center;
			height: 200px;
            color: #000000;
            padding: 1rem;
            position: relative;
        }
 /* Semi-transparent overlay (optional, helps text readability) */
        header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(186,173,173,0.18); /* Adjust darkness */
            z-index: 1;
        }

        /* Navigation container */
        .nav-container {
            position: relative;
            z-index: 2;
            padding: 1rem;
        }

        /* Hamburger button */
        .menu-toggle {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 0.5rem;
			position: absolute;
			top: 30px;
			left: 5px;
			z-index: 1000;
			pointer-events: auto;
        }
		nav {
				z-index: 999;
			}

			/* Make sure container/Bootstrap elements don't block clicks */
		.container, .row, .col-lg-12 {
				pointer-events: none;
			}

		.container *, .row *, .col-lg-12 * {
				pointer-events: auto;
			}
        .menu-toggle span {
            display: block;
            width: 25px;
            height: 3px;
            background-color: white;
            margin: 5px 0;
            transition: 0.3s;
			box-shadow: 0 2px 4px rgba(0,0,0,0.3); /* Helps visibility */
        }

        /* Navigation menu */
        nav ul {
            list-style: none;
            display: flex;
            gap: 2rem;
        }

        nav ul li a {
            color: white;
            text-decoration: none;
            font-size: 1.1rem;
			text-shadow: 2px 2px 4px rgba(0,0,0,0.1); /* Helps readability */
            font-weight: 500;
        }

        nav ul li a:hover {
            color: #ddd;
        }

        /* Mobile styles */
        @media (max-width: 768px) {
            .menu-toggle {
                display: block;
            }

            nav {
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: rgba(0,0,0,0.9);
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.3s ease;
            }

            nav.active {
                max-height: 500px;
            }

            nav ul {
                flex-direction: column;
                gap: 0;
                padding: 1rem 0;
            }

            nav ul li {
                padding: 0.75rem 1rem;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }

            nav ul li:last-child {
                border-bottom: none;
            }
     

/* ================================================
   Scroll Menu
   ================================================ */
			
.map-container {
	position: relative;
			}
.scroll-menu {
    position: absolute;
    top: 5%;
	left: 59%;
	z-index: 10;
	}


.scroll-image {
    width: 130px;
    height: auto; /* Adjust to your scroll size */
}

.scroll-link {
    position: absolute;
    color: #492902; /* Brownish pirate-style text */
    text-decoration: none;
    font-family: 'Georgia', serif; /* Or a pirate-style font */
    font-size: 10px;
    font-weight: bold;
    transition: color 0.2s;
	white-space: nowrap;
}

.scroll-link:hover {
    color: #28FF00;
    text-decoration: underline;
}

/* Position each link - adjust these percentages to match your scroll layout */
.scroll-link:nth-child(2) { top: 25%; left: 25%; } /* Farwell Street */
.scroll-link:nth-child(3) { top: 40%; left: 25%; } /* Cedar Ave */
.scroll-link:nth-child(4) { top: 55%; left: 25%; } /* Spokane St */
.scroll-link:nth-child(5) { top: 70%; left: 25%; } /* Farmer's Market */

}
/* ================================================
   CARD COMPONENTS
   ================================================ */
/* Note: Hotspot styles have been removed from this file.
   Use the separate hotspot.css file for all hotspot functionality. */

.card-img-top {
	border-radius: 8px 8px 0 0;
}

.smicon {
	display: inline-block;
	margin: 5px;
}

/* Base card */
.card {
	position: relative;
	display: flex;
	flex-direction: column;
	min-width: 0;
	word-wrap: break-word;
	background-color: #E2AA2A;
	background-clip: border-box;
	border: 1px solid rgba(0, 0, 0, 0.125);
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	margin-bottom: 20px;
	max-width: 400px;
	margin: 0 auto;
}

.cardbanner1 {
	text-align: center;
	padding: 30px;
	background: #fff;
	border-radius: 8px;
	margin: 20px 0;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Card banner variants */
.cardbanner1, .cardbanner2 {
	position: relative;
	display: flex;
	flex-direction: column;
	width: 100%;
	min-width: 370px;
	word-wrap: break-word;
	background-color: #FFFFFF;
	background-clip: border-box;
	text-align: center;
}

.cardbanner1 > hr,
.cardbanner2 > hr {
	margin-right: auto;
	margin-left: auto;
}

/* Transparent card for business listings */
.cardtpar {
	position: relative;
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	width: 100%;
	max-width: 1400px;
	min-height: 750px;
	word-wrap: break-word;
	background-color: transparent;
	border: 1px solid rgba(0, 0, 0, 0.005);
	border-radius: 0.25rem;
	margin-left: 5px;
	padding: 15px;
}

.cardtpar-header {
	width: 100%;
	padding: 0.75rem 1.25rem;
	margin-bottom: 0;
	background-color: rgba(0, 0, 0, 0.03);
	border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}

.cardtpar-body {
	flex: 1 1 auto;
	min-height: 1px;
	padding: 1.25rem;
}

/* Responsive card layouts */
@media (max-width: 768px) {
	.cardtpar {
		min-width: 100%;
		min-height: auto;
		margin-left: 0;
	}
	
	.cardbanner1, .cardbanner2 {
		min-width: 100%;
	}
}

/* Card deck - only change layout on larger screens */
@media (min-width: 768px) {
	.card {
		display: flex;
		flex-flow: row wrap;
		margin-right: -15px;
		margin-left: -15px;
	}
	
	.card {
		flex: 1 0 0%;
		margin: 0 15px;
	}
}

.card-body .smicon {
	display: inline-block;
	width: 100px;
	margin: 5px;
	text-align: center;
	vertical-align: top;
}

.card-body .smicon img {
	width: 100%;
	max-width: 100px;
	height: auto;
}

.card-title {
	margin-bottom: 0.75rem;
}

.card-subtitle {
	margin-top: -0.375rem;
	margin-bottom: 0;
}

.card-text:last-child {
	margin-bottom: 0;
}

.card-link:hover {
	text-decoration: none;
}

.card-link + .card-link {
	margin-left: 1.25rem;
}

.card-header {
	padding: 0.75rem 1.25rem;
	margin-bottom: 0;
	background-color: rgba(0, 0, 0, 0.03);
	border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}

.card-header:first-child {
	border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0;
}

.card-header + .list-group .list-group-item:first-child {
	border-top: 0;
}

.card-footer {
	padding: 0.75rem 1.25rem;
	background-color: rgba(0, 0, 0, 0.03);
	border-top: 1px solid rgba(0, 0, 0, 0.125);
}

.card-footer:last-child {
	border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px);
}

.card-header-tabs {
	margin-right: -0.625rem;
	margin-bottom: -0.75rem;
	margin-left: -0.625rem;
	border-bottom: 0;
}

.card-header-pills {
	margin-right: -0.625rem;
	margin-left: -0.625rem;
}

.card-img-overlay {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	padding: 1.25rem;
}

.card-img, .card-img-top, .card-img-bottom {
	flex-shrink: 0;
	width: 100%;
}

.card-img, .card-img-top {
	border-top-left-radius: calc(0.25rem - 1px);
	border-top-right-radius: calc(0.25rem - 1px);
}

.card-img, .card-img-bottom {
	border-bottom-right-radius: calc(0.25rem - 1px);
	border-bottom-left-radius: calc(0.25rem - 1px);
}

/* ================================================
   ACCORDION STYLES
   ================================================ */

.accordion > .card {
	overflow: hidden;
}

.accordion > .card:not(:last-of-type) {
	border-bottom: 0;
	border-bottom-right-radius: 0;
	border-bottom-left-radius: 0;
}

.accordion > .card:not(:first-of-type) {
	border-top-left-radius: 0;
	border-top-right-radius: 0;
}

.accordion > .card > .card-header {
	border-radius: 0;
	margin-bottom: -1px;
}

/* ================================================
   BREADCRUMB STYLES
   ================================================ */

.breadcrumb {
	display: flex;
	flex-wrap: wrap;
	padding: 0.75rem 1rem;
	margin-bottom: 1rem;
	list-style: none;
	background-color: #e9ecef;
	border-radius: 0.25rem;
}

.breadcrumb-item + .breadcrumb-item {
	padding-left: 0.5rem;
}

.breadcrumb-item + .breadcrumb-item::before {
	display: inline-block;
	padding-right: 0.5rem;
	color: #6c757d;
	content: "/";
}

.breadcrumb-item + .breadcrumb-item:hover::before {
	text-decoration: underline;
}

.breadcrumb-item + .breadcrumb-item:hover::before {
	text-decoration: none;
}

.breadcrumb-item.active {
	color: #6c757d;
}

/* ================================================
   PAGINATION STYLES
   ================================================ */

.pagination {
	display: flex;
	padding-left: 0;
	list-style: none;
	border-radius: 0.25rem;
}
