/* Fonts */
:root {
  --font-default: "Open Sans", 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";
  --font-primary: "Inter", sans-serif;
  --font-secondary: "Inter", sans-serif;
}

/* Colors */
:root {
  --color-light: #FFF;
  --color-dark: #000;
  --color-default: #212529;
  --color-primary: #E50119;
  --color-secondary: #76197E;
}

/* Smooth scroll behavior */
:root {
  scroll-behavior: smooth;
}

.text-primary {
  color: var(--color-default) !important;
}

.text-primary {
  color: var(--color-primary) !important;
}

.text-secondary {
  color: var(--color-secondary) !important;
}

.btn-primary {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
}

.btn-primary:hover {
  background-color: var(--color-secondary);
  border-color: var(--color-secondary);
}

.btn-primary:active,
.btn-primary:focus {
  background-color: var(--color-primary) !important;
  border-color: var(--color-primary) !important;
}

.btn-secondary {
  background-color: var(--color-secondary);
  border-color: var(--color-secondary);
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: var(--font-default);
  color: var(--color-default);
}

.no-select {
  -webkit-user-select: none;
  /* Safari */
  -ms-user-select: none;
  /* IE 10+ */
  user-select: none;
  /* Modern browserlar */
}

a {
  color: var(--color-primary);
  text-decoration: none;
}

a:hover {
  color: #ec2727;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-secondary);
}

.header {
  -webkit-box-shadow: 0px 2px 10px -1px rgba(0, 0, 0, 0.6);
  box-shadow: 0px 2px 10px -1px rgba(0, 0, 0, 0.6);
}

/*--------------------------------------------------------------
# Sections & Section Header
--------------------------------------------------------------*/
section {
  overflow: hidden;
  padding: 80px 0;
}

.section-bg {
  background-color: #EEEFF6;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  padding-bottom: 30px;
}

/* sol blok */
.section-title h2 {
  margin: 0;
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 400;
  color: var(--color-primary);
  /*text-transform: uppercase;*/
  font-family: var(--font-default);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.section-title h2 i {
  font-size: 10px;
}

/* alt başlık */
.section-title h1 {
  margin: 0;
  font-size: 42px;
  font-weight: 700;
  font-family: var(--font-primary);
  color: #111;
}

.section-title p span {
  color: var(--color-primary);
}

/* sağ toolbar */
.section-toolbar a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--color-secondary);
  color: #fff;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 0px;
  transition: background 0.2s ease, transform 0.15s ease;
}

.section-toolbar a:hover {
  background: color-mix(in srgb, var(--color-primary) 90%, black);
  transform: translateX(5px);
}

.section-bg .container, .section-bg .container-fluid, .section-bg .container-sm, .section-bg .container-md, .section-bg .container-lg, .section-bg .container-xl{
  z-index: 1;
  position: relative;
}


/*--------------------------------------------------------------
# SUBPAGES
--------------------------------------------------------------*/

.page-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  padding-bottom: 30px;
}

/* sol blok */
.page-title h2 {
  margin: 0;
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 400;
  color: var(--color-light);
  font-family: var(--font-default);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.page-title h2 i {
  font-size: 10px;
}

/* alt başlık */
.page-title h1 {
  margin: 0;
  font-size: 36px;
  font-weight: 600;
  font-family: var(--font-primary);
  color: var(--color-light);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.14);
}

.page-title p span {
  color: var(--color-primary);
}



/* sağ toolbar */
.page-toolbar>a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: #fff;
  padding: 6px 16px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid var(--color-light);
  opacity: .7;
  transition: background 0.2s ease, transform 0.15s ease;
}

.page-toolbar>a:hover {
  background: color-mix(in srgb, transparent 50%, white);
  opacity: 1;
  transform: translateY(-3px);
}


/* sağ toolbar -> breadCrumb */

.page-toolbar .breadcrumbs ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}

.page-toolbar .breadcrumbs li {
  font-size: 14px;
  color: var(--color-light);
}

.page-toolbar .breadcrumbs li+li::before {
  content: ">";
  margin: 0 8px;
  color: var(--color-light);
}

.page-toolbar .breadcrumbs a {
  text-decoration: none;
  color: var(--color-light);
}

.page-toolbar .breadcrumbs a:hover {
  text-decoration: underline;
}

.page-toolbar .breadcrumbs li:last-child {
  opacity: 0.7;
  font-weight: 500;
}


.page-body {
  background-color: var(--color-light);
  padding: 40px;
  -webkit-box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.2);
}


.page-body-with-sidebar {
  background-color: var(--color-light);
  -webkit-box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.2);
}

.news-nearby-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-default);
  text-decoration: none;
  line-height: 1.2;
  padding-left: 30px;
  display: inline-block;
  width: 100%;
  text-align: left;
}


.page-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  margin: 0px;
}


/* alt toolbar */
.page-footer-toolbar a {
  display: inline-flex;
  align-items: center;
  gap: 0px;
  background: transparent;
  color: var(--color-default);
  padding: 6px 16px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid var(--color-default);
  opacity: .2;
  transition: background 0.2s ease, transform 0.15s ease;
}

.page-footer-toolbar a:hover {
  background: color-mix(in srgb, transparent 50%, white);
  opacity: 1;
  transform: translateY(-3px);
}

.page-footer-toolbar a.active {
  opacity: 1;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: transparent;
  margin-top: 90px;
}

.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 400;
  margin: 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: #676775;
  content: "/";
}

.breadcrumbs-alt {
  padding: 10px 0;
  background: transparent;
  margin-top: 0px;
}

.breadcrumbs-alt h2 {
  font-size: 24px;
  font-weight: 400;
  margin: 0;
}

.breadcrumbs-alt ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs-alt ul li+li {
  padding-left: 10px;
  font-size: 14px;
  color: var(--color-light);
  
}

.breadcrumbs-alt ul li+li::before {
  display: inline-block;
  padding-right: 10px;
  content: ">";
  margin: 0 8px;
  color: var(--color-light);
}

.breadcrumbs-alt a {
  text-decoration: none;
  color: var(--color-light);
}

.breadcrumbs-alt a:hover {
  text-decoration: underline;
}

.breadcrumbs-alt li:last-child {
  opacity: 0.7;
  font-weight: 500;
}

