body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

header {
    background-color: #4A90E2;
    color: white;
    padding: 20px;
    text-align: center;
}

h1 {
    font-size: 2.5rem;
}

nav a {
    color: white;
    margin: 0 15px;
    text-decoration: none;
}
.scrollbar-hide::-webkit-scrollbar { display: none; }
.scrollbar-hide { -ms-overflow-style: none; scrollbar-width: none; }
.swiper-button-next::after, .swiper-button-prev::after { display: none; }
nav a:hover {
    text-decoration: underline;
}

.section {
    padding: 40px 20px;
}

.footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px 0;
    position: relative;
    bottom: 0;
    width: 100%;
}
/* Fade-in animasyonu */
@keyframes fade-in {
  from { opacity: 0; transform: translateY(30px);}
  to { opacity: 1; transform: translateY(0);}
}
.animate-fade-in {
  animation: fade-in 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Kart hover efekti için ekstra shadow */
.room-card:hover {
  box-shadow: 0 10px 32px 0 rgba(0,0,0,0.15);
}

/* Form başarı mesajı için animasyon */
#formSuccess {
  animation: fade-in 0.8s;
}
 .animate-slide-up {
    animation: slideUp 0.3s cubic-bezier(.4,2,.6,1) both;
  }
  @keyframes slideUp {
    from { transform: translateY(100%);}
    to { transform: translateY(0);}
  }

/* Genel Stiller */
:root {
    --primary-color: #1e40af;
    --secondary-color: #1e3a8a;
    --accent-color: #3b82f6;
    --text-color: #1f2937;
    --light-bg: #f3f4f6;
}

/* Mobil Menü Stilleri */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: white;
    z-index: 1000;
    transition: right 0.3s ease-in-out;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
}

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

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobil Menü İçerik Stilleri */
.mobile-menu-content {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.mobile-menu-header {
    padding: 1.5rem;
    border-bottom: 1px solid #f3f4f6;
    background: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile-menu-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.mobile-menu-logo img {
    height: 3rem;
    width: auto;
    object-fit: contain;
}

.mobile-menu-logo span {
    font-size: 1.5rem;
    font-weight: bold;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.mobile-menu-close {
    padding: 0.5rem;
    border-radius: 0.5rem;
    transition: background-color 0.3s;
    border: none;
    background: none;
    cursor: pointer;
}

.mobile-menu-close:hover {
    background-color: var(--light-bg);
}

.mobile-menu-close svg {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--text-color);
}

/* Mobil Menü Navigasyon */
.mobile-menu-nav {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
}

.mobile-menu-nav ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu-nav a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: var(--text-color);
    border-radius: 0.5rem;
    transition: all 0.3s;
    text-decoration: none;
}

.mobile-menu-nav a:hover {
    background-color: var(--light-bg);
    color: var(--primary-color);
}

.mobile-menu-nav svg {
    width: 1.25rem;
    height: 1.25rem;
}

/* Mobil Menü Alt Kısım */
.mobile-menu-footer {
    padding: 1.5rem;
    border-top: 1px solid #f3f4f6;
}

.reservation-button {
    display: block;
    width: 100%;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    color: white;
    text-align: center;
    padding: 0.75rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    transition: all 0.3s;
    text-decoration: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.reservation-button:hover {
    background: linear-gradient(to right, var(--secondary-color), var(--primary-color));
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

.contact-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.contact-info a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-color);
    transition: color 0.3s;
    text-decoration: none;
}

.contact-info a:hover {
    color: var(--primary-color);
}

.contact-info svg {
    width: 1.25rem;
    height: 1.25rem;
}

/* Sosyal Medya İkonları */
.social-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.social-icons a {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    background-color: var(--light-bg);
    color: var(--text-color);
    transition: all 0.3s;
    text-decoration: none;
}

.social-icons a:hover {
    transform: translateY(-2px);
}

.social-icons svg {
    width: 1.25rem;
    height: 1.25rem;
}

/* Sosyal Medya Hover Renkleri */
.social-icons a.facebook:hover {
    background-color: #e3f2fd;
    color: #1877f2;
}

.social-icons a.instagram:hover {
    background-color: #fdf2f8;
    color: #e1306c;
}

.social-icons a.twitter:hover {
    background-color: #e3f2fd;
    color: #1da1f2;
}

.social-icons a.youtube:hover {
    background-color: #fee2e2;
    color: #ff0000;
}

/* Mobil Menü Butonu */
#mobile-menu-button {
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 50;
    padding: 0.5rem;
    border-radius: 0.5rem;
    background: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

#mobile-menu-button:hover {
    background-color: var(--light-bg);
}

#mobile-menu-button svg {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--text-color);
}

