/* ===== ZÁKLADNÍ STYLY ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --parchment: #F5F5DC;
    --light-parchment: #FFF8E7;
    --cream: #FAF7F2;
    --aged-paper: #F0E6D2;
}

body {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background: var(--light-parchment);
}

/* ===== NAVIGACE ===== */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(240, 230, 210, 0.98);
    padding: 1.5rem 5%;
    z-index: 999;
    box-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: #333;
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: opacity 0.3s;
    position: relative;
    z-index: 1001;
}

.logo:hover {
    opacity: 0.8;
}

.logo img {
    height: 30px;
    width: auto;
}

.logo span {
    color: #333;
}

.nav-links {
    display: flex;
    gap: 3rem;
    list-style: none;
}

.nav-links a {
    color: #333;
    text-decoration: none;
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #B8604C;
}

/* Social Icons in Navigation */
.social-icons-nav {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.social-icon {
    color: #333;
    transition: all 0.3s;
    display: flex;
    align-items: center;
}

.social-icon:hover {
    color: #B8604C;
    transform: translateY(-3px);
}

.social-icon svg {
    width: 24px;
    height: 24px;
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* ===== HERO SECTION ===== */
.hero-section {
    margin-top: 80px;
    height: 60vh;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    color: white;
    text-align: center;
    padding-bottom: 3rem;
}

.hero-section h1 {
    font-size: clamp(0.5rem, 1.5vw, 0.7rem);
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
}

/* Hero backgrounds pro jednotlivé stránky */
.hero-dragons {
    background-image: url('images/mesta04.jpeg');
    background-size: cover;
    background-position: center 25%;  /* druhá hodnota řídí vertikální pozici - vyšší = níže */
    background-repeat: no-repeat;
    background-color: #f9f7f4;
    height: 70vh;
    min-height: 400px;
}

@media (max-width: 1024px) {
    .hero-dragons {  /* opraveno z .hero-mesta */
        background-position: center center;  /* na mobilu vycentrováno */
        height: 20vh;
    }
}

.hero-festivals {
    background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)), url('images/firmy01.jpeg');
    background-position: center 35%;
}
@media (max-width: 1024px) {
       .hero-catering {
           background-position: center center;
       }
   }

.hero-catering {
    background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)), url('images/objekty01.jpeg');
    background-position: center 35%;
}
@media (max-width: 1024px) {
       .hero-catering {
           background-position: center center;
       }
   }
.hero-contact {
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('images/hero-contact.jpeg');
    background-position: center 35%;
}
@media (max-width: 1024px) {
       .hero-catering {
           background-position: center center;
       }
   }

/* ===== CONTENT SECTIONS ===== */
.content-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 6rem 5%;
}

.intro-text {
    max-width: 900px;
    margin: 0 auto 5rem;
    text-align: center;
}

.intro-text h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 300;
    margin-bottom: 2rem;
    color: #333;
}

.intro-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
}

/* ===== SERVICE CARDS ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin: 5rem 0;
}

.service-card {
    background: var(--cream);
    padding: 3rem;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.service-number {
    font-size: 3rem;
    font-weight: 300;
    color: #B8604C;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: #333;
}

.service-card p {
    font-size: 1rem;
    line-height: 1.8;
    color: #666;
}

/* ===== FEATURES SECTION ===== */
.features-section {
    background: var(--parchment);
    padding: 6rem 5%;
}

.features-container {
    max-width: 1400px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 4rem;
    margin-top: 4rem;
}

.feature-item {
    text-align: center;
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: var(--cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.feature-item h4 {
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: #333;
}

.feature-item p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
}

/* ===== SLIDESHOW GALLERY ===== */
.slideshow-gallery {
    background: var(--parchment);
    padding: 5rem 5%;
}

.slideshow-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.slideshow-wrapper h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 300;
    margin-bottom: 3rem;
    color: #333;
    text-align: center;
}

.slideshow-container {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
}

