body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #212529;
}

.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

.navbar {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
}

.navbar-brand .logo-img {
    height: 40px;
    width: auto;
}

.navbar-brand .site-name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #212529;
    font-size: 1rem;
}

.nav-link {
    color: #555 !important;
    font-weight: 600;
    margin: 0 7px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #e07a5f !important; /* Terracotta accent */
}

.btn-primary {
    background-color: #e07a5f;
    border-color: #e07a5f;
    color: #fff;
    font-weight: 600;
    padding: 12px 25px;
    border-radius: 5px;
    transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
    text-decoration: none;
}

.btn-primary:hover {
    background-color: #c76a52;
    border-color: #c76a52;
    transform: translateY(-2px);
    color: #fff;
}

.btn-outline-light {
    color: #fff;
    border-color: #fff;
    font-weight: 600;
    padding: 12px 25px;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
    text-decoration: none;
}

.btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.2);
    color: #fff;
    transform: translateY(-2px);
}

.hero-section {
    height: 100vh;
    overflow: hidden;
}

.hero-collage-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-collage-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5);
}

.hero-content-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(uploads/pics/amsterdam.jpg) no-repeat center center / cover !important;
    z-index: 2;
}

.hero-content-overlay .blog-logo {
    height: 80px;
    width: auto;
    margin-bottom: 20px;
}

.hero-content-overlay h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content-overlay .lead {
    font-size: 1.75rem;
    color: #f8f9fa;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
    .hero-content-overlay h1 {
        font-size: 2.1rem;
    }
    .hero-content-overlay .lead {
        font-size: 1.25rem;
    }
    .hero-content-overlay .blog-logo {
        height: 60px;
    }
    .btn-lg {
        padding: 10px 20px;
        font-size: 1rem;
    }
    .hero-content-overlay .btn {
        margin-bottom: 15px;
    }
}

.author-widget {
    max-width: 600px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.author-widget:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.author-avatar {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border: 4px solid #e07a5f;
    transition: transform 0.3s ease;
}

.author-widget:hover .author-avatar {
    transform: scale(1.05);
}

.verified-badge {
    color: #28a745;
    font-weight: 600;
    font-size: 0.9rem;
}

.timeline-container {
    position: relative;
    padding: 20px 0;
}

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

.timeline-item {
    padding: 10px 0;
    position: relative;
    width: 50%;
}

.timeline-item:nth-child(odd) {
    left: 0;
    padding-right: 65px;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 50%;
    padding-left: 65px;
    text-align: left;
}

.timeline-date {
    position: absolute;
    top: 20px;
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    background-color: #e07a5f;
    color: #fff;
    text-align: center;
    font-weight: 700;
    z-index: 1;
}

.timeline-item:nth-child(odd) .timeline-date {
    right: -40px;
}

.timeline-item:nth-child(even) .timeline-date {
    left: -40px;
}

.timeline-content {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.timeline-content img {
    width: 100%;
    height: 136px;
    object-fit: cover;
    border-radius: 5px;
}

@media (max-width: 768px) {
    .timeline-container::before {
        left: 20px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 50px;
        padding-right: 0;
        text-align: left !important;
    }

    .timeline-item:nth-child(odd), .timeline-item:nth-child(even) {
        left: 0;
    }

    .timeline-date {
        left: 0 !important;
        margin-left: -20px;
    }
}

.itinerary-summary {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.itinerary-summary .table th {
    background-color: #f0f0f0;
    color: #333;
    font-weight: 600;
}

.post-card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15) !important;
}

.post-card .card-img-top {
    height: 220px;
    object-fit: cover;
}

.post-card .card-body {
    padding: 25px;
}

.post-card .post-title {
    font-size: 1.4rem;
    color: #e07a5f;
    margin-bottom: 10px;
}

.post-card .post-meta {
    color: #777;
    font-size: 0.85rem;
}

.post-card .post-excerpt {
    font-size: 0.95rem;
    color: #555;
    margin-top: 15px;
}

.post-card ul {
    margin-top: 15px;
    padding-left: 0;
}

.post-card ul li {
    margin-bottom: 5px;
    color: #666;
}

.faq-section .accordion-button {
    font-weight: 600;
    color: #212529;
    background-color: #f0f0f0;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.faq-section .accordion-button:not(.collapsed) {
    color: #fff;
    background-color: #e07a5f;
    border-color: #e07a5f;
}

.faq-section .accordion-button:focus {
    box-shadow: none;
}

.faq-section .accordion-body {
    background-color: #fff;
    border: 1px solid #e9ecef;
    border-top: none;
    border-radius: 0 0 5px 5px;
}

.list-group-item {
    border-color: #e9ecef;
}

.list-group-item .material-symbols-outlined {
    color: #e07a5f;
}

#tips .card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#tips .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

#tips .card-body {
    text-align: center;
}

#tips .card-title {
    color: #e07a5f;
    font-weight: 600;
    margin-top: 15px;
}

#contact .card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

#contact .form-label {
    font-weight: 600;
    color: #333;
}

#contact .form-control:focus {
    border-color: #e07a5f;
    box-shadow: 0 0 0 0.25rem rgba(224, 122, 95, 0.25);
}

