/* Core Styling */
:root {
  --body: #fff;
  --black: #000;
  --white: #fff;
  --theme: #00813d;
  --theme2: #d12525;
  --theme3: #ffb936;
  --header: #212121;
  --base: #00813d;
  --text: #5c5c5b;
  --border: #d9d9d9;
  --border2: #ffffff2b;
  --button: #1c2539;
  --button2: #030734;
  --ratting: #ff9f0d;
  --bg: #f4f1ea;
  --bg2: #df0a0a0d;

  --theme-color: var(--theme);
  --theme-color-2: var(--theme2);
  --theme-color-3: var(--theme3);
  --body-color: var(--text);
  --heading-color: var(--header);
  --font-cursive: "Yellowtail", cursive;
  --font-heading: "Oswald", sans-serif;
  --font-body: "Barlow Condensed", sans-serif;
}

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

body {
  font-family: "Barlow Condensed", sans-serif !important;
  color: var(--body-color);
  overflow-x: hidden;
  font-size: 18px;
  line-height: 1.6;
}

a {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
span,
li,
input,
textarea,
select,
button,
label {
  font-family: "Barlow Condensed", sans-serif !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  /* text-transform: uppercase; */
}

/* Header */
.main-header {
  background-color: #fff;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  padding: 10px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.nav-link {
  color: var(--heading-color) !important;
  transition: 0.3s;
}
.nav-link:hover {
  color: var(--theme-color) !important;
}
.font-heading {
  font-family: var(--font-heading) !important;
}

/* Section Titles */
.section-title {
  margin-bottom: 50px;
}
.section-title span {
  font-family: var(--font-cursive) !important;
  color: var(--theme-color);
  font-size: 36px;
  display: block;
  margin-bottom: 10px;
  text-transform: lowercase;
}
.section-title h2 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
}

/* Theme Button */
.theme-btn {
  background-color: var(--theme-color-2);
  position: relative;
  display: inline-block;
  overflow: hidden;
  vertical-align: middle;
  font-size: 16px;
  line-height: 1;
  font-weight: 600;
  padding: 20px 50px;
  color: var(--white);
  text-align: center;
  border-radius: 9px;
  letter-spacing: 0.8px;
  z-index: 1;
  transition: all 0.5s ease;
  text-transform: uppercase;
}
.theme-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--theme-color);
  z-index: -1;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease;
}
.theme-btn:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}
.theme-btn:hover {
  color: #fff !important;
}

/* ----------------------------------------------------
   Category Slider Card (index.php)
------------------------------------------------------- */
.catagory-product-card {
  background-color: #ffffff;
  border-radius: 15px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  border: 1px solid #eee;
  z-index: 1;
  background-image: url("../catagory-card-shape.jpg");
  background-size: cover;
  background-position: center;
  height: 360px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.catagory-product-card .catagory-product-content h3 {
  font-size: 28px;
  margin-bottom: 5px;
  margin-top: -84px;
  transition: all 0.3s ease-in-out;
}
.catagory-product-card:hover {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  border-color: var(--theme-color-2);
}
.catagory-product-card a {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding-top: 16px;
}
.catagory-product-card a img {
  max-height: 90%;
  max-width: 90%;
  object-fit: contain;
  transition: transform 0.5s ease;
}
.catagory-product-card:hover a img {
  transform: scale(1.08);
}

/* ----------------------------------------------------
   Shop Page Product Card (urunler.php)
------------------------------------------------------- */
.shop-card-item {
  background-color: #ffffff;
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease-in-out;
  position: relative;
  border: 1px solid #eee;
}
.shop-card-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: var(--theme-color-2);
}
.shop-card-item .product-image {
  position: relative;
  margin-bottom: 20px;
  text-align: center;
  overflow: hidden;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fcfcfc;
  border-radius: 10px;
}
.shop-card-item .product-image a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.shop-card-item .product-image img {
  max-height: 90%;
  max-width: 90%;
  object-fit: contain;
  transition: transform 0.4s ease;
}
.shop-card-item:hover .product-image img {
  transform: scale(1.1);
}
.shop-card-item h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 0;
}
.shop-card-item h3 a {
  color: var(--heading-color);
  transition: color 0.3s;
}
.shop-card-item:hover h3 a {
  color: var(--theme-color);
}

