/* ══════════════════════════════════════════════════
   GRCIJA PAGE — Greece destinations page styles
   ══════════════════════════════════════════════════ */

/* ═══ HERO ═══ */
.page-hero {
  position: relative; height: 62svh; min-height: 420px; max-height: 640px;
  display: flex; align-items: flex-end; overflow: hidden;
  padding: 0 0 max(36px, 5vh) 0;
}
.page-hero-img { position: absolute; inset: 0; background-size: cover; background-position: center 35%; transform: scale(1.05); animation: phZoom 16s ease-out forwards; }
@keyframes phZoom { from { transform: scale(1.05) } to { transform: scale(1.0) } }
.page-hero-grad { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(15,25,35,0.55) 0%, rgba(15,25,35,0.12) 40%, rgba(15,25,35,0.2) 55%, rgba(15,25,35,0.88) 100%); }
.page-hero-content { position: relative; z-index: 2; width: 100%; padding-top: 0; }
.hero-label { display: inline-flex; align-items: center; gap: 12px; font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.7); margin-bottom: clamp(14px, 2vh, 24px); }
.hero-label::before { content: ''; width: 32px; height: 1px; background: var(--gold); }
.page-hero-content h1 { font-family: 'Cormorant Garamond', serif; font-size: clamp(44px, 7vw, 80px); font-weight: 600; color: #fff; line-height: 0.98; margin-bottom: clamp(8px, 1.5vh, 16px); letter-spacing: -0.5px; }
.page-hero-content h1 em { font-style: italic; color: rgba(255,255,255,0.6); }
.page-hero-content .hero-p { font-size: clamp(15px, 1.6vw, 17px); color: rgba(255,255,255,0.75); max-width: 640px; line-height: 1.65; margin-bottom: 8px; }
.hero-stats { display: flex; gap: 40px; margin-top: clamp(18px, 3vh, 32px); padding-top: clamp(14px, 2.5vh, 24px); border-top: 1px solid rgba(255,255,255,0.12); }
.hs-n { font-family: 'Cormorant Garamond', serif; font-size: 40px; font-weight: 600; color: #fff; line-height: 1; }
.hs-l { font-size: 10px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-top: 4px; }

/* ═══ DESTINATION GRID ═══ */
.dest-grid { display: grid; grid-template-columns: repeat(2, 1fr); grid-auto-rows: 280px; gap: 14px; }
.dest-card { position: relative; overflow: hidden; border-radius: 20px; text-decoration: none; display: block; background: var(--slate); cursor: pointer; transition: transform 0.5s cubic-bezier(0.2,0.8,0.2,1), box-shadow 0.5s; }
.dest-card:hover { transform: translateY(-6px) scale(1.01); box-shadow: 0 24px 56px rgba(0,0,0,0.18); }
.dest-card-img { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 0.8s cubic-bezier(0.2,0.8,0.2,1); filter: brightness(0.82); }
.dest-card:hover .dest-card-img { transform: scale(1.07); filter: brightness(0.7); }
.dest-card-ov { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,18,30,0.92) 0%, rgba(10,18,30,0.1) 50%); transition: all 0.4s; }
.dest-card:hover .dest-card-ov { background: linear-gradient(to top, rgba(10,18,30,0.96) 0%, rgba(10,18,30,0.2) 55%); }
.dest-card-num { position: absolute; top: 20px; left: 24px; font-family: 'Cormorant Garamond', serif; font-size: 13px; font-weight: 400; color: rgba(255,255,255,0.2); letter-spacing: 2px; z-index: 3; transition: color 0.3s; }
.dest-card:hover .dest-card-num { color: var(--azure); }
.dest-card-arr { position: absolute; top: 18px; right: 18px; width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.08); color: #fff; border: 1px solid rgba(255,255,255,0.12); display: flex; align-items: center; justify-content: center; opacity: 0; transition: all 0.3s; backdrop-filter: blur(6px); z-index: 3; }
.dest-card:hover .dest-card-arr { opacity: 1; }
.dest-card::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--azure); transform: scaleX(0); transform-origin: left; transition: transform 0.5s ease; z-index: 5; }
.dest-card:hover::after { transform: scaleX(1); }
.dest-card-body { position: absolute; bottom: 0; left: 0; right: 0; padding: 28px; z-index: 2; }
.dest-card-name { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 700; color: #fff; margin-bottom: 5px; line-height: 1.1; }
.dest-card-sub { font-size: 13px; color: rgba(255,255,255,0.5); margin-bottom: 14px; line-height: 1.5; }
.dest-card-meta { display: flex; align-items: center; gap: 16px; }
.dest-card-count { display: inline-flex; align-items: center; gap: 5px; font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--azure); transition: letter-spacing 0.3s; }
.dest-card:hover .dest-card-count { letter-spacing: 1.5px; }
.dest-card-cta { display: inline-flex; align-items: center; gap: 5px; font-size: 11px; font-weight: 600; letter-spacing: 0.8px; text-transform: uppercase; color: rgba(255,255,255,0.3); transition: all 0.3s; }
.dest-card:hover .dest-card-cta { color: rgba(255,255,255,0.7); gap: 8px; }
.dest-card-cta svg { transition: transform 0.3s; }
.dest-card:hover .dest-card-cta svg { transform: translateX(3px); }

