/**
* Template Name: Delicious
* Template URL: https://bootstrapmade.com/delicious-free-restaurant-bootstrap-theme/
* Updated: May 16 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/* Fonts */
:root {
  --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Satisfy", sans-serif;
  --nav-font: "Poppins", sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
  --background-color: #ffffff;
  --default-color: #444444;
  --heading-color: #433f39;
  --accent-color: #ffb03b;
  --surface-color: #ffffff;
  --contrast-color: #ffffff;
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #ffffff;
  --nav-hover-color: #ffb03b;
  --nav-mobile-background-color: #ffffff;
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: #444444;
  --nav-dropdown-hover-color: #ffb03b;
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #fffaf3;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #1e160d;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #42301c;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}


/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 30px 0;
  scroll-margin-top: 112px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 105px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 30px;
  letter-spacing: 1px;
  font-weight: 700;
  padding: 8px 20px;
  margin: 0;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  display: inline-block;
  text-transform: uppercase;
  border-radius: 50px;
  font-family: var(--default-font);
  cursor: pointer;
}

.section-title div {
  color: var(--heading-color);
  margin: 10px 0 0 0;
  font-size: 30px;
  font-weight: 700;
  font-family: var(--heading-font);
}

.section-title div .description-title {
  color: var(--accent-color);
}

.section-title div .description-title:hover {
  color: #33b6b4;
}

.section-title h2 span {
  color: #ffb03b;
  transition: 0.4s ease;
}

.section-title h2 span:hover {
  color: #33b6b4;
}


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
  display: flex;
  /* Display flex kullanarak elemanlari yan yana getiriyoruz */
  align-items: center;
  /* Dikeyde hizalama */
}

.navbar li img {
  margin-left: 5px;
  /*background-color: #cceada;*/
  /* Ikon ile metin arasina bosluk vermek icin margin kullanabilirsiniz */
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 24px;
  font-size: 15px;
  font-weight: 500;
  color: white;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #ffb03b;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 24px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 400;
  color: #433f39;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #ffb03b;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(39, 37, 34, 0.9);
  transition: 0.3s;
  z-index: 0;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}


.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 8px;
  background-color: #33b6b4;

  background-image: linear-gradient(rgba(0, 0, 0, 0.0), rgba(0, 0, 0, 0.0)), url('../../assets/img/sibon-arka.png');
  /* Düzeltme */
  background-size: cover;
  /* Resmi tam sığacak şekilde ayarlar */
  background-position: center;
  /* Resmin ortalanmasını sağlar */
  background-repeat: no-repeat;
  /* Resmin tekrar etmesini engeller */
  overflow-y: auto;
  transition: 0.3s;
}


.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 25px;
  color: black;
  width: 132px;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #ffb03b;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}


.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #ffb03b;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}




/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Satisfy", sans-serif;
}


/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background: #ffb03b;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #33b6b4;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  padding: 0;
  font-size: 15px;
  height: 50px;
  transition: all 0.5s;
  background: rgba(26, 24, 22, 0.8);
  z-index: 996;
  color: rgba(255, 255, 255, 0.7);
}

#topbar.topbar-transparent {
  background: transparent;
}

#topbar.topbar-scrolled {
  top: -50px;
}

#topbar i {
  color: #ffb03b;
  line-height: 0;
}

#topbar i span {
  color: #ffb03b;
  font-style: normal;
  padding-left: 5px;
}


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  top: 50px;
  height: 70px;
  z-index: 997;
  transition: all 0.5s;
  padding: 10px 0;
  background: rgba(26, 24, 22, 0.85);
}

#header.header-scrolled {
  top: 0;
  background: rgba(26, 24, 22, 0.85);
}

#header .logo h1 {
  font-size: 28px;
  margin: 0;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 3px;
}

#header .logo h1 a,
#header .logo h1 a:hover {
  color: #fff;
  text-decoration: none;
}

#header .logo img {
  padding: 0;
  margin: 0;
  max-height: 40px;
}


/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 20px 0;
  background-color: #f2f1ef;
  min-height: 40px;
  margin-top: 120px;
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 70px;
  }
}

.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 300;
  margin: 0;
}

