/* Reset and Base Styles */
:root {
  --primary-color: #006751;
  --secondary-color: #bad405;
  --text-color: #333;
}
*{
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
}

.logo {
  position: absolute;
  top: 5px;
}
.icon-color-primary{
  color: var(--primary-color);
}
a{color: var(--primary-color);}
a:hover{color: var(--accent-color);}

.service-content-body p {
  text-indent: 30px;
}

.btn-primary {
  background: var(--primary-color);
  font-size: 1rem;
  border: none;
  padding: 12px 30px;
  border-radius: 8px;
  font-weight: 600;
  transition: transform 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: var(--accent-color);
  color: var(--primary-color);
}

.estebtn{
  background: var(--primary-color);
  color: #ffffff;
  border: none;
  border-radius: 10px;
  text-decoration: none;
  max-width: 20%;
}
.estebtn:hover{
  background: var(--accent-color);
  color: var(--primary-color);
  border-radius: 10px;
  text-decoration: none;
}
/* Event Styles */




.events-section {
  background: #f8f9fa;
}

.event-card {
  border: none;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  overflow: hidden;
}

.event-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.event-image {
  height: 200px;
  overflow: hidden;
}

.event-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.event-card:hover .event-image img {
  transform: scale(1.05);
}

.event-meta {
  font-size: 0.9rem;
  color: #666;
}

.meta-item {
  margin-bottom: 0.5rem;
}

.event-detail-section {
  background: #fff;
}

.event-cover {
  border-radius: 15px;
  overflow: hidden;
}

.event-cover img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.event-title {
  color: var(--primary-color);
  font-weight: 700;
}

.participation-requirements {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 10px;
  border-left: 4px solid var(--primary-color);
}

.requirements-content {
  margin-top: 10px;
}

.breadcrumb-section {
  background: #f8f9fa;
  padding: 20px 0;
  margin-top: 100px;
}

.breadcrumb {
  margin-bottom: 0;
}

.breadcrumb-item a {
  color: var(--primary-color);
  text-decoration: none;
}

.breadcrumb-item.active {
  color: #666;
}

.search-form .input-group {
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.search-form .form-control {
  border: none;
  padding: 15px 20px;
}

.search-form .btn {
  border: none;
  padding: 15px 25px;
}

.section-title {
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 15px;
}

.section-subtitle {
  color: #666;
  font-size: 1.1rem;
}

/* Service Image Styles */
.service-image {
  height: 200px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 10px 10px 0 0;
  position: relative;
}

.service-item {
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.service-body {
  padding: 20px;
}

.service-body h3 {
  color: var(--primary-color);
  font-size: 1.2rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.service-body p {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 15px;
}

.read-more-btn {
  padding: 0 20px 20px;
}

.read-more-btn a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.read-more-btn a:hover {
  color: var(--secondary-color);
}

/* Team Section Styles */


.team-section::before {
  content: "";
  background: #00000085 !important;
  position: absolute;
  width: 100%;
  height: 1000vh;
}
.team-section {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  position: relative;
  min-height: 500px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  overflow: hidden;
}


.team-section .container {
  position: relative;
  z-index: 2;
}

.team-item {
  border-radius: 15px;
  padding: 20px;
  text-align: center;
  transition: all 0.3s ease;
}

.team-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.2);
}

.team-image {
  margin-bottom: 20px;
  border-radius: 50%;
  overflow: hidden;

  margin: 0 auto 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-content h4 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.team-title {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 15px;
  opacity: 0.9;
}

.team-content p {
  font-size: 0.9rem;
  line-height: 1.5;
  opacity: 0.8;
}

/* Branches Section Styles */
.branches-section {
  background: #f8f9fa;
  padding: 80px 0;
}

.branch-item {
  background: white;
  border-radius: 15px;
  padding: 30px;
  text-align: left;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  height: 100%;
  border: 1px solid #e9ecef;
}


.branch-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.branch-content h4 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.branch-content p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 15px;
  color: #666;
}

.branch-content p:last-child {
  margin-bottom: 0;
}

.branch-content a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.branch-content a:hover {
  color: var(--secondary-color);
}

.branch-content i {
  color: var(--primary-color);
  width: 20px;
}

.branch-content .btn {
  border-radius: 25px;
  padding: 8px 20px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.branch-content .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.branch-content .d-flex.gap-2 {
  gap: 0.5rem !important;
}

.branch-content .btn-sm {
  font-size: 0.8rem;
  padding: 6px 12px;
}

.branch-content .btn-outline-primary {
  border-color: #007bff;
  color: #007bff;
}

.branch-content .btn-outline-warning {
  border-color: #ffc107;
  color: #ffc107;
}

.branch-content .btn-outline-dark {
  border-color: #343a40;
  color: #343a40;
}

/* Randevu Formu Stilleri */
.appointment-section {
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  min-height: 100vh;
}

.appointment-section .card {
  border: none;
  border-radius: 15px;
  overflow: hidden;
}

.appointment-section .card-header {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)) !important;
  border: none;
  padding: 1.5rem;
}

