/* =========================================
   SAMPLES.CSS
   Minták oldal stílusai
   ========================================= */
.samples-section {
    padding: 80px 0 10px;
    margin-left: var(--header-width);
    width: calc(100% - var(--header-width));
    transition: width 0.8s cubic-bezier(0.645, 0.045, 0.355, 1), margin-left 0.8s cubic-bezier(0.645, 0.045, 0.355, 1);
}

/* Kártya stílusok */
.samples-card {
    border-radius: 8px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #1a1a1a;
}

.samples-card-carousel {
    border-radius: 8px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #82808085;
}

.samples-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.samples-card.carousel-card {
    margin-top: 40px;
}

.samples-content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Carousel stílusok */
.samples-carousel {
    position: relative;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    background-color: #222;
    border-radius: 8px;
    overflow: hidden;
}

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

.carousel-slide {
    display: none;
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide.active {
    display: block;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.carousel-slide img:hover {
    transform: scale(1.05);
}

.sample-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
    padding: 30px 20px 20px;
    color: white;
}

.sample-id {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}

.sample-description {
    font-size: 16px;
    margin-bottom: 15px;
    opacity: 0.9;
}

.sample-book-btn {
    background-color: var(--color-primary);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.sample-book-btn:hover:not(:disabled) {
    background-color: #d4af37;
    transform: translateY(-2px);
}

.sample-book-btn:disabled {
    background-color: #666;
    cursor: not-allowed;
    opacity: 0.6;
}

.sample-book-btn:disabled::after {
    content: " - FOGLALT";
}

/* Carousel navigáció */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0,0,0,0.5);
    color: white;
    border: none;
    padding: 15px;
    cursor: pointer;
    font-size: 20px;
    z-index: 10;
    transition: all 0.3s ease;
}

.carousel-nav:hover {
    background-color: rgba(0,0,0,0.8);
}

.carousel-prev {
    left: 10px;
}

.carousel-next {
    right: 10px;
}

/* Carousel indikátorok */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 20px;
    background-color: #1a1a1a;
}

.carousel-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #666;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-indicator.active {
    background-color: var(--color-primary);
}

.carousel-indicator:hover {
    background-color: #999;
}

/* Popup stílusok */
.booking-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.booking-popup.show {
    display: flex;
}

.popup-content {
    background-color: #1a1a1a;
    border-radius: 8px;
    padding: 40px;
    max-width: 800px;
    max-height: 90vh;
    width: 90%;
    overflow-y: auto;
    position: relative;
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: white;
    font-size: 30px;
    cursor: pointer;
    line-height: 1;
}

.popup-close:hover {
    color: var(--color-primary);
}

.popup-title {
    color: white;
    font-size: 28px;
    margin-bottom: 20px;
    text-align: center;
}

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

.lightbox.show {
    display: flex;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    position: relative;
}

.lightbox img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 40px;
    cursor: pointer;
    line-height: 1;
}

.lightbox-close:hover {
    color: var(--color-primary);
}

/* Responsive beállítások */
@media only screen and (max-width: 1024px) {
    .samples-section {
        margin-left: 0;
        width: 100%;
        padding: 60px 0 80px;
    }

    .samples-card {
        padding: 30px;
    }

    .carousel-container {
        height: 400px;
    }
}

@media only screen and (max-width: 768px) {
    .samples-section {
        padding: 40px 0 60px;
    }

    .samples-card {
        padding: 25px;
    }

    .carousel-container {
        height: 350px;
    }

    .sample-overlay {
        padding: 20px 15px 15px;
    }

    .sample-id {
        font-size: 20px;
    }

    .sample-description {
        font-size: 14px;
    }

    .sample-book-btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    .popup-content {
        padding: 30px 20px;
        width: 95%;
    }
}

@media only screen and (max-width: 480px) {
    .samples-card {
        padding: 20px 15px;
    }

    .carousel-container {
        height: 300px;
    }

    .carousel-nav {
        padding: 10px;
        font-size: 16px;
    }

    .sample-overlay {
        padding: 15px 10px 10px;
    }

    .sample-id {
        font-size: 18px;
    }

    .popup-content {
        padding: 20px 15px;
    }
}