/*! HTML5 Boilerplate v9.0.1 | MIT License | https://html5boilerplate.com/ */

/* main.css 3.0.0 | MIT License | https://github.com/h5bp/main.css#readme */
/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */

/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */

html {
  font-size: 1em;
  line-height: 1.4;
  scroll-behavior: smooth;
  background-color: #000000;
  color: #dedede;
  font-family: "Google Sans", sans-serif;
}

/*
 * Remove text-shadow in selection highlight:
 * https://twitter.com/miketaylr/status/12228805301
 *
 * Customize the background color to match your design.
 */

::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}

::selection {
  background: #b3d4fc;
  text-shadow: none;
}

/*
 * A better looking default horizontal rule
 */

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */

textarea {
  resize: vertical;
}

/* ==========================================================================
   Author's custom styles
   ========================================================================== */

/* ==========================================================================
   Helper classes
   ========================================================================== */

/*
 * Hide visually and from screen readers
 */

.hidden,
[hidden] {
  display: none !important;
}

/*
 * Hide only visually, but have it available for screen readers:
 * https://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 *
 * 1. For long content, line feeds are not interpreted as spaces and small width
 *    causes content to wrap 1 word per line:
 *    https://medium.com/@jessebeach/beware-smushed-off-screen-accessible-text-5952a4c2cbfe
 */

.visually-hidden {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
  /* 1 */
}

/*
 * Extends the .visually-hidden class to allow the element
 * to be focusable when navigated to via the keyboard:
 * https://www.drupal.org/node/897638
 */

.visually-hidden.focusable:active,
.visually-hidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  white-space: inherit;
  width: auto;
}

/*
 * Hide visually and from screen readers, but maintain layout
 */

.invisible {
  visibility: hidden;
}

/*
 * Clearfix: contain floats
 *
 * The use of `table` rather than `block` is only necessary if using
 * `::before` to contain the top-margins of child elements.
 */

.clearfix::before,
.clearfix::after {
  content: "";
  display: table;
}

.clearfix::after {
  clear: both;
}

/* ==========================================================================
   EXAMPLE Media Queries for Responsive Design.
   These examples override the primary ('mobile first') styles.
   Modify as content requires.
   ========================================================================== */

@media only screen and (min-width: 35em) {
  /* Style adjustments for viewports that meet the condition */
}

@media print,
  (-webkit-min-device-pixel-ratio: 1.25),
  (min-resolution: 1.25dppx),
  (min-resolution: 120dpi) {
  /* Style adjustments for high resolution devices */
}

/* ==========================================================================
   Print styles.
   Inlined to avoid the additional HTTP request:
   https://www.phpied.com/delay-loading-your-print-css/
   ========================================================================== */

@media print {
  *,
  *::before,
  *::after {
    background: #fff !important;
    color: #000 !important;
    /* Black prints faster */
    box-shadow: none !important;
    text-shadow: none !important;
  }

  a,
  a:visited {
    text-decoration: underline;
  }

  a[href]::after {
    content: " (" attr(href) ")";
  }

  abbr[title]::after {
    content: " (" attr(title) ")";
  }

  /*
   * Don't show links that are fragment identifiers,
   * or use the `javascript:` pseudo protocol
   */
  a[href^="#"]::after,
  a[href^="javascript:"]::after {
    content: "";
  }

  pre {
    white-space: pre-wrap !important;
  }

  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }

  tr,
  img {
    page-break-inside: avoid;
  }

  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }

  h2,
  h3 {
    page-break-after: avoid;
  }
}

.container {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
  perspective: 1000px; /* Gives the 3D depth effect */
}

.flip-image {
  width: 300px;
  transition: transform 3s cubic-bezier(0, 1, 0, 1); /* The "Slow Down" curve */
  cursor: pointer;
}

/* This class is added via JavaScript on click */
.flip-image.spinning {
  transform: rotateY(1800deg); /* 5 full rotations */
}

.main-content {
  text-align: center;
  padding: 0 2rem;
}

