/* Reset and Base Styles */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    overflow-x: hidden;
}

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

h1, h2, h3 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    color: #5c4a3d;
}

a {
    color: #7a6b5a;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #5c4a3d;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Section Animation */
section {
    animation: fadeInUp 0.8s ease-out;
}

/* Language Switcher */
.language-switcher {
    position: absolute;
    top: 15px;
    right: 20px;
    display: flex;
    gap: 8px;
    z-index: 100;
}

.language-switcher a {
    display: block;
    width: 32px;
    height: 22px;
    border-radius: 3px;
    overflow: hidden;
    opacity: 0.6;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.language-switcher a:hover {
    opacity: 1;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.language-switcher a.lang-active {
    opacity: 1;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.language-switcher svg {
    width: 100%;
    height: 100%;
}

/* Header */
.site-header {
    position: relative;
    text-align: center;
    padding: 40px 20px 30px;
    background: linear-gradient(180deg, #fdfcfb 0%, #fff 100%);
}

.logo-image {
    max-width: 350px;
    width: 100%;
    height: auto;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
    background: #fff;
    padding: 15px 25px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    /* Prevent dark mode inversion */
    filter: none !important;
    forced-color-adjust: none;
    -webkit-filter: none !important;
}

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

.tagline {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.2rem;
    color: #7a6b5a;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 15px;
}

.social-links a {
    color: #8b7355;
    transition: all 0.3s ease;
    padding: 8px;
    border-radius: 50%;
    background: rgba(139, 115, 85, 0.1);
}

.social-links a:hover {
    color: #fff;
    background: #8b7355;
    transform: translateY(-3px);
}

.header-note {
    font-size: 0.85rem;
    color: #999;
    line-height: 1.5;
}

/* Decorative Divider */
.section-divider {
    text-align: center;
    padding: 20px 0;
}

.section-divider::before {
    content: "❧";
    font-size: 1.5rem;
    color: #d4c4b5;
}

/* Hero Video */
video {
    display: block;
}

/* About Section */
.about {
    padding: 80px 20px;
    text-align: center;
    background: linear-gradient(180deg, #fff 0%, #faf9f7 100%);
    position: relative;
}

.about::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #c9b8a5, transparent);
}

.about h2 {
    font-size: 2.2rem;
    margin-bottom: 40px;
    font-style: italic;
    position: relative;
    display: inline-block;
}

.about h2::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: #c9b8a5;
}

.about-content {
    max-width: 700px;
    margin: 0 auto;
}

.about-content p {
    margin-bottom: 20px;
    color: #555;
    text-align: left;
    line-height: 1.8;
}

.about-content .highlight {
    font-style: italic;
    font-size: 1.1rem;
    color: #7a6b5a;
    text-align: center;
    margin-top: 35px;
    padding: 20px;
    background: rgba(201, 184, 165, 0.15);
    border-radius: 8px;
}

.payment-badges {
    margin-top: 35px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.payment-info {
    font-weight: 600;
    color: #5c4a3d;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #f5f0eb;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.payment-info:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.payment-info::before {
    content: "💳";
}

.payment-eur::before {
    content: "€";
    font-weight: 700;
    font-size: 1.1rem;
}

.payment-stablecoin {
    background: linear-gradient(135deg, #e8f4f8 0%, #d4e8ed 100%);
    color: #3d6b7a;
    position: relative;
    border: 1px solid rgba(61, 107, 122, 0.15);
}

.payment-stablecoin::before {
    content: "";
    width: 18px;
    height: 18px;
    background: linear-gradient(135deg, #2775ca 0%, #1a5fb4 100%);
    border-radius: 50%;
    flex-shrink: 0;
}

.coming-soon-tag {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, #8b7355 0%, #a08060 100%);
    color: #fff;
    padding: 3px 8px;
    border-radius: 10px;
    margin-left: 4px;
}

/* Discover Teaser */
.discover-teaser {
    margin-top: 40px;
}

.discover-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #5c4a3d 0%, #7a6b5a 100%);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-style: italic;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 6px 25px rgba(92, 74, 61, 0.3);
    position: relative;
    overflow: hidden;
}

.discover-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.discover-btn:hover::before {
    left: 100%;
}

.discover-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(92, 74, 61, 0.4);
}

.discover-icon {
    font-size: 1.3rem;
    animation: twinkle 2s ease-in-out infinite;
}

@keyframes twinkle {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(0.9); }
}

.discover-arrow {
    transition: transform 0.3s ease;
}

.discover-btn:hover .discover-arrow {
    transform: translateX(5px);
}

/* Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    padding: 20px;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: linear-gradient(180deg, #fff 0%, #faf9f7 100%);
    padding: 50px 40px;
    border-radius: 20px;
    max-width: 500px;
    width: 100%;
    text-align: center;
    position: relative;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.4s ease;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
}

.modal-overlay.active .modal-content {
    transform: scale(1) translateY(0);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2rem;
    color: #999;
    cursor: pointer;
    transition: color 0.3s ease;
    line-height: 1;
}

.modal-close:hover {
    color: #5c4a3d;
}

.modal-icon {
    font-size: 2.5rem;
    color: #c9b8a5;
    margin-bottom: 20px;
}

.modal-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-style: italic;
    color: #5c4a3d;
    margin-bottom: 25px;
}

.modal-content p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 15px;
}

.modal-divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #c9b8a5, transparent);
    margin: 25px auto;
}

.modal-contact {
    color: #5c4a3d !important;
    font-weight: 500;
}

.modal-contact a {
    color: #7a6b5a;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.modal-contact a:hover {
    color: #5c4a3d;
}

/* Opening Hours */
.opening-hours {
    padding: 80px 20px;
    background: #faf9f7;
    text-align: center;
    position: relative;
}

.opening-hours::before,
.opening-hours::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #d4c4b5, transparent);
}

.opening-hours::before { top: 0; }
.opening-hours::after { bottom: 0; }

.opening-hours h2 {
    font-size: 2.2rem;
    margin-bottom: 50px;
    font-style: italic;
}

.opening-hours h3 {
    font-size: 1.3rem;
    margin-bottom: 25px;
    font-weight: 400;
    color: #7a6b5a;
}

.hours-holiday,
.hours-regular {
    margin-bottom: 50px;
    padding: 30px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

.hours-table {
    width: 100%;
    border-collapse: collapse;
}

.hours-table tr {
    transition: background 0.3s ease;
}

.hours-table tr:hover {
    background: rgba(201, 184, 165, 0.1);
}

.hours-table td {
    padding: 12px 15px;
    text-align: left;
    font-size: 0.95rem;
    color: #555;
    border-bottom: 1px solid #f0ebe5;
}

.hours-table tr:last-child td {
    border-bottom: none;
}

.hours-table td:first-child {
    font-weight: 600;
    color: #5c4a3d;
}

.hours-table td:last-child {
    text-align: right;
    color: #7a6b5a;
}

/* Image Carousel */
.image-carousel {
    position: relative;
    width: 100%;
    background: #1a1a1a;
}

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

.carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide {
    min-width: 100%;
    flex-shrink: 0;
}

.carousel-slide img {
    width: 100%;
    height: 530px;
    object-fit: cover;
    display: block;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    color: #5c4a3d;
    border: none;
    width: 55px;
    height: 55px;
    font-size: 1.5rem;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.carousel-btn:hover {
    background: #fff;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

.carousel-btn-prev {
    left: 20px;
}

.carousel-btn-next {
    right: 20px;
}

.carousel-dots {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.carousel-dot:hover {
    background: rgba(255, 255, 255, 0.7);
}

.carousel-dot.active {
    background: #fff;
    transform: scale(1.2);
}

/* Contact Section */
.contact {
    padding: 80px 20px;
    background: linear-gradient(180deg, #faf9f7 0%, #fff 100%);
    text-align: center;
}

.contact h2 {
    font-size: 2.2rem;
    margin-bottom: 40px;
    font-style: italic;
}

.contact-form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e8e2dc;
    border-radius: 8px;
    font-family: 'Raleway', sans-serif;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: #fff;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #8b7355;
    box-shadow: 0 0 0 4px rgba(139, 115, 85, 0.1);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #aaa;
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    background: linear-gradient(135deg, #5c4a3d 0%, #7a6b5a 100%);
    color: #fff;
    border: none;
    padding: 15px 40px;
    font-family: 'Raleway', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: center;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(92, 74, 61, 0.3);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(92, 74, 61, 0.4);
}

.btn-submit:active {
    transform: translateY(0);
}

/* Map Section */
.map-section {
    background-color: #f5f5f5;
}

.map-container {
    position: relative;
}

.map-container iframe {
    display: block;
    filter: grayscale(20%);
    transition: filter 0.3s ease;
}

.map-container:hover iframe {
    filter: grayscale(0%);
}

.map-info {
    padding: 20px;
    background: #fff;
    text-align: center;
    border-top: 3px solid #c9b8a5;
}

.map-info p {
    font-size: 1rem;
    color: #555;
}

/* Footer */
.site-footer {
    padding: 60px 20px 40px;
    background: linear-gradient(180deg, #fff 0%, #faf9f7 100%);
    text-align: center;
    border-top: 1px solid #e8e2dc;
}

.footer-support {
    margin-bottom: 40px;
}

.footer-support p {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 25px;
}

.footer-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.logo-jihocesky {
    height: 40px;
    width: auto;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.logo-jihocesky:hover {
    opacity: 1;
}

.logo-obchudek {
    height: 85px;
    width: auto;
    transition: transform 0.3s ease;
}

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

.footer-info {
    margin-bottom: 25px;
}

.footer-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: #5c4a3d;
    margin-bottom: 8px;
}

.footer-info a {
    font-size: 1rem;
    color: #7a6b5a;
    transition: color 0.3s ease;
}

.footer-info a:hover {
    color: #5c4a3d;
}

.footer-bottom {
    font-size: 0.8rem;
    color: #aaa;
    padding-top: 25px;
    border-top: 1px solid #e8e2dc;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #5c4a3d;
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: #7a6b5a;
    transform: translateY(-3px);
}

/* Scroll Reveal Animation */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .language-switcher {
        top: 10px;
        right: 10px;
    }

    .language-switcher a {
        width: 28px;
        height: 19px;
    }

    .logo-image {
        max-width: 280px;
    }

    .tagline {
        font-size: 1rem;
    }

    .carousel-slide img {
        height: 350px;
    }

    .carousel-btn {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }

    .about, .opening-hours, .contact {
        padding: 60px 20px;
    }

    .about h2,
    .opening-hours h2,
    .contact h2 {
        font-size: 1.8rem;
    }

    .hours-holiday,
    .hours-regular {
        padding: 20px;
    }

    .hours-table td {
        padding: 10px 8px;
        font-size: 0.85rem;
    }

    .footer-logos {
        gap: 25px;
    }

    .logo-jihocesky {
        height: 35px;
    }

    .logo-obchudek {
        height: 70px;
    }

    .back-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 480px) {
    .logo-image {
        max-width: 240px;
    }

    .carousel-slide img {
        height: 280px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .carousel-btn-prev {
        left: 10px;
    }

    .carousel-btn-next {
        right: 10px;
    }

    .social-links {
        gap: 15px;
    }

    .social-links a {
        padding: 6px;
    }
}