/*--------------------------------------------------------------
# Scroll top button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background: var(--color-primary);
  width: 44px;
  height: 44px;
  border-radius: 0px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.scroll-top:hover {
  background: #ec2727;
  color: #fff;
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
}

#preloader:before,
#preloader:after {
  content: "";
  position: absolute;
  border: 4px solid var(--color-primary);
  border-radius: 50%;
  animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

#preloader:after {
  animation-delay: -0.5s;
}

@keyframes animate-preloader {
  0% {
    width: 10px;
    height: 10px;
    top: calc(50% - 5px);
    left: calc(50% - 5px);
    opacity: 1;
  }

  100% {
    width: 72px;
    height: 72px;
    top: calc(50% - 36px);
    left: calc(50% - 36px);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

.header #topbar .toplink {
  transition-duration: .3s;
  color: #FFF;
  padding: 4px 20px;
  font-size: 12px;
  opacity: 0.5;
}

.header #topbar .toplink:hover {
  opacity: 1;
}

.header #topbar .toplink.whitelink {
  opacity: 1;
}

.header .topbar #topbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 0 0 0 3rem;
}

.header .social-links a {
  transition-duration: .3s;
  color: #FFF;
  font-size: 12px;
  margin-right: 10px;
  opacity: 0.5;
}

.header .social-links a:hover {
  opacity: 1;
}

/* Menu Section - Fixed on Scroll */
.header #menu {
  transition: all 0.3s ease;
  transition-duration: .3s;
  position: relative;
  padding: 0px 0px 10px 0px;
  width: 100%;
}

.header #submenu-sticked {
  min-height: 90px;
}

.header #menu.sticked {
  transition-duration: .3s;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 998;
  padding: 15px 0px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  opacity: 0.9;
  /*backdrop-filter: blur(20px);*/
  background: linear-gradient(90deg, #2D1B69 0%, #8B1C62 50%, #D32F2F 100%);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);

  .header-logo img {
    height: 40px;
    margin-top: 20px;
  }
}

/* Placeholder to prevent content jump when menu becomes fixed */
.menu-placeholder {
  height: 0;
  transition: height 0.3s ease;
}

.menu-placeholder.active {
  height: 90px;
  /* Approximate height of menu */
}

/* Header Search Input */
.header-search-input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  padding: 10px 15px;
  color: var(--color-default);
  margin-right: 15px;
  height: 100%;
  font-size: 1.5rem;
}

.header-search-input::placeholder {
  color: #999;
  font-size: 1.5rem;
}

.header-search-input:focus {
  outline: none;
  box-shadow: none;
  border: none;
}

#search-content {
  height: 100%;
  display: flex;
}





.header.sticked {
  border-color: #fff;
  border-color: #eee;
}

.header .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.header .logo h1 {
  font-size: 28px;
  font-weight: 700;
  color: #000;
  margin: 0;
  font-family: var(--font-secondary);
}

.header .logo h1 span {
  color: var(--color-primary);
}

.header .btn-book-a-table,
.header .btn-book-a-table:focus {
  font-size: 14px;
  color: #fff;
  background: var(--color-primary);
  padding: 8px 20px;
  margin-left: 30px;
  border-radius: 50px;
  transition: 0.3s;
}

.header .btn-book-a-table:hover,
.header .btn-book-a-table:focus:hover {
  color: #fff;
  background: rgba(206, 18, 18, 0.8);
}

section {
  scroll-margin-top: 90px;
  position: relative;
}

/*--------------------------------------------------------------
# Süslemeler
--------------------------------------------------------------*/

.decoration {
  position: absolute;
  z-index: 0;
  aspect-ratio: 1 / 1;
  background-repeat: no-repeat;
  background-size: contain;
}

.decoration.d1 {
  top: 10vh;
  left: 0;
  background-image: url("../img/decorations/1.png");
  width: 20vw;
}

.decoration.d2 {
  top: 60vh;
  left: auto;
  right: 0px;
  background-image: url("../img/decorations/2.png");
  background-position: right;
  width: 20vw;
}

.decoration.d3 {
  top: 60vh;
  left: auto;
  right: 0px;
  background-image: url("../img/decorations/3.png");
  background-position: right;
  width: 20vw;
}

.decoration.d4 {
  top: 10vh;
  left: 0;
  background-image: url("../img/decorations/4.png");
  width: 6vw;
}

.decoration.d5 {
  top: 10vh;
  left: 0;
  background-image: url("../img/decorations/5.png");
  width: 20vw;
}

.decoration.d6 {
  bottom: 0vh;
  left: 40vw;
  background-image: url("../img/decorations/6.png");
  width: 20vw;
}

.decoration.pagebg1 {
  top: 0;
  left: 0;
  background-image: url("../img/decorations/page-bg1.svg");
  width: 100vw;

  background-repeat: no-repeat;
  background-position: left top;
  background-size: max(1440px, 100%);

}

.section-divider {
  width: 100%;
  display: block;
}

.section-divider.d1 img {
  width: 100%;
  position: relative;
  transform: translateY(-50%);
}

.section-divider.d2 img {
  width: 100%;
  position: relative;
  transform: translateY(5%);
}



/*--------------------------------------------------------------
# Continue Button
--------------------------------------------------------------*/

.continue-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  color: var(--color-secondary);
  border: 1px solid var(--color-secondary);
  padding: 6px 20px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 0px;
  transition: background 0.2s ease, transform 0.15s ease;
  transition-duration: .3s;
}

.continue-btn::after {
  content: "›";
  font-size: 18px;
}


/* hover */
.continue-btn:hover {
  transition-duration: .3s;
  background: var(--color-secondary);
  transform: translateX(5px);
  color: #FFF;
}


.continue-btn.continue-btn-black {
  color: var(--color-default);
  border: 1px solid var(--color-default);
}

.continue-btn.continue-btn-black:hover {
  background: var(--color-default);
  color: #FFF;
}

/* Butonun yazının altında ayrı satırda görünmesi için */
.btn-bottom-aligned {
  display: block;
  margin-top: auto;
  /* Flexbox ile alta sabitle */
  width: fit-content;
  flex-shrink: 0;
  /* Buton küçülmesin */
}


/*--------------------------------------------------------------
# NEWS Section
--------------------------------------------------------------*/
.news-item {
  padding-bottom: 30px;
}

.news .news-img {
  width: 100%;
  aspect-ratio: 1/1;
  border: 2px solid var(--color-primary);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  padding: 0px;
}

.news .badge {
  position: absolute;
  top: 0;
  left: 0;
  width: 20%;
  max-width: 40px;
  aspect-ratio: 1/1;
  padding: 0px;
  margin: 0px;
}

.news .badge img {
  width: 100%;
  aspect-ratio: 1/1;
}



/* Genel içerik */
.content {
  max-width: 820px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, Arial, sans-serif;
  color: #111;
}

/* News/Video card içeriği için flexbox düzeni */
.news .content {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* İçerik body alanı - kalan alanı kapla */
.content-body {
  flex: 1 1 auto;
  overflow: hidden;
  margin-bottom: 10px;
}

/* Üst bilgi: HABER | tarih */
.content-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 400;
  color: var(--color-default);
  margin-bottom: 20px;
  flex-shrink: 0;
  /* Başlık küçülmesin */
}

/* ikonlar */
.content-header i {
  font-size: 18px;
  color: var(--color-secondary);
}

.content-header i:first-child {
  color: var(--color-primary);
}



/* dikey ayraç */
.content-header hr {
  width: 1px;
  height: 18px;
  border: none;
  background: var(--color-default);
  margin: 0 8px;
}