.slide {
    display: none;
    width: 100%;
}

.slide img {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: cover;
}

.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 24px;
    transition: 0.3s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    background-color: rgba(0,0,0,0.5);
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.8);
}

.dots-container {
    text-align: center;
    padding: 20px 0;
}

.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.dot.active, .dot:hover {
    background-color: #717171;
}

.fade {
    animation-name: fade;
    animation-duration: 1s;
}

@keyframes fade {
    from {opacity: 0.4}
    to {opacity: 1}
}

/* ===== TEXT HIGHLIGHTING ===== */
.highlight {
    background-image: 
        linear-gradient(104deg,
            rgba(255, 182, 193, 0) 0.9%, 
            rgba(255, 160, 180, 0.6) 2.4%,
            rgba(255, 140, 160, 0.4) 5.8%,
            rgba(255, 150, 170, 0.3) 93%,
            rgba(255, 182, 193, 0) 96%),
        linear-gradient(183deg,
            rgba(255, 182, 193, 0) 0%, 
            rgba(255, 160, 180, 0.25) 7.9%,
            rgba(255, 182, 193, 0) 15%);
    padding: 0.05rem 0.2rem;
    display: inline;
    transform: rotate(-0.5deg);
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
    font-weight: bold;
}

/* ===== VIDEO SECTION ===== */
.video-section {
    background: var(--parchment);
    padding: 5rem 5%;
}

.video-container {
    max-width: 1000px;
    margin: 0 auto;
}

.video-container h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 300;
    margin-bottom: 3rem;
    color: #333;
    text-align: center;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* ===== POSTERS GALLERY ===== */
.posters-gallery {
    background: var(--aged-paper);
    padding: 5rem 5%;
}

.posters-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.posters-wrapper h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 300;
    margin-bottom: 3rem;
    color: #333;
    text-align: center;
}

.posters-slideshow {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
}

.poster-slide {
    display: none;
    width: 100%;
}

.poster-slide img {
    width: 100%;
    height: auto;
    max-height: 700px;
    object-fit: contain;
    background: white;
    padding: 1rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.prev-poster, .next-poster {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 24px;
    transition: 0.3s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    background-color: rgba(0,0,0,0.5);
}

.next-poster {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev-poster:hover, .next-poster:hover {
    background-color: rgba(0,0,0,0.8);
}

.poster-dots {
    text-align: center;
    padding: 20px 0;
}

.poster-dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.poster-dot.active, .poster-dot:hover {
    background-color: #717171;
}

/* ===== CONTACT PAGE ===== */
.contact-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 6rem 5%;
}

.contact-card {
    background: white;
    border-radius: 16px;
    padding: 3rem 2rem;
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    text-align: center;
}

.contact-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap; /* důležité pro mobily */
    width: 100%; /* ujisti se, že to nebude přetékat */
}

.contact-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    flex: 1;
    min-width: 200px;
    max-width: 250px; /* omez maximální šířku */
    justify-content: center;
}

@media (max-width: 768px) {
    .contact-btn {
        min-width: 100%;
        max-width: 100%;
    }
}

.profile-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto 2rem;
    background: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: #666;
}

.profile-image img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.contact-card h2 {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    color: #333;
}

.contact-card .position {
    font-size: 1.2rem;
    color: #B8604C;
    margin-bottom: 1rem;
}

.contact-card .bio {
    font-size: 1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem 2.5rem;
    text-decoration: none;
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s;
    border: 2px solid;
}

.whatsapp-btn {
    background: #25D366;
    color: white;
    border-color: #25D366;
}

.whatsapp-btn:hover {
    background: #128C7E;
    border-color: #128C7E;
}

.phone-btn {
    background: #4A90E2;
    color: white;
    border-color: #4A90E2;
}

.phone-btn:hover {
    background: #357ABD;
    border-color: #357ABD;
}

.email-btn {
    background: transparent;
    color: #333;
    border-color: #333;
}