/* ═══ RESPONSIVE ═══ */
@media (max-width: 1024px) { .dest-grid { grid-auto-rows: 260px; } .hero-stats { gap: 28px; } }
@media (max-width: 820px) {
  .dest-grid { grid-auto-rows: 240px; }
  .dest-card-name { font-size: 24px !important; } .dest-card-body { padding: 22px; }
  .page-hero { height: 50svh; min-height: 380px; max-height: 500px; padding-bottom: max(36px, 4.5vh); }
  .page-hero-content h1 { font-size: clamp(38px, 7vw, 56px); }
  .hero-p { font-size: 15px; }
  .hero-stats { gap: 32px; }
  .hs-n { font-size: 32px; }
  .hs-l { font-size: 9px; letter-spacing: 1.2px; }
}
@media (max-width: 768px) {
  .page-hero { height: 58svh; min-height: 420px; max-height: 520px; padding-bottom: max(40px, 5.5vh); }
  .page-hero-content h1 { font-size: clamp(34px, 9vw, 52px); }
  .page-hero-content h1 br { display: none; }
  .hero-p { font-size: 15px; max-width: 100%; margin-bottom: 6px; }
  .hero-stats { gap: 28px; }
  .hs-n { font-size: 28px; }
  .hs-l { font-size: 9px; letter-spacing: 1px; }
  .dest-grid { grid-auto-rows: 220px; gap: 10px; }
  .dest-card-sub { font-size: 12px; margin-bottom: 10px; }
  .dest-card-cta { display: none; }
}
@media (max-width: 560px) {
  .page-hero { height: 55svh; min-height: 400px; max-height: 500px; padding-bottom: max(36px, 5vh); }
  .page-hero-content h1 { font-size: clamp(28px, 8vw, 40px); }
  .hero-p { font-size: 14px; line-height: 1.6; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
  .hs-n { font-size: 26px; }
  .hs-l { font-size: 8.5px; }
  .dest-grid { grid-template-columns: 1fr; grid-auto-rows: 200px; gap: 10px; }
  .dest-card-name { font-size: 22px !important; } .dest-card-body { padding: 18px; }
  .dest-card-num { top: 14px; left: 16px; font-size: 11px; }
}
@media (max-width: 430px) {
  .dest-grid { grid-auto-rows: 180px; } .dest-card-body { padding: 14px; }
  .dest-card-name { font-size: 20px !important; }
  .page-hero-content h1 { font-size: clamp(26px, 7.5vw, 36px); }
  .hero-label { font-size: 10px; letter-spacing: 1.5px; }
  .hs-n { font-size: 24px; }
}
@media (max-width: 390px) { .dest-grid { grid-auto-rows: 170px; } .page-hero-content h1 { font-size: clamp(24px, 7vw, 32px); } }
@media (max-height: 780px) and (min-width: 769px) {
  .page-hero { padding-bottom: max(24px, 3.5vh); }
  .hero-label { margin-bottom: 14px; }
  .page-hero-content h1 { font-size: clamp(36px, 5.5vw, 64px); margin-bottom: max(8px, 1vh); }
  .hero-stats { margin-top: max(16px, 2vh); padding-top: max(12px, 1.5vh); }
  .hs-n { font-size: 32px; }
}
@media (max-height: 680px) and (min-width: 569px) {
  .page-hero { padding-bottom: max(16px, 2.5vh); }
  .hero-label { margin-bottom: 8px; font-size: 10px; }
  .page-hero-content h1 { font-size: clamp(26px, 4.8vw, 52px); margin-bottom: max(6px, 1vh); }
  .hero-p { font-size: 13px; max-width: 360px; }
  .hero-stats { margin-top: max(10px, 1.5vh); padding-top: max(8px, 1vh); gap: 24px; }
  .hs-n { font-size: 26px; }
  .hs-l { font-size: 8px; }
}
