/*
 * Tritsch Tratsch Page Styles
 */

/* FORCE SOLID & ANIMATED HEADER: Overrides transparent header styles for this page */
.page-template-page-tritsch-tratsch .site-header {
    background: #445f82 !important; /* Use a solid color */
    position: fixed !important; /* Fixed position to allow animation */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.tritsch-tratsch-page {
    font-family: 'Inter', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f9f9f9;
    padding: 85px 0 40px 0; /* Added padding-top to push content down */
}

.tritsch-tratsch-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    background-color: #fff;
    box-shadow: 0 0 20px rgba(0,0,0,0.05);
    border-radius: 8px;
    overflow: hidden;
}

.tritsch-tratsch-header {
    text-align: center;
    padding: 60px 20px 40px; /* Increased top and bottom padding */
    background-color: #3a506b; /* Darker, richer blue */
    color: #fff;
}

.tritsch-tratsch-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2em; /* Slightly larger */
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 3px; /* Increased letter spacing */
    font-weight: 700;
    color: #fff; /* Explicitly set to white */
}

.tritsch-tratsch-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 3.2em; /* Larger */
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 4px; /* Increased letter spacing */
    font-weight: 700;
    color: #fff; /* Explicitly set to white */
}

.tritsch-tratsch-intro {
    font-size: 1.2em; /* Slightly larger */
    margin-bottom: 0; /* Removed bottom margin */
    font-weight: 400;
    color: #fff; /* Ensure text is white */
}

.tritsch-tratsch-image-gallery {
    text-align: center;
    padding: 20px;
}

.tritsch-tratsch-main-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.tritsch-tratsch-section {
    padding: 30px 40px;
    border-bottom: 1px solid #eee;
}

.tritsch-tratsch-section:last-of-type {
    border-bottom: none;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8em;
    color: #445f82;
    margin-bottom: 15px;
}

.tritsch-tratsch-section p {
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .tritsch-tratsch-container {
        padding: 0 10px;
    }

    .tritsch-tratsch-header {
        padding: 40px 15px 25px; /* Adjusted padding for mobile */
    }

    .tritsch-tratsch-title {
        font-size: 1.8em;
    }

    .tritsch-tratsch-subtitle {
        font-size: 2.5em;
    }

    .tritsch-tratsch-intro {
        font-size: 1.1em;
    }

    .tritsch-tratsch-section {
        padding: 20px 25px;
    }

    .section-title {
        font-size: 1.5em;
    }
}

@media (max-width: 480px) {
    .tritsch-tratsch-header {
        padding: 30px 10px 20px;
    }

    .tritsch-tratsch-title {
        font-size: 1.5em;
    }

    .tritsch-tratsch-subtitle {
        font-size: 2em;
    }

    .tritsch-tratsch-intro {
        font-size: 1em;
    }

    .tritsch-tratsch-section {
        padding: 15px 20px;
    }

    .section-title {
        font-size: 1.3em;
    }
}