/* Search & Filter Bar */
.shop-filter-bar {
  background: #fff;
  border-radius: 10px;
  padding: 20px 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  margin-bottom: 40px;
  border: 1px solid #eee;
}
.shop-filter-bar .search-input {
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 12px 20px;
  font-size: 16px;
  width: 100%;
  outline: none;
  transition: border-color 0.3s;
}
.shop-filter-bar .search-input:focus {
  border-color: var(--theme-color);
}
.shop-filter-bar .filter-select {
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 12px 20px;
  font-size: 16px;
  width: 100%;
  outline: none;
  background: #fff;
  cursor: pointer;
  transition: border-color 0.3s;
}
.shop-filter-bar .filter-select:focus {
  border-color: var(--theme-color);
}
.shop-filter-bar .search-btn {
  background: var(--theme-color);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 12px 30px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
  text-transform: uppercase;
}
.shop-filter-bar .search-btn:hover {
  background: var(--heading-color);
}

/* Array Buttons (Slider Navigation) */
.array-button {
  display: flex;
  gap: 15px;
  justify-content: flex-end;
  margin-top: 10px;
}
.array-button button {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #eee;
  color: var(--heading-color);
  font-size: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.array-button button:hover {
  background: var(--theme-color);
  color: #fff;
  border-color: var(--theme-color);
}

/* Hero Section */
.hero-wrapper {
  background-image: url("../main-bg-2.jpg");
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 180px 0 150px;
  z-index: 1;
}
.hero-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  z-index: -1;
}
.hero-content span {
  font-family: var(--font-cursive) !important;
  color: var(--theme-color-2);
  font-size: 40px;
  display: block;
  margin-bottom: 20px;
  text-transform: lowercase;
}
.hero-content h1 {
  color: #fff;
  font-size: 90px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 30px;
}
.hero-content p {
  color: #e0e0e0;
  font-size: 22px;
  margin-bottom: 40px;
  max-width: 600px;
}

/* Page Header */
.page-header {
  background-image: url("../A7406876.JPG");
  background-size: cover;
  background-position: center;
  padding: 150px 0 100px;
  position: relative;
  text-align: center;
  z-index: 1;
}
.page-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: -1;
}
.page-header h1 {
  color: #fff;
  font-size: 70px;
  margin-bottom: 15px;
}
.breadcrumb {
  justify-content: center;
  background: transparent;
  padding: 0;
  margin: 0;
}
.breadcrumb-item {
  font-size: 22px;
  color: #fff;
  font-family: var(--font-heading) !important;
  text-transform: uppercase;
}
.breadcrumb-item a {
  color: var(--theme-color-2);
}
.breadcrumb-item.active {
  color: #fff;
}

/* Product Details */
.product-details-content h2 {
  font-size: 40px;
  margin-bottom: 20px;
}
.product-details-content .price {
  font-size: 30px;
  color: var(--theme-color);
  font-family: var(--font-heading) !important;
  font-weight: 700;
  margin-bottom: 20px;
}

/* Contact Info Box */
.contact-info-box {
  background: #fff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.contact-info-box .icon {
  width: 70px;
  height: 70px;
  background: var(--theme-color-2);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
}
.contact-info-box h4 {
  margin-bottom: 5px;
}
.contact-info-box p {
  margin-bottom: 0;
  color: #666;
  font-size: 20px;
}

