/* Βασικές ρυθμίσεις */
body {
    margin: 0;
    background: #ffffff;
    color: #111;
    font-family: 'Inter', sans-serif;
}

/* Header */
header {
    padding: 20px 40px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    letter-spacing: 1px;
}

/* Hero section */
.hero {
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    opacity: 0;
    animation: fadeIn 2s ease forwards;
}

/* Εικόνα hero */
.hero img {
    width: 400px;        /* Μικραίνει την εικόνα */
    max-width: 70%;      /* Για κινητά */
    height: auto;
    margin-bottom: 10px;
}

/* Κεντρικός τίτλος */
.hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    font-weight: 400;
    margin: 0;
}

/* Υπότιτλος */
.hero p {
    font-size: 18px;
    margin-top: 10px;
    opacity: 0.7;
}

/* Fade-in animation */
@keyframes fadeIn {
    to { opacity: 1; }
}

/* Επόμενη ενότητα */
.section {
    padding: 120px 60px;
    opacity: 0;
    animation: fadeIn 1.5s ease forwards;
    animation-delay: 1s;
}

.section h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    margin-bottom: 20px;
}

.section p {
    max-width: 600px;
    line-height: 1.6;
}

.menu {
    list-style: none;
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-top: 5px;
    padding: 0;
}

.menu-item {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    color: black;
    text-decoration: none;
    transition: 0.3s ease;
}

.menu-item:hover {
    opacity: 0.6;
}


/* 📱 Mobile adjustments */
@media (max-width: 768px) {

    /* Header */
    header {
        padding: 20px 30px;
        text-align: center;
    }

    header h1 {
        font-size: 28px;
    }

    /* Menu */
    .menu {
        flex-direction: column;
        gap: 15px;
        margin-top: 10px;
    }

    .menu-item {
        font-size: 18px;
    }

    /* Hero section */
    .hero {
        height: auto;
        padding: 40px 20px;
    }

    .hero img {
        width: 90%;
        max-width: 350px;
    }

    .hero h2 {
        font-size: 36px;
    }

    /* Sculpture page gallery or list */
    .works {
        padding: 40px 20px;
        text-align: center;
    }

    .works h2 {
        font-size: 28px;
    }

    .works ul {
        padding: 0;
    }

    .works li {
        font-size: 18px;
        margin-bottom: 10px;
    }

    /* If you add gallery later */
    .gallery {
        grid-template-columns: 1fr;
        padding: 20px;
        gap: 20px;
    }

        .back-button {
        margin: 20px;
        text-align: center;
    }

}
/* --- Gallery layout --- */
.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding: 60px;
}

.gallery .item img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    transition: 0.3s ease;
}

.gallery .item img:hover {
    transform: scale(1.03);
}

.gallery .item p {
    text-align: center;
    margin-top: 10px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
}

.back-button {
    margin: 10px 40px;
}
/*
.back-button a {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    text-decoration: none;
    color: black;
    border: 1px solid black;
    padding: 8px 14px;
    border-radius: 4px;
    transition: 0.3s ease;
}*/

.back-min:active {
  transform: scale(0.96);
}


.back-min {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: "Georgia", serif;
  font-size: 1.05rem;
  color: #333;
  text-decoration: none;
  padding: 4px 6px;
  border-radius: 4px;
  transition: 0.25s ease;
}

.back-min .icon {
  font-size: 1.2rem;
  line-height: 1;
}

.back-min:hover {
  background: #f2f2f2;
  color: #000;
}

.subtle-link {
    opacity: 0.7;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.subtle-link:hover {
    opacity: 1;
}

.exhibitions-list {
    max-width: 800px;
    margin: 40px auto;
    padding: 0 20px;
}

.exhibition-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 20px;
}

.exhibition-text h3 {
    margin: 0;
    font-size: 15px;   /* μικρότερο τίτλο */
    font-weight: 400;
    letter-spacing: 1px;
}

.exhibition-text p {
    font-size: 14px;   /* μικρότερο υπότιτλο */
    opacity: 0.7;
}


.exhibition-thumb {
    width: 90px;
    height: auto;
    opacity: 0.85;
    border-radius: 4px;
}



.exhibitions-link:hover {
    opacity: 1;
}


.exhibitions-link:hover {
    opacity: 1.0;              /* εμφανίζεται καθαρά στο hover */
}


/* BACK BUTTON EXHIBITION */
/* 
.back-button {
    position: fixed;
    top: 5px;
    left: 5px;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    opacity: 0.45;
    text-decoration: none;
    color: #000;
    transition: opacity 0.25s ease;
    z-index: 9999;
}*/

.back-button:hover {
    opacity: 0.9;
}

.menu {
    text-align: center;
    padding: 0;
    margin: 0;
    list-style: none;
}

.menu li {
    display: inline-block;
    margin: 0 12px;
}

@media (max-width: 768px) {
    .menu li {
        display: block;
        margin: 10px 0;
        text-align: center;
    }
}

