/* Sample Post 5 - Paul Gauguin Inspired Style */
/* Color Palette inspired by Gauguin's Tahitian period */

:root {
    --gauguin-blue: #4a90a4;
    --gauguin-yellow: #f4a442;
    --gauguin-coral: #d96c5f;
    --gauguin-ochre: #c17f50;
    --gauguin-green: #5a8f70;
    --gauguin-violet: #8b6b9e;
    --gauguin-cream: #f5e6d3;
    --gauguin-brown: #5c4a3f;
}

/* Main Post Container */
.gauguin-post {
    background: linear-gradient(to bottom, #f5e6d3 0%, #e8d4bf 100%);
    color: var(--gauguin-brown);
    font-family: 'Garamond', 'Georgia', serif;
    padding: 40px;
}

.gauguin-post h1,
.gauguin-post h2,
.gauguin-post h3 {
    color: var(--gauguin-brown);
}

/* Decorative Header */
.gauguin-header {
    text-align: center;
    padding: 40px 20px;
    margin-bottom: 50px;
}

.decorative-border-top,
.decorative-border-bottom {
    height: 4px;
    background: linear-gradient(
        to right,
        var(--gauguin-coral) 0%,
        var(--gauguin-yellow) 25%,
        var(--gauguin-blue) 50%,
        var(--gauguin-green) 75%,
        var(--gauguin-violet) 100%
    );
    margin: 20px auto;
    max-width: 400px;
}

.gauguin-title {
    font-size: 3rem;
    font-weight: normal;
    margin: 30px 0 20px;
    color: var(--gauguin-blue);
    text-shadow: 2px 2px 0 var(--gauguin-coral);
    font-family: 'Georgia', serif;
}

.gauguin-subtitle {
    font-size: 1.4rem;
    font-style: italic;
    color: var(--gauguin-violet);
    margin-bottom: 20px;
}

.author-signature {
    font-size: 1.1rem;
    color: var(--gauguin-ochre);
    font-family: 'Brush Script MT', cursive;
}

/* Hero Image with Artistic Frame */
.gauguin-hero {
    margin: 50px 0;
    text-align: center;
}

.frame-outer {
    background: var(--gauguin-ochre);
    padding: 15px;
    display: inline-block;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.frame-inner {
    background: var(--gauguin-cream);
    padding: 10px;
    border: 3px solid var(--gauguin-brown);
}

.frame-inner img {
    width: 100%;
    max-width: 800px;
    height: auto;
    display: block;
}

.artistic-caption {
    margin-top: 20px;
    font-size: 1.1rem;
    font-style: italic;
    color: var(--gauguin-violet);
}

/* Intro Paragraph with Decorative Initial */
.gauguin-intro {
    font-size: 1.3rem;
    line-height: 1.8;
    margin: 40px 0;
    text-align: justify;
}

.gauguin-intro::first-letter {
    font-size: 5rem;
    line-height: 0.8;
    float: left;
    font-weight: bold;
    color: var(--gauguin-coral);
    margin: 10px 15px 0 0;
    font-family: 'Georgia', serif;
    text-shadow: 2px 2px 0 var(--gauguin-yellow);
}

/* Gauguin-style Quote Block */
.gauguin-quote {
    background: linear-gradient(135deg, var(--gauguin-blue) 0%, var(--gauguin-violet) 100%);
    border: 5px solid var(--gauguin-yellow);
    padding: 40px;
    margin: 50px 0;
    text-align: center;
    position: relative;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.quote-decoration {
    font-size: 2rem;
    color: var(--gauguin-yellow);
    margin: 10px 0;
}

.gauguin-quote p {
    font-size: 1.8rem;
    font-style: italic;
    color: var(--gauguin-cream);
    margin: 20px 0;
    line-height: 1.6;
}

.gauguin-quote cite {
    display: block;
    font-size: 1.1rem;
    color: var(--gauguin-yellow);
    font-style: normal;
    margin-top: 20px;
}

/* Section Headings */
.section-heading {
    font-size: 2.2rem;
    color: var(--gauguin-coral);
    margin-top: 60px;
    margin-bottom: 30px;
    text-align: center;
    border-bottom: 3px solid var(--gauguin-yellow);
    padding-bottom: 15px;
}

/* Color Palette Display */
.color-palette {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.palette-item {
    text-align: center;
}

.color-swatch {
    height: 120px;
    border-radius: 10px;
    margin-bottom: 15px;
    border: 4px solid var(--gauguin-brown);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.tahitian-blue { background-color: var(--gauguin-blue); }
.mango-yellow { background-color: var(--gauguin-yellow); }
.tropical-coral { background-color: var(--gauguin-coral); }
.earth-ochre { background-color: var(--gauguin-ochre); }
.jungle-green { background-color: var(--gauguin-green); }
.violet-shadow { background-color: var(--gauguin-violet); }

.color-info h4 {
    color: var(--gauguin-brown);
    margin: 10px 0 5px;
    font-size: 1.1rem;
}

.color-info p {
    color: var(--gauguin-ochre);
    font-size: 0.9rem;
    font-style: italic;
}

/* Gallery with Artistic Frames */
.gauguin-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.gallery-frame {
    background: var(--gauguin-ochre);
    padding: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

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

.gallery-frame img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border: 3px solid var(--gauguin-cream);
    display: block;
}

.frame-label {
    background: var(--gauguin-blue);
    color: var(--gauguin-cream);
    padding: 10px;
    text-align: center;
    margin-top: 8px;
    font-weight: bold;
    font-family: 'Georgia', serif;
}

/* Artistic Cards Grid */
.artistic-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.art-card {
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 4px solid;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.coral-card {
    background: var(--gauguin-coral);
    border-color: var(--gauguin-yellow);
}

.yellow-card {
    background: var(--gauguin-yellow);
    border-color: var(--gauguin-coral);
}

.blue-card {
    background: var(--gauguin-blue);
    border-color: var(--gauguin-green);
}

.art-card .card-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.art-card h3 {
    color: var(--gauguin-cream);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.art-card p {
    color: var(--gauguin-cream);
    line-height: 1.6;
}

/* Video with Artistic Frame */
.gauguin-video-container {
    margin: 50px 0;
    text-align: center;
}

.video-frame {
    background: var(--gauguin-ochre);
    padding: 15px;
    display: inline-block;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.video-frame iframe {
    width: 100%;
    max-width: 800px;
    height: 450px;
    border: 5px solid var(--gauguin-cream);
    display: block;
}

.video-caption {
    margin-top: 20px;
    font-size: 1.1rem;
    font-style: italic;
    color: var(--gauguin-violet);
}

/* Pattern Divider */
.pattern-divider {
    text-align: center;
    margin: 60px 0;
    font-size: 2rem;
    color: var(--gauguin-coral);
}

/* Two Column Artistic Layout */
.two-column-artistic {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin: 40px 0;
    align-items: center;
}

.artistic-border {
    border: 8px solid var(--gauguin-blue);
    padding: 10px;
    background: var(--gauguin-yellow);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.artistic-border img {
    width: 100%;
    height: auto;
    display: block;
}

.ornamental-heading {
    color: var(--gauguin-coral);
    font-size: 1.8rem;
    margin-bottom: 20px;
    text-decoration: underline;
    text-decoration-color: var(--gauguin-yellow);
    text-decoration-thickness: 3px;
}

.decorative-list {
    list-style: none;
    padding-left: 0;
}

.decorative-list li {
    margin-bottom: 15px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.list-ornament {
    color: var(--gauguin-coral);
    margin-right: 10px;
    font-size: 1.3rem;
}

/* Philosophy Box */
.philosophy-box {
    background: linear-gradient(135deg, var(--gauguin-green) 0%, var(--gauguin-blue) 100%);
    border: 5px solid var(--gauguin-yellow);
    padding: 40px;
    margin: 50px 0;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.ornamental-corner {
    position: absolute;
    width: 30px;
    height: 30px;
    border: 3px solid var(--gauguin-coral);
}

.top-left { top: -3px; left: -3px; border-right: none; border-bottom: none; }
.top-right { top: -3px; right: -3px; border-left: none; border-bottom: none; }
.bottom-left { bottom: -3px; left: -3px; border-right: none; border-top: none; }
.bottom-right { bottom: -3px; right: -3px; border-left: none; border-top: none; }

.philosophy-box h3 {
    color: var(--gauguin-yellow);
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.philosophy-text {
    font-size: 1.6rem;
    font-style: italic;
    color: var(--gauguin-cream);
    text-align: center;
    margin: 30px 0;
}

.philosophy-box p {
    color: var(--gauguin-cream);
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Gauguin Table */
.gauguin-table {
    width: 100%;
    border-collapse: collapse;
    margin: 40px 0;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.gauguin-table thead {
    background: linear-gradient(135deg, var(--gauguin-coral) 0%, var(--gauguin-yellow) 100%);
}

.gauguin-table th {
    padding: 20px;
    color: var(--gauguin-brown);
    font-weight: bold;
    border: 2px solid var(--gauguin-brown);
    font-size: 1.1rem;
}

.gauguin-table td {
    padding: 18px;
    border: 2px solid var(--gauguin-ochre);
    background: var(--gauguin-cream);
    color: var(--gauguin-brown);
}

.gauguin-table tbody tr:nth-child(odd) {
    background: #f5e6d3;
}

.gauguin-table tbody tr:nth-child(even) {
    background: #ede0cc;
}

.gauguin-table tbody tr:hover {
    background: var(--gauguin-yellow);
}

/* Large Artistic Quote */
.large-artistic-quote {
    text-align: center;
    margin: 60px 0;
    padding: 50px;
    background: var(--gauguin-violet);
    border: 8px solid var(--gauguin-yellow);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.quote-main {
    font-size: 2.5rem;
    font-style: italic;
    color: var(--gauguin-cream);
    margin-bottom: 20px;
    line-height: 1.4;
}

.quote-attribution {
    font-size: 1.3rem;
    color: var(--gauguin-yellow);
    font-weight: bold;
}

/* Wrapped Figure */
.wrapped-figure {
    float: right;
    margin: 20px 0 20px 30px;
    max-width: 350px;
}

.figure-border {
    background: var(--gauguin-coral);
    padding: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.figure-border img {
    width: 100%;
    height: auto;
    border: 3px solid var(--gauguin-cream);
    display: block;
}

.wrapped-figure figcaption {
    margin-top: 10px;
    font-size: 0.95rem;
    font-style: italic;
    color: var(--gauguin-violet);
    text-align: center;
}

/* GIF Showcase */
.gauguin-gif-showcase {
    margin: 60px 0;
    text-align: center;
}

.gif-artistic-frame {
    background: var(--gauguin-blue);
    padding: 15px;
    display: inline-block;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.gif-artistic-frame img {
    max-width: 100%;
    height: auto;
    border: 5px solid var(--gauguin-yellow);
}

.showcase-text {
    margin-top: 20px;
    font-size: 1.2rem;
    font-style: italic;
    color: var(--gauguin-violet);
}

/* Closing Artistic Box */
.closing-artistic {
    background: linear-gradient(135deg, var(--gauguin-yellow) 0%, var(--gauguin-coral) 100%);
    border: 6px solid var(--gauguin-blue);
    padding: 50px;
    margin: 60px 0;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.closing-decoration {
    font-size: 2rem;
    margin: 20px 0;
    color: var(--gauguin-blue);
}

.closing-text {
    font-size: 1.3rem;
    color: var(--gauguin-brown);
    line-height: 1.8;
    margin-bottom: 25px;
}

.closing-signature {
    font-size: 1.2rem;
    color: var(--gauguin-brown);
    font-family: 'Brush Script MT', cursive;
}

/* Related Gauguin Cards */
.related-gauguin {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 5px solid var(--gauguin-coral);
}

.related-cards-gauguin {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.gauguin-related-card {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.3s ease;
}

.gauguin-related-card:hover {
    transform: translateY(-5px);
}

.related-image-frame {
    background: var(--gauguin-ochre);
    padding: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.related-image-frame img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border: 3px solid var(--gauguin-cream);
    display: block;
}

.gauguin-related-card h4 {
    margin: 15px 0 10px;
    color: var(--gauguin-blue);
    font-size: 1.3rem;
}

.gauguin-related-card p {
    color: var(--gauguin-brown);
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 768px) {
    .gauguin-title {
        font-size: 2rem;
    }
    
    .two-column-artistic {
        grid-template-columns: 1fr;
    }
    
    .wrapped-figure {
        float: none;
        margin: 30px auto;
        max-width: 100%;
    }
    
    .video-frame iframe {
        height: 250px;
    }
    
    .quote-main {
        font-size: 1.8rem;
    }
    
    .gauguin-intro::first-letter {
        font-size: 3.5rem;
    }
}