@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: 30px;
  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;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 600;
}
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;
}/*# sourceMappingURL=omrtours.css.map */