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

html {
    scroll-behavior: smooth;
}

body { 
    background-color: #050505; 
    color: #fff; 
    font-family: 'Helvetica Neue', Arial, sans-serif; 
    overflow-x: hidden; /* Διορθώθηκε για να επιτρέπει το scroll προς τα κάτω */

}

nav { 
    position: absolute; 
    top: 0; 
    width: 100%; 
    padding: 30px 50px; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    z-index: 100; 
    pointer-events: none; 
}
.logo { font-size: 20px; font-weight: bold; letter-spacing: 3px; }
.nav-links { list-style: none; display: flex; gap: 40px; pointer-events: auto; }
.nav-links a { 
    color: #fff; 
    text-decoration: none; 
    font-size: 13px; 
    text-transform: uppercase; 
    letter-spacing: 1px;
    opacity: 0.6; 
    transition: opacity 0.3s; 
}
.nav-links a:hover { opacity: 1; }


/* HERO SECTION */
.hero-section {
    position: relative;
    width: 100vw;
    height: 100vh;
    background: radial-gradient(circle at center, #1a1a1a 0%, #050505 100%);
    overflow: hidden;
    touch-action: pan-y; /* ΝΕΟ: Επιτρέπει μόνο το κάθετο scroll, σταματάει τα περίεργα τραβήγματα! */
}

canvas { 
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    z-index: 0; 
    pointer-events: none; 
}

.gallery-container { 
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    z-index: 10; 
}

.node { 
    position: absolute; 
    max-width: 280px; 
    border-radius: 4px; 
    object-fit: cover;
    filter: grayscale(80%) brightness(0.6); 
    /* ΕΔΩ ΗΤΑΝ ΤΟ ΠΡΟΒΛΗΜΑ: Αφαιρέσαμε το 'transform' */
    transition: filter 0.4s ease; 
    cursor: pointer; 
    pointer-events: auto; 
    box-shadow: 0 15px 35px rgba(0,0,0,0.8); 
    transform-origin: center center;
    will-change: transform, filter; 
    backface-visibility: hidden; 
    touch-action: none;
}

/* Κατάσταση Hover (για υπολογιστές) και Touch (για κινητά) */
.node:hover,
.node.is-touched { 
    filter: grayscale(0%) brightness(1.1) !important; /* Το !important σιγουρεύει ότι θα υπερισχύσει */
    z-index: 50 !important; 
    box-shadow: 0 0 20px rgba(255,255,255,0.2);
    transition: filter 0.1s ease; /* ΠΟΛΥ ΣΗΜΑΝΤΙΚΟ: Ακαριαίο άναμμα (0.1 δευτερόλεπτα) όταν το ακουμπάς! */
}

.hero-text { 
    position: absolute; 
    top: 50%; 
    left: 50%; 
    transform: translate(-50%, -50%); 
    text-align: center; 
    width: 90%; /* Αποτρέπει το κείμενο από το να κολλάει στις άκρες του κινητού */
    z-index: 15; /* ΑΛΛΑΓΗ: Το κάναμε 15 (από 5) για να είναι πάνω από τις εικόνες */
    pointer-events: none; /* ΣΗΜΑΝΤΙΚΟ: Επιτρέπει στα κλικ/αφή να "περνάνε" μέσα από το κείμενο στις εικόνες */
}
.hero-text h1 { 
    font-size: 3.5rem; 
    letter-spacing: 8px; 
    margin-bottom: 15px; 
    text-transform: uppercase; 
    text-shadow: 0 10px 20px rgba(0,0,0,0.9); 
    font-weight: 300;
}
.hero-text p { 
    font-size: 1rem; 
    opacity: 0.5; 
    letter-spacing: 2px;
}

/* COLLECTIONS SECTION */
.collections-section {
    position: relative;
    width: 100vw;
    min-height: 100vh;
    background-color: #050505;
    padding: 100px 5vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 20; 
}

.section-title {
    font-size: 2rem;
    letter-spacing: 6px;
    margin-bottom: 50px;
    font-weight: 300;
    color: #fff;
}

.accordion-container {
    display: flex;
    width: 100%;
    max-width: 1400px;
    height: 65vh; 
    gap: 15px;
}

.panel {
    position: relative;
    background-size: cover;
    background-position: center;
    flex: 1; 
    border-radius: 12px;
    cursor: pointer;
    overflow: hidden;
    transition: flex 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}

.panel::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    transition: background 0.7s ease;
}

.panel:hover {
    flex: 5;
}

.panel:hover::before {
    background: rgba(0, 0, 0, 0.1);
    box-shadow: inset 0 -100px 100px -50px rgba(0,0,0,0.8);
}

.panel-content {
    position: absolute;
    bottom: 40px;
    left: 40px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease 0.2s; 
    pointer-events: none; 
}

