@charset "UTF-8";

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  padding-top: 70px;
  overflow-x: hidden;
}

.header-color {
  color: #9C7928;
}

.loader-container {
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1001;
}

.loader {
  width: 44.8px;
  height: 44.8px;
  color: #554cb5;
  position: relative;
  background: radial-gradient(11.2px, currentColor 94%, rgba(0, 0, 0, 0));
}

.loader:before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(10.08px at bottom right, rgba(0, 0, 0, 0) 94%, currentColor) top left, radial-gradient(10.08px at bottom left, rgba(0, 0, 0, 0) 94%, currentColor) top right, radial-gradient(10.08px at top right, rgba(0, 0, 0, 0) 94%, currentColor) bottom left, radial-gradient(10.08px at top left, rgba(0, 0, 0, 0) 94%, currentColor) bottom right;
  background-size: 22.4px 22.4px;
  background-repeat: no-repeat;
  animation: loader 1.5s infinite cubic-bezier(0.3, 1, 0, 1);
}

@keyframes loader {
  33% {
    inset: -11.2px;
    transform: rotate(0deg);
  }

  66% {
    inset: -11.2px;
    transform: rotate(90deg);
  }

  100% {
    inset: 0;
    transform: rotate(90deg);
  }
}

header {
  background: #48C1BB;
  padding: 1rem 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
}

.menu-space {
  height: 70px;
}

.nav-container {
  max-width: 1200px;
  height: 50px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  max-height: 40px;
  width: auto;
}

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

.nav a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

.nav a:hover {
  color: #FF6B00;
}

/* Mobil responsive tasarım */
@media (max-width: 768px) {
  .nav {
    display: none;
  }
}

.menu-icon {
  display: none;
  cursor: pointer;
  width: 24px;
  height: 24px;
  color: #fff;
  font-size: 1.5rem;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -300px;
  width: 300px;
  height: 100vh;
  background: #fff;
  z-index: 1001;
  transition: right 0.3s ease;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
}

