/* Color Scheme Variables - Lambic Tours Amber Theme */
:root {
    --amber-primary: #BD791F;      /* Header/footer color */
    --amber-heading: #C17817;      /* h1 and h2 color */
    --amber-accent: #D89B3A;       /* Lighter amber for accents */
    --amber-links: #A86F1A;        /* h3 and links */
    --text-dark: #333333;
    --text-light: #666666;
    --background-light: #ffffff;
    --background-gray: #f5f5f5;
}

/* Custom Font - Made Dillan */
@font-face {
    font-family: 'made_dillan';
    src: url('../fonts/made_dillan-webfont.woff2') format('woff2'),
         url('../fonts/made_dillan-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Momo Trust Sans", sans-serif;
    font-optical-sizing: auto;
    color: var(--text-dark);
    background-color: var(--background-light);
    line-height: 1.6;
}

a {
    color: var(--amber-links);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

a:hover {
    opacity: 0.7;
}

/* Typography - Headings */
h1, h2 {
    font-family: 'made_dillan', "Stack Sans Headline", serif;
    font-weight: normal;
    font-style: normal;
    color: var(--amber-heading);
}

h3, h4, h5, h6 {
    font-family: "Stack Sans Headline", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    color: var(--amber-links);
}

/* Header Styles */
.site-header {
    background-color: var(--amber-primary);
    border-bottom: 3px solid var(--amber-accent);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-size: 20px;
    font-weight: 700;
    color: var(--background-light);
}

.logo-image {
    height: 120px;
    width: auto;
    display: block;
    /* Convert black SVG to white using CSS filters */
    filter: brightness(0) invert(1);
    /* Crop top and bottom to increase visual size */
    object-fit: cover;
    object-position: center;
    margin: -10px 0;
}

.main-navigation {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    color: var(--background-light);
    font-weight: 500;
    font-size: 15px;
    padding: 8px 12px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--amber-accent);
    opacity: 1;
}

/* Language Switcher */
.language-switcher {
    display: flex;
    gap: 8px;
    margin-left: 30px;
}

.language-link {
    color: var(--background-light);
    font-weight: 500;
    font-size: 12px;
    padding: 4px 8px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    border-radius: 3px;
}

.language-link:hover {
    color: var(--amber-accent);
    border-color: var(--amber-accent);
    opacity: 1;
}

.language-link.active {
    background-color: var(--amber-accent);
    color: white;
    border-color: var(--amber-accent);
}

/* Style CTA button (last nav item) */
.nav-item:last-child .nav-link {
    background-color: var(--amber-accent);
    color: white;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.nav-item:last-child .nav-link:hover {
    background-color: #c2892e;
    color: white;
    opacity: 1;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    color: var(--amber-accent);
    font-size: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.social-icon {
    display: inline-block;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--background-light);
    display: block;
    transition: all 0.3s ease;
}

/* Main Content */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    min-height: 60vh;
}

.hero-section {
    text-align: center;
    padding: 40px 0;
}

.hero-section h1 {
    font-size: 48px;
    color: var(--amber-heading);
    margin-bottom: 20px;
    font-weight: normal;
}

.hero-section h1,
.page-content h1 {
    white-space: nowrap;
}

.hero-section p {
    font-size: 20px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 30px;
}

.cta-button {
    display: inline-block;
    background-color: var(--amber-accent);
    color: white;
    padding: 15px 35px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: var(--amber-primary);
    opacity: 1;
}

/* Hero Image Styles */
.hero-image-container {
    max-width: 800px;
    margin: 60px auto 40px;
    padding: 0 20px;
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

/* Image Gallery Styles */
.image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 20px 0 40px 0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    transition: transform 1.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.image-attribution {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.4), transparent);
    color: white;
    padding: 15px 10px 10px;
    font-size: 11px;
    text-align: right;
    opacity: 0.8;
}

.image-attribution a {
    color: white;
    text-decoration: underline;
    opacity: 0.9;
}

.image-attribution a:hover {
    opacity: 1;
}

/* Content Section Styles */
.content-section {
    text-align: center;
}

.page-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px;
}

.page-content h1 {
    color: var(--amber-heading);
    font-size: 48px;
    margin-bottom: 40px;
    font-weight: normal;
}