.email-btn:hover {
    background: #333;
    color: white;
}

.icon {
    font-size: 1.5rem;
}

.info-section {
    background: #fff;
    padding: 4rem 5%;
    text-align: center;
}

.info-section h3 {
    font-size: 1.8rem;
    font-weight: 300;
    margin-bottom: 2rem;
    color: #333;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.info-item {
    padding: 2rem;
}

.info-item h4 {
    font-size: 1.2rem;
    color: #B8604C;
    margin-bottom: 1rem;
}

.info-item p {
    color: #666;
    font-size: 1rem;
}

/* ===== REFERENCES SECTION ===== */
.references-section {
    background: #f9f9f9;
    padding: 5rem 5%;
}

.references-container {
    max-width: 1200px;
    margin: 0 auto;
}

.references-container h3 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 300;
    margin-bottom: 3rem;
    color: #333;
    text-align: center;
}

.references-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    align-items: center;
}

.reference-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: white;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
    min-height: 120px;
}

.reference-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-color: #B8604C;
}

.reference-item img {
    max-width: 100%;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.reference-item:hover img {
    filter: grayscale(0%);
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: #2D1010;
    color: white;
    padding: 6rem 5%;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 300;
    margin-bottom: 2rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    padding: 1.5rem 4rem;
    background: transparent;
    border: 2px solid white;
    color: white;
    text-decoration: none;
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s;
}

.cta-button:hover {
    background: white;
    color: #2D1010;
}

/* ===== FOOTER ===== */
footer {
    background: #1a1a1a;
    color: #999;
    padding: 3rem 5%;
    text-align: center;
}

footer p {
    font-size: 0.9rem;
}

footer a {
    color: #B8604C;
    text-decoration: none;
    transition: color 0.3s;
}

footer a:hover {
    color: #D4AF37;
}


.footer-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #999;
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #B8604C;
}
.footer-social {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}



.social-icon-footer {
    color: #999;
    transition: all 0.3s;
    display: flex;
    align-items: center;
}

.social-icon-footer:hover {
    color: #B8604C;
    transform: translateY(-3px);
}

.social-icon-footer svg {
    width: 28px;
    height: 28px;
}

/* ===== MOBILE RESPONSIVENESS ===== */
@media (max-width: 968px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--aged-paper);
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        gap: 1.5rem;
    }

    .nav-links.active {
        display: flex !important;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .references-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .reference-item {
        transform: none !important;
        box-shadow: none !important;
    }

    .reference-item:hover {
        transform: none !important;
        box-shadow: none !important;
        border-color: #e0e0e0 !important;
    }

    .reference-item img {
        filter: grayscale(0%) !important;
    }

    .contact-card {
        padding: 3rem 2rem;
    }

    .contact-buttons {
        flex-direction: column;
        gap: 1.5rem;
    }

    .contact-btn {
        width: 100%;
        justify-content: center;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .service-card {
        padding: 2rem;
    }

    .cta-button {
        padding: 1.2rem 2.5rem;
        font-size: 0.9rem;
    }

    .references-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .reference-item {
        padding: 1.5rem;
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    border-radius: 50px;
    padding: 15px 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    background: #128C7E;
    transform: scale(1.05);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.whatsapp-text {
    font-size: 16px;
    font-weight: 600;
    white-space: nowrap;
}

/* Pulsing animation */
@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7);
    }
}

/* Mobile responsive */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        padding: 12px 20px;
    }
    
    .whatsapp-text {
        font-size: 14px;
    }
    
    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 480px) {
    .whatsapp-text {
        display: none;
    }
    
    .whatsapp-float {
        padding: 15px;
        border-radius: 50%;
    }
}

/* V čem jsme výjimeční Section */
.unique-section {
    padding: 5rem 2rem;
    background: #f9f7f4;
}

.unique-container {
    max-width: 1400px;
    margin: 0 auto;
}

