/* ==========================================================================
   CONTAINER 1: ABOUT HERO (92vh Height για απόλυτη συνοχή)
   ========================================================================== */
.about-hero-section {
    position: relative; 
    height: 92vh; 
    min-height: 650px;
    background-image: url('../images/hero.about.webp');
    background-size: cover; 
    background-position: center;
    display: flex; 
    align-items: center; 
    justify-content: center; 
    padding: 0 24px;
}

.about-hero-section::after {
    content: ''; position: absolute; left: 0; bottom: 0; width: 100%; height: 35%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
    z-index: 2;
}

.about-hero-content { position: relative; max-width: 700px; text-align: center; color: white; z-index: 5; }
.about-hero-subtitle { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 3px; color: #dfc49f; display: block; margin-bottom: 20px; }
.about-hero-title { font-family: var(--font-heading); font-size: 52px; font-weight: 400; line-height: 1.15; margin-bottom: 24px; }
.about-hero-description { font-size: 16px; line-height: 1.6; margin-bottom: 36px; opacity: 0.95; }

/* ==========================================================================
   SHARED DESIGN ELEMENTS (Τυπογραφική συνοχή)
   ========================================================================== */
.section-title {
    font-family: var(--font-heading);
    font-size: 38px;
    font-weight: 400;
    line-height: 1.25;
    color: var(--text-main);
    margin-bottom: 20px;
}

.section-tag {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-primary);
    display: block;
    margin-bottom: 12px;
}

/* ==========================================================================
   CONTAINER 2: THE VISION (Pure White Background)
   ========================================================================== */
.vision-section { background-color: white; padding: 120px 0; }
.vision-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 70px; align-items: center; }
.vision-paragraph { font-size: 15.5px; color: var(--text-muted); line-height: 1.75; margin-bottom: 20px; }
.vision-paragraph:last-child { margin-bottom: 0; }
.vision-image-wrapper { width: 100%; height: 480px; border-radius: 12px; overflow: hidden; box-shadow: 0 15px 35px rgba(0,0,0,0.02); }
.vision-img { width: 100%; height: 100%; object-fit: cover; }

/* ==========================================================================
   CONTAINER 3: THE ELEMENTS OF PAROS (Soft Sand Background)
   ========================================================================== */
.details-section { background-color: var(--bg-sand); padding: 110px 0; }
.section-center-header { text-align: center; max-width: 600px; margin: 0 auto 60px auto; }

.details-three-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.detail-box-card {
    background-color: white; border-radius: 12px; padding: 45px 30px;
    text-align: center; border: 1px solid rgba(0, 0, 0, 0.01);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.detail-box-card:hover { transform: translateY(-6px); box-shadow: 0 15px 35px rgba(0, 45, 84, 0.05); }
.detail-box-icon { color: var(--color-primary); margin-bottom: 20px; }
.detail-box-icon .material-symbols-outlined { font-size: 34px; font-weight: 300; }
.detail-box-card h4 { font-family: var(--font-heading); font-size: 22px; font-weight: 400; margin-bottom: 12px; }
.detail-box-card p { font-size: 14.5px; color: var(--text-muted); line-height: 1.6; }

/* ==========================================================================
   CONTAINER 4: ASYMMETRIC GEOMETRIC GALLERY (Terracotta Background)
   ========================================================================== */
.asymmetric-gallery-section { background-color: var(--bg-terracotta); padding: 110px 0; }
.gallery-center-header { text-align: center; max-width: 650px; margin: 0 auto 60px auto; }
.section-desc { font-size: 15px; color: var(--text-muted); line-height: 1.6; }

.asymmetric-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.gallery-card-item {
    position: relative;
    width: 100%;
    height: 360px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.03);
    background-color: white;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), 
                box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gallery-card-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 45, 84, 0.08);
}

.gallery-card-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-card-caption {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-main);
    margin-top: 12px;
    padding-left: 4px;
}

/* ΟΙ ΑΣΥΜΜΕΤΡΕΣ ΓΩΝΙΕΣ (BORDER-RADIUS) */
.img-corner-top-left { border-radius: 80px 12px 12px 12px; }
.img-corner-bottom-right { border-radius: 12px 12px 80px 12px; }
.img-corner-top-right { border-radius: 12px 80px 12px 12px; }
.img-corner-bottom-left { border-radius: 12px 12px 12px 80px; }
.img-corner-diagonal-1 { border-radius: 80px 12px 80px 12px; }
.img-corner-diagonal-2 { border-radius: 12px 80px 12px 80px; }

/* ==========================================================================
   RESPONSIVE LAYOUT FOR ABOUT
   ========================================================================== */
@media (max-width: 1024px) {
    .vision-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .vision-image-wrapper { height: 350px; }
    .details-three-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .asymmetric-gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}

@media (max-width: 768px) {
    .about-hero-title { font-size: 36px; }
    .section-title { font-size: 30px; }
    .asymmetric-gallery-grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
    .gallery-card-item { height: 300px; }
}