/* ==========================================================================
   CONTAINER 1: HERO SECTION WITH CONTINUOUS BACKGROUND FADE OUT
   ========================================================================== */
.hero-section {
    position: relative; height: 92vh; min-height: 650px;
    background-image: url('../images/hero.paros.webp');
    background-size: cover; background-position: center;
    display: flex; align-items: center; justify-content: center; padding: 0 24px;
}

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

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

/* ==========================================================================
   CONTAINER 2: PEBBLE MASK INTRO (Sand Beige Background)
   ========================================================================== */
.pebble-intro-section { background-color: var(--bg-sand); padding: 120px 0; }
.pebble-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }

.pebble-mask {
    width: 100%; max-width: 460px; height: 520px; margin: 0 auto;
    border-radius: 43% 57% 70% 30% / 45% 45% 55% 55%;
    overflow: hidden; box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}
.pebble-mask img { width: 100%; height: 100%; object-fit: cover; }

.section-tag { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--color-primary); display: block; margin-bottom: 12px; }
.pebble-text-wrapper h2 { font-family: var(--font-heading); font-size: 38px; line-height: 1.25; margin-bottom: 24px; }
.pebble-text-wrapper p { font-size: 15.5px; color: var(--text-muted); line-height: 1.7; }

/* ==========================================================================
   CONTAINER 3: 3-BOXES STAYS GRID WITH HOVER ZOOM & CTA
   ========================================================================== */
.rooms-section { background-color: white; padding: 100px 0; }
.section-center-header { text-align: center; margin-bottom: 60px; }
.section-center-header h2 { font-family: var(--font-heading); font-size: 36px; margin-top: 8px; }

.rooms-three-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }

/* Η κάρτα μεγαλώνει και αποκτά σκιά στο hover */
.room-box-card { 
    background-color: var(--bg-surface); 
    border-radius: 12px; 
    overflow: hidden; 
    display: flex; 
    flex-direction: column; 
    border: 1px solid #f0f0f0;
    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);
    will-change: transform, box-shadow;
}

.room-box-card:hover {
    transform: translateY(-8px) scale(1.02); /* Μεγέθυνση και ανύψωση του box */
    box-shadow: 0 20px 45px rgba(0, 45, 84, 0.08); /* Premium, deep shadow */
}

.room-box-img { height: 240px; width: 100%; }
.room-box-img img { width: 100%; height: 100%; object-fit: cover; }
.room-box-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.room-box-body h4 { font-family: var(--font-heading); font-size: 20px; font-weight: 400; margin-bottom: 10px; }
.room-box-body p { font-size: 14px; color: var(--text-muted); line-height: 1.6; margin-bottom: 24px; flex: 1; }

/* Footer της κάρτας με Τιμή και το CTA κουμπί */
.room-box-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #eeeeee;
    padding-top: 16px;
    margin-top: auto;
}

.room-box-price { font-size: 15px; font-weight: 700; color: var(--text-main); }

.room-cta-link {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 700;
    color: var(--color-primary);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.2s;
}

.room-cta-link .material-symbols-outlined {
    font-size: 18px;
    transition: transform 0.2s;
}

.room-cta-link:hover { color: var(--color-tertiary); }
.room-cta-link:hover .material-symbols-outlined { transform: translateX(4px); }

/* ==========================================================================
   CONTAINER 4: LIVE IN PAROS FULL STAGGERED GRID (2x2 Balanced)
   ========================================================================== */
.paros-experience-section { background-color: var(--bg-terracotta); padding: 100px 0; }
.experience-header-split { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 50px; gap: 40px; }
.experience-header-split h2 { font-family: var(--font-heading); font-size: 40px; font-weight: 400; }
.experience-header-split p { max-width: 400px; font-size: 15px; color: var(--text-muted); line-height: 1.6; }

/* Custom Ασύμμετρο Πλέγμα - Συμπληρωμένο */
.paros-custom-staggered-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-item { position: relative; border-radius: 12px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.03); height: 260px; }
.grid-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.grid-item:hover img { transform: scale(1.03); }

/* Διάταξη μεγεθών για το staggered εφέ */
.item-tall { grid-row: span 2; height: 544px; }
.item-wide { grid-column: span 2; }
.item-normal { grid-column: span 1; }

.grid-item-overlay {
    position: absolute; left: 0; bottom: 0; width: 100%; padding: 24px;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 100%);
    color: white; z-index: 3;
}
.grid-item-overlay h4 { font-family: var(--font-heading); font-size: 20px; font-weight: 400; }

/* ==========================================================================
   RESPONSIVE DESIGN FOR HOME SECTIONS
   ========================================================================== */
@media (max-width: 1024px) {
    .rooms-three-grid { grid-template-columns: repeat(2, 1fr); }
    .paros-custom-staggered-grid { grid-template-columns: repeat(2, 1fr); }
    .item-tall { height: 260px; grid-row: span 1; }
    .item-wide { grid-column: span 1; }
}

@media (max-width: 768px) {
    .hero-title { font-size: 38px; }
    .pebble-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .pebble-mask { height: 400px; }
    .rooms-three-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .experience-header-split { flex-direction: column; align-items: flex-start; gap: 15px; }
    .paros-custom-staggered-grid { grid-template-columns: 1fr; }
}