/* ============================================
   SANTORINI RESTAURANT — Minimal Stylesheet
   ============================================ */

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; background: none; border: 0; }
ul, ol { list-style: none; }

/* Tokens */
:root {
  --bg: #fbfaf7;
  --surface: #ffffff;
  --text: #1d1d1b;
  --muted: #777572;
  --line: #ebe7df;
  --accent: #1f4e6b;
  --gold: #b48a4a;
  --shadow: 0 1px 2px rgba(0,0,0,.04), 0 8px 24px rgba(0,0,0,.04);

  --serif: 'Cormorant Garamond', 'Playfair Display', Georgia, 'Times New Roman', serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
}

/* Base */
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
p { color: var(--muted); margin-bottom: 1em; }

/* Layout */
.container-fluid { width: 100%; }
.container-wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
}
.clearfix::after { content: ''; display: table; clear: both; }

.row { display: flex; flex-wrap: wrap; margin: 0 -14px; }
[class*="col-"] { padding: 0 14px; width: 100%; }

/* Force full-width row breakers so the flex grid stays tidy */
.row > .txt_cntr,
.row > .clearfix,
.row > .h10,
.row > .h20,
.row > .h40,
.row > .space {
  flex: 0 0 100%;
  max-width: 100%;
  width: 100%;
}

.col-md-3 { flex: 0 0 25%; max-width: 25%; }
.col-md-4, .col-lg-4, .col-sm-4 { flex: 0 0 33.3333%; max-width: 33.3333%; }
.col-md-6 { flex: 0 0 50%; max-width: 50%; }
.col-md-7 { flex: 0 0 58.3333%; max-width: 58.3333%; }
.col-md-8 { flex: 0 0 66.6666%; max-width: 66.6666%; }
.col-md-12 { flex: 0 0 100%; max-width: 100%; }
.col-xs-6 { flex: 0 0 50%; max-width: 50%; }

@media (max-width: 960px) {
  .col-md-3, .col-md-4, .col-md-6, .col-md-7, .col-md-8, .col-lg-4, .col-sm-4 {
    flex: 0 0 50%; max-width: 50%;
  }
}
@media (max-width: 640px) {
  .col-md-3, .col-md-4, .col-md-6, .col-md-7, .col-md-8, .col-lg-4, .col-sm-4, .col-xs-6 {
    flex: 0 0 100%; max-width: 100%;
  }
}

/* Spacing helpers (overrides for legacy classes) */
.p60-0 { padding: 80px 0; }
.p100-0 { padding: 100px 0; }
.p40 { padding: 24px 0; }
.p10 { padding: 8px 0; }
.h10 { height: 10px; }
.h15 { height: 15px; }
.h20 { height: 20px; }
.h40 { height: 40px; }
.txt_cntr { text-align: center; }
.fl { float: none; display: inline-block; vertical-align: middle; }
.center { float: none !important; margin: 0 auto; }
.bg_grey { background: #f3f0ea; }
.space { height: 14px; }

/* Header */
header.index {
  background: var(--surface);
  padding: 36px 0;
  border-bottom: 1px solid var(--line);
}
header.index h1 a {
  display: block;
  text-align: center;
  font-family: var(--serif);
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 400;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--text);
}