/* başlık */
.content h1 {
  font-size: 24px;
  line-height: 1.25;
  font-weight: 700;
  color: #e6001e;
  /* görseldeki kırmızı */
  margin-bottom: 16px;
  flex-shrink: 0;
  /* Başlık küçülmesin */
}

/* açıklama */
.content p {
  font-size: 18px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 28px;
}

.content-image {
  width: 100%;
  object-fit: cover;
}




/*--------------------------------------------------------------
# PRESS Section
--------------------------------------------------------------*/

#press {
  background: url('../img/section-bg2.png') center center no-repeat;
  background-size: cover;
  color: #fff;
}

#press .section-title h1,
#press .section-title h2,
#press .section-title h2 i {
  color: #FFF;
}

#press .section-toolbar a {
  background: transparent;
  color: #FFF;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

#press .section-toolbar a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #FFF;
}

.press .content h1 {
  font-size: 16px;
  line-height: 1.25;
  font-weight: 500;
  color: #FFF;
  margin-bottom: 16px;
  transition: color 0.3s;
}

.press .content h1:hover {
  color: #EEE;
}

#press .press-meta {
  color: #FFF;
  margin-bottom: 15px;
}

#press .press-badge-text {
  color: var(--color-primary);
  font-weight: 600;
}

#press .press-badge-text i {
  color: var(--color-primary);
}

#press .press-meta-divider {
  color: rgba(255, 255, 255, 0.3);
  margin: 0 8px;
}

#press .press-date-text {
  color: #FFF;
  font-weight: 500;
}

#press .press-date-text i {
  color: #FFF;
}

#press .continue-btn.continue-btn-black {
  color: #FFF;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: transparent;
}

#press .continue-btn.continue-btn-black:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #FFF;
}

#press .badge-black-corner {
  background-color: #000;
  color: transparent;
}

#press .badge-black-corner::after {
  content: none;
}

.press .press-img-cab {
  width: 100%;
  position: relative;
}

.press .press-img {
  transition-duration: .3s;
  width: 100%;
  aspect-ratio: 1/1;
  border: 2px solid var(--color-default);
  background-color: #FFF;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  top: 10px;
  left: 10px;
  padding: 0px;
  filter: saturate(0%);
}

.press .badge {
  position: absolute;
  top: 0;
  left: 0;
  width: 20%;
  aspect-ratio: 1/1;
  padding: 0px;
  margin: 0px;
  filter: saturate(100%);
}

.press .badge img {
  width: 100%;
  aspect-ratio: 1/1;
}

.press .space {
  height: 20px;
}

.press .press-item-big .row {
  display: block !important;
}

/*--------------------------------------------------------------
# PRESS BİG
--------------------------------------------------------------*/

.press-big .press-img-container {
  width: 100%;
  position: relative;
}

.press-big .press-big-img {
  transition-duration: .3s;
  width: 100%;
  aspect-ratio: 1/0.85;
  border: 2px solid var(--color-default);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  top: 10px;
  left: 10px;
  padding: 0px;
  filter: saturate(0%);
}

.red-border-card {
  border: 2px solid var(--color-primary);

}

.dark-border-card {
  border: 2px solid var(--color-secondary);
  border-radius: 0px !important;
}

.black-border-card {
  border: 2px solid var(--color-default);
  border-radius: 0px !important;
}


.title-btn {
  color: var(--color-default);
}

.title-btn::hover {
  color: var(--color-secondary) !important;
}

.title-btn.press-home-title-btn h1 {
  margin-bottom: 6px;
}

.title-btn.press-home-title-btn p {
  font-size: 14px;
  color: #888;
  margin-bottom: 6px;
}

/*--------------------------------------------------------------
# PRESS CORNER & HOVERS
--------------------------------------------------------------*/

.badge-red-corner {
  transition-duration: .3s;
  position: absolute;
  top: 0;
  left: 0;
  width: 20%;
  height: 20%;
  background-color: var(--color-primary);
  z-index: -2;
}

.badge-red-corner-lg {
  transition-duration: .3s;
  width: 20%;
  height: 30%;
}

.badge-black-corner {
  transition-duration: .3s;
  position: absolute;
  top: auto;
  left: auto;
  right: -10px;
  bottom: -10px;
  width: 30px;
  height: 30px;
  background-color: var(--color-default);
  z-index: 2;
  text-align: center;
  color: var(--color-default);
}

.badge-black-corner::after {
  content: "›";
  /*content: "▸"*/
  font-size: 18px;
}

.press-img-cab:hover .press-img {
  border: 5px solid var(--color-default);
  top: 10px;
  left: 10px;
  padding: 0px;
  filter: saturate(100%);
}

.press-img-cab:hover .badge-red-corner {
  top: 5px;
  left: 5px;
  width: 30%;
  height: 30%;
  background-color: var(--color-primary);
}

.press-img-cab:hover .badge-black-corner {
  color: #FFF;
  width: 40px;
}

.press-img-container:hover .press-big-img {
  border: 5px solid var(--color-default);
  top: 10px;
  left: 10px;
  padding: 0px;
  filter: saturate(100%);
}

.press-img-container:hover .badge-red-corner {
  top: 5px;
  left: 5px;
  width: 50%;
  height: 50%;
  background-color: var(--color-primary);
}

.press-img-container:hover .badge-black-corner {
  color: #FFF;
  width: 40px;
}


/*--------------------------------------------------------------
# VIDEOS
--------------------------------------------------------------*/

.video-title-btn {
  font-size: 16px !important;
  font-weight: 600 !important;
  color: var(--color-default);
}

.video-cab {
  display: block;
  position: relative;
  overflow: hidden!important;
  width: 100%;
}
.video-cab-bordered {
  border: 2px solid var(--color-default);
}

.video-media {
  width: 100%;
  height: auto;
  overflow: hidden!important;
}

.video-media {
  filter: saturate(30%);
  transition: transform .4s ease;
}

.video-media img {
  width: 100%;
  display: block;
  transition: transform .4s ease;
  transform: scale(0.5);
}

.video-cab:hover .video-media img {
  transform: scale(1);
}

/* overlay */
.video-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(1);
  transition: .3s ease;
}

.video-cab:hover .video-play-overlay {
  opacity: 1;
  transform: scale(1);
}

.video-cab:hover .video-media {
  filter: saturate(100%);
  transform: scale(1.1);
}


.video-decoration {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: top;
  justify-content: left;

}

.video-decoration.v1 {
  background-color: transparent;
  background-image: url(../img/decorations/v1.svg);
  background-repeat: no-repeat;
  background-position: top left;
}

.video-decoration.v2 {
  background-color: transparent;
  background-image: url(../img/decorations/v2.svg);
  background-repeat: no-repeat;
  background-position: bottom left;
}

.video-decoration.v3 {
  background-color: transparent;
  background-image: url(../img/decorations/v2.svg);
  background-repeat: no-repeat;
  background-position: top left;
}