/* ----------------------------------------------------
   Footer - Foodking Clone
------------------------------------------------------- */
.footer-section {
  background-color: var(--white);
  position: relative;
  overflow: hidden;
}
.footer-widgets-wrapper {
  padding: 100px 0 50px;
}
.single-footer-widget .widget-head {
  margin-bottom: 25px;
}
.single-footer-widget .widget-head h4 {
  color: var(--header);
  font-size: 24px;
  font-weight: 600;
  position: relative;
  padding-bottom: 15px;
}
.single-footer-widget .widget-head h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--theme-color);
}
.single-footer-widget .footer-content p {
  color: #999;
  font-size: 18px;
  margin-bottom: 15px;
  line-height: 1.8;
}
.single-footer-widget .footer-content .link {
  color: var(--theme-color-2);
  font-weight: 600;
  font-size: 18px;
  transition: 0.3s;
}
.single-footer-widget .footer-content .link:hover {
  color: var(--theme-color);
}
.single-footer-widget .footer-content span {
  color: #bbb;
  font-size: 16px;
}
.single-footer-widget .social-icon {
  margin-top: 25px;
  gap: 12px;
}
.single-footer-widget .social-icon a {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  font-size: 16px;
  transition: 0.3s;
}
.single-footer-widget .social-icon a:hover {
  background: var(--theme-color);
  transform: translateY(-3px);
}
.single-footer-widget .list-items {
  list-style: none;
  padding: 0;
  margin: 0;
}
.single-footer-widget .list-items li {
  margin-bottom: 12px;
}
.single-footer-widget .list-items li a {
  color: #999;
  font-size: 18px;
  transition: 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.single-footer-widget .list-items li a::before {
  content: "\f105";
  font-family: "Font Awesome 6 Free" !important;
  font-weight: 900;
  font-size: 14px;
  color: var(--theme-color);
}
.single-footer-widget .list-items li a:hover {
  color: var(--theme-color-2);
  padding-left: 5px;
}
.single-footer-widget .footer-address-text h6 {
  color: var(--text);
  font-size: 18px;
  font-weight: 400;
  text-transform: none;
  line-height: 1.8;
  margin-bottom: 15px;
}
.single-footer-widget .footer-address-text h5 {
  color: var(--header);
  font-size: 20px;
  margin-bottom: 5px;
}
.single-footer-widget .support-text {
  margin-top: 20px;
}
.single-footer-widget .support-text h5 {
  color: #999;
  font-size: 16px;
  text-transform: none;
  font-weight: 400;
  margin-bottom: 5px;
}
.single-footer-widget .support-text h3 a {
  color: var(--theme-color-2);
  font-size: 28px;
  font-weight: 700;
  transition: 0.3s;
}
.single-footer-widget .support-text h3 a:hover {
  color: var(--theme-color);
}

/* Footer Bottom */
.footer-bottom {
  background-color: var(--theme);
  padding: 20px 0;
}
.footer-bottom-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-bottom-wrapper p {
  color: #fff;
  margin: 0;
  font-size: 16px;
  font-weight: 500;
}
.footer-bottom-wrapper p a {
  color: #fff;
  font-weight: 700;
}
.footer-bottom-wrapper p .theme-color-3 {
  color: #fff;
  font-weight: 700;
}

/* Grilled Banner Section */
.grilled-banner {
  position: relative;
  overflow: hidden;
}
.bg-cover {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.grilled-wrapper {
  position: relative;
  z-index: 9;
  padding: 100px 0;
}
.grilled-content h4 {
  color: var(--theme-color-3);
  font-family: var(--font-cursive) !important;
  font-size: 30px;
  text-transform: capitalize;
  margin-bottom: 10px;
}
.grilled-content h2 {
  font-size: 60px;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 15px;
  line-height: 1.2;
}
.grilled-content h2 span {
  color: var(--theme-color-2);
}
.grilled-content h3 {
  font-size: 40px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 40px;
  font-family: var(--font-heading) !important;
  text-transform: uppercase;
}
.grilled-content h3 a {
  color: #fff;
}
.grilled-content h3 .text-1 {
  color: var(--theme-color-3);
}
.grilled-content h3 .text-2 {
  color: var(--theme-color-2);
  font-size: 45px;
}
.grilled-button .theme-btn {
  background: var(--theme-color-2);
  display: inline-flex;
  padding: 15px 30px;
}
.grilled-button .button-icon {
  margin-right: 10px;
  font-size: 20px;
}
.patato-shape,
.offer-shape,
.text-shape,
.spicy-shape,
.tomato-shape {
  position: absolute;
  z-index: 1;
}
.patato-shape {
  top: 10%;
  left: 5%;
}
.offer-shape {
  top: 20%;
  right: 10%;
}
.text-shape {
  bottom: 10%;
  left: 10%;
}
.spicy-shape {
  bottom: 20%;
  right: 5%;
}
.tomato-shape {
  top: 5%;
  right: 40%;
}
.patato-shape img,
.offer-shape img,
.text-shape img,
.spicy-shape img,
.tomato-shape img {
  max-width: 150px;
  border-radius: 50%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.float-bob-y {
  animation: float-bob-y 3s infinite linear;
}
@keyframes float-bob-y {
  0% {
    transform: translateY(-20px);
  }
  50% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(-20px);
  }
}

/* ==========================================================================
   RESPONSIVE DESIGN (Media Queries)
   ========================================================================== */

/* Large Devices, Wide Screens (1200px and below) */
@media (max-width: 1199.98px) {
  .hero-content h1 {
    font-size: 70px;
  }
  .grilled-content h2 {
    font-size: 50px;
  }
}

/* Medium Devices, Desktops (991px and below) */
@media (max-width: 991.98px) {
  .hero-wrapper {
    padding: 120px 0 100px;
  }
  .hero-content h1 {
    font-size: 56px;
  }
  .page-header {
    padding: 100px 0 80px;
  }
  .page-header h1 {
    font-size: 50px;
  }
  .section-title h2 {
    font-size: 38px;
  }
  .grilled-wrapper {
    padding: 60px 0;
  }
  .grilled-content h2 {
    font-size: 40px;
  }
  .grilled-content h3 {
    font-size: 30px;
    flex-wrap: wrap;
  }
  .grilled-content h3 .text-2 {
    font-size: 34px;
  }
  .footer-widgets-wrapper {
    padding: 60px 0 30px;
  }
  .booking-wrapper {
    padding-top: 60px !important;
  }
  /* Hide floating shapes on tablet/mobile to prevent overflow/clutter */
  .patato-shape, .offer-shape, .text-shape, .spicy-shape, .tomato-shape {
    display: none !important;
  }
  .array-button {
    justify-content: flex-start;
    margin-top: 20px;
  }
  section[style*="padding-top: 100px"] {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }
  section[style*="margin: 80px 0;"] {
    margin: 40px 0 !important;
  }
  .py-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .my-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
}

/* Small Devices, Tablets (767px and below) */
@media (max-width: 767.98px) {
  .hero-wrapper {
    padding: 100px 0 80px;
  }
  .hero-content h1 {
    font-size: 42px;
  }
  .hero-content span {
    font-size: 30px;
  }
  .page-header h1 {
    font-size: 40px;
  }
  .section-title h2 {
    font-size: 32px;
  }
  .section-title span {
    font-size: 28px;
  }
  .grilled-content h2 {
    font-size: 32px;
  }
  .grilled-image {
    text-align: center !important;
    margin-top: 30px;
  }
  .contact-info-box {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
  }
  .footer-bottom-wrapper {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  .booking-content h2 {
    font-size: 32px !important;
  }
  .booking-content .icon-items h3 a {
    font-size: 24px !important;
  }
  .booking-contact {
    padding: 30px 20px !important;
  }
  .shop-filter-bar {
    padding: 15px;
  }
  .shop-filter-bar .row > div {
    margin-bottom: 15px;
  }
  .navbar-nav {
    padding-top: 15px;
    padding-bottom: 15px;
    background: #fff;
    text-align: center;
  }
  .py-5 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .my-5 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
}

/* Extra Small Devices, Phones (575px and below) */
@media (max-width: 575.98px) {
  .hero-content h1 {
    font-size: 36px;
  }
  .page-header h1 {
    font-size: 32px;
  }
  .section-title h2 {
    font-size: 28px;
  }
  .theme-btn {
    padding: 15px 30px;
    font-size: 14px;
  }
  .catagory-product-card {
    height: 300px;
  }
  .catagory-product-card .catagory-product-content h3 {
    font-size: 24px;
    margin-top: -60px;
  }
}