/* Carousel */
.carousel { position: relative; overflow: hidden; background: #000; }
.carousel-inner { position: relative; }
.carousel-inner .item { display: none; }
.carousel-inner .item.active { display: block; animation: fade .9s ease; }
@keyframes fade { from { opacity: .2; } to { opacity: 1; } }
.carousel-inner .item img {
  width: 100%;
  height: clamp(360px, 72vh, 720px);
  object-fit: cover;
}

.carousel-indicators {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}
.carousel-indicators li {
  width: 30px;
  height: 2px;
  background: rgba(255,255,255,.4);
  cursor: pointer;
  transition: background .3s, transform .3s;
}
.carousel-indicators li.active { background: #fff; transform: scaleY(2); }

.carousel-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: rgba(0,0,0,.15);
  border-radius: 50%;
  transition: background .3s;
}
.carousel-control:hover { background: rgba(0,0,0,.35); }
.carousel-control.left { left: 24px; }
.carousel-control.right { right: 24px; }
.glyphicon-chevron-left::before { content: '‹'; font-size: 28px; line-height: 1; }
.glyphicon-chevron-right::before { content: '›'; font-size: 28px; line-height: 1; }
.sr-only {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap;
}

/* Typography */
h2, h3 {
  font-family: var(--serif);
  font-weight: 400;
  color: var(--text);
}
h2.index {
  text-align: center;
  font-size: clamp(28px, 3.2vw, 40px);
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 88px 16px 8px;
}
h3 {
  font-size: 20px;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border: 1px solid var(--text);
  background: transparent;
  color: var(--text);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .28em;
  text-transform: uppercase;
  transition: background .3s, color .3s, border-color .3s;
  font-family: var(--sans);
}
.btn:hover { background: var(--text); color: #fff; }
.btn-lrg { padding: 16px 40px; font-size: 12px; }
.btn-default {
  border: 0;
  padding: 10px 18px;
  color: var(--muted);
  background: transparent;
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  border-bottom: 1px solid transparent;
}
.btn-default:hover { color: var(--text); }
.filter-button.active {
  color: var(--text);
  border-bottom-color: var(--gold);
}

/* Sections */
.bg_grey + * { /* spacing safety */ }

/* "What we offer" gallery cards */
.gallery-box {
  text-align: center;
  margin-bottom: 28px;
}
.gallery-box a {
  display: block;
  overflow: hidden;
  margin-bottom: 18px;
}
.gallery-box img {
  width: 100%;
  transition: transform .8s ease, filter .4s ease;
}
.gallery-box:hover img { transform: scale(1.04); filter: brightness(.95); }
.gallery-box h3 {
  font-size: 15px;
  letter-spacing: .2em;
  margin-bottom: 8px;
}
.gallery-box p {
  font-size: 13px;
  line-height: 1.6;
}

/* Fade hover */
.fade-hover { display: block; overflow: hidden; }
.fade-hover img { transition: transform .6s ease, opacity .3s ease; }
.fade-hover:hover img { transform: scale(1.04); opacity: .92; }

/* Menu gallery (filter) */
.gallery_product {
  padding: 0 12px 24px;
}
.gallery_product a {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #ecebe5;
  position: relative;
}
.gallery_product a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Hide placeholders whose image file is missing (anchor has no <img>) */
.gallery_product:has(> a.fade-hover:empty) { display: none; }
.filter { display: block; }

/* Reservations / Tripadvisor backgrounds */
#form_bg, #trip_bg {
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
#form_bg { background-image: url('/images/santorini-restaurant-slider/04.jpg'); }
#trip_bg { background-image: url('/images/santorini-restaurant-slider/06.jpg'); }
.darken_bg {
  background: rgba(15, 18, 22, .55);
  padding: 100px 20px;
}
.darken_bg > .col-md-8, .darken_bg > .col-md-7 { margin: 0 auto; float: none; }
.darken_bg h3 {
  color: #fff;
  text-align: center;
  margin-bottom: 32px;
  font-size: 22px;
  letter-spacing: .25em;
}

.box-white {
  background: #fff;
  padding: 44px clamp(20px, 4vw, 56px);
  max-width: 860px;
  margin: 0 auto;
  box-shadow: var(--shadow);
}

/* Form */
#contact-form .form { padding: 8px 12px; }
#contact-form input[type="text"],
#contact-form input[type="email"],
#contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  background: #fff;
  font-family: inherit;
  font-size: 13px;
  letter-spacing: .08em;
  color: var(--text);
  outline: none;
  transition: border-color .3s;
}
#contact-form input:focus,
#contact-form textarea:focus { border-color: var(--gold); }
#contact-form textarea { min-height: 130px; resize: vertical; }
#contact-form ::placeholder { color: #b8b4ad; letter-spacing: .12em; font-size: 12px; }

input.button, input[type="submit"] {
  width: 100%;
  background: var(--text);
  color: #fff;
  border: 0;
  padding: 16px;
  letter-spacing: .35em;
  font-size: 12px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .3s;
  margin-top: 10px;
}
input.button:hover, input[type="submit"]:hover { background: var(--accent); }

/* Tripadvisor reviews carousel */
.trip-slides .item { padding: 12px 8px; }
.trip-slides .item p {
  text-align: center;
  color: var(--text);
  font-size: 15px;
  line-height: 1.7;
}
.trip-slides .item strong {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 18px;
  font-style: italic;
}
.trip-slides .item em {
  display: inline-block;
  margin-top: 12px;
  font-style: normal;
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
}
.trip { text-align: center; padding: 6px 0; }
.trip .TA_rated, .trip .TA_excellent { display: inline-block; }

/* Gallery banner blocks (winery / santorini) */
.h3-color {
  text-align: center;
  padding: 36px 20px;
}
.h3-color .separator {
  width: 44px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 18px;
}
.h3-color h3 {
  font-size: 18px;
  letter-spacing: .26em;
}

/* Navigation */
.navbar {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}
.navbar .container-wrap { position: relative; }
.lang {
  text-align: center;
  padding-bottom: 12px;
}
.lang .fl { display: inline-flex; align-items: center; gap: 10px; }
.lang img { height: 18px; width: auto; display: inline-block; }
.lang .TA_restaurantWidgetGreen { display: inline-block; margin-left: 12px; vertical-align: middle; }

.navbar-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px 8px;
}
.navbar-nav > li { position: relative; }
.navbar-nav > li > a {
  display: block;
  padding: 10px 16px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color .3s;
}
.navbar-nav > li > a:hover,
.navbar-nav > li.active > a { color: var(--text); }
.navbar-nav > li > a::after {
  content: '';
  display: block;
  height: 1px;
  background: var(--gold);
  width: 0;
  margin: 6px auto 0;
  transition: width .3s ease;
}
.navbar-nav > li.active > a::after,
.navbar-nav > li > a:hover::after { width: 22px; }

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border: 1px solid var(--line);
  min-width: 220px;
  padding: 8px 0;
  z-index: 20;
  box-shadow: var(--shadow);
}
.navbar-nav > li:hover > .dropdown-menu,
.navbar-nav > li:focus-within > .dropdown-menu { display: block; }
.dropdown-menu li a {
  display: block;
  padding: 10px 18px;
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
  transition: color .3s, background .3s;
}
.dropdown-menu li a:hover { color: var(--text); background: #f7f4ee; }

/* Mobile nav */
.navbar-toggle {
  display: none;
  position: absolute;
  right: 16px;
  top: 16px;
  padding: 10px;
  background: transparent;
  border: 1px solid var(--line);
}
.navbar-toggle .icon-bar {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--text);
  margin: 5px 0;
}

