@charset "UTF-8";
/* CSS Document */

/* Align language dropdown with search icon in header */
ul#top_tools .dropdown-mini {
    vertical-align: middle;
}
ul#top_tools a#lang_link {
    font-size: 13px;
    line-height: 18px;
}
ul#top_tools a#lang_link:before {
    font-size: 18px;
    top: -1px;
}

/* Beach amenities - compact icon list */
ul.beach-amenities {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
ul.beach-amenities li {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #f5f5f5;
    border-radius: 20px;
    padding: 6px 14px;
    font-size: 13px;
    color: #555;
}
ul.beach-amenities li i.fa-solid {
    font-size: 15px;
    color: #0097a7;
}

/* Beach list amenity icons */
.beach-list-amenities {
    display: flex;
    gap: 8px;
    margin-top: 5px;
}
.beach-list-amenities i.fa-solid {
    font-size: 14px;
    color: #999;
}

/* InfoBox image sizing */
.marker_info_2 img {
    width: 100%;
    height: 140px;
    object-fit: cover;
}

/* List page thumbnail cropping */
.img_list {
    min-height: 220px;
}
.img_list img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

/* Footer active language */
footer li.active a {
    font-weight: 600;
}

/* Search overlay: base citytours CSS targets input[type="text"] but we use
   input[type="search"] for accessibility. Mirror the styling. */
.search-overlay-menu input[type="search"] {
    height: 100%;
    width: 100%;
    color: #fff;
    background: transparent;
    border-top: 0 solid transparent;
    border-bottom: 2px solid #909090 !important;
    border-left: 0 solid transparent;
    border-right: 0 solid transparent;
    font-size: 32px;
    font-weight: 400;
    outline: none;
    padding: 10px 0;
    -webkit-appearance: none;
    appearance: none;
    border-radius: 0;
}
.search-overlay-menu input[type="search"]::-webkit-search-cancel-button {
    -webkit-appearance: none;
}

/* Uniform card thumbnails (3:2 aspect ratio) across article, hotel, resort, camping, restaurant cards */
.tour_container .img_container,
.hotel_container .img_container,
.resort_container .img_container,
.camping_container .img_container,
.restaurant_container .img_container {
    aspect-ratio: 3 / 2;
    overflow: hidden;
}
.tour_container .img_container img,
.hotel_container .img_container img,
.resort_container .img_container img,
.camping_container .img_container img,
.restaurant_container .img_container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Footer weather widget */
footer .weather-widget {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 12px 14px;
    max-width: 320px;
    color: #bfbfbf;
    font-size: 14px;
}
footer .weather-current {
    font-size: 15px;
    color: #fff;
}
footer .weather-current strong {
    font-size: 16px;
}
footer .weather-current .weather-icon {
    font-size: 20px;
    margin-right: 4px;
}
footer .weather-forecast {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 8px;
    gap: 8px;
}
footer .weather-day {
    flex: 1;
}
footer .weather-day-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #888;
}
footer .weather-day .weather-icon {
    font-size: 22px;
    line-height: 1.2;
    margin: 2px 0;
}
footer .weather-day-temp {
    font-size: 13px;
    color: #ddd;
}
footer .weather-source {
    font-size: 11px;
    color: #666;
}

/* Article TOC — subtle in-body table of contents (CityTours has no equivalent shortcode) */
.article-body .article-toc {
    background: #eef5fa;
    border-left: 3px solid #4a90e2;
    border-radius: 4px;
    padding: 18px 22px;
    margin: 24px 0 32px 0;
}
.article-body .article-toc p {
    margin: 0 0 8px 0;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    color: #3c6897;
}
.article-body .article-toc ul {
    margin: 0;
    padding-left: 20px;
    columns: 2;
    column-gap: 24px;
}
.article-body .article-toc li {
    margin-bottom: 4px;
    break-inside: avoid;
}
.article-body .article-toc a {
    color: #2a2a2a;
    text-decoration: none;
    border-bottom: 1px dotted #a9c5e4;
}
.article-body .article-toc a:hover {
    color: #2b6db8;
    border-bottom-color: #2b6db8;
}
@media (max-width: 767px) {
    .article-body .article-toc ul { columns: 1; }
}

/* Article disclaimer — subtle warning block for legal/tax/financial content */
.article-body .article-disclaimer {
    background: #fff8e6;
    border-left: 3px solid #e6a817;
    border-radius: 4px;
    padding: 14px 18px;
    margin: 20px 0;
    font-size: 14px;
    line-height: 1.55;
    color: #4a3d15;
}
.article-body .article-disclaimer p {
    margin: 0;
}
.article-body .article-disclaimer strong:first-child {
    color: #8a5f0a;
}
.article-body .article-disclaimer a {
    color: #8a5f0a;
    text-decoration: underline;
}
.article-body .article-disclaimer a:hover {
    color: #e6a817;
}

/* Smooth scroll + offset so anchor jumps don't hide behind sticky header */
html { scroll-behavior: smooth; }
.article-body h2[id] { scroll-margin-top: 90px; }

/* Footer webcams link — sits under weather widget */
footer .footer-webcams-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
    padding: 6px 10px;
    font-size: 13px;
    color: #ddd;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.15s ease, color 0.15s ease;
}
footer .footer-webcams-link:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    text-decoration: none;
}
footer .footer-webcams-link i {
    font-size: 15px;
}

/* Webcams page — long-form content with inline live-stream embeds */
.webcams-page .lead {
    font-size: 17px;
    line-height: 1.55;
    color: #2a2a2a;
}
.webcams-page .webcam-section {
    margin-top: 48px;
}
.webcams-page .webcam-section h2 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
}
.webcams-page .webcam-section h3 {
    font-size: 17px;
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 8px;
}
.webcams-page .webcam-player {
    position: relative;
    aspect-ratio: 16 / 9;
    background: #000;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 16px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}
.webcams-page .webcam-player iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Mobile header — give language selector breathing room from the hamburger icon */
@media (max-width: 991px) {
    #top_tools {
        margin-right: 20px;
    }
    #top_tools > li {
        padding-right: 4px;
    }
}
