* {
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #fff;
    background-image: url('w-black2.jpg');
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background: 
        linear-gradient(168deg, #4c4965 0%, #4c4965 55%, transparent 25%, transparent 100%),
        linear-gradient(0deg, transparent 0%, transparent 33%, #c6d92c 33%, #c6d92c 66%, #4c4965 66%, #4c4965 100%);
    color: #fff;
    padding: 1.5rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    margin-bottom: 1rem;
    backdrop-filter: blur(5px);
    
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: block;
    background: #4c4965;
    padding: 8px 12px;
    border-radius: 8px;
    /* box-shadow: 0 2px 8px rgba(0,0,0,0.2); */
}

.logo img {
    height: 70px;
    width: auto;
    transition: transform 0.3s ease;
    display: block;
}

.logo img:hover {
    transform: scale(1.05);
}

.nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.nav-menu li {
    margin-left: 2rem;
}

.nav-menu li a {
    color: #000;
    text-decoration: none;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
    border-radius: 5px;
    font-weight: bold;
    text-transform: uppercase;
    position: relative;
}

.nav-menu li a:hover {
    background-color: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.nav-menu li a.active {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #333;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    transform: translateY(-2px);
}

.nav-menu li a.active:hover {
    background: linear-gradient(135deg, #ffed4e, #ffd700);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

/* Hamburger menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 3px 0;
    transition: 0.3s;
}

main {
    margin-top: 130px; /* Height of fixed header + margin */
}

section {
    margin-bottom: 4rem;
    padding: 2rem 0;
}

section:not(.hero) {
    background-color: rgba(0,0,0,0.3);
    backdrop-filter: blur(5px);
}

section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

section p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* Hero Section */
.hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6));
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero.animate {
    opacity: 1;
    transform: translateY(0);
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
}

.hero.animate .hero-content h1 {
    opacity: 1;
    transform: translateY(0);
}

.hero-content h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #f0f0f0;
    font-weight: 300;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}

.hero.animate .hero-content h2 {
    opacity: 1;
    transform: translateY(0);
}

.hero-content p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Carousel Styles */
#carousel-section {
    padding: 1rem 0;
    margin-bottom: 2rem;
    background: none;
}

.carousel-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    opacity: 0;
    transform: scale(0.9) translateY(30px);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-container.animate {
    opacity: 1;
    transform: scale(1) translateY(0);
}

.carousel {
    display: flex;
    transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide {
    min-width: 100%;
    position: relative;
}

.carousel-slide img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.8);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: rgba(255,255,255,1);
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: rgba(255,255,255,1);
    transform: scale(1.2);
}

#sluzby {
    padding: 4rem 0;
}

.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    color: #fff;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(50px);
}

.service.animate {
    opacity: 1;
    transform: translateY(0);
}

.service:nth-child(1) { animation-delay: 0.1s; }
.service:nth-child(2) { animation-delay: 0.3s; }
.service:nth-child(3) { animation-delay: 0.5s; }
.service:nth-child(4) { animation-delay: 0.7s; }

.service:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}

.service-icon {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 1rem;
    transition: all 0.4s ease;
    animation: float 3s ease-in-out infinite;
}

.service:hover .service-icon {
    transform: scale(1.2) rotate(10deg);
    color: #ffd700;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Akcie Styles */
.akcia-intro {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #f0f0f0;
}

.akcie-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
}

.akcia-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(50px);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.akcia-item.animate {
    opacity: 1;
    transform: translateY(0);
}

.akcia-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}

.akcia-image {
    position: relative;
    height: 240px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
}

.akcia-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.4s ease;
    padding: 1rem;
}

.akcia-item:hover .akcia-image img {
    transform: scale(1.05);
}

.akcia-content {
    padding: 1.5rem;
    color: #fff;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.akcia-content h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #fff;
}

.akcia-price {
    display: inline-block;
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: bold;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
    transition: all 0.3s ease;
}

.akcia-item:hover .akcia-price {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.5);
}

.akcia-description h4 {
    color: #ffd700;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid #ffd700;
    padding-bottom: 0.5rem;
}

.akcia-description ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.akcia-description li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: #f0f0f0;
    line-height: 1.5;
}

.akcia-description li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
    font-size: 1.1rem;
}

