/* Duck Flats Farm Fiber Studio - Stylesheet */

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Times New Roman", serif;
    font-size: 14pt;
    line-height: 1.6;
    color: #000;
    background-color: #fff;
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

/* Header */
header {
    text-align: center;
    margin-bottom: 20px;
}

.logo {
    max-width: 371px;
    height: auto;
}

/* Greeting Text */
.greeting {
    text-align: center;
    font-size: 24pt;
    font-style: italic;
    font-weight: bold;
    color: red;
    margin: 30px 0;
}

/* Main Content */
main {
    margin: 0 auto;
}

main > p {
    margin-bottom: 20px;
    font-weight: bold;
    text-align: justify;
}

/* Map Container */
.map-container {
    text-align: center;
    margin: 30px 0;
}

.map-container iframe {
    max-width: 100%;
    height: 450px;
}

/* Open House Section */
.open-house {
    margin: 30px 0;
}

.open-house p {
    margin-bottom: 10px;
    font-weight: bold;
}

.open-house a {
    color: #0000EE;
    text-decoration: underline;
}

.open-house a:visited {
    color: #551A8B;
}

.open-house a:hover {
    color: #FF0000;
}

/* Section Headers */
.section-head {
    font-size: 14pt;
    font-weight: bold;
    margin: 60px 0 40px 0;
    padding: 10px 20px;
    clear: both;
}

/* Gallery Styles */
.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 0;
    margin-bottom: 60px;
    clear: both;
}

.gallery-item {
    float: left;
    padding: 10px 20px;
    min-height: 720px;
    position: relative;
}

.gallery-item img {
    display: block;
    margin: 0 auto;
    width: 400px;
    height: auto;
}

.caption {
    text-align: center;
    font-size: 14pt;
    width: 400px;
    margin-top: 10px;
}

/* Responsive Design */
@media screen and (max-width: 1200px) {
    .container {
        max-width: 900px;
    }
}

@media screen and (max-width: 900px) {
    .container {
        max-width: 600px;
    }
    
    .gallery {
        justify-content: center;
    }
}

@media screen and (max-width: 600px) {
    body {
        font-size: 12pt;
    }
    
    .greeting {
        font-size: 20pt;
    }
    
    .logo {
        max-width: 100%;
    }
    
    .gallery-item {
        width: 100%;
        float: none;
        min-height: auto;
        padding: 10px;
    }
    
    .gallery-item img,
    .caption {
        width: 100%;
        max-width: 400px;
    }
    
    .map-container iframe {
        width: 100%;
        height: 300px;
    }
}

/* Print Styles */
@media print {
    .map-container {
        display: none;
    }
    
    body {
        font-size: 12pt;
    }
    
    .gallery-item {
        page-break-inside: avoid;
    }
}