.appointment-section .form-label {
  font-weight: 600;
  color: #495057;
  margin-bottom: 0.5rem;
}

.appointment-section .form-control,
.appointment-section .form-select {
  border: 2px solid #e9ecef;
  border-radius: 10px;
  padding: 0.75rem 1rem;
  transition: all 0.3s ease;
}

.appointment-section .form-control:focus,
.appointment-section .form-select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.appointment-section .btn-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border: none;
  border-radius: 10px;
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.appointment-section .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 123, 255, 0.3);
}

.appointment-section .alert {
  border-radius: 10px;
  border: none;
  padding: 1rem 1.5rem;
}

.appointment-section .alert-success {
  background: linear-gradient(135deg, #d4edda, #c3e6cb);
  color: #155724;
}

.appointment-section .alert-danger {
  background: linear-gradient(135deg, #f8d7da, #f5c6cb);
  color: #721c24;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333;
  padding-top: 100px;
}
.bg-color-white {
  background-color: #ffffff;
}


/* Header Styles */
.header {
  background: rgba(255, 255, 255, 0.55);
  padding: 1rem 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  transition: all 0.3s ease;
  width: 100%;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header.scrolled {
  padding: 0.1rem 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 10px 2px 20px rgba(157, 255, 172, 0.5);
}

.header.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header.logo img {
  width: 200px;
  height: 100%;
  object-fit: contain;
}
.header.scrolled .logo img {
  width: 150px;
}

.navbar {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin: 0;
}

.nav-list a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  text-decoration: none;
}

.nav-list a:hover {
  color: var(--accent-color);
}


.social-media {
  display: flex;
  gap: 1rem;
}

.social-media a {
  color: var(--primary-color);
}

.phone-number {
  display: flex;
  gap: 1rem;
}

.phone-number a {
  color: var(--primary-color);
  text-decoration: none;
}
/* Full Screen Video Background */
.fullscreen-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 98vh;
  z-index: -10;
  overflow: hidden;
}

.fullscreen-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.min-height-hero {
  min-height: 95vh;
  margin-top: 0;
  position: absolute;
  top: 0;
}
.page-title{
height: 50vh;
background-size: cover;
background-attachment: fixed;
position: relative;
z-index: 100;
min-height: 100vh;
display: flex;
align-items: center;
}


/* Hero Content */
.hero-content {
  position: relative;
  z-index: 100;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-text {
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-text h1 {
  font-size: 3.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-text h2 {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.hero-text p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.8;
  max-width: 500px;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
  line-height: 1.2;
  text-align: start;
  color:white;
}

.hero-content h2 {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
  opacity: 0.9;
  text-align: start;
  color:white;
}

.hero-content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.8;
  max-width: 500px;
  text-align: start;
  color:white;
  line-height: 1.2;
}



/* Services Section */

        .btn-primary {
            background: var(--primary-color);
            border: none;
            padding: 12px 30px;
            border-radius: 8px;
            font-weight: 600;
            transition: transform 0.3s ease;
        }
        
        .btn-primary:hover {
            transform: translateY(-2px);
            background: var(--accent-color);
            color: var(--primary-color);
        }

button {
  overflow: visible;
}

button, select {
  text-transform: none;
}

button, input, select, textarea {
  color: #5A5A5A;
  font: inherit;
  margin: 0;
}

input {
  line-height: normal;
}

textarea {
  overflow: auto;
}

#container {
  border: solid 3px #474544;
  max-width: 768px;
  margin: 60px auto;
  position: relative;
}

form {
  padding: 37.5px;
  margin: 0 0;
}

h1 {
  color: #474544;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 7px;
  text-align: center;
  text-transform: uppercase;
}

.underline {
  border-bottom: solid 2px #474544;
  margin: -0.512em auto;
  width: 80px;
}

.icon_wrapper {
  margin: 50px auto 0;
  width: 100%;
}

.icon {
  display: block;
  fill: #474544;
  height: 50px;
  margin: 0 auto;
  width: 50px;
}

.email {
    float: right;
    width: 45%;
}

input[type='text'], [type='email'], select, textarea {
    background: none;
  border: none;
    border-bottom: solid 2px #474544;
    color: #474544;
    font-size: 1.000em;
  font-weight: 400;
  letter-spacing: 1px;
    margin: 0em 0 1.875em 0;
    padding: 0 0 0.875em 0;
    width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

input[type='text']:focus, [type='email']:focus, textarea:focus {
    outline: none;
    padding: 0 0 0.875em 0;
}

.message {
    float: none;
}

.name {
    float: left;
    width: 45%;
}

select {
  background: url('https://cdn4.iconfinder.com/data/icons/ionicons/512/icon-ios7-arrow-down-32.png') no-repeat right;
  outline: none;
  /*-moz-appearance: none;
  -webkit-appearance: none;*/
}

select::-ms-expand {
  display: none;
}

.subject {
  width: 100%;
}

.telephone {
  width: 100%;
}

textarea {
    line-height: 150%;
    height: 150px;
    resize: none;
  width: 100%;
}

::-webkit-input-placeholder {
    color: #474544;
}

:-moz-placeholder { 
    color: #474544;
    opacity: 1;
}

::-moz-placeholder {
    color: #474544;
    opacity: 1;
}

:-ms-input-placeholder {
    color: #474544;
}

#form_button {
  background: none;
  border: solid 2px #474544;
  color: #474544;
  cursor: pointer;
  display: inline-block;
  font-family: 'Helvetica', Arial, sans-serif;
  font-size: 0.875em;
  font-weight: bold;
  outline: none;
  padding: 20px 35px;
  text-transform: uppercase;
  -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

#form_button:hover {
  background: #474544;
  color: #F2F3EB;
}

@media screen and (max-width: 768px) {
  .sidebar {
    text-align: center;
  }
  #container {
    margin: 20px auto;
    width: 95%;
  }
  .name, .email{
    width: 100%;
  }

}

@media screen and (max-width: 480px) {
  h1 {
    font-size: 26px;
  }
  
  .underline {
    width: 68px;
  }
  
  #form_button {
    padding: 15px 25px;
  }
}