.video-decoration.v4 {
  background-color: transparent;
  background-image: url(../img/decorations/v3.svg);
  background-repeat: no-repeat;
  background-position: bottom right;
}


/*--------------------------------------------------------------
# RELATED COMPANY LOGOS
--------------------------------------------------------------*/


.related .rel-logo {
  border: 1px solid #CCCCCC;
  margin: 10px;
  width: auto;
  height: 100%;
  max-height: 120px;
  transition-duration: 0.3s;
}

.related .rel-logo:hover {
  border: 1px solid var(--color-primary);
  transform: scale(1.1);
}



@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Event Section
--------------------------------------------------------------*/

.events {
  padding-top: 0px;
  /* background: url('../img/section-bg5.png') center center no-repeat; */
  background-size: cover;
  color: #fff;
}

.events .event-box {
  padding: 30px;
  background: var(--color-primary);
  color: #fff;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.events .event-box.event-future {
  background: var(--color-secondary);
}

.events .event-box h3 {
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 30px;
}

.events .event-box p {
  margin-bottom: 30px;
}

.events .event-box .more-btn {
  display: inline-block;
  background: rgba(255, 255, 255, 0.3);
  padding: 6px 30px 8px 30px;
  color: #fff;
  border-radius: 0px;
  transition: all ease-in-out 0.4s;
}

.events .event-box .more-btn i {
  font-size: 14px;
}

.events .event-box .more-btn:hover {
  color: var(--color-primary);
  background: #fff;
}

.events .icon-box {
  text-align: center;
  background: #fff;
  padding: 40px 30px;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(55, 55, 63, 0.1);
  transition: 0.3s;
}

.events .icon-box i {
  color: var(--color-primary);
  margin-bottom: 30px;
  font-size: 32px;
  margin-bottom: 30px;
  background: rgba(206, 18, 18, 0.1);
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
}

.events .icon-box h4 {
  font-size: 20px;
  font-weight: 400;
  margin: 0 0 30px 0;
  font-family: var(--font-secondary);
}

.events .icon-box p {
  font-size: 15px;
  color: #6c757d;
}


/*--------------------------------------------------------------
# Library Section
--------------------------------------------------------------*/

#library {
  background: url('../img/section-bg1.png') center center no-repeat;
  background-size: cover;
  color: #fff;
}


#library .section-title h1,
#library .section-title h2,
#library .section-title h2 i {
  color: #FFF;
}


.library-box {
  background-color: #76197E;
  text-align: center;
  margin-bottom: 20px;
  transition-duration: 0.3s;
  padding: 20px;
  border: 5px solid transparent;
  height: 314px;
}

.library-box img {
  margin-top: 30px;
  margin-bottom: 20px;
  width: 70%;
}

.library-box p {
  font-size: 1rem;
  font-weight: 600;
  color: #FFF;
  height: 30px;
  margin-bottom: 30px;
}

.library-box:hover {
  background-color: #531858;
  border: 10px solid var(--color-primary);
}

.library-box-end {
  background-color: #521B57;
  background-image: url("../img/lib-deco.svg");
  background-repeat: no-repeat;
  background-position: right bottom;

  h1 {
    color: #FFF;
    font-weight: 900;
    font-size: 4rem;
    margin-top: 60px;
  }

  p {
    margin-bottom: 0px;
  }

  img {
    width: 20px;
  }

}

/*--------------------------------------------------------------
# Library Box Inner Section
--------------------------------------------------------------*/
.library-box-inner {
  background-color: #76197E;
  border: 10px solid transparent !important;
  padding: 10px;
  height: 280px;
  margin-bottom: 0px;
}

.library-box-inner:hover {
  border: 10px solid var(--color-primary) !important;
}

.library-box-inner p {
  font-size: 14px !important;
  font-weight: 500 !important;
}


.library-box-inner img {
  margin-top: 10px !important;
  margin-bottom: 10px !important;
  width: 60%;
}

/*--------------------------------------------------------------
# Stats Counter Section
--------------------------------------------------------------*/
.stats-counter {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../img/congress.webp") center center;
  background-size: cover;
  padding: 100px 0;
}

.stats-counter .stats-item {
  padding: 30px;
  width: 100%;
}

.stats-counter .stats-item span {
  font-size: 48px;
  display: block;
  color: #fff;
  font-weight: 700;
}

.stats-counter .stats-item p {
  padding: 0;
  margin: 0;
  font-family: var(--font-secondary);
  font-size: 16px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
}

/*--------------------------------------------------------------
# Menu Section
--------------------------------------------------------------*/
.menu .nav-tabs {
  border: 0;
}

.menu .nav-link {
  margin: 0 10px;
  padding: 10px 5px;
  transition: 0.3s;
  color: var(--color-secondary);
  border-radius: 0;
  cursor: pointer;
  height: 100%;
  border: 0;
  border-bottom: 2px solid #b6b6bf;
}


.menu .nav-link i {
  padding-right: 15px;
  font-size: 48px;
}

.menu .nav-link h4 {
  font-size: 18px;
  font-weight: 400;
  margin: 0;
  font-family: var(--font-secondary);
}


.menu .nav-link:hover {
  color: var(--color-primary);
}

.menu .nav-link.active {
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.menu .tab-content .tab-header {
  padding: 30px 0;
}

.menu .tab-content .tab-header p {
  font-size: 14px;
  text-transform: uppercase;
  color: #676775;
  margin-bottom: 0;
}

.menu .tab-content .tab-header h3 {
  font-size: 36px;
  font-weight: 600;
  color: var(--color-primary);
}

.menu .tab-content .menu-item {
  -moz-text-align-last: center;
  text-align-last: center;
}

.menu .tab-content .menu-item .menu-img {
  padding: 0 60px;
  margin-bottom: 15px;
}

.menu .tab-content .menu-item h4 {
  font-size: 22px;
  font-weight: 500;
  color: var(--color-secondary);
  font-family: var(--font-secondary);
  font-weight: 30px;
  margin-bottom: 5px;
}

.menu .tab-content .menu-item .ingredients {
  font-family: var(--font-secondary);
  color: #8d8d9b;
  margin-bottom: 5px;
}

.menu .tab-content .menu-item .price {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-primary);
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .section-header {
  margin-bottom: 40px;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item .testimonial-content {
  border-left: 3px solid var(--color-primary);
  padding-left: 30px;
}

.testimonials .testimonial-item .testimonial-img {
  border-radius: 50%;
  border: 4px solid #fff;
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: var(--color-default);
  font-family: var(--font-secondary);
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #6c757d;
  margin: 0 0 10px 0;
  font-family: var(--font-secondary);
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: #f05656;
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  font-style: italic;
}

.testimonials .swiper-pagination {
  margin-top: 40px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #d1d1d7;
  opacity: 1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--color-primary);
}

/*--------------------------------------------------------------
# Events Section
--------------------------------------------------------------*/
.events .container-fluid {
  padding: 0;
}

.container-sm {
  max-width: 576px !important;
}

.events .event-item {
  background-size: cover;
  background-position: cente;
  min-height: 600px;
  padding: 30px;
}

.events .event-item:before {
  content: "";
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  inset: 0;
}

.events .event-item h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 5px;
  color: #fff;
  position: relative;
}

