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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #c87163;
}

/* Loading Screen */
#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #1a1a1a;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease-out, visibility 0.5s;
}

#loader img {
    max-width: 300px; /* Adjust as needed */
    animation: pulse 1s infinite ease-in-out;
}

.loader-hidden {
    opacity: 0;
    visibility: hidden;
}

@keyframes pulse {
    0% { transform: scale(0.9); opacity: 0.8; }
    50% { transform: scale(1.1); opacity: 1; }
    100% { transform: scale(0.9); opacity: 0.8; }
}

.hero {
    height: 100vh;
    width: 100%;
    background-image: url('images/background/tlo.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.4) 80%, #1a1a1a 100%); /* Fade to next section color */
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.8));
    backdrop-filter: blur(8px);
    z-index: 2;
    mask-image: linear-gradient(to bottom, transparent, black);
    -webkit-mask-image: linear-gradient(to bottom, transparent, black);
}

/* Navigation Styles */
.main-nav {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    padding: 2rem;
    background: linear-gradient(to bottom, rgba(0,0,0,0.6), transparent);
}

.main-nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 3rem;
}

.main-nav a {
    color: #c87163;
    text-decoration: none;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.main-nav a:hover {
    color: #f26a2e; /* Steampunk orange accent */
    text-shadow: 0 0 10px rgba(242, 106, 46, 0.5);
}

.menu-toggle {
    display: none; /* Hidden on desktop */
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 25px;
    position: absolute;
    right: 2rem;
    top: 2rem;
    z-index: 20;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #f26a2e;
    margin-bottom: 6px;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 6px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -5px);
}

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

.hero-logo {
    max-width: 500px;
    margin-bottom: 2rem;
    filter: drop-shadow(0 0 10px rgba(0,0,0,0.5));
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.hero-actions a {
    color: #c87163;
    font-size: 2.5rem;
    transition: transform 0.3s ease, color 0.3s ease;
    filter: drop-shadow(0 0 5px rgba(0,0,0,0.5));
}

.hero-actions a:hover {
    color: #f26a2e;
    transform: scale(1.1);
}

.booksy-icon {
    height: 1em; /* Matches font size */
    width: auto;
    border-radius: 20%; /* Rounded corners */
    vertical-align: middle; /* Aligns with text if needed */
    margin-bottom: 5px; /* Fine-tune alignment */
    filter: sepia(1) hue-rotate(-20deg) saturate(1.5) contrast(0.9); /* Copper color approximation */
    -webkit-filter: sepia(1) hue-rotate(-20deg) saturate(1.5) contrast(0.9);
    transition: filter 0.3s ease;
}

.hero-actions a:hover .booksy-icon {
    filter: sepia(1) hue-rotate(-10deg) saturate(3) brightness(1.1); /* Brighter orange on hover */
    -webkit-filter: sepia(1) hue-rotate(-10deg) saturate(3) brightness(1.1);
}

h1, h2 {
    font-family: 'Smythe', cursive;
    text-transform: uppercase;
    letter-spacing: 5px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
}

h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #f26a2e;
    letter-spacing: 5px;
}

p {
    font-size: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* About Section */
.about-section {
    position: relative;
    background-image: url('images/background/bg_onas.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #c87163;
    padding: 5rem 2rem;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85); /* Dark overlay to make background subtle */
    z-index: 1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.about-section h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 2rem;
    color: #f26a2e;
    text-transform: uppercase;
    letter-spacing: 5px;
}

.section-intro {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem;
    color: #ccc;
    font-size: 1.1rem;
    text-shadow: none;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 1.5rem;
    border-radius: 8px;
    backdrop-filter: blur(3px);
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

/* Team Grid - Modernist Layout */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.team-member {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

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

.team-member img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
    transition: filter 0.3s ease;
    filter: grayscale(80%);
}

.team-member:hover img,
.team-member.active img {
    filter: grayscale(0%);
}

.member-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1rem;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    transform: translateY(100%);
    transition: transform 0.3s ease;
    text-align: center;
}

.team-member:hover .member-info {
    transform: translateY(0);
}

.member-info h3 {
    color: #f26a2e;
    margin: 0 0 0.5rem 0;
    font-size: 1.5rem;
    text-align: center;
    text-shadow: none;
}

.member-info p {
    color: #ddd;
    font-size: 1rem;
    text-align: center;
    margin: 0;
    text-shadow: none;
}

.book-btn {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.5rem 1.5rem;
    background-color: #f26a2e;
    color: #1a1a1a;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.book-btn:hover {
    transform: scale(1.05);
}

/* Gallery Section */
.gallery-section {
    position: relative;
    background-color: #121212; /* Dark background */
    padding: 5rem 2rem;
    color: #c87163;
}

.gallery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.gallery-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
        width: 100%;
        height: 300px; /* Consistent blur height */
        background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.95));
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
    z-index: 5;
    mask-image: linear-gradient(to bottom, transparent, black);
    -webkit-mask-image: linear-gradient(to bottom, transparent, black);
    pointer-events: none;
}

