/* --- Hero Section --- */
.page-hero {
    position: relative;
    background-image: url('../assets/view1.JPEG'); 
    background-size: cover;
    background-position: center;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    background: rgba(255, 255, 255, 0.6);
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-hero h1 {
    font-size: 36px;
    font-weight: 400;
    color: #333;
    margin-bottom: 10px;
}

.separator-center {
    width: 40px;
    height: 2px;
    background-color: var(--accent-gold);
}

/* --- Intro Section --- */
.intro-section {
    padding: 80px 20px 40px;
    max-width: 900px;
}

.intro-content h2 {
    font-size: 24px;
    font-weight: 400;
    color: var(--primary-text);
    margin-bottom: 15px;
}

.separator-left-center {
    width: 40px;
    height: 2px;
    background-color: var(--accent-gold);
    margin-bottom: 30px;
}

.intro-content p {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
}

.intro-content strong {
    font-weight: 600;
    color: #444;
}

.welcome-text {
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 600;
    color: var(--primary-text);
}

/* --- Video Section --- */
.video-wrapper {
    max-width: 360px; /* Κρατάει το πλάτος σαν οθόνη κινητού */
    margin: 0 auto;
    aspect-ratio: 9 / 16; /* Λέει ξεκάθαρα ότι είναι κάθετο βίντεο */
    background-color: #000;
    border-radius: 16px;
    overflow: hidden;
    display: flex; /* Κεντράρει το βίντεο τέλεια */
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: contain; /* ΑΛΛΑΓΗ ΣΩΤΗΡΙΑΣ: Δεν θα παραμορφωθεί ούτε θα κοπεί ΠΟΤΕ */
    display: block;
    outline: none;
}

/* --- FAQ Section --- */
.faq-section {
    padding: 60px 20px 100px;
    max-width: 900px;
}

.faq-section h2 {
    font-size: 24px;
    font-weight: 400;
    color: var(--primary-text);
    margin-bottom: 15px;
}

.separator-left {
    width: 40px;
    height: 2px;
    background-color: var(--accent-gold);
    margin-bottom: 40px;
}

.faq-container {
    border-top: 1px solid #eee;
}

.faq-item {
    border-bottom: 1px solid #eee;
}

.faq-question {
    display: flex;
    align-items: center;
    padding: 25px 0;
    cursor: pointer;
    transition: background-color 0.2s;
}

.toggle-icon {
    width: 32px;
    height: 32px;
    background-color: #bfa37e; /* The gold color */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    color: white;
    font-size: 14px;
    flex-shrink: 0;
    transition: background-color 0.3s;
}

.faq-question h3 {
    font-size: 16px;
    font-weight: 400;
    color: #444;
    margin: 0;
}

.faq-item.active .toggle-icon {
    background-color: #a68b68;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding-left: 52px;
}

.faq-answer p {
    padding-bottom: 25px;
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* --- CUSTOM GALLERY CAROUSEL (No External CSS) --- */
.gallery-carousel-section {
    padding: 50px 0 100px;
    width: 100%;
    background-color: var(--white);
    position: relative;
}

.carousel-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 50px; /* Space for arrows */
}

.carousel-container {
    overflow: hidden; /* Hides content that scrolls off screen */
    width: 100%;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}

.carousel-slide {
    min-width: 25%; /* 4 images = 25% each */
    padding: 0 15px; /* Gap between images */
    box-sizing: border-box;
}

.carousel-slide img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    border-radius: 4px;
}

/* Custom Arrows */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 24px;
    color: var(--accent-gold);
    cursor: pointer;
    z-index: 10;
    padding: 10px;
    transition: color 0.3s;
}

.carousel-btn:hover {
    color: var(--hover-gold);
}

.prev-btn { left: 0px; }
.next-btn { right: 0px; }


/* --- Responsive --- */
@media (max-width: 992px) {
    .carousel-slide {
        min-width: 50%; /* 2 images on tablet */
    }
}

@media (max-width: 768px) {
    .faq-question { align-items: flex-start; }
    .toggle-icon { margin-top: 0; }
    .faq-answer { padding-left: 0; }
    
    /* Mobile Carousel */
    .carousel-slide {
        min-width: 100%; /* 1 image on mobile */
    }
    .carousel-wrapper { padding: 0 40px; }
}