.intro {
  margin-bottom: 1rem;
}

.site-title {
  margin: 0 0 1rem;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.site-tagline {
  margin: 0 0 1rem;
  color: #ccc;
}

.intro-note {
  margin: 0 0 1.25rem;
  max-width: 28rem;
  margin-left: auto;
  margin-right: auto;
  color: #b8b8b8;
  font-size: 0.95rem;
  line-height: 1.5;
}

.menu-anchor {
  display: inline-block;
  margin-bottom: 0.5rem;
  color: #e7440d;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(231, 68, 13, 0.45);
}

.menu-anchor:hover {
  color: #f5551e;
  border-bottom-color: #f5551e;
}

.menu-anchor:focus-visible {
  outline: 2px solid #e7440d;
  outline-offset: 4px;
}

.menu-section {
  padding: 2.5rem 1.25rem 3rem;
  border-top: 1px solid #222;
  border-bottom: 1px solid #222;
  background: linear-gradient(180deg, #050505 0%, #000 40%, #050505 100%);
}

.menu-section-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.menu-heading {
  margin: 0 0 0.75rem;
  text-align: center;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 700;
}

.menu-disclaimer {
  margin: 0 auto 2rem;
  max-width: 36rem;
  text-align: center;
  font-size: 0.9rem;
  color: #9a9a9a;
  line-height: 1.5;
}

.menu-disclaimer a {
  color: #e7440d;
  text-decoration: none;
  font-weight: 600;
}

.menu-disclaimer a:hover {
  text-decoration: underline;
}

.menu-tier-intro {
  margin: 0 auto 2rem;
  max-width: 36rem;
  padding: 1rem 1.15rem;
  border-radius: 10px;
  border: 1px solid #2a2a2a;
  background: rgba(20, 20, 20, 0.65);
  font-size: 0.9rem;
  color: #b0b0b0;
  line-height: 1.65;
  text-align: center;
}

.menu-tier-intro strong {
  color: #f0f0f0;
  font-weight: 700;
}

.menu-tier-intro-label {
  display: inline-block;
  margin-top: 0.35rem;
  color: #e7440d;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.menu-tier-intro-label:first-child {
  margin-top: 0;
}

.menu-code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.82em;
  padding: 0.12em 0.4em;
  border-radius: 4px;
  background: #1a1a1a;
  border: 1px solid #333;
  color: #ccc;
}

.menu-categories {
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 5vw, 3.75rem);
}

.menu-category {
  margin: 0;
}

.menu-category-title {
  margin: 0 0 clamp(0.75rem, 2vw, 1rem);
  padding: 0.4rem 0 0.4rem 1rem;
  border-left: 4px solid #e7440d;
  font-size: clamp(1.05rem, 2.2vw, 1.2rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
  text-align: left;
}

.menu-category-note {
  margin: 0 0 clamp(1rem, 2.5vw, 1.35rem);
  font-size: 0.88rem;
  color: #8a8a8a;
  line-height: 1.45;
  text-align: left;
  max-width: 40rem;
}

.menu-products {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.25rem);
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .menu-products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1100px) {
  .menu-products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem 2.25rem;
  }
}

/* 4 gramaj kartı: mobil 1, tablet 2, geniş ekran 4 sütun */
.menu-products--gramaj {
  grid-template-columns: 1fr;
}