.gallery-section h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
        color: #f26a2e;
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px); /* Safari support */
    text-transform: uppercase;
    letter-spacing: 5px;
    position: relative;
    z-index: 2;
}

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

/* Services Section */
.services-section {
    position: relative;
    background-image: url('images/background/bg_uslugi.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 5rem 2rem;
    color: #c87163;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.services-list, .services-section h2 {
    position: relative;
    z-index: 2;
}

.services-section h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #f26a2e;
    text-transform: uppercase;
    letter-spacing: 5px;
}

.services-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    font-size: 1.1rem;
}

.service-name {
    font-weight: 500;
    letter-spacing: 1px;
}

.service-dots {
    flex-grow: 1;
    /* border-bottom removed */
    margin: 0 1rem 5px 1rem;
}

.service-price {
    font-weight: bold;
    color: #f26a2e;
    font-size: 1.2rem;
}

/* Span full width for the group photo if screen is large enough */
@media (min-width: 900px) {
    .team-member.team-all {
        grid-column: 1 / -1;
    }
    .team-member.team-all img {
        height: 500px;
        object-position: center 30%;
    }
}

/* Responsive Styles */
@media (max-width: 768px) {
        .services-list {
            gap: 1rem;
        }
        .service-item {
            flex-direction: column;
            align-items: stretch;
            padding: 1rem 0.5rem;
            background: rgba(0,0,0,0.5);
            border-radius: 8px;
            font-size: 1.1rem;
        }
        .service-name {
            font-size: 1.1rem;
            margin-bottom: 0.3rem;
        }
        .service-dots {
            display: none;
        }
        .service-price {
            font-size: 1.4rem;
            color: #f26a2e;
            font-weight: bold;
            margin-top: 0.2rem;
            letter-spacing: 1px;
            background: #1a1a1a;
            padding: 0.2rem 0.8rem;
            border-radius: 6px;
            box-shadow: 0 2px 6px rgba(0,0,0,0.2);
            text-align: right;
            align-self: flex-end;
        }
    .main-nav {
        padding: 1rem;
        background: rgba(0,0,0,0.9); /* Darker background for readability */
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .menu-toggle {
        display: block; /* Show on mobile */
    }

    .main-nav ul {
        display: none; /* Hide by default on mobile */
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: rgba(26, 26, 26, 0.95);
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        padding: 2rem 0;
        border-bottom: 2px solid #f26a2e;
        box-shadow: 0 4px 6px rgba(0,0,0,0.3);
    }

    .main-nav ul.active {
        display: flex; /* Show when active */
    }

    .hero-logo {
        max-width: 300px;
    }

    h1 {
        font-size: 2.5rem;
    }

    p {
        font-size: 1.2rem;
    }

    .about-section h2, .services-section h2 {
        font-size: 2.5rem;
    }

    .about-section, .services-section {
        padding: 3rem 1rem;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .team-member.team-all {
        grid-column: 1;
    }
}

@media (min-width: 769px) and (max-width: 899px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
        .service-item {
            font-size: 1rem;
            padding: 0.7rem 0.3rem;
        }
        .service-name {
            font-size: 1rem;
        }
        .service-price {
            font-size: 1.2rem;
            padding: 0.2rem 0.5rem;
            text-align: right;
            align-self: flex-end;
        }
    .hero-logo {
        max-width: 200px;
    }

    h1 {
        font-size: 2rem;
        letter-spacing: 1px;
    }

    .service-item {
        font-size: 1rem;
    }

    .service-dots {
        margin: 0 0.5rem 5px 0.5rem;
    }

    .voucher-container {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }
    .voucher-text h2 {
        text-align: center;
    }
    .voucher-image {
        max-width: 500px;
        margin: 0 auto;
    }
    .voucher-image img {
        transform: none;
    }
    .voucher-image:hover img {
        transform: scale(1.02);
    }
}

/* Voucher Section */
.voucher-section {
    position: relative;
    background-color: #1a1a1a;
    padding: 5rem 2rem;
    color: #c87163;
    overflow: hidden;
}

.voucher-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(242, 106, 46, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.voucher-container {
    display: flex;
    align-items: center;
    gap: 4rem;
    position: relative;
    z-index: 2;
}

.voucher-text {
    flex: 1;
}

.voucher-text h2 {
    text-align: left;
    margin-bottom: 2rem;
}

.voucher-text p {
    margin-bottom: 1.5rem;
    text-shadow: none;
    color: #ccc;
    font-size: 1.2rem;
    line-height: 1.6;
}

.voucher-image {
    flex: 1;
    perspective: 1000px;
}

.voucher-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5), 0 0 20px rgba(242, 106, 46, 0.2);
    transform: rotateY(-10deg) rotateX(5deg);
    transition: transform 0.5s ease;
}

.voucher-image:hover img {
    transform: rotateY(0deg) rotateX(0deg) scale(1.02);
}

.voucher-actions {
    margin-top: 2.5rem;
}

/* Portfolio Section */
.portfolio-section {
    position: relative;
    background-image: url('images/background/bg_realizacje.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 5rem 2rem;
    color: #c87163;
}

.portfolio-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85); /* Dark overlay for readability */
    z-index: 1;
}

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

