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

body {
    font-family: 'Arial', sans-serif;
    background-color: #0a0a0a;
    color: #ffffff;
    overflow-x: hidden;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 40px;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #ff6b35;
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
    padding-bottom: 5px;
}

.logo:hover {
    color: #ff8c5a;
}

.logo::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #ffffff;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: #ff6b35;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #ff6b35;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: -10%;
    width: 110%;
    height: 100%;
    background-size: cover;
    background-position: center left;
    background-repeat: no-repeat;
    opacity: 0.7;
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.4);
}

.hero-content {
    text-align: center;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
    margin-left: 5%;
}

.hero-title {
    font-size: 4rem;
    font-weight: 300;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #ffffff, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #cccccc;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-location {
    font-size: 1.2rem;
    color: #ff6b35;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(45deg, #ff6b35, #ff8c5a);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 500;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease-out 0.9s both;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.5);
}

/* Main Content */
.main-content {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.section {
    margin-bottom: 80px;
}

.section-title {
    font-size: 2.5rem;
    color: #ff6b35;
    margin-bottom: 30px;
    text-align: center;
}

.section-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #cccccc;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* Contact Section - Úprava pre zarovnanie */
#contact .section-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

#contact .section-content p {
    margin: 8px 0;
    text-align: left;
    width: auto;
}

/* Gallery Grid - First Row (Small Items) */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
    margin-bottom: 60px;
}

/* Gallery Grid - Second Row (Large Items) */
.gallery-grid.large-items {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 80px;
}

.gallery-item {
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.gallery-item.large {
    padding: 40px;
}

.gallery-item:hover {
    transform: translateY(-10px);
}

.gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transform: scale(0.95);
}

.gallery-item.large img {
    height: 400px;
    object-fit: contain;
    background: rgba(255, 255, 255, 0.05);
}

/* Individuálne nastavenia pre konkrétne fotky */
.gallery-item img[src="lampa.jpeg"],
.gallery-item img[src="lampa II.jpg"] {
    object-position: center center;
    transform: scale(0.85);
}

.gallery-item img[src="vazy.jpeg"] {
    object-position: center center;
    transform: scale(0.8);
}

.gallery-item img[src="prestieranie.jpeg"] {
    object-position: center top;
    transform: scale(0.85);
}

.gallery-item div,
.gallery-item p {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    padding: 15px 0;
    margin-top: 15px;
    background: transparent;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 0;
}

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

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .navbar {
        padding: 15px 20px;
    }
    
    .hero-background {
        left: 0;
        width: 100%;
        background-position: center;
    }
    
    .hero-content {
        margin-left: 0;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid.large-items {
        grid-template-columns: 1fr;
    }
    
    .gallery-item {
        padding: 20px;
    }
    
    .gallery-item.large {
        padding: 30px;
    }
}