@media (max-width: 992px) {
  .breadcrumbs h2 {
    margin: 0 0 10px 0;
  }
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #6c757d;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}
/*--------------------------------------------------------------
# Coffee Sections
--------------------------------------------------------------*/
/* Coffee Container Wrapper: Coffee Image and Text */
.coffee-container-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  padding: 2% 25%;
  /* Yüzde kullanarak esnek bir padding */
}

/* Coffee Image Styling */
.coffee-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.coffee-image img {
  width: 100%;
  max-width: 350px;
  /* Maximum width for images */
  height: 400px;
  border-radius: 8px;
}

/* Coffee Text Styling */
.coffee-text {
  flex: 1;
  padding: 2px;
  font-size: 16px;
  line-height: 1.6;
  color: #555;
}

/* Coffee Cards Container */
.coffee-container {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 1000px;
  margin: auto;
  padding: 0 15px;
}

/* Individual Coffee Card */
.coffee-card {
  background: white;
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  width: calc(50% - 20px);
  /* Two cards per row */
  transition: transform 0.3s;
}

/* Hover Effect on Coffee Card */
.coffee-card:hover {
  transform: scale(1.05);
}

/* Coffee Box for Background Image and Video Button */
.coffee-box {
  position: relative;
  width: 100%;
  height: 200px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Play Button Styling */
.coffee-box a {
  position: absolute;
  top: 62%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 20px;
  color: white;
  text-decoration: none;
  background: rgba(0, 0, 0, 0.5);
  padding: 15px 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

/* Hover Effect on Play Button */
.coffee-box a:hover {
  background: rgba(0, 0, 0, 0.8);
}

/* Coffee Info: Name and Description */


.coffee-info h3 {
  margin: 0;
  color: #6d4c41;
}

.coffee-info p {
  color: #555;
  font-size: 14px;
  margin-top: 5px;
}

@media (min-width: 1025px) {
  .coffee-info {
    padding-top: 115px;
    padding-left: 15px;
  }

  .coffee-image img {

    max-width: 460px;
    /* Maximum width for images */
    height: 400px;
    border-radius: 8px;
  }
}

/* Responsive Design for Smaller Screens */
@media (max-width: 1024px) {
  .coffee-card {
    width: calc(50% - 20px);
    /* 2 cards per row */
  }

  .coffee-image img {

    max-width: 460px;
    /* Maximum width for images */
    height: 400px;
    border-radius: 8px;
  }

  #coffee-text {
    text-align: left;
    margin: 0;
    padding: 10px 1px;
  }

  .coffee-info {
    padding-top: 115px;
    padding-left: 15px;
  }
}

@media (max-width: 768px) {
  .coffee-card {
    width: calc(100% - 20px);
    /* 1 card per row */
  }

  .coffee-container-wrapper {
    padding: 10px 10%;
    /* Tablet ve altı için daha küçük padding */
  }

  .coffee-image img {

    max-width: 460px;
    /* Maximum width for images */
    height: 400px;
    border-radius: 8px;
  }
}

@media (max-width: 480px) {
  .coffee-card {
    width: 100%;
    /* 1 card per row on very small screens */
  }

  .coffee-image img {

    max-width: 460px;
    /* Maximum width for images */
    height: 400px;
    border-radius: 8px;
  }

  .coffee-info {
    padding-top: 115px;
    padding-left: 15px;
  }

  .coffee-container-wrapper {
    padding: 10px 5%;
    /* Mobil ekranlar için daha da küçük padding */
  }
}

#coffeeCarousel .carousel-control-next-icon,
#coffeeCarousel .carousel-control-prev-icon {
  background: none;
  font-size: 30px;
  line-height: 0;
  width: auto;
  height: auto;
  background: rgb(97, 63, 32);
  /* Kahverengi tonunda arka plan */
  border-radius: 50px;
  transition: 0.3s;
  color: rgb(255, 223, 186);
  /* Açık kahve tonu */
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#coffeeCarousel .carousel-control-next-icon::before,
#coffeeCarousel .carousel-control-prev-icon::before {
  content: '▶';
  font-size: 20px;
}

#coffeeCarousel .carousel-control-prev-icon::before {
  content: '◀';
}