.events .event-item .price {
  color: #fff;
  border-bottom: 2px solid var(--color-primary);
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
  position: relative;
}

.events .event-item .description {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.9);
  position: relative;
}


.events .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.events .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: #d1d1d7;
  opacity: 1;
}

.events .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--color-primary);
}

/*--------------------------------------------------------------
# Chefs Section
--------------------------------------------------------------*/
.chefs .chef-member {
  overflow: hidden;
  text-align: center;
  border-radius: 5px;
  background: #fff;
  box-shadow: 0px 0 30px rgba(55, 55, 63, 0.08);
  transition: 0.3s;
}

.chefs .chef-member .member-img {
  position: relative;
  overflow: hidden;
}

.chefs .chef-member .member-img:after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  background: url(../img/team-shape.svg) no-repeat center bottom;
  background-size: contain;
  z-index: 1;
}

.chefs .chef-member .social {
  position: absolute;
  right: -100%;
  top: 30px;
  opacity: 0;
  border-radius: 4px;
  transition: 0.5s;
  background: rgba(255, 255, 255, 0.3);
  z-index: 2;
}

.chefs .chef-member .social a {
  transition: color 0.3s;
  color: rgba(55, 55, 63, 0.4);
  margin: 15px 12px;
  display: block;
  line-height: 0;
  text-align: center;
}

.chefs .chef-member .social a:hover {
  color: rgba(55, 55, 63, 0.9);
}

.chefs .chef-member .social i {
  font-size: 18px;
}

.chefs .chef-member .member-info {
  padding: 10px 15px 20px 15px;
}

.chefs .chef-member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 20px;
  color: var(--color-secondary);
}

.chefs .chef-member .member-info span {
  display: block;
  font-size: 14px;
  font-weight: 400;
  color: rgba(33, 37, 41, 0.4);
}

.chefs .chef-member .member-info p {
  font-style: italic;
  font-size: 14px;
  padding-top: 15px;
  line-height: 26px;
  color: rgba(33, 37, 41, 0.7);
}

.chefs .chef-member:hover {
  transform: scale(1.08);
  box-shadow: 0px 0 30px rgba(55, 55, 63, 0.15);
}

.chefs .chef-member:hover .social {
  right: 8px;
  opacity: 1;
}

/*--------------------------------------------------------------
# Book A Table Section
--------------------------------------------------------------*/
.book-a-table .reservation-img {
  min-height: 500px;
  background-size: cover;
  background-position: center;
}

.book-a-table .reservation-form-bg {
  background: rgba(55, 55, 63, 0.04);
}

.book-a-table .php-email-form {
  padding: 40px;
}


.book-a-table .php-email-form h3 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.book-a-table .php-email-form h4 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 20px 0 0 0;
}

.book-a-table .php-email-form p {
  font-size: 14px;
  margin-bottom: 20px;
}

.book-a-table .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #df1529;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.book-a-table .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.book-a-table .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.book-a-table .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #059652;
  border-top-color: #fff;
  animation: animate-loading 1s linear infinite;
}

.book-a-table .php-email-form input,
.book-a-table .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 0;
}

.book-a-table .php-email-form input:focus,
.book-a-table .php-email-form textarea:focus {
  border-color: var(--color-primary);
}

.book-a-table .php-email-form input {
  padding: 12px 15px;
}

.book-a-table .php-email-form textarea {
  padding: 12px 15px;
}

.book-a-table .php-email-form button[type=submit] {
  background: var(--color-primary);
  border: 0;
  padding: 14px 60px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}

.book-a-table .php-email-form button[type=submit]:hover {
  background: #ec2727;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/
.gallery {
  overflow: hidden;
}

.gallery .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.gallery .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #d1d1d7;
  opacity: 1;
}

.gallery .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--color-primary);
}

.gallery .swiper-slide-active {
  text-align: center;
}

@media (min-width: 992px) {
  .gallery .swiper-wrapper {
    padding: 40px 0;
  }


  .gallery .swiper-slide-active {
    border: 6px solid var(--color-primary);
    padding: 4px;
    background: #fff;
    z-index: 1;
    transform: scale(1.2);
  }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item {
  background: #f4f4f4;
  padding: 30px;
  height: 100%;
}

.contact .info-item .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  font-size: 24px;
  line-height: 0;
  color: #fff;
  background: var(--color-primary);
  border-radius: 50%;
  margin-right: 15px;
}

.contact .info-item h3 {
  font-size: 20px;
  color: #6c757d;
  font-weight: 700;
  margin: 0 0 5px 0;
}

.contact .info-item p {
  padding: 0;
  margin: 0;
  line-height: 24px;
  font-size: 14px;
}

.contact .info-item .social-links a {
  font-size: 24px;
  display: inline-block;
  color: rgba(55, 55, 63, 0.7);
  line-height: 1;
  margin: 4px 6px 0 0;
  transition: 0.3s;
}

.contact .info-item .social-links a:hover {
  color: var(--color-primary);
}

.contact .php-email-form {
  width: 100%;
  margin-top: 30px;
  background: #fff;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.08);
}

.contact .php-email-form .form-group {
  padding-bottom: 20px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #df1529;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #059652;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #059652;
  border-top-color: #fff;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--color-primary);
}

.contact .php-email-form input {
  height: 48px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type=submit] {
  background: var(--color-primary);
  border: 0;
  padding: 12px 40px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: #ec2727;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  background-size: cover;
  position: relative;
  min-height: 60vh;
  padding: 0;
  margin: 0;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  font-size: 14px;
  background-color: #1f1f24;
  background: url('../img/footer.webp');
  background-size: 100%;
  padding: 40px 0px 0px 0px;
  color: rgba(255, 255, 255, 0.7);

  background-repeat: no-repeat;
  background-position: left top;
  background-size: max(1024px, 100%);
}

.footer .icon {
  margin-right: 15px;
  font-size: 24px;
  line-height: 0;
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 5px;
  color: #fff;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul li {
  padding: 4px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: rgba(255, 255, 255, 0.6);
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: #fff;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 0%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: #fff;
  border-color: #fff;
}

.footer .social-links .market-link {
  width: 140px;
}

.footer .social-links .market-link span {
  margin-left: 10px;
}

.footer .copyright {
  text-align: center;
  padding: 14px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background-color: var(--color-primary);
  font-size: 12px;
}

.footer .copyright a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}

.footer .copyright a:hover {
  color: rgba(255, 255, 255, 1);
  text-decoration: underline;
}


.footer .credits {
  padding-top: 4px;
  text-align: center;
  font-size: 13px;
}