.panel:hover .panel-content {
    opacity: 1;
    transform: translateY(0);
}

.panel-content h3 {
    font-size: 1.8rem;
    letter-spacing: 3px;
    margin-bottom: 10px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.8);
}

.panel-content p {
    font-size: 0.9rem;
    opacity: 0.8;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.8);
}


/* --- ABOUT SECTION --- */
.about-section {
    position: relative;
    width: 100vw;
    background-color: #050505;
    padding: 120px 5vw;
    display: flex;
    justify-content: center;
    z-index: 20;
}

.about-container {
    display: flex;
    align-items: center;
    max-width: 1200px;
    width: 100%;
    gap: 80px;
}

/* Αριστερό μέρος: Εικόνα */
.about-image-wrapper {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.8);
}

.about-img {
    width: 100%;
    height: auto;
    display: block;
    filter: grayscale(80%) contrast(1.2);
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1), filter 0.8s ease;
}

/* Overlay για κινηματογραφική υφή */
.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(5,5,5,0.8) 0%, rgba(5,5,5,0) 100%);
    pointer-events: none;
}

.about-image-wrapper:hover .about-img {
    transform: scale(1.05);
    filter: grayscale(0%) contrast(1);
}

/* Δεξί μέρος: Περιεχόμενο */
.about-content {
    flex: 1;
}

.section-title.left-align {
    margin-bottom: 10px;
    text-align: left;
}

.about-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    color: #888;
    margin-bottom: 40px;
    letter-spacing: 2px;
}

.about-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #ccc;
    margin-bottom: 25px;
    font-weight: 300;
}

/* Στατιστικά */
.about-stats {
    display: flex;
    gap: 50px;
    margin-top: 50px;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
}

.stat {
    display: flex;
    align-items: center;
    gap: 15px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 200;
    color: #fff;
}

.stat-text {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #777;
    line-height: 1.4;
}


/* --- CONTACT SECTION --- */
.contact-section {
    position: relative;
    width: 100vw;
    background-color: #050505;
    padding: 120px 5vw;
    display: flex;
    justify-content: center;
    z-index: 20;
    /* Μια πολύ λεπτή γραμμή για να χωρίσει τις ενότητες οπτικά */
    border-top: 1px solid rgba(255,255,255,0.05); 
}

.contact-container {
    display: flex;
    max-width: 1200px;
    width: 100%;
    gap: 100px;
}

.contact-info {
    flex: 1;
}

.contact-desc {
    color: #ccc;
    font-size: 1.05rem;
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 50px;
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.info-label {
    font-size: 0.75rem;
    color: #555;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: bold;
}

.info-link, .info-text {
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 300;
    transition: color 0.3s;
}

.info-link:hover {
    color: #888;
}

/* Στυλ Φόρμας */
.contact-form-wrapper {
    flex: 1;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    font-size: 1rem;
    font-family: inherit;
    padding: 15px 0;
    transition: border-color 0.3s;
    resize: none; /* Απενεργοποιεί το τράβηγμα του textarea */
}

/* Όταν ο χρήστης γράφει, η κάτω γραμμή γίνεται ολόλευκη */
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-bottom-color: #fff;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255,255,255,0.3);
    font-weight: 300;
}

.submit-btn {
    align-self: flex-start;
    background: #fff;
    color: #050505;
    border: none;
    padding: 15px 40px;
    margin-top: 10px;
    font-size: 0.9rem;
    letter-spacing: 2px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #ccc;
    transform: translateY(-3px); /* Σηκώνεται ελαφρώς στο hover */
}


/* --- FOOTER ΜΕ ΧΑΡΤΗ --- */
.site-footer {
    background-color: #030303; /* Ελάχιστα πιο σκούρο από το υπόλοιπο site για να δώσει βάθος */
    color: #fff;
    padding: 80px 5vw 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
    z-index: 20;
    position: relative;
}

/* Πλέγμα με 3 στήλες */
.footer-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto 60px auto;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-logo {
    font-size: 1.5rem;
    letter-spacing: 4px;
    margin-bottom: 5px;
    font-weight: 300;
}

.footer-about {
    color: #888;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Κοινωνικά Δίκτυα */
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-links a {
    color: #fff;
    text-decoration: none;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.5;
    transition: opacity 0.3s;
}

.social-links a:hover {
    opacity: 1;
}

.footer-heading {
    font-size: 0.9rem;
    letter-spacing: 3px;
    color: #fff;
    margin-bottom: 5px;
}

.footer-col p {
    color: #888;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-col p a {
    color: #888;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col p a:hover {
    color: #fff;
}

/* Ρυθμίσεις και Dark Mode εφέ για τον Χάρτη */
.map-col iframe {
    border-radius: 6px;
    /* Αυτό το φίλτρο κάνει τον χάρτη σκούρο! */
    filter: grayscale(100%) invert(90%) contrast(85%); 
    transition: filter 0.5s ease;
}

.map-col iframe:hover {
    filter: grayscale(0%) invert(0%); /* Επιστροφή στα κανονικά χρώματα στο hover */
}

/* Κάτω Μπάρα Footer */
.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: #555;
    font-size: 0.85rem;
    font-weight: 300;
}

