:root {
  --c: #0b3a6f;
  --bg: #ffffff;
  --muted: #5b6977;
}

/* ===============================
   GLOBAL RESET
================================*/
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font: 16px/1.6 system-ui, -apple-system, Segoe UI, Roboto, Inter, Arial, sans-serif;
  color: #111;
  background: linear-gradient(180deg, #b7e4f8 0%, #e9faff 60%, #ffffff 100%);
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
@media (max-width: 768px) {
  body { background-attachment: scroll; }
}

/* ===============================
   HERO SECTION
================================*/
.hero {
  position: relative;
  text-align: center;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.35) 60%, rgba(0,0,0,0.25) 100%),
    url('assets/img/4hero-thassos.webp') center/cover no-repeat;
  filter: brightness(0.9) saturate(1.25) contrast(1.05);
  padding: clamp(6rem, 10vw, 8rem) 1rem clamp(4rem, 8vw, 6rem);
  overflow: hidden;
  background-attachment: fixed;
}

/* Hafif dalga parlaması */
.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 200%;
  height: 140px;
  background: radial-gradient(ellipse at 50% 100%, rgba(255,255,255,0.5) 0%, rgba(255,255,255,0) 80%);
  opacity: 0.4;
  animation: wave 14s infinite linear;
}
@keyframes wave {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Yazılar ve bayraklar üstte */
.hero h1,
.hero p,
.flags {
  position: relative;
  z-index: 2;
}
/*.hero h1 {
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 800;
  color: #ffffff;
  text-shadow: 0 3px 8px rgba(0,0,0,0.6);
  letter-spacing: 0.5px;
}*/

.hero p {
  font-size: 1.1rem;
  margin-top: .8rem;
  color: #ffffff;                   /* açık beyaz metin */
  text-shadow: 0 2px 6px rgba(0,0,0,0.6);  /* koyu gölge: kontrast artar */
}

/* ===============================
   FLAGS (LANG SELECT)
================================*/
.flags {
  display: inline-flex;
  justify-content: center;
  gap: .4rem;
  margin: 1.6rem auto 0;
  padding: .4rem .7rem;
  background: rgba(255,255,255,0.28);
  backdrop-filter: blur(6px);
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.5);
  box-shadow: 0 3px 12px rgba(0,0,0,0.1);
}
.flag {
  width: 32px;
  height: 22px;
  border-radius: 3px;
  border: 1px solid #ccc;
  background: #fff;
  transition: transform .25s, border-color .25s;
}
.flag:hover {
  transform: scale(1.1);
  border-color: #0078c2;
}

/* ===============================
   STRUCTURE
================================*/
.wrapper {
  max-width: 1100px;
  margin: auto;
  padding: 20px;
}
h1 {
  font-size: clamp(24px, 3vw, 36px);
  margin: .2em 0;
}
h2 {
  font-size: clamp(20px, 2.4vw, 28px);
  margin: 1em 0 .5em;
  color: #0b3a6f;
}
p { margin: .5em 0; }
a { color: var(--c); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ===============================
   BUTTONS
================================*/
.btn {
  display: inline-block;
  background: var(--c);
  color: #fff;
  padding: .7em 1.1em;
  border-radius: 10px;
  font-weight: 600;
  transition: background .2s ease;
}
.btn:hover {
  background: #094a8a;
  text-decoration: none;
}

/* ===============================
   GALLERY & CARDS
================================*/
.card {
  border: 1px solid #e7eef5;
  border-radius: 14px;
  padding: 18px;
  background: #fff;
  box-shadow: 0 1px 6px rgba(0,0,0,0.05);
  margin-bottom: 24px;
}
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
  margin: 1.2rem 0;
}
.gallery img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: transform .25s ease, box-shadow .25s ease;
}
.gallery img:hover {
  transform: scale(1.03);
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}
@media (min-width: 1024px) {
  .gallery img { height: 260px; }
}
@media (max-width: 640px) {
  .gallery { grid-template-columns: 1fr; }
  .gallery img { height: auto; }
}

/* ===============================
   FEATURES / ICONS
================================*/
.features, .icons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 8px;
  margin-top: 10px;
}
.feature, .icon-box {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .9rem;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  padding: .5rem .7rem;
  transition: 0.2s;
}
.feature i, .icon-box i {
  color: #0078c2;
  font-size: 1.05rem;
  width: 20px;
  text-align: center;
}
.feature:hover, .icon-box:hover {
  border-color: #0078c2;
  color: #0078c2;
}

/* ===============================
   FOOTER
================================*/
footer {
  text-align: center;
  padding: 2rem 1rem;
  border-top: 1px solid #ddd;
  font-size: .9rem;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(3px);
  color: var(--muted);
}

/* ===============================
   LOCATION TAG
================================*/
.location-tag {
  position: fixed;
  bottom: 12px;
  right: 12px;
  background: rgba(255,255,255,0.85);
  color: #0b3a6f;
  border-radius: 12px;
  padding: .5em 1em;
  font-size: .85em;
  box-shadow: 0 1px 4px rgba(0,0,0,.15);
  z-index: 50;
}
/*
.list li {
  display: flex;
  align-items: center;
  gap: .4rem;       
  line-height: 1.6;
}
*/
/*new list*/
.list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.list li {
  position: relative;
  padding-left: 2rem;
  margin: 0.4rem 0;
  font-size: 1rem;
  color: #033e63;
  font-weight: 500;
  line-height: 1.5;
}

.list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0.05rem;
  color: #1e9c57;
  font-weight: bold;
  font-size: 1.2rem;
  text-shadow: 0 1px 3px rgba(0,0,0,0.15);
}
.hero h1 {
  font-family: 'Great Vibes', 'Dancing Script', cursive !important;
  font-size: clamp(4.5rem, 9vw, 7.5rem) !important;
  font-weight: 400 !important;
  color: #fff !important;
  text-align: center !important;
  text-shadow: 7px 7px 20px rgba(0, 0, 0, 0.8) !important;
  letter-spacing: 5px !important;
  margin: 0 !important;
  padding: 3rem 0 !important;
  line-height: 1 !important;
}