.mobile-menu .closeBtn {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  font-size: 1.5rem;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-content {
  padding: 2rem;
}

.mobile-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-menu ul li {
  margin-bottom: 1.5rem;
}

.mobile-menu ul li a {
  color: #333;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.mobile-menu ul li a:hover {
  color: #FF6B00;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  display: none;
}

.overlay.active {
  display: block;
}

@media (max-width: 768px) {
  .nav {
    display: none;
  }

  .menu-icon {
    display: block;
  }
}

section {
  margin: 100px 0;
  width: 100%;
  height: 100%;
}

.omr-card {
  margin-bottom: 20px;
}

.omr-card:last-child {
  margin-bottom: 0;
}

.omr-card .card-title {
  color: #232323;
  font-size: 1.6rem;
  font-weight: 600;
  text-align: center;
  padding: 10px;
}

.omr-card .card-image {
  padding: 2px;
}

.omr-card .card-image img {
  border-radius: 25px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.omr-card .card-short-description {
  padding: 10px;
  font-size: 1rem;
  font-weight: 400;
  text-align: center;
}

.omr-card .card-extra-btn {
  color: #5D7811;
  padding: 10px;
  border-radius: 10px;
  text-align: center;
  font-size: 1.3rem;
  font-weight: 600;
  margin-top: 10px;
}

.omr-card .card-extra-btn a {
  text-decoration: none;
  color: #5D7811;
  transition: all 0.3s ease;
}

.omr-card .card-extra-btn a:hover {
  color: #41550c;
}

.omr-card .card-btn {
  padding: 10px;
  text-align: center;
  width: 100%;
}

.omr-card .card-btn .btn-custom {
  background: #5D7811;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 10px;
  padding: 10px;
  transition: all 0.3s ease;
}

.omr-card .card-btn .btn-custom:hover {
  background: #41550c;
}

footer {
  margin-top: 50px;
}

footer .inner {
  background: #48C1BB;
  padding: 70px 0;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 600;
}

/* Keep footer content horizontally aligned with the header nav-container
   (same max-width + side padding), fluid on smaller screens. */
footer .inner .container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

footer .inner .menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

footer .inner .footer-logo {
  width: 200px;
}

footer .inner .footer-logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

footer .inner .footer-menu ul {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
}

footer .inner .footer-menu ul li {
  margin-left: 10px;
}

footer .inner .footer-menu ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

footer .inner .footer-menu ul li a:hover {
  color: #FF6B00;
}

footer .extratext {
  background-color: #48C1BB;
  color: #262626;
  font-size: 1.2rem;
  font-weight: 600;
  padding: 10px;
  text-align: center;
}

footer .outer {
  background-color: #fff;
  text-align: center;
  font-size: 1.2rem;
  font-weight: 400;
  padding: 20px;
}

footer .outer a {
  color: #3a3a3a;
  font-weight: 600;
  text-decoration: none;
}

footer .outer a:hover {
  color: #202020;
}

@media (max-width: 768px) {
  footer .inner .menu {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  footer .inner .menu .footer-menu {
    display: none;
  }
}

p {
  font-size: 1.2rem;
}

.contact-info p {
  font-size: 1rem;
  font-weight: 400;
}

.desc p {
  font-size: 1rem;
}

.desc p img {
  width: 125px;
  height: auto;
}

.tours p {
  font-size: 1.2rem;
}

.tours p img {
  width: 125px;
  height: auto;
}

.tours .btn-custom {
  background: #9C7928;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 175px;
  height: 60px;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 10px;
  padding: 10px;
}

@media (max-width: 768px) {
  .tours p {
    font-size: 1rem;
  }
}

.form {
  font-family: "Times New Roman", Times, serif;
  font-style: italic;
}

/* ============================================================
   Header / footer contact links  (managed from the admin panel)
   ============================================================ */
.nav-contact {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-left: 1.4rem;
}

.nav {
  margin-left: auto;
}

.nav-contact a {
  color: #fff;
  font-size: 1.15rem;
  line-height: 1;
  transition: color 0.3s ease;
}

.nav-contact a:hover {
  color: #FF6B00;
}

@media (max-width: 768px) {
  .nav-contact {
    display: none;
  }
}

.mobile-contact {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #eee;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-contact a {
  color: #333;
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.mobile-contact a i {
  color: #48C1BB;
  width: 20px;
  text-align: center;
}

.mobile-contact a:hover {
  color: #FF6B00;
}

footer .inner .footer-contact {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}

footer .inner .footer-contact a {
  color: #fff;
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.3s ease;
}

footer .inner .footer-contact a i {
  font-size: 1.1rem;
}

footer .inner .footer-contact a:hover {
  color: #FF6B00;
}

/* ============================================================
   Generic page content (e.g. /omer)
   ============================================================ */
.page-content p {
  font-size: 1.2rem;
}

.page-content img.float-start {
  max-width: 300px;
  width: 100%;
  height: auto;
  border-radius: 8px;
}

@media (max-width: 768px) {
  .page-content img.float-start {
    max-width: 100%;
    float: none !important;
    margin: 0 0 1rem;
  }
}

/* ============================================================
   Testimonials — elegant balanced two-up (masonry)
   ============================================================ */
.testimonials-intro {
  color: #7b8a8b;
  font-size: 1.1rem;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.testimonial-grid {
  column-count: 2;
  column-gap: 1.6rem;
}

.testimonial-card {
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
  display: inline-block;
  width: 100%;
  margin: 0 0 1.6rem;
  padding: 1.8rem 1.7rem 1.5rem;
  background: #fff;
  border: 1px solid #eef2f2;
  border-radius: 18px;
  box-shadow: 0 8px 30px rgba(36, 50, 51, 0.06);
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(36, 50, 51, 0.1);
}

.testimonial-quote {
  position: absolute;
  top: 0.4rem;
  left: 1.2rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4rem;
  line-height: 1;
  color: #48C1BB;
  opacity: 0.18;
  pointer-events: none;
}

.testimonial-body {
  margin: 0.6rem 0 1.3rem;
  padding: 0;
  border: 0;
  font-size: 1rem;
  line-height: 1.75;
  color: #3d4a4b;
  quotes: none;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding-top: 1rem;
  border-top: 1px solid #eef2f2;
}

.testimonial-name {
  font-weight: 700;
  color: #243233;
  font-size: 1.02rem;
}

.testimonial-role {
  font-size: 0.85rem;
  color: #8a9a9a;
}

@media (max-width: 768px) {
  .testimonial-grid {
    column-count: 1;
  }
}

/* ============================================================
   Floating WhatsApp button (bottom-left, breathing) + to-top
   ============================================================ */
.wa-float {
  position: fixed;
  left: 22px;
  bottom: 22px;
  z-index: 1200;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease;
}

.wa-float:hover {
  transform: scale(1.08);
  color: #fff;
}

.wa-float::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  z-index: -1;
  animation: wa-breathe 2s infinite;
}

@keyframes wa-breathe {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }

  70% {
    transform: scale(1.7);
    opacity: 0;
  }

  100% {
    transform: scale(1.7);
    opacity: 0;
  }
}

.to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1200;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: #48C1BB;
  color: #fff;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
}

.to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.to-top:hover {
  background: #3aa19c;
}

@media (max-width: 768px) {
  .wa-float {
    width: 50px;
    height: 50px;
    font-size: 26px;
    left: 16px;
    bottom: 16px;
  }

  .to-top {
    width: 44px;
    height: 44px;
    right: 16px;
    bottom: 16px;
  }
}

/*# sourceMappingURL=omrtours.css.map */