#coffeeCarousel .carousel-control-next-icon:hover,
#coffeeCarousel .carousel-control-prev-icon:hover {
  background: rgba(97, 63, 32, 0.7);
  color: rgba(255, 223, 186, 0.9);
}

/* Mobil (Telefon) için */
@media (max-width: 768px) {

  #coffeeCarousel1 .carousel-control-prev,
  #coffeeCarousel2 .carousel-control-prev {
    padding-top: 21%;
    left: 40px;
    /* Sol ok sola yaslanır */
    right: auto;
    /* Sağ tarafı sıfırla */
  }

  #coffeeCarousel1 .carousel-control-next,
  #coffeeCarousel2 .carousel-control-next {
    padding-top: 21%;
    right: 40px;
    /* Sağ ok sağa yaslanır */
    left: auto;
    /* Sol tarafı sıfırla */
  }


}

/* Tablet için */
@media (min-width: 769px) and (max-width: 1023px) {

  #coffeeCarousel .carousel-control-prev,
  #coffeeCarousel .carousel-control-next {
    width: 8%;

  }
}

/* Bilgisayar için */
@media (min-width: 1024px) {

  #coffeeCarousel1 .carousel-control-prev,
  #coffeeCarousel2 .carousel-control-prev {
    padding-top: 21%;

  }

  #coffeeCarousel1 .carousel-control-next,
  #coffeeCarousel2 .carousel-control-next {
    padding-top: 21%;

  }

}

/* Sadece büyük ekranlar için */
@media (min-width: 992px) {
  #coffeeCarousel img {
    max-height: 460px;
  }
}

/*--------------------------------------------------------------
# Specials
--------------------------------------------------------------*/
.specials {
  overflow: hidden;
}

.specials .nav-tabs {
  border: 0;
}

.specials .nav-link {
  border: 0;
  padding: 12px 15px 12px 0;
  transition: 0.3s;
  color: #433f39;
  border-radius: 0;
  border-right: 2px solid #e8e7e4;
  font-weight: 600;
  font-size: 15px;
}

.specials .nav-link:hover {
  color: #ffb03b;
}

.specials .nav-link.active {
  color: #ffb03b;
  border-color: #ffb03b;
}

.specials .tab-pane.active {
  animation: fadeIn 0.5s ease-out;
}

.specials .details h3 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #433f39;
}

.specials .details p {
  color: #777777;
}

.specials .details p:last-child {
  margin-bottom: 0;
}

@media (max-width: 992px) {
  .specials .nav-link {
    border: 0;
    padding: 15px;
  }

  .specials .nav-link.active {
    color: #fff;
    background: #ffb03b;
  }
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  padding: 40px 0 0 0;
  position: relative;
}

.footer .icon {
  color: var(--accent-color);
  margin-right: 15px;
  font-size: 24px;
  line-height: 0;
}

.footer h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 15px;
}

.footer .address p {
  margin-bottom: 0px;
}

.footer .social-links .label {
  margin-top: 5px;
  font-size: 13px;
  color: paleturquoise;
}

.footer .social-links .label:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer .social-links {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-left: 39px;
}


.footer .social-links a i {
  width: 40px;
  /* İkon genişliği */
  height: 40px;
  /* İkon yüksekliği */
  line-height: 40px;
  /* İkon ortalanır */
  border-radius: 50%;
  border: 1px solid palevioletred;
  font-size: 14px;
  color: palevioletred;
  transition: 0.3s;
}

.footer .social-links a:hover i {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer .social-links a {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
}

.footer .copyright {
  padding: 25px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 5px;
  font-size: 13px;
}


/* Debug paneli için stiller */
#debug-panel {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    max-width: 300px;
}

#debug-panel h4 {
    font-size: 16px;
    border-bottom: 2px solid #333;
    padding-bottom: 5px;
}

#debug-panel button:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    transition: all 0.2s ease;
}

#debug-panel button:active {
    transform: translateY(0);
}

#coords-display::-webkit-scrollbar {
    width: 6px;
}

#coords-display::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

#coords-display::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 3px;
}

#coords-display::-webkit-scrollbar-thumb:hover {
    background: #555;
}

