:root {
  --gw-blue: #0068bd;
  --gw-deep-blue: #073b70;
  --gw-red: #ef4b4d;
  --gw-ink: #18324a;
  --gw-surface: #f7fbff;
  --gw-border: #dce8f1;
}

/* Guards against legacy stylesheets (e.g. jorgos.css) rescaling the rem base */
html { font-size: 16px !important; }

body {
  background: var(--gw-surface);
  color: var(--gw-ink);
  font-family: Georgia, "Times New Roman", serif;
}

.site-shell {
  max-width: 1320px;
  padding: 28px 24px 0;
}
.card-title-index {
  margin-top: 0;
  color: var(--bs-primary);
  font-size: 23px;
  text-align: center;
}

.site-frame {
  margin-bottom: 32px;
  padding: 20px 20px 24px;
  border: 1px solid var(--gw-border);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 20px 50px rgba(19, 62, 98, .12);
}

.site-header { margin-bottom: 24px; }

.site-branding {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 8px 24px;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  color: var(--gw-blue);
  text-decoration: none;
}

.site-logo img { height: 52px; width: auto; }

.site-social { display: flex; gap: 10px; }
.site-social a {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid var(--gw-border);
  border-radius: 50%;
  color: var(--gw-blue);
  font-family: Arial, sans-serif;
  font-weight: 700;
  text-decoration: none;
}

.site-nav {
  margin-bottom: 16px;
  padding: 7px 14px;
  border: 1px solid #edf3f7;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 6px 20px rgba(19, 62, 98, .08);
}

.site-nav .nav-link { padding: 9px 13px; color: var(--gw-deep-blue); font-family: Arial, sans-serif; }
.site-nav .nav-link:hover, .site-nav .nav-link.active { color: var(--gw-blue); }
.site-search { display: flex; gap: 8px; align-items: center; }
.site-search .form-control { width: 180px; border-radius: 20px; font-family: Arial, sans-serif; font-size: 14px; }
.site-search .btn, .btn-primary { border: 0; border-radius: 20px; background: var(--gw-blue); font-family: Arial, sans-serif; }
.site-search .btn { padding-inline: 18px; font-size: 14px; }

@media (min-width: 992px) {
  .site-nav .navbar-collapse {
    position: relative;
    display: flex !important;
    justify-content: center;
    align-items: center;
  }

  .site-nav .navbar-nav {
    display: flex;
    flex: 0 0 auto;
    margin-right: 0 !important;
  }

  .site-nav .navbar-nav > .nav-item {
    flex: 0 0 auto;
    text-align: center;
  }

  .site-nav .navbar-nav > .nav-item > .nav-link {
    white-space: nowrap;
  }

  .site-search {
    position: absolute;
    right: 0;
    flex: 0 0 auto;
  }
}

.homepage-hero { position: relative; overflow: hidden; min-height: 320px; margin-bottom: 24px; border-radius: 18px; background: var(--gw-deep-blue); }
.homepage-hero img { width: 100%; height: 320px; object-fit: cover; object-position: center; }
.homepage-hero-content { position: absolute; z-index: 1; top: 50%; left: 34px; max-width: 480px; color: #fff; transform: translateY(-50%); text-shadow: 0 2px 8px rgba(0, 0, 0, .35); }
.homepage-hero-content p { margin: 0 0 6px; font-family: Arial, sans-serif; font-size: 16px; font-weight: 700; text-transform: uppercase; }
.homepage-hero-content .hero-title { margin: 0; font-size: clamp(34px, 5vw, 58px); font-weight: 400; text-transform: none; }

h1 { margin-bottom: 8px; color: var(--gw-deep-blue); font-size: clamp(28px, 4vw, 40px); }
h2 { color: var(--gw-deep-blue); font-size: 28px; }
main h1,
main h2 { text-align: center; }
.destination-grid { margin-top: 24px; }
.destination-link { height: 100%; cursor: pointer; }
.destination-card { display: flex; flex-direction: column; overflow: hidden; border: 1px solid var(--gw-border); border-radius: 8px; background: #fff; box-shadow: 0 4px 14px rgba(17, 54, 83, .07); transition: transform .2s ease, box-shadow .2s ease; }
.destination-card:hover { box-shadow: 0 10px 22px rgba(17, 54, 83, .15); transform: translateY(-3px); }
.destination-card img { width: 100%; height: 120px; object-fit: cover; }
.destination-card .caption { display: flex; flex: 1; flex-direction: column; padding: 18px; }
.destination-card h3 { margin-top: 0; color: var(--gw-deep-blue); font-size: 23px; }
.destination-card p { margin-bottom: 16px; line-height: 1.55; }
.destination-card .caption > p:last-child { margin-top: auto; margin-bottom: 0; }
.destination-card .btn {
  display: block;
  width: 100%;
  box-sizing: border-box;
  padding: 9px 14px;
  text-align: center;
}
.btn-group-justified { display: block; }
.btn-group-justified .btn { width: 100%; }

.ad-rail {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 28px;
}
.ad-slot {
  display: flex;
  justify-content: center;
}

.ad-slot a,
.ad-slot img {
  display: block;
  max-width: 100%;
  height: auto;
}

.site-footer {
  margin-top: 32px;
  padding: 28px 24px 18px;
  overflow: hidden;
  border-radius: 18px;
  background: var(--bs-primary);
  color: #fff;
}

.site-footer,
.site-footer *,
.site-footer::before,
.site-footer::after,
.site-footer *::before,
.site-footer *::after {
  background: var(--bs-primary) !important;
  color: #fff !important;
  text-align: center !important;
}

.site-footer > *,
.site-footer .container,
.site-footer .row {
  margin-right: auto;
  margin-left: auto;
}

.site-footer ul {
  padding-left: 0;
  list-style: none;
}

.site-footer a { color: #fff; }

@media (max-width: 767.98px) { .hidden-xs { display: none !important; } }
@media (min-width: 768px) and (max-width: 991.98px) { .hidden-sm { display: none !important; } }
@media (min-width: 992px) and (max-width: 1199.98px) { .hidden-md { display: none !important; } }
@media (min-width: 1200px) { .hidden-lg { display: none !important; } }

@media (max-width: 991.98px) {
  .site-nav .navbar-collapse { padding-top: 10px; }
  .site-search { margin-top: 10px; }
}

@media (max-width: 575.98px) {
  .site-shell { padding: 18px 14px 0; }
  .site-frame { padding: 14px 14px 0; border-radius: 18px; }
  .site-footer { padding: 22px 14px 14px; }
  .site-logo img { height: 40px; }
  .site-social { display: none; }
  .homepage-hero, .homepage-hero img { min-height: 270px; height: 270px; }
  .homepage-hero-content { left: 22px; right: 22px; }
  .site-search .form-control { width: 100%; }
}