/* Unified Blur Transition for Sections */
.about-section::after,
.services-section::after,
.portfolio-section::after,
.reviews-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 300px;
    background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.95));
    backdrop-filter: blur(20px); /* Enhanced blur */
    z-index: 5;
    mask-image: linear-gradient(to bottom, transparent, black);
    -webkit-mask-image: linear-gradient(to bottom, transparent, black);
    pointer-events: none;
}

.about-section::after,
.services-section::after {
    height: 120px;
    backdrop-filter: blur(6px);
}

.portfolio-section h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #f26a2e;
    text-transform: uppercase;
    letter-spacing: 5px;
}

/* Reviews Section */
.reviews-section {
    position: relative;
    background-image: url('images/background/bg_opinie.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 5rem 2rem;
    color: #c87163;
}

.reviews-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85); /* Dark overlay */
    z-index: 1;
}

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

.reviews-section h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #f26a2e;
    text-transform: uppercase;
    letter-spacing: 5px;
}

.review-card {
    flex: 0 0 33.333%;
    max-width: 33.333%;
    padding: 0 0.5rem;
    box-sizing: border-box;
    cursor: default;
}

.review-content { /* Inner container for card styling */
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 8px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
    border: 1px solid #333;
}

.stars {
    color: #f26a2e;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.review-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    line-height: 1.6;
}

.review-author {
    font-weight: bold;
    text-align: right;
    color: #f26a2e;
}

