/* CSS Reset with mobile considerations */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* Improve touch interactions on mobile */
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
    -webkit-touch-callout: none;
}

/* Improve font loading and mobile performance */
body {
    font-family: Georgia, 'Times New Roman', serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #f8f9fa;
    /* Improve scroll performance on mobile */
    -webkit-overflow-scrolling: touch;
    /* Prevent text size adjustment on mobile */
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

/* Optimize images for mobile */
img {
    max-width: 100%;
    height: auto;
    /* Improve image rendering on mobile */
    image-rendering: optimizeQuality;
    -ms-interpolation-mode: bicubic;
}

/* Improve video performance on mobile */
video {
    max-width: 100%;
    height: auto;
}

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

/* Minimaler Header (falls noch benötigt) */
header {
    background-color: #34495e;
    min-height: 0;
    padding: 0;
}

/* Hero Section mit Hintergrundbild */
.hero-section {
    background-image: url('static_img/image.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: white;
    padding: 2rem 0;
    text-align: center;
    position: relative;
    min-height: 50vh;
    max-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Overlay für bessere Lesbarkeit */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.logo-image {
    max-width: 120px;
    max-height: 120px;
    width: auto;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.5));
    transition: transform 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.05);
}

.logo {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 0;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.7);
}

.tagline {
    font-size: 1.2rem;
    font-style: italic;
    opacity: 0.95;
    margin-bottom: 0.3rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.location {
    font-size: 1.1rem;
    opacity: 0.9;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

/* Hero Social Buttons */
.hero-social-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.7rem 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    color: #2c3e50;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.hero-btn:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.hero-btn-instagram:hover {
    background: linear-gradient(135deg, #e91e63, #9c27b0);
    color: white;
}

.hero-btn-etsy:hover {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: white;
}

.hero-btn-icon {
    font-size: 1.2rem;
}

.hero-btn-text {
    font-weight: 600;
}

/* Navigation */
nav {
    background-color: #34495e;
    padding: 0.6rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.container {
    position: relative;
}

/* Hamburger Menu */
.hamburger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 101;
    width: 40px;
    height: 40px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background-color: white;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Hamburger Animation */
.hamburger-menu.active .hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger-menu.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active .hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Navigation Menu */
.nav-menu {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    transition: all 0.3s ease;
}

nav li {
    margin: 0 1rem;
}

nav a {
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: background-color 0.3s;
    display: block;
}

nav a:hover {
    background-color: #2c3e50;
}

/* Sections */
section {
    padding: 3rem 0;
    margin-bottom: 2rem;
}

.section-alt {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #8b4513;
    position: relative;
}

h2:after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: #a0522d;
    margin: 1rem auto;
    border-radius: 2px;
}

/* Process Timeline */
.process-timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    padding: 2rem 0;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, #8b4513, #a0522d);
    transform: translateX(-50%);
    border-radius: 2px;
}

.process-step {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
}

.process-step:nth-child(odd) {
    flex-direction: row;
}

.process-step:nth-child(even) {
    flex-direction: row-reverse;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #8b4513, #a0522d);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
    margin: 0 2rem;
    flex-shrink: 0;
}

.step-content {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    max-width: 350px;
    position: relative;
    border: 2px solid #f8f9fa;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.process-step:nth-child(odd) .step-content::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: 10px solid white;
}

.process-step:nth-child(even) .step-content::before {
    content: '';
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 10px solid white;
}

.step-content h3 {
    color: #8b4513;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.step-content p {
    line-height: 1.6;
    color: #2c3e50;
    margin: 0;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 2rem;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-text p {
    margin-bottom: 1.5rem;
}

.highlight-box {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.highlight-box h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Gallery */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

/* Features */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature h3 {
    color: #8b4513;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

/* Contact */
.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.social-link {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.social-link.etsy {
    background: linear-gradient(135deg, #f39c12, #e67e22);
}

.social-link.instagram {
    background: linear-gradient(135deg, #e91e63, #9c27b0);
}

.social-icon {
    font-size: 1.5rem;
    margin-right: 0.5rem;
}

/* Footer */
footer {
    background-color: #2c3e50;
    color: white;
    text-align: center;
    padding: 2rem 0;
    margin-top: 3rem;
}

/* Legal Documents Styles */
.legal-document {
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    line-height: 1.8;
}

.legal-document h1 {
    color: #8b4513;
    border-bottom: 3px solid #8b4513;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.legal-document h2 {
    color: #2c3e50;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.legal-document h3 {
    color: #34495e;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.legal-document p {
    margin-bottom: 1rem;
    text-align: justify;
}

.legal-document ul {
    margin: 1rem 0 1rem 2rem;
}

.legal-document li {
    margin-bottom: 0.5rem;
}

.legal-document a {
    color: #8b4513;
    text-decoration: none;
    border-bottom: 1px dotted #8b4513;
}

.legal-document a:hover {
    color: #654321;
    border-bottom: 1px solid #654321;
}

.nav-home {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: #8b4513;
    color: white !important;
    text-decoration: none !important;
    border-radius: 4px;
    margin: 1rem 0;
    border-bottom: none !important;
    transition: background-color 0.3s ease;
}

.nav-home:hover {
    background-color: #654321;
    color: white !important;
}

.last-updated {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
    font-style: italic;
    color: #666;
    text-align: center;
}

/* Footer Legal Links */
.legal-links {
    margin-top: 1rem;
    text-align: center;
}

.legal-links a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: #ecf0f1;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .legal-links {
        font-size: 0.8rem;
    }
}

/* Responsive Design - Mobile First Approach */

/* Small Mobile Devices (320px - 480px) */
@media (max-width: 480px) {
    body {
        font-size: 14px;
    }

    .container {
        padding: 0 15px;
    }

    /* Mobile Hero Section */
    .hero-section {
        padding: 3rem 0;
        min-height: 50vh;
        background-attachment: scroll; /* Fixed attachment kann auf Mobile problematisch sein */
    }

    .logo-image {
        max-width: 100px;
        max-height: 100px;
    }

    .logo {
        font-size: 2.5rem;
        margin-bottom: 0.8rem;
    }

    .tagline {
        font-size: 1.1rem;
        margin-bottom: 0.3rem;
    }

    .location {
        font-size: 0.95rem;
    }

    /* Mobile Hero Buttons */
    .hero-social-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin-top: 1.5rem;
    }

    .hero-btn {
        width: 100%;
        max-width: 250px;
        justify-content: center;
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .hero-btn-icon {
        font-size: 1.1rem;
    }

    /* Mobile Process Timeline */
    .process-timeline::before {
        left: 30px;
    }

    .process-step {
        flex-direction: row !important;
        margin-bottom: 2rem;
    }

    .process-step:nth-child(even) {
        flex-direction: row !important;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        margin: 0 1rem 0 0;
        position: relative;
        left: 5px;
    }

    .step-content {
        max-width: none;
        flex: 1;
        padding: 1.5rem;
    }

    .step-content::before {
        display: none;
    }

    .step-content h3 {
        font-size: 1.1rem;
    }

    h2 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    section {
        padding: 2rem 0;
        margin-bottom: 1rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .about-text {
        font-size: 1rem;
        line-height: 1.6;
    }

    .about-text p {
        margin-bottom: 1rem;
    }

    .highlight-box {
        padding: 1.5rem;
        margin-top: 1rem;
    }

    .highlight-box h3 {
        font-size: 1.2rem;
    }

    .features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .feature {
        padding: 1.5rem;
    }

    .feature-icon {
        font-size: 2.5rem;
    }

    .gallery {
        grid-template-columns: 1fr 1fr;
        gap: 0.8rem;
    }

    .gallery-item img,
    .gallery-item video {
        height: 150px;
    }

    .social-links {
        flex-direction: column;
        gap: 1rem;
    }

    .social-link {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    /* Mobile Navigation with Hamburger */
    nav {
        padding: 0.8rem 0;
    }

    .hamburger-menu {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 250px;
        height: 100vh;
        background-color: #34495e;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 80px;
        box-shadow: -2px 0 10px rgba(0,0,0,0.1);
        transition: right 0.3s ease;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu li {
        margin: 0.5rem 0;
        width: 80%;
    }

    .nav-menu a {
        width: 100%;
        text-align: center;
        padding: 1rem;
        font-size: 1.1rem;
        border-radius: 8px;
    }

    /* Mobile Modal */
    .modal-content {
        width: 95%;
        margin-top: 10%;
    }

    .close {
        right: 20px;
        font-size: 30px;
    }
}

/* Medium Mobile Devices (481px - 768px) */
@media (min-width: 481px) and (max-width: 768px) {
    /* Mobile Hero Section */
    .hero-section {
        padding: 3.5rem 0;
        min-height: 55vh;
        background-attachment: scroll;
    }

    .logo-image {
        max-width: 120px;
        max-height: 120px;
    }

    .logo {
        font-size: 3rem;
    }

    .tagline {
        font-size: 1.2rem;
    }

    .location {
        font-size: 1rem;
    }

    /* Medium Mobile Hero Buttons */
    .hero-social-buttons {
        flex-direction: row;
        justify-content: center;
        gap: 1.2rem;
        margin-top: 1.8rem;
    }

    .hero-btn {
        padding: 0.9rem 1.8rem;
        font-size: 0.95rem;
    }

    .hero-btn-icon {
        font-size: 1.15rem;
    }

    h2 {
        font-size: 2rem;
    }

    /* Medium Mobile Process Timeline */
    .process-timeline::before {
        left: 35px;
    }

    .process-step {
        flex-direction: row !important;
        margin-bottom: 2.5rem;
    }

    .process-step:nth-child(even) {
        flex-direction: row !important;
    }

    .step-number {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
        margin: 0 1.5rem 0 0;
        position: relative;
        left: 10px;
    }

    .step-content {
        max-width: none;
        flex: 1;
        padding: 1.8rem;
    }

    .step-content::before {
        display: none;
    }

    .step-content h3 {
        font-size: 1.2rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .features {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }

    .gallery {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
    }

    .gallery-item img,
    .gallery-item video {
        height: 200px;
    }

    /* Hamburger Menu for Medium Mobile */
    .hamburger-menu {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background-color: #34495e;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 80px;
        box-shadow: -2px 0 10px rgba(0,0,0,0.1);
        transition: right 0.3s ease;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu li {
        margin: 0.75rem 0;
        width: 80%;
    }

    .nav-menu a {
        width: 100%;
        text-align: center;
        padding: 1rem;
        font-size: 1.1rem;
        border-radius: 8px;
    }

    .social-links {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .social-link {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

/* Tablet and Desktop (769px+) */
@media (min-width: 769px) {
    /* Hide hamburger menu on desktop */
    .hamburger-menu {
        display: none !important;
    }

    /* Show normal navigation */
    .nav-menu {
        position: static !important;
        width: auto !important;
        height: auto !important;
        background: none !important;
        flex-direction: row !important;
        padding: 0 !important;
        box-shadow: none !important;
        right: auto !important;
    }

    .gallery {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
    }

    .features {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .gallery-item:hover {
        transform: none;
    }

    .gallery-item:hover img {
        transform: none;
    }

    .feature:hover {
        transform: none;
    }

    .social-link:hover {
        transform: none;
    }

    .step-content:hover {
        transform: none;
    }

    .hero-btn:hover {
        transform: none;
        background: rgba(255, 255, 255, 0.9);
    }

    /* Larger touch targets */
    nav a {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .social-link {
        min-height: 48px;
    }

    .hero-btn {
        min-height: 48px;
        transition: none;
    }

    .close {
        min-width: 48px;
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .step-content {
        padding: 2rem;
        transition: none;
    }
}

/* Landscape Phone Orientation */
@media (max-height: 500px) and (orientation: landscape) {
    .hero-section {
        padding: 2rem 0;
        min-height: 80vh;
    }

    .logo {
        font-size: 2rem;
    }

    .tagline {
        font-size: 1rem;
    }

    .location {
        font-size: 0.9rem;
    }

    /* Landscape Hero Buttons */
    .hero-social-buttons {
        margin-top: 1rem;
        gap: 1rem;
    }

    .hero-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
    }

    .hero-btn-icon {
        font-size: 1rem;
    }

    section {
        padding: 1.5rem 0;
    }

    h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .gallery-item img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Modal for gallery */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    overflow: hidden;
}

.modal-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 95vw;
    max-height: 95vh;
    object-fit: contain;
    transform-origin: center;
    transition: transform 0.2s ease-out;
    user-select: none;
}

.zoom-controls {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    background: rgba(0, 0, 0, 0.7);
    padding: 12px;
    border-radius: 30px;
    z-index: 1001;
}

.zoom-btn {
    background: #8b4513;
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.zoom-btn:hover {
    background: #a0522d;
    transform: scale(1.1);
}

.zoom-btn:active {
    transform: scale(0.95);
}

.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1002;
    transition: color 0.3s ease;
}

.close:hover {
    color: #bbb;
}

/* Blog Post Styles */
.blog-post {
    background: white;
    border-left: 4px solid #8b4513;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.blog-post h3 {
    color: #8b4513;
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.blog-date {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.blog-post p {
    margin: 0.5rem 0;
    line-height: 1.7;
}

.blog-post p:last-child {
    margin-bottom: 0;
}

.blog-post a {
    color: #8b4513;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.blog-post a:hover {
    color: #a0522d;
}

/* Blog Post Content Layout */
.blog-post-content {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.blog-image {
    flex-shrink: 0;
    width: 200px;
    height: auto;
    object-fit: cover;
    border-radius: 4px;
    display: block;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.blog-image:hover {
    transform: scale(1.05);
}

.blog-text {
    flex: 1;
}

.blog-text p {
    margin: 0.5rem 0;
    line-height: 1.7;
}

.blog-text p:last-child {
    margin-bottom: 0;
}

/* Event Banner */
#eventBanner {
    animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile responsiveness for blog posts */
@media (max-width: 768px) {
    .blog-post {
        padding: 1rem;
    }
    
    .blog-post h3 {
        font-size: 1.1rem;
    }
    
    .blog-post-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .blog-image {
        width: 100%;
        max-height: 400px;
    }
    
    #eventBanner p {
        font-size: 0.95rem !important;
    }
    
    #eventBanner span {
        font-size: 0.85rem !important;
    }
}

/* Christmas Modal Popup */
.christmas-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    overflow: auto;
    animation: fadeIn 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.christmas-modal-content {
    position: relative;
    background: white;
    max-width: 900px;
    width: 90%;
    max-height: 90vh;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: slideInDown 0.4s ease;
    overflow-y: auto;
    margin: auto;
}

@keyframes slideInDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.christmas-close {
    position: absolute;
    top: 15px;
    right: 20px;
    color: #8b4513;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10;
    transition: color 0.3s ease;
    line-height: 1;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
}

.christmas-close:hover {
    color: #a0522d;
    transform: rotate(90deg);
    transition: all 0.3s ease;
}

.christmas-modal-inner {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    height: 100%;
    overflow: hidden;
}

.christmas-modal-image {
    flex: 0 0 30%;
    max-width: 30%;
    max-height: 80%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.christmas-modal-image img {
    width: 100%;
    height: auto;
    max-height: 80%;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.christmas-modal-text {
    flex: 1;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: hidden;
    max-height: 100%;
}

.christmas-modal-text h2 {
    color: #8b4513;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    text-align: left;
}

.christmas-modal-text h2::after {
    display: none;
}

.christmas-modal-text p {
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 0.4rem;
    color: #2c3e50;
}

.christmas-modal-text p strong {
    color: #8b4513;
}

.christmas-modal-buttons {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.8rem;
    flex-wrap: wrap;
}

.christmas-btn-more,
.christmas-btn-close {
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
    display: inline-block;
}

.christmas-btn-more {
    background: linear-gradient(135deg, #8b4513, #a0522d);
    color: white;
}

.christmas-btn-more:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 69, 19, 0.3);
}

.christmas-btn-close {
    background: #f0f0f0;
    color: #2c3e50;
}

.christmas-btn-close:hover {
    background: #e0e0e0;
    transform: translateY(-2px);
}

/* Mobile Christmas Modal */
@media (max-width: 768px) {
    .christmas-modal-content {
        margin: auto;
        width: 95%;
        max-height: 95vh;
        max-height: 95dvh;
        overflow-y: auto;
    }
    
    .christmas-modal-inner {
        flex-direction: column;
        padding: 1.2rem;
        gap: 0.8rem;
        height: auto;
    }
    
    .christmas-modal-image {
        flex: none;
        max-width: 100%;
        width: 100%;
        height: auto;
        max-height: 40vh;
    }
    
    .christmas-modal-image img {
        height: auto;
        width: 100%;
    }
    
    .christmas-modal-text {
        padding: 0;
        max-height: none;
        overflow-y: visible;
    }
    
    .christmas-modal-text h2 {
        font-size: 1.3rem;
        text-align: center;
    }
    
    .christmas-modal-text p {
        font-size: 0.9rem;
        text-align: center;
    }
    
    .christmas-modal-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .christmas-btn-more,
    .christmas-btn-close {
        width: 100%;
        text-align: center;
        padding: 0.8rem 1rem;
    }
    
    .christmas-close {
        top: 10px;
        right: 10px;
        font-size: 30px;
        width: 35px;
        height: 35px;
    }
}

/* Tablet Christmas Modal */
@media (min-width: 769px) and (max-width: 1024px) {
    .christmas-modal-content {
        max-width: 700px;
        max-height: 88vh;
    }
    
    .christmas-modal-inner {
        gap: 1rem;
        padding: 1rem;
    }
    
    .christmas-modal-image {
        flex: 0 0 28%;
        max-width: 28%;
        max-height: 75%;
    }
    
    .christmas-modal-text h2 {
        font-size: 1.2rem;
    }
    
    .christmas-modal-text p {
        font-size: 0.8rem;
    }
}