.footer-link {
    position: static;
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    opacity: 0.450;
    text-decoration: none;
    color: #000;
    transition: opacity 0.45s ease;
}

.footer-link:hover {
    opacity: 1.0;
}



.top-section {
    min-height: 300px; /* ή 350px αν χρειάζεται */
}

/* --- FOOTER --- */

.footer-container {
    display: flex;
    justify-content: space-between;
    padding: 10px 22px;
}

.footer-link {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    opacity: 0.45;
    text-decoration: none;
    color: #000;
    transition: opacity 0.45s ease;
}

.footer-link:hover {
    opacity: 1;
}

/* Mobile: κάθετα στο κέντρο */
@media (max-width: 600px) {
    .footer-container {
        display: block;
        text-align: center;
        padding: 20px 0;
    }

    .footer-link {
        display: block;
        margin: 10px 0;
    }
}

.contact-section {
    width: fit-content;        /* το κάνει όσο χρειάζεται */
    margin-left: 40px;         /* ΙΔΙΟ με το padding του header */
    margin-top: 40px;
    padding: 0;
    text-align: left;
}

.contact-item {
    margin-bottom: 25px;
}

.contact-item h3 {
    margin: 0 0 5px 0;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    letter-spacing: 1px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 260px;
}

.contact-form input,
.contact-form textarea {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    padding: 8px;
    border: 1px solid #ccc;
    outline: none;
    border-radius: 4px;
}

.contact-form textarea {
    height: 100px;
    resize: none;
}

.contact-form button {
    padding: 8px;
    border: none;
    background: #000;
    color: #fff;
    font-size: 0.9rem;
    cursor: pointer;
    border-radius: 4px;
    transition: 0.3s ease;
}

.contact-form button:hover {
    opacity: 0.8;
}

/* Desktop alignment */
.contact-section {
    width: fit-content;
    margin-left: 40px; /* ίδια ευθεία με το CONTACT */
    margin-top: 40px;
    padding: 0;
    text-align: left;
}

.contact-item {
    margin-bottom: 30px;
}

.contact-item h3 {
    margin: 0 0 5px 0;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    letter-spacing: 1px;
}

/* Form styling */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 260px;
}

.contact-form input,
.contact-form textarea {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    padding: 8px;
    border: 1px solid #ccc;
    outline: none;
    border-radius: 4px;
}

.contact-form textarea {
    height: 100px;
    resize: none;
}

.contact-form button {
    padding: 8px;
    border: none;
    background: #000;
    color: #fff;
    font-size: 0.9rem;
    cursor: pointer;
    border-radius: 4px;
    transition: 0.3s ease;
}

.contact-form button:hover {
    opacity: 0.8;
}


@media (max-width: 600px) {
    .contact-section {
        width: 100%;
        margin-left: 0;
        padding: 0 20px;
        text-align: left;
    }

    .contact-form {
        width: 100%;
    }
}


/* ΜΠΑΡΑ ΣΤΟ ΕΧΗΙΒΙΤIONS */
.scroll-strip {
    width: 100%;
    overflow: hidden;
    background: rgba(120, 120, 120, 0.4);
    padding: 12px 0;
    margin-bottom: 30px;
}

.scroll-content {
    display: flex;
    white-space: nowrap;
    position: relative;
}

.marquee {
  display: inline-block;
  padding-right: 40px;
  color: white;
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  letter-spacing: 1px;
  animation: scroll-left 18s linear infinite;
}


@keyframes scroll-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* ============================
   PRESS PAGE — CLEAN CSS ONLY
   ============================ */

/* Κεντρικό container */
.press-section {
    width: fit-content;
    margin-left: 80px;       /* πιο δεξιά όπως ζήτησες */
    margin-top: 40px;
    padding: 0;
    text-align: left;
}

/* Κάθε press item */
.press-item {
    margin-bottom: 30px;
}

/* Τίτλοι άρθρων */
.press-item h3 {
    margin: 0 0 5px 0;
    font-family: 'Cormorant Garamond', serif;   /* μπορείς να το αλλάξεις */
    font-size: 22px;
    font-weight: 400;
    letter-spacing: 1px;
    color: #000;                                 /* μαύρο για λευκό background */
}

/* Υπότιτλοι (π.χ. LIFO — 2024) */
.press-item p {
    margin: 0 0 5px 0;
    font-family: 'Inter', sans-serif;            /* μπορείς να το αλλάξεις */
    font-size: 15px;
    opacity: 0.7;
    color: #000;
}

/* Link "Read" */
.press-item a {
    font-family: 'Inter', sans-serif;            /* μπορείς να το αλλάξεις */
    font-size: 14px;
    color: #000;
    text-decoration: none;
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

.press-item a:hover {
    opacity: 1;
}





/* GLOBAL BACK BUTTON — FINAL CLEAN VERSION */
.back-button {
    display: inline-block;
    margin: 20px 40px;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    opacity: 0.45;
    text-decoration: none;
    color: #000;
    transition: opacity 0.25s ease;
    z-index: 9999;
}

.back-button:hover {
    opacity: 1;
}