.page-content h2 {
    color: var(--amber-heading);
    font-size: 32px;
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: normal;
}

.page-content p {
    line-height: 1.8;
    margin-bottom: 20px;
}

.page-content a {
    color: var(--amber-accent);
    font-weight: 600;
}

.page-content .email-link {
    cursor: default;
}

.page-content .email-link.email-revealed {
    cursor: pointer;
}

.content-section h2 {
    color: var(--amber-heading);
    font-size: 32px;
    margin-top: 40px;
    margin-bottom: 15px;
    font-weight: normal;
}

.content-section h3 {
    color: var(--amber-links);
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

.content-section p {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.content-section ul {
    margin: 20px 0;
    padding-left: 20px;
}

.content-section li {
    margin: 10px 0;
    line-height: 1.8;
}

.content-section strong {
    color: var(--amber-primary);
    font-weight: 700;
}

/* Contact Form Styles */
.contact-section {
    max-width: 100%;
    margin: 80px 0;
    padding: 60px 80px;
    background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.contact-section h2 {
    font-family: 'made_dillan', "Stack Sans Headline", serif;
    color: var(--amber-heading);
    margin-bottom: 15px;
    text-align: center;
    font-size: 42px;
    font-weight: normal;
}

.contact-section > p {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 40px;
    font-size: 16px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
    max-width: 700px;
    margin: 0 auto;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group label {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 15px;
}

.form-group input,
.form-group textarea {
    padding: 16px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: inherit;
    font-size: 16px;
    transition: all 0.3s ease;
    background-color: white;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--amber-accent);
    box-shadow: 0 0 0 3px rgba(216, 155, 58, 0.1);
}

.form-group textarea {
    min-height: 140px;
    resize: vertical;
}

.submit-button {
    background-color: var(--amber-accent);
    color: white;
    padding: 18px 40px;
    border: none;
    border-radius: 8px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    box-shadow: 0 4px 15px rgba(216, 155, 58, 0.3);
}

.submit-button:hover {
    background-color: var(--amber-primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(216, 155, 58, 0.4);
}

/* Footer Styles */
.site-footer {
    background-color: var(--amber-primary);
    border-top: 3px solid var(--amber-accent);
    padding: 50px 0 20px;
    margin-top: 60px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-column h3 {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 700;
}

.footer-column p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

.contact-info a {
    color: rgba(255, 255, 255, 0.9);
    transition: opacity 0.3s ease;
}

.contact-info a:hover {
    opacity: 1;
}

.email-link {
    cursor: default;
}

.email-link.email-revealed {
    cursor: pointer;
}

.footer-social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.footer-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: white;
    font-size: 20px;
    transition: all 0.3s ease;
}

.footer-social-link:hover {
    background-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
    opacity: 1;
}

.footer-social-link .social-icon {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
    text-align: center;
}

.copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.copyright-brand {
    font-family: 'made_dillan', "Stack Sans Headline", serif;
    font-weight: normal;
    font-style: normal;
}

/* Tours Section Styles */
.tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 60px;
    margin: 60px 0;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.tour-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tour-card h3 {
    font-family: 'made_dillan', "Stack Sans Headline", serif;
    color: var(--amber-heading);
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: normal;
}

.tour-card p {
    line-height: 1.8;
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 20px;
    flex-grow: 1;
}

.tour-button {
    display: inline-block;
    background-color: var(--amber-accent);
    color: white;
    padding: 12px 28px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    margin-top: 10px;
}

.tour-button:hover {
    background-color: var(--amber-primary);
    opacity: 1;
}

/* Blog Styles */
.blog-list {
    max-width: 900px;
    margin: 40px auto;
}

.blog-item {
    padding: 30px 0;
}

.blog-list-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 20px;
    position: relative;
}

.blog-list-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--amber-accent);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.blog-list-image:hover::after {
    opacity: 0.15;
}

.blog-list-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.5s ease;
}

.blog-list-image a:hover img {
    transform: scale(1.025);
}

.blog-item h2 {
    font-family: 'made_dillan', "Stack Sans Headline", serif;
    color: var(--amber-heading);
    font-size: 32px;
    margin-bottom: 10px;
    font-weight: normal;
}

.blog-item h2 a {
    color: var(--amber-heading);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-item h2 a:hover {
    color: var(--amber-accent);
}

.blog-meta {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 15px;
}

.blog-description {
    line-height: 1.8;
    color: var(--text-dark);
    font-size: 16px;
    margin: 0;
}

.blog-divider {
    border: none;
    border-top: 1px solid #e0e0e0;
    margin: 0;
}

/* Single Blog Post Styles */
.blog-hero-image {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.blog-hero-image img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    display: block;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.blog-post {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px 60px;
}

.blog-post-header {
    text-align: center;
    margin-bottom: 40px;
}

.blog-post-header h1 {
    font-family: 'made_dillan', "Stack Sans Headline", serif;
    color: var(--amber-heading);
    font-size: 48px;
    margin-bottom: 0;
    font-weight: normal;
}

.blog-post-meta {
    color: var(--text-light);
    font-size: 15px;
}

.blog-post-meta .author-section {
    margin-left: 25px;
}

.blog-post-meta .author {
    font-weight: 700;
}

.blog-post-image {
    margin-bottom: 40px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.blog-post-image img {
    width: 100%;
    height: auto;
    display: block;
}

.blog-post-content {
    line-height: 1.9;
    font-size: 18px;
    color: var(--text-dark);
}

.blog-post-content h2 {
    font-family: 'made_dillan', "Stack Sans Headline", serif;
    color: var(--amber-heading);
    font-size: 36px;
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: normal;
}

.blog-post-content h3 {
    color: var(--amber-links);
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

.blog-post-content p {
    margin-bottom: 20px;
}

.blog-post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 30px 0;
}

.blog-post-content ul,
.blog-post-content ol {
    margin: 20px 0;
    padding-left: 30px;
}

.blog-post-content li {
    margin: 10px 0;
}

.blog-post-content a {
    color: var(--amber-accent);
    font-weight: 600;
}

.blog-post-footer {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
}

.back-to-blog {
    color: var(--amber-accent);
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.back-to-blog:hover {
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .site-header {
        padding: 10px 0;
    }

    .header-container {
        flex-wrap: wrap;
        position: relative;
        justify-content: center;
        padding: 0 15px;
    }

    .header-left {
        flex: none;
        width: 100%;
        display: flex;
        justify-content: center;
        order: 1;
    }

    .logo {
        display: flex;
        justify-content: center;
    }

    .logo-image {
        height: 80px;
        margin: -5px 0;
    }

    .mobile-menu-toggle {
        display: flex;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        order: 2;
    }

    .main-navigation {
        order: 3;
        width: 100%;
        margin-top: 20px;
        display: none;
    }

    .main-navigation.active {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .nav-menu {
        display: flex;
        flex-direction: column;
        gap: 15px;
        width: 100%;
        max-width: 300px;
        padding: 10px 0;
        align-items: center;
        order: 1;
        margin: 0;
    }

    .nav-item {
        text-align: center;
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .nav-link {
        display: inline-block;
        padding: 12px 20px;
        text-align: center;
    }

    .language-switcher {
        display: flex;
        margin-left: 0;
        justify-content: center;
        flex-direction: row;
        width: 100%;
        max-width: 300px;
        order: 2;
        margin-top: 10px;
        padding-top: 10px;
        padding-bottom: 10px;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
        gap: 15px;
    }

    .language-link {
        font-size: 14px;
        padding: 8px 16px;
    }

    .hero-section h1 {
        font-size: 40px;
        white-space: normal;
        line-height: 1.1;
        margin-bottom: 15px;
    }

    .hero-section p {
        font-size: 17px;
    }

    .page-content h1 {
        font-size: 40px;
        white-space: normal;
        line-height: 1.1;
    }

    .hero-section h2,
    .content-section h2,
    .page-content h2,
    .contact-section h2 {
        font-size: 34px;
    }

    .content-section p,
    .page-content p {
        font-size: 16px;
    }

    .footer-columns {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .tours-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .tour-card h3 {
        font-size: 28px;
    }

    .contact-section {
        padding: 40px 25px;
        margin: 60px 0;
    }

    .contact-section h2 {
        font-size: 32px;
    }

    .contact-form {
        gap: 20px;
    }
}