.footer .credits a {
  color: #fff;
}




#notification {
  background: #e6001e;
  /* kırmızı zemin */
  color: #fff;
  padding: 10px 0px;
}

#notification .container {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px 32px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

/* ikon */
#notification i {
  font-size: 32px;
  line-height: 1;
  flex-shrink: 0;
}

/* başlık */
#notification h1 {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 1px;
  white-space: nowrap;
}

/* dikey ayraç */
#notification hr {
  width: 2px;
  height: 48px;
  border: none;
  background: rgba(255, 255, 255, 1);
  margin: 0 8px;
}

/* açıklama */
#notification p {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
  max-width: 900px;
}

/* mobil uyum */
@media (max-width: 768px) {
  #notification .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  #notification hr {
    width: 100%;
    height: 1px;
  }
}

/*--------------------------------------------------------------
# Hero Slider Section
--------------------------------------------------------------*/
#hero {
  padding: 0;
  margin: 0;
  overflow: hidden;
}

#hero .swiper {
  width: 100%;
  height: auto;
}

#hero .swiper-slide {
  width: 100%;
  height: auto;
}

#hero .swiper-slide img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Navigation Buttons */
#hero .swiper-button-next,
#hero .swiper-button-prev {
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
  width: 50px;
  height: 50px;
  border-radius: 0;
  transition: all 0.3s ease;
}

#hero .swiper-button-next:hover,
#hero .swiper-button-prev:hover {
  background: var(--color-primary);
}

#hero .swiper-button-next::after,
#hero .swiper-button-prev::after {
  font-size: 20px;
  font-weight: bold;
}

/* Pagination */
#hero .swiper-pagination {
  bottom: 20px;
}

#hero .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #fff;
  opacity: 0.7;
}

#hero .swiper-pagination-bullet-active {
  background: var(--color-primary);
  opacity: 1;
}

#hero .swiper-button-prev {
  left: 0;
  height: 70px;
}

#hero .swiper-button-next {
  right: 0;
  height: 70px;
}





/* Tablet Responsive */
@media (max-width: 992px) {

  #hero .swiper-button-next,
  #hero .swiper-button-prev {
    width: 40px;
    height: 40px;
  }

  #hero .swiper-button-next::after,
  #hero .swiper-button-prev::after {
    font-size: 16px;
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {

  #hero .swiper-button-next,
  #hero .swiper-button-prev {
    width: 35px;
    height: 35px;
  }

  #hero .swiper-button-next::after,
  #hero .swiper-button-prev::after {
    font-size: 14px;
  }

  #hero .swiper-pagination {
    bottom: 10px;
  }

  #hero .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
  }
}

/* Small Mobile */
@media (max-width: 576px) {

  #hero .swiper-button-next,
  #hero .swiper-button-prev {
    width: 30px;
    height: 30px;
  }

  #hero .swiper-button-next::after,
  #hero .swiper-button-prev::after {
    font-size: 12px;
  }

  .header-topbar {
    display: none;
  }
  #menu-content{
    padding-top: 20px;
  }
  .header-logo img{
    height: 40px;
  }

}

/*--------------------------------------------------------------
# News Tabs
--------------------------------------------------------------*/
.news-tabs-wrapper {
  background: #f5f5f5;
  border-bottom: 1px solid #e0e0e0;
}

.news-tabs {
  display: flex;
  justify-content: flex-start;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.news-tabs::-webkit-scrollbar {
  display: none;
}

.news-tab {
  padding: 12px 24px;
  color: #666;
  text-decoration: none;
  font-weight: 400;
  font-size: 14px;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: all 0.2s ease;
  text-align: center;
}

.news-tab:hover {
  color: var(--color-primary);
}

.news-tab.active {
  color: var(--color-primary);
  border-bottom-color: var(--color-primary);
  font-weight: 500;
}

@media (max-width: 768px) {
  .news-tab {
    padding: 10px 16px;
    font-size: 13px;
  }
}

/*--------------------------------------------------------------
# Press Archive Section
--------------------------------------------------------------*/
.archive-month-section {
  margin-top: 50px;
}

.archive-month-section h2 {
  font-size: 24px;
  font-weight: 700;
}

.press-archive-card {
  transition: transform 0.3s ease;
}

.press-archive-card:hover {
  transform: translateY(-5px);
}

.press-img-container:hover {
  .press-archive-img {
    filter: saturate(100%);
  }
}

.press-archive-img {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 0px;
  border: 2px solid var(--color-dark);
  filter: saturate(0%);
}


.press-archive-card .content h6 {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.press-archive-card .content h6:hover {
  color: var(--color-primary) !important;
}

.press-archive-card .title-btn {
  text-decoration: none;
}


.archive-card {
  transition: transform 0.3s ease;
}

.archive-card:hover {
  transform: translateY(-5px);
  .archive-img {
    border: 2px solid var(--color-primary);
  }
}

.archive-img-container:hover {
  .press-archive-img {
    filter: saturate(100%);
  }
}

.archive-img {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 0px;
  border: 2px solid var(--color-default);
}


.archive-card .content h6 {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.archive-card .content h6:hover {
  color: var(--color-primary) !important;
}

.archive-card .title-btn {
  text-decoration: none;
}

.archive-card .archive-date{
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 10px;
}




@media (max-width: 576px) {
  .press-archive-img {
    height: 150px;
  }

  .archive-month-section h2 {
    font-size: 20px;
  }
}

/*--------------------------------------------------------------
# Press Archive List Layout
--------------------------------------------------------------*/
.press-archive-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.press-archive-list li {
  display: flex;
  align-items: flex-start;
}

.press-archive-list li:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.press-list-marker {
  display: inline-block;
  width: 12px;
  height: 12px;
  background-color: var(--color-primary);
  margin-right: 15px;
  margin-top: 5px;
  flex-shrink: 0;
}

.press-list-title {
  color: #333;
  text-decoration: none;
  font-size: 15px;
  line-height: 1.6;
  transition: color 0.3s ease;
  display: block;
}

.press-list-title:hover {
  color: var(--color-primary);
}

/*--------------------------------------------------------------
# Year Archive Navigation Section
--------------------------------------------------------------*/
.year-archive-section {
  padding-bottom: 60px;
}

.year-archive-header {
  margin-bottom: 40px;
  position: relative;
  padding-left: 20px;
}

.year-archive-header::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 8px;
  height: 100%;
  background-color: var(--color-primary);
}

.year-archive-badge {
  display: block;
  color: var(--color-primary);
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px;
}

.year-archive-title {
  font-size: 32px;
  font-weight: 700;
  color: #000;
  margin: 12px 0 0 0;
}

.year-archive-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.year-card {
  background: #7B1FA2;
  color: white;
  text-decoration: none;
  padding: 40px 20px;
  text-align: center;
  border-radius: 0;
  transition: all 0.3s ease;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.year-card-year {
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 8px;
}

.year-card-count {
  font-size: 14px;
  font-weight: 400;
  opacity: 0.9;
}

.year-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(123, 31, 162, 0.3);
  color: white;
}

@media (max-width: 1200px) {
  .year-archive-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 768px) {
  .year-archive-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }

  .year-card {
    padding: 30px 15px;
  }

  .year-card-year {
    font-size: 32px;
  }

  .year-card-count {
    font-size: 12px;
  }

  .year-archive-section {
    padding: 40px 0;
  }

  .year-archive-title {
    font-size: 24px;
  }
}

@media (max-width: 576px) {
  .year-archive-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/*--------------------------------------------------------------
# Related Press Articles Section
--------------------------------------------------------------*/
.related-press-section {
  padding: 80px 0;
  background-color: #fff;
  margin-bottom: 150px;
}

.related-press-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
  padding-left: 20px;
  position: relative;
}

.related-press-header::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 8px;
  height: 100%;
  background-color: var(--color-primary);
}