@media screen and (max-width: 420px) {
  h1 {
    font-size: 18px;
  }
  
  .icon {
    height: 35px;
    width: 35px;
  }
  
  .underline {
    width: 53px;
  }
  
  input[type='text'], [type='email'], select, textarea {
    font-size: 0.875em;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-content h1 {
      font-size: 2.5rem;
  }
  
  .hero-content h2 {
      font-size: 1.2rem;
      text-align: center;
  }
  .hero-content p {
    text-align: center;
  }
  .maincontact {
    margin: 10%;
    width: 80%;
    margin-top: 4%;
}

.maincontact {
  margin: 10%;
  width: 80%;
  margin-top: 4%;
}

.our-counter {
  text-align: center;
}
.services-box-footer {
  padding-bottom: 50px;
}
.estebtn{
  max-width: 80%;
}
.btn-lg {
  max-width: 80%;
  width: 80%;
}
  
  .nav-list {
      display: none;
  }
  
  .search-box {
      width: 100%;
  }
  
  .video-container {
      height: 250px;
      margin-top: 2rem;
  }
  
  .service-card {
      margin-bottom: 2rem;
  }
}



.servis-image img {
  width: 100%;
  padding: 10px;
  border-radius: 20px;
}

.servis-bilgisi {
  display: flex;
  align-items: center;
  gap: 20px;
  border-radius: 20px;
  padding: 10px;
  object-fit: cover;
  border-radius: 20px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.servis-bilgisi:hover {
  transform: scale(1.05);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  cursor: pointer;
  background-color: var(--primary-color);
  color: #ffffff;
}

/* Service Cards - Show image and title by default, description on hover */
.servis-icerik p {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
  max-height: 0;
  overflow: hidden;
}

.servis-bilgisi:hover .servis-icerik p {
  opacity: 1;
  transform: translateY(0);
  max-height: 200px;
}

/* Mobile responsive - Show description by default on mobile */
@media (max-width: 768px) {
  .servis-icerik p {
      opacity: 1;
      transform: translateY(0);
      max-height: none;
  }
}

/* Services Section */
.services {
  position: relative;
  z-index: 100;
  background: #fff;
  padding: 80px 0;
}

.our-services {
  position: relative;
  z-index: 100;
  background: #fff;
  padding: 80px 0;
}

/* Page Hero Styles */


.page-hero {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 50vh;
  z-index: -10;
  overflow: hidden;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  margin-top: -100px;
}

.page-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Page Content - Hero'nun altında kalması için */
.page-content {
  /*margin-top: 41vh; /* Hero yüksekliği kadar boşluk */
  position: relative;
  z-index: 10;
  background: #fff;
}

/* Menü Sayfası Stilleri */
.menu-page {
  background: #f8f9fa;
  min-height: 100vh;
}

.menu-category {
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  margin-bottom: 30px;
}

.category-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 15px;
  position: relative;
}

.category-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(45deg, #3498db, #2ecc71);
  border-radius: 2px;
}

.category-description {
  font-size: 1.1rem;
  color: #7f8c8d;
  margin-bottom: 20px;
}

.menu-item-card {
  transition: all 0.3s ease;
  border-radius: 15px;
  overflow: hidden;
}

.menu-item-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.menu-item-card .card {
  border: none;
  border-radius: 15px;
  overflow: hidden;
  height: 100%;
}

.menu-item-image {
  position: relative;
  overflow: hidden;
  height: 200px;
}

.menu-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.menu-item-card:hover .menu-item-image img {
  transform: scale(1.1);
}

.menu-item-card .card-body {
  padding: 20px;
}

.menu-item-card .card-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 10px;
}