@media (min-width: 560px) {
  .menu-products--gramaj {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 960px) {
  .menu-products--gramaj {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem 1.15rem;
  }
}

.menu-product--gramaj .menu-product-media {
  aspect-ratio: 4 / 3;
  min-height: clamp(140px, 22vw, 220px);
}

.menu-products--single {
  max-width: 400px;
}

.menu-products.menu-products--single {
  grid-template-columns: minmax(0, 1fr);
}

@media (min-width: 640px) {
  .menu-products.menu-products--single {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (min-width: 1100px) {
  .menu-products.menu-products--single {
    grid-template-columns: minmax(0, 1fr);
  }
}

.menu-products--drinks {
  grid-template-columns: 1fr;
  gap: 1rem 1.1rem;
}

@media (min-width: 520px) {
  .menu-products--drinks {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 880px) {
  .menu-products--drinks {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1100px) {
  .menu-products--drinks {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.menu-product--drink .menu-product-media {
  aspect-ratio: 1 / 1;
  min-height: clamp(120px, 28vw, 180px);
}

.menu-product--drink .menu-product-media {
  display: none;
}

.menu-product--drink .menu-product-body {
  padding-top: 0.85rem;
  padding-bottom: 1rem;
}

.menu-product--drink .menu-product-title {
  font-size: 1rem;
}

.menu-product {
  display: flex;
  flex-direction: column;
  text-align: left;
  border-radius: 14px;
  border: 1px solid #2f2f2f;
  background: rgba(14, 14, 14, 0.92);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45);
  overflow: hidden;
  min-height: 0;
}

.menu-product-media {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  min-height: clamp(220px, 52vw, 420px);
  background: #0d0d0d;
}

.menu-product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.menu-product-body {
  padding: clamp(1rem, 2.5vw, 1.35rem) clamp(1.1rem, 2.5vw, 1.4rem) clamp(1.2rem, 2.8vw, 1.5rem);
  flex: 1;
}

.menu-product-title {
  margin: 0;
  font-size: clamp(1.05rem, 2.2vw, 1.2rem);
  font-weight: 600;
  color: #f2f2f2;
  line-height: 1.3;
}

.menu-product--gramaj .menu-product-title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.15rem;
  font-size: inherit;
  letter-spacing: normal;
}

.menu-product-title__name {
  font-size: clamp(0.95rem, 2.8vw, 1.08rem);
  font-weight: 600;
  color: #f4f4f4;
  line-height: 1.25;
}

.menu-product-title__gram {
  font-size: clamp(0.88rem, 2.2vw, 0.98rem);
  font-weight: 700;
  letter-spacing: 0.07em;
  color: #b8b8b8;
  text-transform: uppercase;
}

.menu-product-price {
  margin: 0.5rem 0 0;
  font-size: clamp(1.15rem, 2.5vw, 1.35rem);
  font-weight: 700;
  color: #e7440d;
  line-height: 1.2;
}

.menu-product-note {
  margin: 0.45rem 0 0;
  font-size: 0.88rem;
  color: #888;
  font-style: italic;
  line-height: 1.4;
}

.menu-product-note a {
  color: #e7440d;
  font-style: normal;
  font-weight: 600;
  text-decoration: none;
}

.menu-product-note a:hover {
  text-decoration: underline;
}

.contact-block {
  margin-top: 2.5rem;
  padding-bottom: 3rem;
}

.address {
  margin: 0 0 2rem;
}

.franchise-note {
  margin: 0;
  font-size: 0.9rem;
  color: #8a8a8a;
}

.franchise-note a {
  color: #e7440d;
  text-decoration: none;
  border-bottom: none;
}

.franchise-note a:hover {
  color: #f5551e;
  border-bottom-color: transparent;
}

.franchise-note a:focus-visible {
  outline: 2px solid #e7440d;
  outline-offset: 3px;
  border-bottom-color: transparent;
}

.btn-3d-static {
  display: inline-block;
  text-decoration: none;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  padding: 16px 32px;
  color: #ffffff;
  background-color: #e7440d;

  /* Creates the rounded "pill" or block look */
  border-radius: 6px;

  /* The 3D Depth:
     0px horizontal, 6px vertical, 0px blur.
     Using a darker shade (#a32f09) for the 'side' of the button.
  */
  box-shadow: 0 6px 0 #a32f09;

  /* Optional: adds a subtle highlight to the top edge */
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* Slight color shift on hover just for accessibility */
.btn-3d-static:hover {
  background-color: #f5551e;
}

.google-maps iframe{
  width: 100%;
  height: auto;
}