.related-press-badge {
  display: block;
  color: var(--color-primary);
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px;
}

.related-press-title {
  font-size: 32px;
  font-weight: 700;
  color: #000;
  margin: 0;
}

.btn-view-all {
  color: #666;
  text-decoration: none;
  font-size: 15px;
  padding: 8px 20px;
  border: 1px solid #ddd;
  border-radius: 4px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-view-all:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.related-press-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 25px;
}

@media (max-width: 1200px) {
  .related-press-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 992px) {
  .related-press-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .related-press-title {
    font-size: 24px;
  }
}

@media (max-width: 768px) {
  .related-press-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .related-press-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .btn-view-all {
    align-self: flex-end;
  }

  .related-press-section {
    padding: 60px 0;
  }
}

@media (max-width: 576px) {
  .related-press-img {
    height: 150px;
  }

  .related-press-card-title {
    font-size: 13px;
  }
}

.video-img-container {
  width: 100%;
  min-height: 540px;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 4px;
}

/*--------------------------------------------------------------
# About Page Styles
--------------------------------------------------------------*/
.about-related-heading {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 30px;
  color: var(--color-primary);
}

.about-related-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--color-secondary);
  font-size: 15px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.about-related-link:hover {
  color: var(--color-primary);
}

.about-related-link i {
  font-size: 20px;
  flex-shrink: 0;
}

.about-related-other-inner.content {
  max-width: none;
  width: 100%;
}



.about-group-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--color-secondary);
  font-size: 18px;
  font-weight: 800;
  transition: color 0.3s ease;
}

.about-group-link:hover {
  color: var(--color-primary);
}

/* Utility Classes */
.fs-15 {
  font-size: 15px !important;
}

.fw-500 {
  font-weight: 500 !important;
}

.gap-2 {
  gap: 10px !important;
}

/*==============================================================================
  HEADER STYLING
==============================================================================*/

.header {
  background: linear-gradient(90deg, #2D1B69 0%, #8B1C62 50%, #D32F2F 100%);
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.25);
}

/* === TOP BAR === */
.header-topbar {
  /*background: rgba(255, 255, 255, 0.05);*/
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 70%, rgba(255, 255, 255, 0.13) 100%);
  padding: 4px 0;
}

.topbar-link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.95);
  text-decoration: none;
  font-size: 12px;
  font-weight: 400;
  transition: opacity 0.3s;
}

.topbar-link:hover {
  opacity: 0.7;
  color: rgba(255, 255, 255, 0.95);
}

.topbar-link i {
  font-size: 13px;
}

.topbar-social a {
  color: rgba(255, 255, 255, 0.95);
  text-decoration: none;
  font-size: 15px;
  transition: all 0.3s;
  display: inline-flex;
}

.topbar-social a:hover {
  color: #FFFFFF;
  transform: translateY(-2px);
}

.topbar-lang {
  display: flex;
  align-items: center;
  gap: 5px;
  color: rgba(255, 255, 255, 0.95);
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 4px;
  transition: background 0.3s;
}

.topbar-lang:hover {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.95);
}

.topbar-lang i {
  font-size: 14px;
}

/* === MENU BAR === */
/*
.header-menu.sticked {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  padding: 15px 0;
  background: linear-gradient(90deg, #2D1B69 0%, #8B1C62 50%, #D32F2F 100%);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}*/


.header-logo {
  padding: 0px;
  margin-left: 20px;
  margin-top: -20px;
}

.header-logo img {
  height: 45px;
  width: auto;
  transition: transform 0.3s;
}

.header-logo:hover img {
  transform: scale(1.05);
}

/* === NAVBAR === */
.navbar ul {
  margin: 0;
  padding: 0;
  list-style: none;
  gap: 20px;
}

.navbar li {
  position: relative;
}

.navbar a {
  display: block;
  position: relative;
  color: #FFFFFF;
  text-decoration: none;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 8px 0;
  transition: 0.3s;
  white-space: nowrap;
  opacity: 1;
}

.navbar a:hover {
  opacity: 1;
  color: #FFCC00;
  letter-spacing: 0.5px;
}

.navbar a:active {
  opacity: 1;
  color: #FFCC00;
  letter-spacing: 0.5px;
}

/* === SEARCH BUTTON === */
.search-toggle-btn {
  background: transparent;
  border: none;
  color: #FFFFFF;
  font-size: 18px;
  padding: 8px;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 20px;
}

.search-toggle-btn:hover {
  opacity: 0.8;
  transform: scale(1.1);
}

/* === SEARCH CONTENT === */
#search-content {
  padding: 20px 0;
}

#search-content .form-control {
  background: transparent;
  border: none;
  color: #FFFFFF;
  font-size: 15px;
  padding: 12px 20px;
  border-radius: 0;
  transition: all 0.3s;
  height: 60px;
}

#search-content .form-control::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

#search-content .form-control:focus {
  background: transparent;
  border: none;
  color: #FFFFFF;
  box-shadow: none;
  outline: none;
}

.search-close-btn {
  background: transparent;
  border: none;
  color: #FFFFFF;
  font-size: 24px;
  padding: 8px;
  cursor: pointer;
  transition: opacity 0.3s;
}

.search-close-btn:hover {
  opacity: 0.7;
}

/* === RESPONSIVE === */
@media (max-width: 992px) {
  .navbar a {
    font-size: 12px;
  }

  .navbar ul {
    gap: 20px !important;
  }
}

/* Header: Mobile menu & responsive */
.header .mobile-only {
  display: none !important;
}
.header .desktop-only {
  display: flex !important;
}
.header .navbar.desktop-only {
  display: flex !important;
}