.unique-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c2c2c;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.unique-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.unique-card {
    background: white;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.unique-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.unique-image {
    width: 100%;
    height: 250px;
    background-size: cover;
    background-position: center;
}

/* Individuální nastavení pro 6 karet */
.unique-card:nth-child(1) .unique-image {
    background-position: center 40%; /* Turnaj na koních */
}

.unique-card:nth-child(2) .unique-image {
    background-position: center 30%; /* Draci */
}

.unique-card:nth-child(3) .unique-image {
    background-size: 104% auto;
    background-position: center 36%; /* Golem */
    background-repeat: no-repeat;
}

.unique-card:nth-child(4) .unique-image {
    background-position: center center; /* Koně-nekoně */
}

.unique-card:nth-child(5) .unique-image {
    background-position: center center; /* Ohnové show */
}

.unique-card:nth-child(6) .unique-image {
    background-position: center center; /* Loutkové divadlo */
}

.unique-content {
    padding: 2rem;
}

.unique-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c2c2c;
    font-weight: 500;
}

.unique-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .unique-section {
        padding: 3rem 1.5rem;
    }
    
    .unique-section h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .unique-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .unique-image {
        height: 200px;
    }
    
    .unique-content {
        padding: 1.5rem;
    }
}
/* Cookie Banner - Minimalistická */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    right: 20px;
    max-width: 350px;
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 1rem;
    z-index: 10001;
    display: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    border-radius: 6px;
    font-size: 0.8rem;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    text-align: left;
}

.cookie-content p {
    margin-bottom: 0.6rem;
    line-height: 1.3;
}

.cookie-content strong {
    font-size: 0.85rem;
}

.cookie-buttons {
    display: flex;
    gap: 0.6rem;
    margin-top: 0.8rem;
}

.cookie-accept, .cookie-reject {
    padding: 0.5rem 1rem;
    border: none;
    cursor: pointer;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    border-radius: 4px;
    flex: 1;
}

.cookie-accept {
    background: #25D366;
    color: white;
}

.cookie-accept:hover {
    background: #128C7E;
}

.cookie-reject {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cookie-reject:hover {
    background: rgba(255,255,255,0.1);
}

@media (max-width: 768px) {
    .cookie-banner {
        bottom: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
    }
}
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: #f9f7f4;
    border-radius: 8px;
    text-decoration: none;
    color: #2d2d2d;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: #8b4513;
    color: white;
    transform: translateX(5px);
}

.contact-item i {
    width: 20px;
    height: 20px;
}

.contact-item span {
    font-weight: 500;
}
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: #f9f7f4;
    border-radius: 8px;
    text-decoration: none;
    color: #2d2d2d;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: #8b4513;
    color: white;
    transform: translateX(5px);
}

.contact-item i {
    width: 20px;
    height: 20px;
}

.contact-item span {
    font-weight: 500;
}
.email-with-copy {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: #f9f7f4;
    border-radius: 8px;
}

.email-with-copy a {
    text-decoration: none;
    color: #2d2d2d;
    font-weight: 500;
    flex: 1;
}

.copy-icon-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.25rem;
    color: #8b4513;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
}

.copy-icon-btn:hover {
    color: #5d2f0a;
    transform: scale(1.1);
}

.copy-icon-btn i {
    width: 18px;
    height: 18px;
}
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

.phone-with-copy,
.email-with-copy {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: #f9f7f4;
    border-radius: 8px;
}

.phone-with-copy a,
.email-with-copy a {
    text-decoration: none;
    color: #2d2d2d;
    font-weight: 500;
    flex: 1;
}

.copy-icon-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.25rem;
    color: #8b4513;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
}

.copy-icon-btn:hover {
    color: #5d2f0a;
    transform: scale(1.1);
}

.copy-icon-btn i {
    width: 18px;
    height: 18px;
}
.nav-links a.active {
    color: #B8604C;
    font-weight: 600;
    border-bottom: 2px solid #B8604C;
}