.akcia-content p {
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #f0f0f0;
    flex-grow: 1;
}

.akcia-item:nth-child(1) { animation-delay: 0.1s; }
.akcia-item:nth-child(2) { animation-delay: 0.3s; }
.akcia-item:nth-child(3) { animation-delay: 0.5s; }

/* Pomníky Styles */
.pomniky-intro {
    max-width: 1200px;
    margin: 0 auto 3rem auto;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    color: #f0f0f0;
}

.pomniky-intro p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.pomniky-intro h3 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    text-align: left;
    font-weight: bold;
}

.pomniky-intro ul {
    list-style: none;
    padding-left: 0;
}

.pomniky-intro li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.8rem;
    font-size: 1.05rem;
    line-height: 1.6;
}

.pomniky-intro li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #fff;
    font-weight: bold;
    font-size: 1.5rem;
}

/* Detail description - rovnaké štýly ako pomniky-intro */
.detail-description {
    max-width: 1200px;
    margin: 0 auto 3rem auto;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    color: #f0f0f0;
}

.detail-description p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.detail-description h3 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    text-align: left;
    font-weight: bold;
}

.detail-description ul {
    list-style: none;
    padding-left: 0;
}

.detail-description li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.8rem;
    font-size: 1.05rem;
    line-height: 1.6;
}

.detail-description li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #fff;
    font-weight: bold;
    font-size: 1.5rem;
}

/* Ponuka cards */
.ponuka-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.ponuka-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.ponuka-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.ponuka-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.ponuka-card h4 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.ponuka-card p {
    color: #f0f0f0;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* Dôvody grid pre pracovné dosky */
.dovody-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.dovod-item {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.dovod-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.dovod-header h4 {
    color: #fff;
    font-size: 1rem;
    margin: 0;
    font-weight: bold;
    line-height: 1.3;
    flex: 1;
}

.dovod-item p {
    color: #f0f0f0;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.dovod-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(45deg, #4CAF50, #45a049);
    transform: scaleY(0);
    transition: transform 0.4s ease;
}

.dovod-item:hover::before {
    transform: scaleY(1);
}

.dovod-item:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.08));
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.dovod-number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #4CAF50, #45a049);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: bold;
    box-shadow: 0 3px 12px rgba(76, 175, 80, 0.3);
    transition: all 0.3s ease;
}

.dovod-item:hover .dovod-number {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
}

@media (max-width: 1200px) {
    .dovody-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .dovody-grid {
        grid-template-columns: 1fr;
    }
    
    .dovod-item p {
        margin-left: 0; /* Na mobile bez odsadenia */
    }
    
    .dovod-header {
        justify-content: center;
    }
}

.pomniky-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
}

.pomnik-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(50px);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pomnik-item.animate {
    opacity: 1;
    transform: translateY(0);
}

.pomnik-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}

.pomnik-image {
    position: relative;
    height: 240px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
}

.pomnik-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.4s ease;
    padding: 1rem;
}

.pomnik-item:hover .pomnik-image img {
    transform: scale(1.05);
}

.pomnik-content {
    padding: 1.5rem;
    color: #fff;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.pomnik-content h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #ffd700;
    border-bottom: 2px solid #ffd700;
    padding-bottom: 0.5rem;
}

.pomnik-content p {
    line-height: 1.6;
    color: #f0f0f0;
    flex-grow: 1;
}

.pomnik-item:nth-child(1) { animation-delay: 0.1s; }
.pomnik-item:nth-child(2) { animation-delay: 0.3s; }
.pomnik-item:nth-child(3) { animation-delay: 0.5s; }
.pomnik-item:nth-child(4) { animation-delay: 0.7s; }

/* Pomnik Details and Gallery */
.pomnik-details {
    margin-top: 4rem;
}

.pomnik-detail {
    margin-bottom: 4rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    scroll-margin-top: 100px;
}

.pomnik-detail h2 {
    color: #ffd700;
    font-size: 2rem;
    margin-bottom: 1rem;
    text-align: center;
    border-bottom: 2px solid #ffd700;
    padding-bottom: 1rem;
}

.detail-description {
    text-align: center;
    font-size: 1.1rem;
    color: #f0f0f0;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.gallery-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
}

.lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.lightbox img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.2);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: -70px;
}

.lightbox-next {
    right: -70px;
}

/* Klikateľné pomník linky */
.pomnik-item-link {
    text-decoration: none;
    color: inherit;
    display: block;
    scroll-margin-top: 100px;
    cursor: pointer;
}

.pomnik-item-link .pomnik-item {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.pomnik-item-link .pomnik-item::after {
    content: "Kliknite pre zobrazenie galérie";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(255, 215, 0, 0.9), transparent);
    color: #333;
    padding: 1rem;
    text-align: center;
    font-weight: bold;
    font-size: 0.9rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    border-radius: 0 0 20px 20px;
}

.pomnik-item-link:hover .pomnik-item::after {
    opacity: 1;
    transform: translateY(0);
}

.pomnik-item-link:hover .pomnik-item {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

footer {
    background-color: rgba(51, 51, 51, 0.9);
    color: #fff;
    /* padding: 2rem 0 0 0; */
}

.footer-content {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-center {
    flex: 1;
    display: flex;
    justify-content: center;
}

.footer-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.footer-bottom {
    text-align: center;
    padding: 1.5rem 0;
    color: #ccc;
    font-size: 0.9rem;
}

.contact-layout {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.contact-text {
    flex: 1;
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-text.animate {
    opacity: 1;
    transform: translateX(0);
}

.contact-description {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.3);
}

.contact-details {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.2);
}

.contact-details a {
    color: #ffd700;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.contact-details a:hover {
    color: #ffed4e;
    border-bottom: 1px solid #ffd700;
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.5);
}

.map-container {
    flex: 1;
    margin-top: 0;
    width: 100%;
    max-width: none;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.map-container.animate {
    opacity: 1;
    transform: translateX(0);
}

.map-frame {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 1rem;
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border-radius: 10px;
}

.contact-info p {
    margin: 0.5rem 0;
}

.contact-info a {
    color: #ffd700;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.contact-info a:hover {
    color: #ffed4e;
    border-bottom: 1px solid #ffd700;
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.5);
}

.footer-image {
    height: 160px;
    width: auto;
    object-fit: contain;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        max-width: 100%;
        padding: 0 15px;
    }
}

@media (max-width: 1024px) {
    .carousel-slide img {
        height: 350px;
    }
    
    .pomniky-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 110px;
        flex-direction: column;
        background-color: rgba(198, 217, 44, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        backdrop-filter: blur(10px);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 0;
    }
    
    .nav-menu li a {
        display: block;
        padding: 1rem;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content h2 {
        font-size: 1.4rem;
    }
    
    .hero-content p {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .services {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-top {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-left,
    .footer-right,
    .footer-center {
        flex: none;
    }
    
    .footer-image {
        margin: 0;
        order: -1;
    }
    
    .contact-layout {
        flex-direction: column;
        gap: 2rem;
    }
    
    .map-container iframe {
        height: 300px;
    }
    
    .akcie-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .akcia-image {
        height: 180px;
    }
    
    .pomniky-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .pomnik-image {
        height: 180px;
    }
    
    .gallery {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 0.8rem;
    }
    
    .pomnik-detail {
        padding: 1.5rem;
    }
    
    .pomnik-detail h2 {
        font-size: 1.6rem;
    }
    
    .lightbox-nav {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .lightbox-prev {
        left: -50px;
    }
    
    .lightbox-next {
        right: -50px;
    }
}

@media (max-width: 480px) {
    .lightbox-prev {
        left: 10px;
    }
    
    .lightbox-next {
        right: 10px;
    }
    
    .lightbox-nav {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content h2 {
        font-size: 1.2rem;
    }
    
    .service {
        padding: 1.5rem;
    }
    
    section h2 {
        font-size: 2rem;
    }
    
    section p {
        font-size: 1rem;
    }
    
    .carousel-slide img {
        height: 250px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .prev-btn {
        left: 10px;
    }
    
    .next-btn {
        right: 10px;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
    }
}

/* Hamburger animation */
.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #333;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    transform: translateY(20px);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
    background: linear-gradient(135deg, #ffed4e, #ffd700);
}

@media (max-width: 768px) {
    .back-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
        font-size: 18px;
    }
}