/*
 * Lake Hickory Adventures - Legacy Page Styles
 * Original theme: FareHarbor Sites "Lilikoi-2"
 * Primary: #ff7319 (orange)
 * Secondary: #00adb2 (teal)
 * Headline font: IM Fell DW Pica
 * Body font: Source Sans Pro
 */

/* ============================================
   Reset & Base
   ============================================ */
*, *::before, *::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background: #fff;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'IM Fell DW Pica', serif;
    font-weight: 400;
    line-height: 1.3;
    margin: 0 0 0.5em;
    color: #222;
}

h1, .h1 { font-size: 2.5rem; }
h2, .h2 { font-size: 2rem; }
h3, .h3 { font-size: 1.75rem; }
h4, .h4 { font-size: 1.5rem; }
h5, .h5 { font-size: 1.25rem; }
h6, .h6 { font-size: 1rem; }

a {
    color: #ff7319;
    text-decoration: none;
}
a:hover {
    color: #cc5c14;
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
}

p {
    margin: 0 0 1em;
}

/* ============================================
   Skip Navigation
   ============================================ */
.skip-to-navigation {
    position: absolute;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}
.skip-to-navigation:focus {
    left: 10px;
    top: 10px;
    width: auto;
    height: auto;
    padding: 10px;
    background: #ff7319;
    color: #fff;
    z-index: 10000;
}

/* ============================================
   Header / Banner
   ============================================ */
.site-header {
    position: relative;
    background-color: rgba(0, 0, 0, 0.85);
    z-index: 100;
}

.banner {
    padding: 0 1rem;
}

.menu-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

.heading-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0.75rem 0;
}

.identity-heading .logo-link img {
    max-height: 60px;
    width: auto;
}

.banner-buttons {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 0.5rem;
}

.banner-button a {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.9rem;
    color: #fff;
    text-decoration: none;
}

.banner-button--outline a {
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.banner-button--filled a {
    background-color: #ff7319;
}

.hamburger-container {
    display: inline-block;
    margin-right: 6px;
}

.hamburger {
    display: inline-block;
    width: 18px;
    height: 2px;
    background: #fff;
    position: relative;
    vertical-align: middle;
}
.hamburger::before, .hamburger::after {
    content: '';
    display: block;
    width: 18px;
    height: 2px;
    background: #fff;
    position: absolute;
    left: 0;
}
.hamburger::before { top: -6px; }
.hamburger::after { top: 6px; }

/* ============================================
   Navigation Menu
   ============================================ */
.menu.horizontal-menu {
    width: 100%;
    padding: 0;
}

.menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0;
}

.menu-item {
    position: relative;
}

.menu-item-link,
.menu-link {
    display: block;
    padding: 0.75rem 1rem;
    color: #fff;
    font-size: 0.9rem;
    text-decoration: none;
    white-space: nowrap;
}

.menu-item-link:hover,
.menu-link:hover {
    color: #ff7319;
    text-decoration: none;
}

.current-menu-item .menu-item-link,
.active-menu-item .menu-item-link {
    color: #ff7319;
}

/* Submenu */
.sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(0, 0, 0, 0.95);
    min-width: 220px;
    list-style: none;
    padding: 0;
    margin: 0;
    z-index: 200;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.menu-item--has-sub-menu:hover .sub-menu {
    display: block;
}

.sub-menu-item-link {
    display: block;
    padding: 0.6rem 1.25rem;
    color: #fff;
    font-size: 0.85rem;
    text-decoration: none;
}

.sub-menu-item-link:hover {
    color: #ff7319;
    background: rgba(255, 255, 255, 0.05);
}

.menu-item-more-icon {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 4px;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid currentColor;
    vertical-align: middle;
}

/* ============================================
   Content Sections / Rows
   ============================================ */
main#content {
    min-height: 50vh;
}

.row {
    position: relative;
}

.row--is-padded {
    padding: 2.5rem 1rem;
}

@media (min-width: 48em) {
    .row--is-padded {
        padding: 5rem 2rem;
    }
}

.-first-row {
    padding-top: 100px; /* Account for fixed header */
}

.-bg--dark {
    color: #fff;
}
.-bg--dark h1,
.-bg--dark h2,
.-bg--dark h3,
.-bg--dark h4,
.-bg--dark h5,
.-bg--dark h6 {
    color: #fff;
}

.-bg--image {
    background-size: cover;
    background-repeat: no-repeat;
}

.grid {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
}

.-extra-space-top { padding-top: 3rem; }
.-extra-space-bottom { padding-bottom: 3rem; }

.col {
    flex: 1;
    min-width: 0;
}

.col--width-1-1 { flex: 0 0 100%; }
.col--width-1-2 { flex: 0 0 calc(50% - 1rem); }
.col--width-1-3 { flex: 0 0 calc(33.333% - 1.333rem); }
.col--width-2-3 { flex: 0 0 calc(66.666% - 0.666rem); }

@media (max-width: 47.99em) {
    .col--width-1-2,
    .col--width-1-3,
    .col--width-2-3 {
        flex: 0 0 100%;
    }
}

.col-inner {
    padding: 0;
}

/* ============================================
   Typography / Content Blocks
   ============================================ */