/* Sayfa Başlığı */
.page-header {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1566073771259-6a8506099945?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 4rem 2rem;
    margin-bottom: 2rem;
}

.page-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.page-description {
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Oda Kartları */
.room-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.room-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.room-card:hover {
    transform: translateY(-5px);
}

.room-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.room-content {
    padding: 1.5rem;
}

.room-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.room-price {
    font-size: 1.25rem;
    color: var(--primary-color);
    font-weight: bold;
    margin-bottom: 1rem;
}

.room-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.feature-tag {
    background: var(--light-bg);
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    color: var(--text-color);
}

.room-description {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.room-button {
    display: inline-block;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.room-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
/* Swiper styles */
.swiper-container {
    width: 100%;
    height: 100%;
  }

  .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
  }

  .swiper-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.4));
    z-index: 1;
  }

  .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .swiper-slide .slide-content {
    position: relative;
    z-index: 2;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  }

  /* Modern Navigation Buttons */
  .swiper-button-next,
  .swiper-button-prev {
    width: 45px !important;
    height: 45px !important;
    background: rgba(255, 255, 255, 0.15) !important;
    backdrop-filter: blur(8px) !important;
    border-radius: 50% !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    opacity: 0 !important;
    transform: scale(0.8) !important;
  }

  .swiper:hover .swiper-button-next,
  .swiper:hover .swiper-button-prev {
    opacity: 1 !important;
    transform: scale(1) !important;
  }

  .swiper-button-next:hover,
  .swiper-button-prev:hover {
    background: rgba(255, 255, 255, 0.25) !important;
    transform: scale(1.1) !important;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15) !important;
  }

  .swiper-button-next:after,
  .swiper-button-prev:after {
    font-size: 18px !important;
    color: white !important;
    font-weight: bold !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2) !important;
  }

  .swiper-button-next {
    right: 40px !important;
  }

  .swiper-button-prev {
    left: 40px !important;
  }

  /* Pagination Dots */
  .swiper-pagination-bullet {
    width: 8px !important;
    height: 8px !important;
    background: rgba(255, 255, 255, 0.4) !important;
    opacity: 1 !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    margin: 0 6px !important;
  }

  .swiper-pagination-bullet-active {
    background: white !important;
    transform: scale(1.3) !important;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5) !important;
  }

  .swiper-pagination {
    bottom: 30px !important;
  }

/* Rooms Slider Stilleri */
.rooms-swiper {
  padding: 0 60px 40px 60px;
  position: relative;
}

.rooms-swiper .swiper-slide {
  height: auto;
  padding: 0 10px;
}

.rooms-swiper .swiper-slide .bg-white {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.rooms-swiper .swiper-slide .p-6 {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.rooms-swiper .swiper-slide .flex.justify-between {
  margin-top: auto;
}

/* Rooms Slider Navigation Buttons */
.rooms-swiper-prev,
.rooms-swiper-next {
  width: 50px !important;
  height: 50px !important;
  background: white !important;
  border-radius: 50% !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
  color: #3b82f6 !important;
  transition: all 0.3s ease !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
}

.rooms-swiper-prev:hover,
.rooms-swiper-next:hover {
  background: #3b82f6 !important;
  color: white !important;
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.3) !important;
  transform: translateY(-50%) scale(1.1) !important;
}

.rooms-swiper-prev {
  left: 10px !important;
}

.rooms-swiper-next {
  right: 10px !important;
}

.rooms-swiper-prev::after,
.rooms-swiper-next::after {
  font-size: 20px !important;
  font-weight: bold !important;
}

/* Rooms Slider Pagination */
.rooms-swiper-pagination {
  bottom: 0 !important;
}

.rooms-swiper-pagination .swiper-pagination-bullet {
  width: 10px !important;
  height: 10px !important;
  background: #d1d5db !important;
  opacity: 1 !important;
  transition: all 0.3s ease !important;
}

.rooms-swiper-pagination .swiper-pagination-bullet-active {
  background: #3b82f6 !important;
  transform: scale(1.2) !important;
}

/* Responsive Ayarlar */
@media (max-width: 768px) {
  .rooms-swiper {
    padding: 0 40px 40px 40px;
  }
  
  .rooms-swiper-prev,
  .rooms-swiper-next {
    width: 40px !important;
    height: 40px !important;
  }
  
  .rooms-swiper-prev {
    left: 5px !important;
  }
  
  .rooms-swiper-next {
    right: 5px !important;
  }
}

@media (max-width: 480px) {
  .rooms-swiper {
    padding: 0 30px 40px 30px;
  }
  
  .rooms-swiper-prev,
  .rooms-swiper-next {
    width: 35px !important;
    height: 35px !important;
  }
  
  .rooms-swiper-prev::after,
  .rooms-swiper-next::after {
    font-size: 16px !important;
  }
}