/* Reset a základné štýly */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: url('images/problock1.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    color: #333;
    position: relative;
    overflow-x: hidden;
}

/* Navigácia */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    backdrop-filter: blur(20px);
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.logo-link {
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

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

.logo-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110px;
    height: 110px;
    background: radial-gradient(circle, rgba(52, 73, 94, 0.15) 0%, rgba(44, 62, 80, 0.08) 50%, transparent 70%);
    border-radius: 50%;
    animation: logoGlow 4s ease-in-out infinite;
    z-index: -1;
    filter: blur(1px);
}

.nav-contact {
    display: flex;
    align-items: center;
}

.phone-link {
    text-decoration: none;
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 8px 12px;
    border-radius: 25px;
    background: linear-gradient(135deg, #34495e, #2c3e50);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(52, 73, 94, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.phone-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(52, 73, 94, 0.4);
    background: linear-gradient(135deg, #2c3e50, #34495e);
}

.phone-icon {
    font-size: 1.2rem;
    animation: pulse 2s infinite;
}

.logo-img {
    height: 60px;
    width: auto;
    transition: all 0.3s ease;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border-radius: 12px;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    position: relative;
    z-index: 1;
    backdrop-filter: blur(10px);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
}

.logo-img:hover {
    transform: scale(1.02);
    filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.4));
    border-color: rgba(52, 73, 94, 0.4);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
}