@media (max-width: 768px) {
    .review-card {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* Carousel Styles */
.carousel-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.carousel-container {
    overflow: hidden;
    width: 100%;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.gallery-item {
    flex: 0 0 33.3%; /* Show 3 images safely */
    max-width: 33.3%;
    padding: 0 0.5rem; /* Gap between slides */
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
    cursor: pointer;
    flex-shrink: 0;
}

.gallery-item img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease, filter 0.3s ease;
    filter: brightness(0.9);
}

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

/* Carousel Buttons */
.carousel-btn {
    background-color: transparent;
    border: 1px solid #f26a2e; /* Thinner border */
    color: #f26a2e;
    font-size: 1.2rem; /* Smaller icon */
    cursor: pointer;
    padding: 0; /* Remove padding as flex handles centering */
    transition: all 0.3s ease;
    border-radius: 50%;
    width: 40px; /* Smaller size */
    height: 40px; /* Smaller size */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.carousel-btn:hover {
    background-color: #f26a2e;
    color: #1a1a1a;
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 4px;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
    border: 2px solid #f26a2e;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #c87163;
    font-size: 3rem;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}

.lightbox-close:hover {
    color: #f26a2e;
}

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

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .gallery-item {
        flex: 0 0 100%; /* Show 1 image on mobile/tablet */
        max-width: 100%;
        padding: 0;
    }

    .carousel-wrapper .carousel-btn {
        display: none;
    }

    .carousel-wrapper {
        gap: 0;
    }

    .portfolio-section h2 {
        font-size: 2.5rem;
    }
}

/* Contact Section */
.contact-section {
    background-color: #121212;
    padding: 5rem 2rem;
    color: #c87163;
}

.contact-section h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #f26a2e;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.contact-content {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: center;
}

.contact-info {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    background-color: #1a1a1a;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
}

.contact-info h3 {
    color: #f26a2e;
    margin-bottom: 1rem;
    font-size: 1.8rem;
    text-shadow: none;
}

.contact-info p {
    font-size: 1.2rem;
    color: #ddd;
    margin-bottom: 0.5rem;
    text-shadow: none;
    text-align: left;
}

.contact-phone {
    color: #f26a2e;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.contact-phone:hover {
    color: #c87163;
    text-shadow: 0 0 5px rgba(255,255,255,0.5);
}

.contact-actions {
    display: flex;
    justify-content: flex-start;
    gap: 2rem;
    margin: 1.5rem 0;
}

.contact-actions a {
    color: #c87163;
    font-size: 2.5rem;
    transition: transform 0.3s ease, color 0.3s ease;
    filter: drop-shadow(0 0 5px rgba(0,0,0,0.5));
}

.contact-actions a:hover {
    color: #f26a2e;
    transform: scale(1.1);
}

.contact-actions a:hover .booksy-icon {
    filter: sepia(1) hue-rotate(-10deg) saturate(3) brightness(1.1);
    -webkit-filter: sepia(1) hue-rotate(-10deg) saturate(3) brightness(1.1);
}

.contact-map-link {
    color: #f26a2e;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.contact-map-link:hover {
    color: #c87163;
    text-shadow: 0 0 5px rgba(255,255,255,0.5);
}

.contact-hours {
    margin-top: 2rem;
    border-top: 1px solid #333;
    padding-top: 1rem;
}

.contact-description {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #333;
    color: #ccc;
    line-height: 1.8;
    text-shadow: none;
}

.contact-description p {
    font-size: 1rem;
    text-shadow: none;
    color: #ccc;
    margin-bottom: 1rem;
}

.contact-description h3 {
    color: #f26a2e;
    font-size: 1.4rem;
    margin: 1.5rem 0 0.75rem;
    letter-spacing: 1px;
}


.contact-map {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
    display: flex;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
}

@media (max-width: 768px) {
    .contact-content {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-info, .contact-map {
        width: 100%;
    }
}

/* Footer Styles */
.site-footer {
    background-color: #000;
    padding: 2rem 0;
    border-top: 2px solid #f26a2e;
    color: #ccc;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.footer-email {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
}

.footer-email i {
    color: #f26a2e;
}

.footer-email a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-email a:hover {
    color: #f26a2e;
}

.footer-social {
    display: flex;
    gap: 1.5rem;
}

.footer-social a {
    color: #f26a2e;
    font-size: 1.5rem;
    transition: color 0.3s, transform 0.3s;
}

.footer-social a:hover {
    color: #c87163;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #333;
    padding-top: 1rem;
    font-size: 0.15rem;
    color: #888;
}

.footer-bottom a {
    color: #888;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-bottom a:hover {
    color: #aaa;
}

@media (max-width: 600px) {
    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}