.mobile-menu-toggle {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  padding: 8px;
  transition: color 0.3s;
}
.mobile-menu-toggle:hover {
  color: #FFCC00;
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  max-width: 90%;
  height: 100vh;
  background: linear-gradient(180deg, #2D1B69 0%, #8B1C62 50%, #D32F2F 100%);
  z-index: 9999;
  transition: right 0.3s ease;
  overflow-y: auto;
}
.mobile-menu-overlay.active {
  right: 0;
  box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
}

.mobile-menu-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.mobile-menu-close {
  align-self: flex-end;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  padding: 8px;
  margin-bottom: 20px;
  transition: opacity 0.3s;
}
.mobile-menu-close:hover {
  opacity: 0.8;
}

.mobile-navbar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.mobile-navbar li {
  margin-bottom: 2px;
}
.mobile-navbar li.active a {
  border-left: 3px solid #FFCC00;
  background: rgba(255, 255, 255, 0.1);
  padding-left: 12px;
}
.mobile-navbar a {
  display: block;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 12px 15px;
  transition: all 0.3s;
  border-left: 3px solid transparent;
}
.mobile-navbar a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #FFCC00;
}

.mobile-menu-footer {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.mobile-menu-lang {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}
.mobile-menu-lang:hover {
  color: #FFCC00;
}

.mobile-search-overlay {
  padding: 12px 16px;
  background: rgba(0, 0, 0, 0.2);
}
.mobile-search-overlay .form-control {
  background: rgba(255, 255, 255, 0.9);
  border: none;
}
.mobile-search-overlay .search-close-btn {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  padding: 4px 8px;
}

@media (max-width: 992px) {
  .header .mobile-only {
    display: flex !important;
  }
  .header .desktop-only {
    display: none !important;
  }
  .header .navbar.desktop-only {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .header-topbar {
    font-size: 11px;
  }

  .topbar-link span {
    display: none;
  }

  .navbar {
    display: none;
  }
}

/* ----------------
SECTIONS
---------------- */

/* SECTIONS > page-body about */
.page-body .about .content h3 {
  color: var(--color-secondary) !important;
}

/* ----------------
SECTION > #wgp (Çalışma Grubu Bildirileri)
---------------- */
#wgp {
  background: url('../img/section-bg4.png') #120b29;
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 80px 0;
}

#wgp .section-title h1 {
  color: #fff;
}

#wgp .section-toolbar a {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.8);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 0;
  font-size: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

#wgp .section-toolbar a:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.8);
  color: #fff;
}

.wgp-card {
  display: block;
  text-decoration: none;
}

.wgp-card img {
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.wgp-card:hover img {
  transform: translateY(-5px);
}

.wgp-content {
  padding-top: 20px;
}

.wgp-meta {
  color: #fff;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
  opacity: 0.9;
}

.wgp-meta i {
  font-size: 16px;
}

.wgp-title {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  margin: 0;
}

/* ----------------
SECTION > inpress (Basın Yansımaları) - press-specific overrides
---------------- */

/* Badge label: BASIN BİLDİRİSİ gibi küçük uppercase kırmızı yazı */
.press-content-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-default);
  margin-bottom: 14px;
}

.press-content-header i {
  font-size: 16px;
}

.press-content-header hr {
  width: 1px;
  height: 16px;
  border: none;
  background: #ccc;
  margin: 0 4px;
}

.press-badge-label {
  color: var(--color-primary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.press-badge-date {
  color: var(--color-default);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0px;
}

/* Press başlığı: koyu, kalın, hover'da secondary renk */
.press-title-btn {
  display: block;
  text-decoration: none;
  margin-bottom: 16px;
}

.press-title-btn h2,
.press-title-btn h3 {
  color: #111;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.35;
  margin: 0;
  transition: color 0.2s ease;
}


.press-title-btn h3 {
  font-size: 16px;
}


.press-title-btn p {
  color: #333;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.35;
  margin-top: 6px;
  transition: color 0.2s ease;
}

.press-title-btn:hover h2,
.press-title-btn:hover h3 {
  color: var(--color-secondary);
}







/*--------------------------------------------------------------
# Desktop Navigation
--------------------------------------------------------------*/


@media (min-width: 1365px) {
  .stats-counter {
    background-attachment: fixed;
  }
}


@media (min-width: 1200px) {
  .events .swiper-slide-active+.swiper-slide {
    border-left: 1px solid rgba(255, 255, 255, 0.5);
    border-right: 1px solid rgba(255, 255, 255, 0.5);
    z-index: 1;
  }
}

@media (min-width: 1280px) {
  .navbar {
    padding: 10px;
  }

  .navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navbar>ul>li {
    white-space: nowrap;
    padding: 10px 0 10px 28px;
  }


  .navbar>ul>li>a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--color-light);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navbar a:hover:before,
  .navbar li:hover>a:before,
  .navbar .active:before {
    visibility: visible;
    width: 100%;
  }


  .navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 28px;
    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: 15px;
    text-transform: none;
    font-weight: 600;
  }

  .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: var(--color-primary);
  }

  .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 (min-width: 1280px) and (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }

  .events .icon-box:hover {
    transform: scale(1.1);
  }

}

@media (min-width: 1280px) {

  .mobile-nav-show,
  .mobile-nav-hide {
    display: none;
  }
}

/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
@media (max-width: 1279px) {
  .navbar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    border-left: 1px solid #666;
    bottom: 0;
    transition: 0.3s;
    z-index: 9997;
  }

  .mobile-nav-show {
    color: var(--color-secondary);
    font-size: 28px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    z-index: 9999;
    margin: 0 10px 0 20px;
  }

  .mobile-nav-hide {
    color: var(--color-secondary);
    font-size: 32px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    position: fixed;
    right: 20px;
    top: 20px;
    z-index: 9999;
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .navbar {
    right: 0;
  }

  .mobile-nav-active .navbar:before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.8);
    z-index: 9996;
  }
}





@media (max-width: 992px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs h2 {
    margin-bottom: 10px;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }

}

/* responsive */
@media (max-width: 768px) {
  .section-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .section-toolbar a {
    align-self: flex-start;
  }

  .section-title p {
    font-size: 26px;
  }

  .content h1 {
    font-size: 28px;
  }

  .content p {
    font-size: 16px;
  }

  .page-title h1{
    font-size: 24px!important;
  }
}




@media (max-width: 575px) {
    .breadcrumbs {
      margin-top: 70px;
    }
    .header {
      height: 70px;
    }

    .menu .nav-link {
      margin: 0 10px;
      padding: 10px 0;
    }
    .menu .nav-link h4 {
      font-size: 16px;
    }
    .events .event-item {
      min-height: 500px;
    }

    .book-a-table .php-email-form {
      padding: 20px;
    }

    .header-logo img {
      height: 30px !important;
    }
    #header-search-btn{
      font-size: 16px !important;
    }
    #search-content {
      padding: 10px 0;
    }

    .news-item .title-btn h1 {
      font-size: 16px !important;
    }
    .news-item .title-btn p {
      font-size: 14px !important;
    }
    .news-item .title-btn i {
      font-size: 14px !important;
    }
    .news-item .title-btn hr {
      font-size: 14px !important;
  }

}

