/* QR code image styles */
.qrcode-wrap {
    display: flex;
    justify-content: center;
    margin-top: 28px;
}
.qrcode-img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    padding: 8px;
}
/* Contact form styles */
.contact-section {
    max-width: 500px;
    margin: 48px auto 0 auto;
    background: #f8f8f8;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    padding: 32px 24px 24px 24px;
}
.contact-section h2 {
    margin-top: 0;
    margin-bottom: 18px;
    text-align: center;
    color: #1a1a1a;
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.contact-form label {
    font-weight: 500;
    color: #333;
}
.contact-form input,
.contact-form textarea {
    padding: 8px 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    background: #fff;
    resize: vertical;
}
.contact-form textarea {
    min-height: 80px;
}
.contact-form button[type="submit"] {
    margin-top: 8px;
    background: #222;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 10px 0;
    font-size: 1.08rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}
.contact-form button[type="submit"]:hover {
    background: #444;
}
@media (max-width: 600px) {
    .contact-section {
        padding: 14px 4px 10px 4px;
    }
}
/* Carousel styles */
.carousel-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin: 32px 0 32px 0;
}
.carousel-img {
    width: 384px;
    height: 252px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.13);
    background: #eee;
    transition: box-shadow 0.2s;
}
.carousel-btn {
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
    color: #333;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    transition: background 0.2s, box-shadow 0.2s;
}
.carousel-btn:hover {
    background: #e0e0e0;
    box-shadow: 0 4px 16px rgba(0,0,0,0.13);
}
@media (max-width: 600px) {
    .carousel-img {
        width: 98vw;
        height: 34vw;
        min-height: 90px;
        max-width: 99vw;
    }
    .carousel-section {
        gap: 8px;
    }
    .carousel-btn {
        width: 32px;
        height: 32px;
        font-size: 1.1rem;
    }
}
body {
    margin: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #f7f7f7;
    color: #222;
}
header {
    padding: 32px 0 16px 0;
    text-align: center;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.logo {
    max-width: 100vw;
    height: auto;
    display: block;
    margin: 0 auto 8px auto;
}
nav {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 16px;
}
nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 1.1rem;
    padding: 6px 12px;
    border-radius: 4px;
    transition: background 0.2s;
}
nav a:hover, nav a.active {
    background: #e0e0e0;
}
.main-content {
    max-width: 900px;
    margin: 32px auto;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
    padding: 32px 24px;
}
/* Author blurb */
.author-blurb {
    text-align: center;
    margin-bottom: 32px;
    font-size: 1.15rem;
    color: #444;
}

/* About section */
.about-section {
    display: flex;
    align-items: flex-start;
    gap: 32px;
    background: #f2f2f2;
    border-radius: 10px;
    padding: 32px 24px;
    margin-bottom: 40px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.about-img-wrap {
    flex: 0 0 160px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}
.about-img {
    width: 160px;
    height: 160px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 2px 12px rgba(0,0,0,0.10);
    border: 4px solid #fff;
    background: #eee;
}
.about-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: 1.08rem;
    color: #333;
}
.about-text h2 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.4rem;
    color: #1a1a1a;
}
.about-text p {
    margin: 0 0 10px 0;
}

/* Thumbnails */
.thumbnails {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
    margin-bottom: 32px;
}
.gallery-grid {
    gap: 32px;
    margin-top: 24px;
}
.thumbnail {
    width: 180px;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}
.thumbnail:hover {
    transform: scale(1.04);
    box-shadow: 0 4px 16px rgba(0,0,0,0.16);
}

/* Modal styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0; top: 0;
    width: 100vw; height: 100vh;
    background: rgba(0,0,0,0.7);
    align-items: center;
    justify-content: center;
}
.modal.open {
    display: flex;
}
.modal-content {
    background: none;
    border: none;
    padding: 0;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.modal-content img {
    max-width: 90vw;
    max-height: 80vh;
    border-radius: 10px;
    box-shadow: 0 4px 32px rgba(0,0,0,0.25);
}

/* Footer */
.site-footer {
    background: #222;
    color: #fff;
    text-align: center;
    padding: 24px 0 12px 0;
    margin-top: 48px;
    border-radius: 12px 12px 0 0;
    box-shadow: 0 -2px 8px rgba(0,0,0,0.04);
}
.footer-content {
    font-size: 1rem;
    letter-spacing: 0.5px;
}

@media (max-width: 900px) {
    .about-section {
        flex-direction: column;
        align-items: center;
        gap: 18px;
        padding: 20px 8px;
    }
    .about-img {
        width: 120px;
        height: 120px;
    }
}

@media (max-width: 600px) {
    .main-content {
        padding: 16px 4px;
    }
    .thumbnails, .gallery-grid {
        gap: 12px;
    }
    .thumbnail {
        width: 110px;
        height: 70px;
    }
    .about-section {
        padding: 10px 2px;
    }
    .site-footer {
        padding: 16px 0 8px 0;
    }
}