.logo-container:hover .logo-glow {
    animation: logoGlow 1s ease-in-out infinite;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.nav-link {
    text-decoration: none;
    color: white;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 8px 12px;
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
    background: transparent;
    border: 1px solid transparent;
    text-transform: none;
    letter-spacing: 0.3px;
    opacity: 0.9;
}

.nav-link:hover,
.nav-link.active {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    opacity: 1;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* Hlavný obsah */
.main-content {
    margin-top: 80px;
    min-height: calc(100vh - 80px);
    padding: 0;
}

/* Unified Container */
.unified-container {
    max-width: 900px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    margin: 2rem auto;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

/* Opening Banner */
.opening-banner {
    background: transparent;
    color: white;
    text-align: center;
    position: relative;
}

.opening-container {
    background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.opening-icon {
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
    animation: bounce 2s infinite;
}

.opening-banner h1 {
    color: white;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.opening-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    font-weight: 500;
    margin: 0;
}

/* Hero sekcia */
.hero-content {
    background: transparent;
    padding: 2rem;
    margin: 0;
    text-align: left;
}

.hero-container {
    background: transparent;
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.hero-text h2 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.6rem;
    font-weight: 700;
}

.hero-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #34495e;
    margin-bottom: 1rem;
}

.contact-highlight {
    background: #2c3e50;
    color: white;
    padding: 1rem;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    margin: 1.5rem 0;
    box-shadow: 0 5px 15px rgba(44, 62, 80, 0.3);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Cooperation Section */
.cooperation-section {
    background: transparent;
    padding: 2rem;
    margin: 0;
}

.cooperation-container {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.cooperation-container:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border-color: rgba(52, 73, 94, 0.3);
}

.cooperation-section h3 {
    color: #2c3e50;
    font-size: 1.6rem;
    margin-bottom: 1rem;
    font-weight: 600;
    text-align: center;
}

.cooperation-image {
    text-align: center;
    margin-bottom: 1.5rem;
}

.image-container {
    position: relative;
    display: inline-block;
    max-width: 100%;
}

.cooperation-img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgb(0, 0, 0);
    transition: transform 0.3s ease;
    display: block;
}

.cooperation-img:hover {
    transform: scale(1.02);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(11, 70, 118, 0.178);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.overlay-text {
    color: #acacacdf !important;
    text-align: center;
    padding: 2rem;
    max-width: 90%;
}

.overlay-text p {
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 600;
    color: #ffffff !important;
    text-shadow: 0 1px 2px rgba(96, 20, 147, 0.637);
}

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

.cooperation-section p {
    color: #34495e;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 1rem;
    text-align: center;
}

.cooperation-section ul {
    color: #34495e;
    padding-left: 0;
    margin-bottom: 1.5rem;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.cooperation-section li {
    margin-bottom: 0;
    font-size: 1rem;
    padding: 1.5rem;
    position: relative;
    padding-left: 1.5rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.cooperation-section li:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border-color: rgba(52, 73, 94, 0.3);
}

.cooperation-section li::before {
    content: "";
    position: static;
    font-size: 3rem;
    margin-bottom: 0.5rem;
    display: block;
}

.cooperation-section li:nth-child(1)::before {
    content: "";
    background-image: url('images/DT20.jpg');
    background-size: cover;
    background-position: center;
    width: 60px;
    height: 60px;
    border-radius: 10px;
    display: block;
    margin: 0 auto 0.5rem auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cooperation-section li:nth-child(2)::before {
    content: "";
    background-image: url('images/zamkovadlazba.jpg');
    background-size: cover;
    background-position: center;
    width: 60px;
    height: 60px;
    border-radius: 10px;
    display: block;
    margin: 0 auto 0.5rem auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cooperation-section li:nth-child(3)::before {
    content: "";
    background-image: url('images/plot.webp');
    background-size: cover;
    background-position: center;
    width: 60px;
    height: 60px;
    border-radius: 10px;
    display: block;
    margin: 0 auto 0.5rem auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cooperation-section h3 {
    color: #2c3e50;
    font-size: 1.6rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.cooperation-section p {
    color: #34495e;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.cooperation-section ul {
    color: #34495e;
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.cooperation-section li {
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.contact-info-bar {
    background: #2c3e50;
    padding: 1rem;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
}

.contact-icon {
    font-size: 1.2rem;
    color: #4ecdc4;
}

.contact-text {
    font-weight: 600;
    font-size: 0.9rem;
}

.contact-separator {
    width: 1px;
    height: 30px;
    background: rgba(255, 255, 255, 0.3);
}

/* Quote Section */
.quote-section {
    background: transparent;
    padding: 2rem;
    margin: 0;
    text-align: center;
}

.quote-container {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.quote-container:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border-color: rgba(52, 73, 94, 0.3);
}

.quote-section blockquote p {
    color: #2c3e50;
    font-size: 1.2rem;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-weight: 500;
}

.quote-section cite {
    color: #34495e;
    font-size: 1rem;
    font-weight: 600;
}

/* Opening Hours */
.opening-hours {
    background: transparent;
    padding: 2rem;
    margin: 0;
}

.hours-container {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.hours-container:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border-color: rgba(52, 73, 94, 0.3);
}

.opening-hours h3 {
    color: #2c3e50;
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 600;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.hours-item:not(.closed) {
    background: linear-gradient(135deg, #e8f5e8 0%, #f0f8f0 100%);
    border: 1px solid rgba(39, 174, 96, 0.2);
}

.hours-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.hours-item:not(.closed):hover {
    background: linear-gradient(135deg, #d4edda 0%, #e8f5e8 100%);
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.2);
}

.hours-item.closed {
    background: linear-gradient(135deg, #ffeaea 0%, #fff5f5 100%);
    border: 1px solid rgba(231, 76, 60, 0.2);
}

.hours-item.closed:hover {
    background: linear-gradient(135deg, #ffd6d6 0%, #ffeaea 100%);
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.2);
}

.hours-item .day {
    font-weight: 600;
    color: #2c3e50;
}

.hours-item .time {
    font-weight: 700;
    color: #34495e;
    font-size: 1rem;
}

.hours-item:not(.closed) .time {
    color: #27ae60;
    font-weight: 800;
}

.hours-item.closed .time {
    color: #e74c3c;
    font-weight: 800;
}

/* Location Section */
.location-section {
    margin-top: 1.5rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    background: #f8f9fa;
    transition: transform 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.location-section:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.address-bar {
    background: #2c3e50;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: white;
    font-weight: 500;
}

.location-icon {
    font-size: 1.2rem;
    color: #4ecdc4;
}

.address-text {
    font-size: 1rem;
    font-weight: 600;
}

.map-container {
    position: relative;
}

.map-link {
    display: block;
    position: relative;
    text-decoration: none;
    cursor: pointer;
}

.map-link:hover .map-overlay {
    opacity: 1;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(44, 62, 80, 0.85);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 10;
    backdrop-filter: blur(2px);
}

.navigation-icon {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    animation: pulse 2s infinite;
    color: white;
}

.navigation-text {
    color: white;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Contact Button */
.contact-btn-container {
    background: transparent;
    padding: 2rem;
    margin: 0;
    text-align: center;
}





.contact-btn {
    background: #2c3e50;
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 25px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 auto;
    display: block;
    box-shadow: 0 8px 25px rgba(44, 62, 80, 0.3);
}

.contact-btn:hover {
    background: #34495e;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(44, 62, 80, 0.4);
}

/* Responzívny dizajn */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 1rem;
    }
    
    .logo-img {
        height: 60px;
    }
    
    .logo-glow {
        width: 85px;
        height: 85px;
    }
    
    .nav-contact {
        display: none;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 100px;
        flex-direction: column;
        background-color: rgba(26, 26, 26, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .unified-container {
        margin: 1rem;
        max-width: 95%;
    }
    
    .hero-container,
    .quote-container {
        padding: 1.5rem;
        max-width: 95%;
    }
    
    .cooperation-container {
        padding: 1.5rem;
        max-width: 95%;
    }
    
    .hours-container {
        padding: 1.5rem;
        max-width: 95%;
    }
    
    .contact-info-bar {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-separator {
        width: 100%;
        height: 1px;
    }
    
    .hours-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .logo-img {
        height: 45px;
    }
    
    .opening-banner h1 {
        font-size: 1.6rem;
    }
    
    .opening-subtitle {
        font-size: 0.9rem;
    }
    
    .hero-content {
        padding: 1.5rem;
    }
    
    .hero-container {
        padding: 1rem;
    }
    
    .cooperation-section {
        padding: 1.5rem;
    }
    
    .quote-section {
        padding: 1.5rem;
    }
    
    .quote-container {
        padding: 1rem;
    }
    
    .opening-hours {
        padding: 1.5rem;
    }
    
    .contact-btn-container {
        padding: 1.5rem;
    }
    
    .cooperation-section h3,
    .opening-hours h3 {
        font-size: 1.4rem;
    }
    
    .cooperation-section p,
    .cooperation-section li {
        font-size: 0.9rem;
    }
    
    .quote-section blockquote p {
        font-size: 1.1rem;
    }
    
    .contact-btn {
        font-size: 1rem;
        padding: 12px 30px;
    }
    
    .map-container iframe {
        height: 200px;
    }
    
    .navigation-icon {
        font-size: 2rem;
    }
    
    .navigation-text {
        font-size: 0.9rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .value-item {
        padding: 1.5rem;
    }
    
    .value-item h4 {
        font-size: 1.2rem;
    }
    
    .value-item p {
        font-size: 0.9rem;
    }
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.value-item {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border-color: rgba(52, 73, 94, 0.3);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.value-item h4 {
    color: #2c3e50;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.value-item p {
    color: #34495e;
    line-height: 1.6;
    font-size: 1rem;
}

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

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes logoGlow {
    0%, 100% {
        opacity: 0.4;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.7;
        transform: translate(-50%, -50%) scale(1.05);
    }
}