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

body {
    font-family: 'Arial', 'Helvetica', sans-serif;
    line-height: 1.6;
    color: #1a1a2e;
    background-color: #fff;
}

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

/* Logo Container */
.logo-container {
    text-align: center;
    padding: 15px 20px;
    background-color: transparent;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
}

.logo-img {
    max-width: 180px;
    height: auto;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.3));
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: 500px;
    background-image: url('http://dev.dolinamorave.rs/wp-content/uploads/2023/10/Hero-3.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-top: 0;
    padding-top: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 100px;
}

.hero-content {
    color: #fff;
    text-align: right;
}

.hero-content h1 {
    font-size: 72px;
    font-weight: bold;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    font-family: 'Georgia', 'Times New Roman', serif;
}

.hero-content h2 {
    font-size: 48px;
    font-weight: 300;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    font-family: 'Georgia', 'Times New Roman', serif;
}

/* Content Sections */
.content-section {
    padding: 80px 0;
    background-color: #fff;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    margin: 0;
}

.content-section:first-of-type {
    border-top: 2px solid #1a3a5f;
}

.section-content {
    display: flex;
    align-items: center;
    gap: 60px;
    justify-content: space-between;
    padding: 40px;
    border: 2px solid #f0f0f0;
    border-radius: 12px;
    background-color: #fafafa;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.section-content.reverse {
    flex-direction: row-reverse;
}

.text-content {
    flex: 1;
    max-width: 600px;
}

.section-label {
    font-size: 14px;
    color: #1a3a5f;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    font-weight: 600;
}

.section-title {
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 25px;
    color: #1a3a5f;
    position: relative;
    padding-bottom: 15px;
    font-family: 'Georgia', 'Times New Roman', serif;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background-color: #FFD700;
}

.section-description {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    max-width: 900px;
    margin-bottom: 40px;
}

.text-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
}

.image-content {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-jar {
    max-width: 680px;
    width: 100%;
}

.product-jar img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(26, 58, 95, 0.2);
    border: 3px solid #FFD700;
}

/* Photo Gallery */
.gallery-container {
    position: relative;
    margin-top: 40px;
    padding: 20px;
    border: 2px solid #f0f0f0;
    border-radius: 12px;
    background-color: #fafafa;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.photo-gallery {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    border: 3px solid #FFD700;
    background-color: #fff;
    box-shadow: 0 4px 15px rgba(26, 58, 95, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(26, 58, 95, 0.3);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.product-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.product-gallery-item {
    border: 3px solid #FFD700;
}

.product-gallery-item img {
    height: 250px;
    cursor: pointer;
}

.product-carousel-section {
    background-color: #f9f9f9;
}

/* Footer */
.footer {
    background-color: #1a3a5f;
    color: #fff;
    padding: 60px 0 20px;
    border-top: 4px solid #FFD700;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
}

.footer-content {
    text-align: center;
}

.contact-info {
    margin-top: 30px;
    text-align: center;
}

.contact-info p {
    margin: 15px 0;
    font-size: 18px;
    color: #fff;
}

.contact-info a {
    color: #FFD700;
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 500;
}

.contact-info a:hover {
    color: #fff;
    text-decoration: underline;
}

.footer-copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: #ccc;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-overlay {
        padding-right: 40px;
    }

    .hero-content h1 {
        font-size: 48px;
    }

    .hero-content h2 {
        font-size: 32px;
    }

    .section-content {
        flex-direction: column;
        gap: 40px;
        padding: 30px;
    }

    .section-content.reverse {
        flex-direction: column;
    }

    .product-jar {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .hero {
        height: 400px;
    }

    .hero-overlay {
        padding-right: 20px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content h2 {
        font-size: 24px;
    }

    .section-title {
        font-size: 32px;
    }

    .content-section {
        padding: 50px 0;
    }

    .section-content {
        padding: 20px;
    }

    .photo-gallery {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .gallery-item img {
        height: 250px;
    }

    .product-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .product-gallery-item img {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .photo-gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item img {
        height: 200px;
    }

    .product-gallery-item img {
        height: 150px;
    }
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.lightbox.active {
    display: flex;
}

.lightbox-image {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    cursor: default;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: #fff;
    font-size: 48px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10001;
    transition: color 0.3s;
    line-height: 1;
}

.lightbox-close:hover {
    color: #FFD700;
}

@media (max-width: 768px) {
    .lightbox-close {
        top: 10px;
        right: 20px;
        font-size: 36px;
    }
    
    .lightbox-image {
        max-width: 95%;
        max-height: 95%;
    }
}