#contact .btn-primary {
    background-color: #e07a5f;
    border-color: #e07a5f;
}

#contact .btn-primary:hover {
    background-color: #c76a52;
    border-color: #c76a52;
}

.contact-info .material-symbols-outlined {
    color: #e07a5f;
}

.contact-info a {
    color: #333;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #e07a5f;
}

.footer-section {
    background-color: #212529 !important;
    color: #f8f9fa;
}

.footer-section .footer-title {
    color: #e07a5f;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-section .list-unstyled a {
    color: #f8f9fa;
    transition: color 0.3s ease;
}

.footer-section .list-unstyled a:hover {
    color: #e07a5f;
}

.footer-section .logo-img {
    height: 30px;
    width: auto;
}

.footer-section .site-name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: #f8f9fa;
    font-size: 1rem;
}

.footer-section .material-symbols-outlined {
    color: #e07a5f;
    font-size: 1.2rem;
    vertical-align: middle;
}

/* Smooth scroll for anchor links */
html {
    scroll-behavior: smooth;
}

/* Remove text-decoration from buttons */
.btn {
    text-decoration: none !important;
}
.policyScopeWrap {
    /* Basic container styling for policy content */
    padding-top: 2rem; /* Top padding for the content area */
    padding-inline: 1.5rem; /* Left and right padding for the content area */
    max-width: 800px; /* Maximum width for better readability */
    margin: 0 auto; /* Center the content block */
    font-family: Arial, sans-serif; /* Default font family for consistency */
    line-height: 1.6; /* Default line height for text readability */
    color: #333; /* Default text color */
}

.policyScopeWrap h1 {
    /* Styles for main headings (H1) */
    font-size: 1.75em; /* Moderate font size for H1 */
    font-weight: 700; /* Bold font weight */
    margin-top: 2em; /* Top margin for separation */
    margin-bottom: 0.8em; /* Bottom margin for separation */
    line-height: 1.2; /* Tighter line height for headings */
    color: #222; /* Slightly darker color for headings */
}

.policyScopeWrap h2 {
    /* Styles for secondary headings (H2) */
    font-size: 1.5em; /* Moderate font size for H2 */
    font-weight: 600; /* Semi-bold font weight */
    margin-top: 1.8em; /* Top margin for separation */
    margin-bottom: 0.7em; /* Bottom margin for separation */
    line-height: 1.3; /* Line height for headings */
    color: #222;
}

.policyScopeWrap h3 {
    /* Styles for tertiary headings (H3) */
    font-size: 1.25em; /* Moderate font size for H3 */
    font-weight: 600; /* Semi-bold font weight */
    margin-top: 1.6em; /* Top margin for separation */
    margin-bottom: 0.6em; /* Bottom margin for separation */
    line-height: 1.4; /* Line height for headings */
    color: #222;
}

.policyScopeWrap h4 {
    /* Styles for quaternary headings (H4) */
    font-size: 1.1em; /* Moderate font size for H4 */
    font-weight: 500; /* Medium font weight */
    margin-top: 1.4em; /* Top margin for separation */
    margin-bottom: 0.5em; /* Bottom margin for separation */
    line-height: 1.5; /* Line height for headings */
    color: #222;
}

.policyScopeWrap h5 {
    /* Styles for quinary headings (H5) */
    font-size: 1em; /* Standard font size, often same as body text */
    font-weight: 500; /* Medium font weight */
    margin-top: 1.2em; /* Top margin for separation */
    margin-bottom: 0.4em; /* Bottom margin for separation */
    line-height: 1.5; /* Line height for headings */
    color: #222;
}

.policyScopeWrap p {
    /* Styles for paragraphs */
    font-size: 1em; /* Standard paragraph font size */
    margin-bottom: 1em; /* Bottom margin to separate paragraphs */
    line-height: 1.6; /* Optimal line height for readability */
}

.policyScopeWrap ul {
    /* Styles for unordered lists */
    margin-top: 1em; /* Top margin for separation */
    margin-bottom: 1em; /* Bottom margin for separation */
    padding-left: 1.5em; /* Indentation for list items */
    list-style-type: disc; /* Default disc bullet style */
}

.policyScopeWrap ol {
    /* Styles for ordered lists */
    margin-top: 1em; /* Top margin for separation */
    margin-bottom: 1em; /* Bottom margin for separation */
    padding-left: 1.5em; /* Indentation for list items */
    list-style-type: decimal; /* Default decimal numbering style */
}

.policyScopeWrap li {
    /* Styles for list items */
    margin-bottom: 0.5em; /* Bottom margin to separate list items */
    line-height: 1.5; /* Line height for list item text */
}

@media(max-width: 768px){
    .timeline-date{
                margin-left: -11px;
    }

    .timeline-item:nth-child(odd){
        padding-right: 0;
    }
}

@media(max-width: 512px){
    .navbar .container{
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
    }
}

@media(max-width: 470px){
    .navbar-brand .site-name {
        font-size: 0.6rem;
    }
}




#about, #museums, #tips,#tickets,#itinerary{
    overflow: hidden !important;
}