.menu-item-card .card-text {
  color: #7f8c8d;
  font-size: 0.95rem;
  line-height: 1.5;
}

.price {
  font-size: 1.4rem;
  font-weight: 700;
  color: #27ae60;
  background: linear-gradient(45deg, #27ae60, #2ecc71);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.menu-item-meta {
  margin-top: 15px;
}

.menu-item-meta .badge {
  font-size: 0.8rem;
  padding: 6px 12px;
  border-radius: 20px;
  margin-right: 8px;
  margin-bottom: 5px;
}

.allergens {
  background: linear-gradient(135deg, #ff6b6b, #ee5a52);
  color: white;
  padding: 10px 15px;
  border-radius: 10px;
  margin-top: 15px;
  font-size: 0.9rem;
}

.allergens i {
  margin-right: 5px;
}

.video-link .btn {
  border-radius: 25px;
  padding: 8px 20px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.video-link .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(220, 53, 69, 0.3);
}

/* Banner Popup Styles */
.banner-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.banner-popup-content {
    background: white;
    border-radius: 10px;
    max-width: 90%;
    max-height: 90%;
    position: relative;
    animation: slideIn 0.3s ease;
}

.banner-popup-center {
    align-items: center;
    justify-content: center;
}

.banner-popup-top {
    align-items: flex-start;
    justify-content: center;
    padding-top: 50px;
}

.banner-popup-bottom {
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 50px;
}

.banner-popup-left {
    align-items: center;
    justify-content: flex-start;
    padding-left: 50px;
}

.banner-popup-right {
    align-items: center;
    justify-content: flex-end;
    padding-right: 50px;
}

.banner-popup-header {
    position: relative;
    padding: 15px;
    border-bottom: 1px solid #eee;
}

.banner-popup-close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #666;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.banner-popup-close:hover {
    background: #f0f0f0;
    color: #333;
}

.banner-popup-body {
    padding: 20px;
    max-height: 70vh;
    overflow-y: auto;
}

.banner-video-placeholder {
    text-align: center;
    padding: 40px;
    color: #666;
}

.banner-video-placeholder i {
    color: #007bff;
    margin-bottom: 15px;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { 
        opacity: 0;
        transform: scale(0.8);
    }
    to { 
        opacity: 1;
        transform: scale(1);
    }
}

/* Gallery Cover Styles */
.gallery-header {
    text-align: center;
}

.gallery-cover {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.gallery-cover:hover {
    transform: translateY(-5px);
}

.gallery-cover img {
    transition: transform 0.3s ease;
}

.gallery-cover:hover img {
    transform: scale(1.05);
}

/* Gallery Hero Styles */
.page-hero {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 100%;
    padding: 0 20px;
}

.hero-content h1 {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero-content .lead {
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.hero-content .alert {
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    border: none;
    border-radius: 25px;
    padding: 10px 20px;
    font-weight: 500;
}

.card-title{font-weight: 300;font-size: 1.1rem;}

/* Responsive */
@media (max-width: 768px) {
  .contact-form-section{
    padding: 0;
    margin: 0;
  }
  form{
    padding: 10px;
    margin: 0;
  }
  .category-title {
    font-size: 2rem;
  }
  
  .menu-item-card .card-body {
    padding: 15px;
  }
  
  .menu-category {
    padding: 20px;
  }
  
  .banner-popup-content {
    max-width: 95%;
    margin: 20px;
  }
  
  .banner-popup-top,
  .banner-popup-bottom,
  .banner-popup-left,
  .banner-popup-right {
    align-items: center;
    justify-content: center;
    padding: 20px;
  }
  
  .gallery-cover img {
    max-height: 200px !important;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
    text-align: center;
    margin-top: 100px;
  }
  
  .hero-content .lead {
    font-size: 1.1rem;
  }
  
  .page-hero {
    min-height: 50vh;
    background-attachment: scroll;
  }
}


.language-selector .dropdown-toggle {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 14px;
}
.language-selector .dropdown-toggle:hover {
  background: rgba(255,255,255,0.2);
  color: white;
}
.language-selector .dropdown-menu {
  min-width: 150px;
}
.language-selector .dropdown-item.active {
  background-color: #007bff;
  color: white;
}