.prose {
    max-width: 800px;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.wysiwyg {
    line-height: 1.8;
}

.wysiwyg p {
    margin-bottom: 1.25em;
}

.wysiwyg ul, .wysiwyg ol {
    padding-left: 1.5em;
    margin-bottom: 1.25em;
}

.wysiwyg li {
    margin-bottom: 0.5em;
}

.full-width-center {
    max-width: 800px;
    margin: 0 auto;
}

/* Separator */
.separator {
    margin: 1rem 0;
}
.separator.-short {
    margin: 0.5rem 0;
}
.separator.-tiny {
    margin: 0.25rem 0;
}

/* Heading block */
.block.heading {
    margin-bottom: 1rem;
}

/* ============================================
   Activity Pages
   ============================================ */
.activity-standard--header {
    background-size: cover;
    background-position: center;
    padding-top: 120px;
    min-height: 300px;
    display: flex;
    align-items: flex-end;
}

.activity-title h1 {
    font-size: 2.5rem;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.activity-tagline {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

.activity-standard--content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.activity-sidebar-col {
    flex: 0 0 360px;
    max-width: 100%;
}

.activity-content {
    flex: 1;
    min-width: 0;
}

@media (max-width: 47.99em) {
    .activity-sidebar-col {
        flex: 0 0 100%;
    }
}

/* Image Gallery */
.gallery-slideshow {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.gallery-slideshow img {
    width: 100%;
    height: auto;
    display: block;
}

.gallery-slideshow .slide {
    display: none;
}

.gallery-slideshow .slide:first-child {
    display: block;
}

/* Activity grid listing */
.activity-grid-row {
    background: #f8f8f8;
}

.activity-grid {
    max-width: 1200px;
    margin: 0 auto;
}

.activity-grid .grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.activity-single {
    margin-bottom: 0;
}

.activity-single__inner {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.2s, box-shadow 0.2s;
}

.activity-single__inner:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.activity__image {
    display: block;
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.activity__image-bg {
    display: block;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.activity__content {
    padding: 1.25rem;
}

.activity__title {
    font-family: 'IM Fell DW Pica', serif;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.activity__title a {
    color: #222;
    text-decoration: none;
}

.activity__title a:hover {
    color: #ff7319;
}

.activity__description {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1rem;
}

/* Activity pricing */
.activity-customer-types-prices {
    margin: 1rem 0;
}

.customer-type-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

/* Buttons */
.a-button .button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: #ff7319;
    color: #fff;
    border-radius: 4px;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 0.95rem;
    text-decoration: none;
    cursor: pointer;
}

.a-button .button:hover {
    background-color: #e56614;
}

.button-block {
    margin: 1rem 0;
}

/* ============================================
   Contact Info
   ============================================ */
.contact-info {
    margin: 1rem 0;
}

.contact-info-row {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: inherit;
    text-decoration: none;
}

.contact-info-row:hover {
    text-decoration: none;
    opacity: 0.8;
}

.contact-info-row .label {
    flex: 0 0 24px;
}

.contact-info-row .icon {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.contact-info-row .value {
    flex: 1;
}

/* Social media */
.social-media-links ul {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0;
    display: flex;
    gap: 1rem;
}

.social-media-link a {
    display: inline-block;
    color: inherit;
}

.social-media-link .icon {
    width: 24px;
    height: 24px;
    fill: currentColor;
    transition: opacity 0.2s;
}

.social-media-link .icon:hover {
    opacity: 0.7;
}

/* Google Map */
.google-map-embed {
    width: 100%;
    height: 250px;
    border-radius: 8px;
    overflow: hidden;
}

.google-map-embed.-short {
    height: 250px;
}

/* ============================================
   Breadcrumbs
   ============================================ */
.breadcrumbs {
    padding: 0.5rem 0;
}

.breadcrumb-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.breadcrumb-link {
    color: inherit;
    text-decoration: none;
}

.breadcrumb-link .icon {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.breadcrumb-divider hr {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin: 0.5rem 0;
}

/* ============================================
   Footer
   ============================================ */
.fh-footer-row {
    background: #000;
    color: #fff;
}

.fh-footer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    text-align: center;
}

.fh-footer .bottom-row {
    padding: 1rem 0;
}

.fh-footer .privacy-policy {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

.fh-footer .privacy-policy:hover {
    color: #fff;
}

/* ============================================
   Forms (static replacement)
   ============================================ */
.form-notice {
    padding: 2rem;
    background: #f0f7f7;
    border: 1px solid #00adb2;
    border-radius: 8px;
    text-align: center;
    font-size: 1.1rem;
}

/* ============================================
   Utility / Responsive
   ============================================ */
.-hide-on-mobile {
    display: none;
}

@media (min-width: 48em) {
    .-hide-on-mobile {
        display: block;
    }
    .-hide-on-desktop {
        display: none;
    }
}

/* Badge styles for activities */
.activity__badges {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0.5rem;
}

.badge {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
    border-radius: 3px;
    color: #fff;
}

/* Social share links */
.social-share-links {
    margin: 1rem 0;
    padding: 1rem 0;
    border-top: 1px solid #eee;
}

/* Sectioned content */
.sectioned-content {
    margin: 1.5rem 0;
}

.sectioned-content-section {
    margin-bottom: 1.5rem;
}

.section-title {
    font-family: 'IM Fell DW Pica', serif;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #ff7319;
}

/* Rich text block in footer */
.rich-text {
    line-height: 1.6;
}

.rich-text img {
    max-width: 150px;
}

/* Image block */
.image-block img {
    border-radius: 8px;
}

/* Callout banner (disabled) */
.callout {
    display: none !important;
}

/* TripAdvisor placeholder */
.TA_selfserveprop {
    margin: 0.5rem 0;
}

.TA_links {
    list-style: none;
    padding: 0;
}