@media (max-width: 768px) {
  .navbar-toggle { display: block; }
  .navbar-header { text-align: left; padding: 4px 0; }
  .navbar-collapse.collapse { display: none; }
  .navbar-collapse.collapse.in { display: block; }
  .navbar-nav { flex-direction: column; align-items: stretch; gap: 0; }
  .navbar-nav > li > a { text-align: center; padding: 14px; border-bottom: 1px solid var(--line); }
  .navbar-nav > li > a::after { display: none; }
  .dropdown-menu {
    position: static; transform: none; box-shadow: none; border: 0;
    background: #faf8f3; min-width: 0;
  }
}

/* Footer */
footer {
  background: #fff;
  border-top: 1px solid var(--line);
  padding: 80px 0 32px;
}
.footer-box { padding: 12px 0; }
.footer-box h3 {
  text-align: left;
  font-size: 14px;
  letter-spacing: .25em;
  margin-bottom: 18px;
  text-transform: uppercase;
}
.footer-box p {
  font-size: 13px;
  line-height: 1.65;
  color: var(--muted);
  margin-bottom: 8px;
}
.footer-links p {
  word-break: break-all;
  font-size: 12px;
}
.social a { display: inline-block; }
.social img { height: 30px; width: auto; display: inline-block; }

footer .separator {
  height: 1px;
  background: var(--line);
  margin: 48px 0 20px;
}
.copy {
  text-align: center;
  font-size: 11px;
  letter-spacing: .14em;
  color: var(--muted);
  text-transform: uppercase;
}
.copy a { color: var(--text); }
.copy a:hover { color: var(--gold); }

/* Story / intro narrative block */
.story-section {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
  padding: 16px 8px;
}
.story-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.25;
  letter-spacing: .02em;
  color: var(--text);
  margin-bottom: 36px;
  text-transform: none;
}
.story-title::after {
  content: '';
  display: block;
  width: 56px;
  height: 1px;
  background: var(--gold);
  margin: 24px auto 0;
}
.story-content { text-align: left; }
.story-content p {
  font-size: 16px;
  line-height: 1.85;
  color: var(--muted);
  margin-bottom: 22px;
}
.story-content p:last-child { margin-bottom: 0; }

@media (max-width: 640px) {
  .story-content { text-align: left; }
  .story-content p { font-size: 15px; line-height: 1.75; }
}

/* Misc cleanup */
noscript { display: none; }
