body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #363636;
    background-color: #f5f5f5;
}

.site-title {
    color: #363636;
}

.navbar-item.smooth-scroll {
    transition: color 0.3s ease;
}

.navbar-item.smooth-scroll:hover {
    color: #e76f51;
}

.hero-background {
    background-image: url('visuals/media/amsterdam-canal-hero.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    color: white;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
}

.hero-body .container {
    position: relative;
    z-index: 1;
}

.hero .title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.hero .subtitle {
    font-size: 1.8rem;
    font-weight: 400;
    color: #f0f0f0;
}

.tags .tag {
    margin: 0.5rem;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    background-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.tags .tag:hover {
    background-color: #e76f51;
    transform: translateY(-3px);
    color: #ffffff;
}

.is-scroll-indicator {
    display: inline-block;
    padding: 1rem;
    animation: pulse 2s infinite;
    color: white;
    text-decoration: none;
}

.is-scroll-indicator:hover {
    color: #e76f51;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.7; }
    100% { transform: scale(1); opacity: 1; }
}

.about-me-section {
    padding: 5rem 0;
    background-color: #ffffff;
}

.about-me-section .profile-picture {
    border: 4px solid #e76f51;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.about-me-section blockquote {
    border-left: 4px solid #e76f51;
    padding-left: 1.5rem;
    font-style: italic;
    color: #555;
}

.featured-museums-section {
    padding: 5rem 0;
    background-color: #f5f5f5;
}

.museum-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.museum-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.museum-card .card-image img {
    object-fit: cover;
    height: 200px;
    width: 100%;
}

.museum-card .card-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.museum-card .title {
    color: #363636;
}

.museum-card .subtitle {
    color: #7a7a7a;
}

.view-details-button {
    background-color: #e76f51;
    border-color: #e76f51;
    color: #ffffff;
    text-decoration: none;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.view-details-button:hover {
    background-color: #d15c40;
    border-color: #d15c40;
    color: #ffffff;
}

.modal-card-title {
    color: #363636;
}

.modal-card-body {
    max-height: 70vh;
    overflow-y: auto;
}

.modal-card-body h3 {
    font-size: 1.5rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #e76f51;
}

.modal-card-body p, .modal-card-body ul {
    margin-bottom: 1rem;
}

.modal-card-body ul {
    list-style: disc inside;
    margin-left: 1rem;
}

.routes-section {
    padding: 5rem 0;
    background-color: #f0f0f0;
}

.timeline {
    position: relative;
    margin: 0 auto;
    padding: 2em 0;
    list-style: none;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: #dbdbdb;
    margin-left: -1px;
}

.timeline-item {
    position: relative;
    margin-bottom: 2em;
}

.timeline-item:nth-child(even) .timeline-content {
    text-align: right;
}

.timeline-item:nth-child(odd) .timeline-content {
    text-align: left;
}

.timeline-marker {
    position: absolute;
    top: 0;
    left: 50%;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    line-height: 40px;
    font-size: 1.4em;
    text-align: center;
    background: #e76f51;
    color: #fff;
    margin-left: -20px;
    z-index: 1;
    box-shadow: 0 0 0 3px #f0f0f0;
}

.timeline-content {
    position: relative;
    width: 45%;
    padding: 1em 1.5em;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: 55%;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-right: 55%;
}

.timeline-content .heading {
    font-size: 0.9em;
    color: #7a7a7a;
}

.timeline-content .title {
    color: #363636;
}

.timeline-content figure.image img {
    border-radius: 4px;
    object-fit: cover;
    width: 100%;
    height: 150px;
}

.ticket-guide-section {
    padding: 5rem 0;
    background-color: #ffffff;
}

.ticket-guide-section .title.is-3 {
    color: #e76f51;
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
}

.ticket-guide-section ul, .ticket-guide-section ol {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.ticket-guide-section li {
    margin-bottom: 0.5rem;
}

.ticket-case-card {
    height: 100%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
    border-left: 5px solid #e76f51;
}

.ticket-case-card .title.is-4 {
    color: #363636;
    margin-bottom: 1rem;
}

.ticket-case-card ul {
    list-style: none;
    margin-left: 0;
}

.ticket-case-card li {
    margin-bottom: 0.3rem;
    font-size: 0.95rem;
}

.ticket-case-card li strong {
    color: #e76f51;
}

.useful-tips-section {
    padding: 5rem 0;
    background-color: #f0f0f0;
}

.useful-tips-section .box {
    height: 100%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.useful-tips-section .box:hover {
    transform: translateY(-3px);
}

.useful-tips-section .title.is-4 {
    color: #e76f51;
}

.contact-section {
    padding: 5rem 0;
    background-color: #ffffff;
}

.contact-form .button {
    background-color: #e76f51;
    border-color: #e76f51;
    color: #ffffff;
    text-decoration: none;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.contact-form .button:hover {
    background-color: #d15c40;
    border-color: #d15c40;
    color: #ffffff;
}

.contact-info-box {
    border-left: 5px solid #e76f51;
    padding-left: 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info-box a {
    color: #e76f51;
    text-decoration: none;
}

.contact-info-box a:hover {
    text-decoration: underline;
}

.footer {
    background-color: #363636;
    color: #f5f5f5;
    padding: 3rem 1.5rem;
}

.footer .site-title {
    color: #f5f5f5;
}

.footer-about-text {
    font-size: 0.9rem;
    max-width: 600px;
    margin: 0 auto;
}

.footer-links a {
    color: #f5f5f5;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #e76f51;
}

.footer-logo-link {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

@media screen and (min-width: 769px) {
    .timeline::before {
        left: 50%;
    }
    .timeline-item:nth-child(odd) .timeline-content {
        margin-left: calc(50% + 1.5em);
        margin-right: 0;
        text-align: left;
    }
    .timeline-item:nth-child(even) .timeline-content {
        margin-right: calc(50% + 1.5em);
        margin-left: 0;
        text-align: right;
    }
    .timeline-item:nth-child(even) .timeline-content::after {
        left: auto;
        right: -10px;
        border-left: 10px solid #fff;
        border-right: 0;
    }
    .timeline-marker {
        left: 50%;
    }
}

@media screen and (max-width: 768px) {
    .hero .title {
        font-size: 2.5rem;
    }
    .hero .subtitle {
        font-size: 1.4rem;
    }
    .tags .tag {
        font-size: 0.8rem;
        margin: 0.3rem;
    }
    .timeline::before {
        left: 20px;
    }
    .timeline-marker {
        left: 20px;
        margin-left: -10px;
    }
    .timeline-content {
        width: auto;
        margin-left: 60px;
        text-align: left;
    }
    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 60px;
        margin-right: 0;
        text-align: left;
    }
    .timeline-content figure.image {
        margin-bottom: 1rem;
    }
    .timeline-content .columns {
        flex-direction: column;
    }
    .footer-logo-link, .footer-about-text, .footer-links {
        justify-content: center;
        text-align: center;
    }
}

/* Animations */
.animated-element {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animated-element.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.animated-element.delay-100 { transition-delay: 0.1s; }
.animated-element.delay-200 { transition-delay: 0.2s; }
.animated-element.delay-300 { transition-delay: 0.3s; }
.animated-element.delay-400 { transition-delay: 0.4s; }
.animated-element.delay-500 { transition-delay: 0.5s; }
.animated-element.delay-600 { transition-delay: 0.6s; }
.animated-element.delay-700 { transition-delay: 0.7s; }
.animated-element.delay-800 { transition-delay: 0.8s; }
.animated-element.delay-900 { transition-delay: 0.9s; }
.animated-element.delay-1000 { transition-delay: 1.0s; }
.animated-element.delay-1100 { transition-delay: 1.1s; }
.animated-element.delay-1200 { transition-delay: 1.2s; }
.animated-element.delay-1300 { transition-delay: 1.3s; }

.is-primary {
    background-color: #e76f51;
    border-color: #e76f51;
}

.is-primary:hover {
    background-color: #d15c40;
    border-color: #d15c40;
}

.is-info {
    background-color: #2a9d8f;
    border-color: #2a9d8f;
}

.is-info:hover {
    background-color: #217f74;
    border-color: #217f74;
}

.button.is-large {
    font-size: 1.25rem;
    padding-left: 2em;
    padding-right: 2em;
}

.help.is-danger {
    color: #ff3860;
    font-size: 0.8rem;
    margin-top: 0.25rem;
}

.help.is-hidden {
    display: none;
}/*
 * New stock styles for .dataClauseFrame and its direct children.
 * These styles provide basic typography, spacing, and readability,
 * ensuring headings are not excessively large.
 */

.dataClauseFrame {
    /* Padding for the main content frame, creating space from its edges. */
    padding-top: 20px;
    padding-left: 25px;
    padding-right: 25px;
    /* Optional: Add box-sizing for consistent padding behavior */
    /* box-sizing: border-box; */
}

/* Heading styles: h1 to h5 */
/* Ensuring moderate font sizes and consistent vertical spacing for readability. */
.dataClauseFrame h1 {
    font-size: 1.8rem; /* Moderately sized h1, relative to base font size */
    margin-top: 1.5em; /* Space above heading */
    margin-bottom: 0.8em; /* Space below heading */
    font-weight: bold; /* Standard bold weight for emphasis */
    line-height: 1.2; /* Tighter line height for headings */
}

.dataClauseFrame h2 {
    font-size: 1.6rem; /* Slightly smaller h2 */
    margin-top: 1.5em;
    margin-bottom: 0.8em;
    font-weight: bold;
    line-height: 1.2;
}

.dataClauseFrame h3 {
    font-size: 1.4rem; /* Standard h3 size */
    margin-top: 1.5em;
    margin-bottom: 0.8em;
    font-weight: bold;
    line-height: 1.2;
}

.dataClauseFrame h4 {
    font-size: 1.2rem; /* Smaller h4 */
    margin-top: 1.5em;
    margin-bottom: 0.8em;
    font-weight: bold;
    line-height: 1.2;
}

.dataClauseFrame h5 {
    font-size: 1.1rem; /* Smallest heading, slightly larger than paragraph text */
    margin-top: 1.5em;
    margin-bottom: 0.8em;
    font-weight: bold;
    line-height: 1.2;
}

/* Unordered list styles */
.dataClauseFrame ul {
    list-style-type: disc; /* Default disc bullet points */
    padding-left: 1.5em; /* Indent list items from the left */
    margin-top: 0.5em; /* Space above the list */
    margin-bottom: 1em; /* Space below the list */
}

/* List item styles */
.dataClauseFrame li {
    line-height: 1.6; /* Optimal line height for list item text readability */
    margin-bottom: 0.5em; /* Space between individual list items */
}

/* Paragraph styles */
.dataClauseFrame p {
    font-size: 1rem; /* Base font size for paragraphs, relative to root */
    line-height: 1.6; /* Optimal line height for paragraph readability */
    margin-bottom: 1em; /* Space between paragraphs for clear separation */
}
.navbar-item img {
    width: auto;
}
main {
    overflow: hidden;
}
@media screen and (width < 576px) {
    .navbar-item span {
        font-size: 1.2rem !important;
    }
    .hero-body .container.is-fluid {
    padding-left: 20px;
    padding-right: 20px;
    }
    .hero .title {
        font-size: 2rem;
    }
    .title:not(.is-spaced)+.subtitle {
        margin-top: 0;
    }
    .button.is-large {
    padding-left: 1em;
    padding-right: 1em;
}
.title.is-2 {
    font-size: 2rem;
}
}

@media screen and (width < 768px) {
    .about-me-section,
    .routes-section,
    .ticket-guide-section {
        padding-left: 15px;
        padding-right: 15px;
    }
}