.developer-credit a {
    color: #777;
    text-decoration: none;
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.75rem;
    transition: color 0.3s ease;
}

.developer-credit a:hover {
    color: #fff;
}


/* --- BURGER MENU (Βασικές Ρυθμίσεις) --- */
.burger {
    display: none;
    cursor: pointer;
    z-index: 105; /* Πρέπει να είναι πάνω από το ανοιχτό μενού */
    pointer-events: auto;
}

.burger span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: #fff;
    margin: 5px;
    transition: all 0.3s ease;
}

/* --- SCROLL DOWN INDICATOR --- */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 50px;
    z-index: 20;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    text-decoration: none;
}

.scroll-indicator span {
    display: block;
    width: 20px;
    height: 20px;
    border-bottom: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
    opacity: 0.5;
    animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
    0% { transform: translateY(0) rotate(45deg); opacity: 0; }
    50% { opacity: 0.8; }
    100% { transform: translateY(15px) rotate(45deg); opacity: 0; }
}


@media (max-width: 768px) {
    .node { max-width: 140px; }
    .hero-text h1 { font-size: 2rem; letter-spacing: 4px; }
    /* Διορθώνουμε το nav για να έχει το logo αριστερά και το burger δεξιά */
    nav { 
        padding: 20px; 
        flex-direction: row; 
        justify-content: space-between;
    }

    /* Εμφανίζουμε το Burger */
    .burger {
        display: block;
    }

    /* Μετατρέπουμε τα links σε Fullscreen Μενού */
    .nav-links {
        position: fixed; /* Καρφωμένο στην οθόνη */
        right: 0;
        top: 0;
        height: 100vh;
        width: 100vw;
        background-color: rgba(5, 5, 5, 0.98); /* Σκούρο, σχεδόν αδιαφανές φόντο */
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px; /* Μεγαλύτερο κενό για εύκολο tap */
        transform: translateX(100%); /* Το κρύβουμε στα δεξιά εκτός οθόνης */
        transition: transform 0.4s ease-in-out;
        z-index: 100;
    }

    /* Κλάση που θα προσθέτει η JavaScript για να ανοίγει το μενού */
    .nav-links.nav-active {
        transform: translateX(0);
    }

    /* Πιο μεγάλα γράμματα στο κινητό */
    .nav-links a {
        font-size: 1.2rem;
        letter-spacing: 4px;
    }

    /* Animation του Burger (Μετατροπή σε X) */
    .burger.toggle .line1 {
        transform: rotate(-45deg) translate(-5px, 5px);
    }
    .burger.toggle .line2 {
        opacity: 0;
    }
    .burger.toggle .line3 {
        transform: rotate(45deg) translate(-5px, -5px);
    }
    
    .collections-section { padding: 50px 20px; }
    .accordion-container { flex-direction: column; height: 120vh; }
    .panel-content { opacity: 1; transform: translateY(0); left: 20px; bottom: 20px; }
    .panel::before { background: rgba(0, 0, 0, 0.4); }

    .about-section {
        padding: 80px 20px;
    }

    .about-container {
        flex-direction: column;
        gap: 40px;
    }

    .about-image-wrapper {
        width: 100%;
    }

    /* Πιο φωτεινή εικόνα στα κινητά */
    .about-img {
        filter: grayscale(20%) contrast(1.1);
    }

    .section-title.left-align, 
    .about-subtitle {
        text-align: center;
    }

    .about-content p {
        text-align: center; /* Κεντραρισμένο αντί για justify */
        font-size: 0.95rem;
    }

    /* Τα στατιστικά μπαίνουν δίπλα-δίπλα */
    .about-stats {
        display: flex;
        flex-direction: row;
        justify-content: center;
        gap: 40px;
        align-items: flex-start;
        border-top: 1px solid rgba(255,255,255,0.1);
        padding-top: 30px;
    }

    .stat {
        flex-direction: column; /* Νούμερο πάνω, λέξεις κάτω */
        gap: 5px;
        text-align: center;
    }

    /* ... (υπάρχοντες mobile κανόνες) ... */

    .contact-section {
        padding: 80px 20px;
    }

    .contact-container {
        flex-direction: column;
        gap: 60px;
    }

    .submit-btn {
        width: 100%; /* Το κουμπί πιάνει όλο το πλάτος στο κινητό */
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}