/* Genel ayarlar */
body {
  margin: 0;
  padding: 0;
  font-family: 'Lato', Arial, sans-serif;
  background: #fafdff;
  color: #234;
}

h1, h2, h3 {
  font-family: 'Cinzel', serif;
  font-weight: 700;
}
.rooms-section h2,
.room h3,
.dining-section h2 {
  font-family: 'Cinzel', serif;
  font-weight: 700;
}

header {
  background: #f9efdf;
  color: #234;
  padding: 0;
  box-shadow: 0 2px 8px rgba(79,195,247,0.05);
  position: relative;
  z-index: 10;
}
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  height: 70px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-img {
  height: 52px;
  width: auto;
  display: block;
}
.logo-text {
  font-size: 1.5rem;
  font-weight: bold;
  color: #1A4D8F;
  letter-spacing: 1.5px;
  font-family: 'Segoe UI', Arial, sans-serif;
}

/* Dil Değiştirme Butonları */
.language-selector {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 20px;
}

.language-btn {
  background: transparent;
  border: 2px solid #1A4D8F;
  color: #1A4D8F;
  padding: 6px 12px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.language-btn:hover {
  background: #1A4D8F;
  color: white;
}

.language-btn.active {
  background: #1A4D8F;
  color: white;
}

.nav-container {
  display: flex;
  align-items: center;
  gap: 20px;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
}
nav ul li a {
  color: #234;
  text-decoration: none;
  font-size: 1.08rem;
  transition: color 0.2s;
  padding: 6px 12px;
  border-radius: 6px;
  font-weight: 600;
  background: transparent;
  font-family: 'Lato', Arial, sans-serif;
  letter-spacing: 0.5px;
}
nav ul li a:hover {
  background: transparent;
  color: #FF6F1A;
}

main {
  max-width: none;
  margin: 0;
  padding: 0;
}
.hero {
  background: #fff;
  border-radius: 16px;
  padding: 48px 20px 40px 20px;
  text-align: center;
  margin-bottom: 32px;
  box-shadow: 0 2px 16px rgba(79,195,247,0.08);
}
.hero-image {
  width: 100%;
  max-width: 600px;
  height: 260px;
  background: linear-gradient(135deg, #e3f2fd 60%, #b3e5fc 100%);
  margin: 25px auto 0 auto;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1A4D8F;
  font-size: 1.2rem;
  font-weight: 600;
}

/* Galeri Stilleri */
.gallery-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
  max-width: 100%;
}

.gallery-item {
  position: relative;
  cursor: pointer;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  aspect-ratio: 4/3;
}

.gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}

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

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

/* Modal Stilleri */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.9);
  justify-content: center;
  align-items: center;
}

.modal-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
}

.close {
  position: absolute;
  top: -40px;
  right: 0;
  color: #f1f1f1;
  font-size: 35px;
  font-weight: bold;
  cursor: pointer;
  z-index: 1001;
  background: none;
  border: none;
  padding: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.close:hover {
  color: #bbb;
}

.modal-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.9);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  color: #1A4D8F;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-arrow:hover {
  background: #1A4D8F;
  color: white;
  transform: translateY(-50%) scale(1.1);
}

.modal-arrow.left {
  left: -70px;
}

.modal-arrow.right {
  right: -70px;
}

/* Responsive Galeri */
@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
  }
  
  .modal-arrow {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
  
  .modal-arrow.left {
    left: -50px;
  }
  
  .modal-arrow.right {
    right: -50px;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 10px;
  }
  
  .modal-arrow {
    width: 35px;
    height: 35px;
    font-size: 18px;
  }
  
  .modal-arrow.left {
    left: -40px;
  }
  
  .modal-arrow.right {
    right: -40px;
  }
}

.intro {
  margin-top: 30px;
  background: #f5fbff;
  border-radius: 12px;
  padding: 28px 20px;
  box-shadow: 0 2px 8px rgba(79,195,247,0.04);
}

.rooms-section {
  background: #fff;
  padding: 64px 0 48px 0;
  text-align: center;
}
.rooms-section h2 {
  font-size: 2.2rem;
  color: #1A4D8F;
  margin-bottom: 36px;
  font-family: 'Cinzel', serif;
  font-weight: 700;
}
.rooms-list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}
.room {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 24px rgba(30,60,90,0.08);
  padding: 0 0 24px 0;
  width: 320px;
  text-align: center;
  transition: box-shadow 0.2s;
}
.room:hover {
  box-shadow: 0 8px 32px rgba(30,60,90,0.13);
}
.room-image {
  width: 100%;
  height: 180px;
  background: #e3f2fd;
  border-radius: 14px 14px 0 0;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #90caf9;
  font-size: 1.1rem;
  overflow: hidden;
  position: relative;
}
.room-slider {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.room-slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.3s;
  border-radius: 14px 14px 0 0;
}
.room-slide.active {
  opacity: 1;
}
.room-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.8);
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  font-size: 1.2rem;
  color: #1A4D8F;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}
.room-arrow:hover {
  background: #FF6F1A;
  color: #fff;
}
.room-arrow.left {
  left: 8px;
}
.room-arrow.right {
  right: 8px;
}
.room-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px 14px 0 0;
}
.room h3 {
  font-size: 1.25rem;
  color: #1A4D8F;
  margin-bottom: 8px;
  font-family: 'Cinzel', serif;
  font-weight: 700;
}
.room p {
  color: #444;
  font-size: 1rem;
  font-family: 'Lato', Arial, sans-serif;
  font-weight: 400;
}

.dining-section {
  background: #fafbfc;
  padding: 64px 0 72px 0;
  text-align: center;
}
.dining-bg {
  max-width: 1100px;
  margin: 0 auto;
}
.dining-section h2 {
  font-size: 2.2rem;
  color: #1A4D8F;
  margin-bottom: 18px;
  font-family: 'Cinzel', serif;
  font-weight: 700;
}
.dining-section p {
  color: #333;
  font-size: 1.1rem;
  margin-bottom: 32px;
  font-family: 'Lato', Arial, sans-serif;
  font-weight: 400;
}
.dining-slider-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 18px;
}
.dining-arrow {
  background: #fff;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 1.7rem;
  color: #1A4D8F;
  box-shadow: 0 2px 8px rgba(30,60,90,0.10);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dining-arrow:hover {
  background: #FF6F1A;
  color: #fff;
}
.dining-slider {
  width: 220px;
  height: 500px;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}
.dining-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  object-fit: cover;
}

.dining-slide.active {
  opacity: 1;
}

.services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}
.service {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(79,195,247,0.07);
  padding: 22px 18px;
  width: 270px;
  text-align: center;
}

.contact-info {
  background: #f5fbff;
  border-radius: 12px;
  padding: 18px 20px;
  margin-bottom: 25px;
  box-shadow: 0 2px 8px rgba(79,195,247,0.03);
}
.contact-form, .reservation-form {
  background: #fff;
  border-radius: 12px;
  padding: 22px 20px;
  box-shadow: 0 2px 8px rgba(79,195,247,0.03);
  max-width: 400px;
  margin: 0 auto;
}
.contact-form form, .reservation-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
input, textarea, button {
  font-family: inherit;
  font-size: 1rem;
}
input, textarea {
  padding: 10px;
  border: 1px solid #b3e5fc;
  border-radius: 7px;
  background: #fafdff;
  resize: none;
  transition: border 0.2s;
}
input:focus, textarea:focus {
  border: 1.5px solid #4FC3F7;
  outline: none;
}
button {
  background: linear-gradient(90deg, #1A4D8F 60%, #FF6F1A 100%);
  color: #fff;
  border: none;
  border-radius: 7px;
  padding: 12px 0;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.2s;
  box-shadow: 0 2px 8px rgba(79,195,247,0.08);
}
button:hover {
  background: linear-gradient(90deg, #FF6F1A 60%, #1A4D8F 100%);
}

footer {
  background: #1A4D8F;
  color: white;
  text-align: center;
  padding: 20px;
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-text {
  margin: 0;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 15px;
}

.instagram-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  border-radius: 50%;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 20px;
}

.instagram-link:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 15px rgba(220, 39, 67, 0.4);
}

.instagram-link svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.background-slider {
  position: relative;
  min-height: 100vh;
  width: 100vw;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #e3f2fd;
  transition: background-image 1s cubic-bezier(.4,0,.2,1);
}
.background-slider .hero,
.background-slider .intro {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  background: none;
  box-shadow: none;
  border-radius: 0;
  margin: 0;
  padding: 0 16px;
  width: 100vw;
  text-align: center;
}
.background-slider .hero h1 {
  font-size: 3.2rem;
  color: #fff;
  font-weight: bold;
  margin-bottom: 18px;
  text-shadow: 0 4px 24px rgba(0,0,0,0.35);
}
.background-slider .hero p {
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 32px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.25);
}
.background-slider .hero-image {
  display: none;
}
.background-slider .intro {
  position: static;
  transform: none;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0,0,0,0.25);
  font-size: 1.1rem;
  margin-top: 32px;
}
.dining-section h2,
.dining-section p {
  margin-left: auto;
  margin-right: auto;
  max-width: 900px;
}
.dining-bg {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.dining-slider-container {
  margin-top: 18px;
  margin-bottom: 0;
}
/* Odalarımız Sayfası Stilleri */
.room-section {
  background: #fff;
  margin: 40px 0;
  padding: 40px 20px;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(30,60,90,0.08);
}
.room-section h2 {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  color: #1A4D8F;
  font-size: 2.2rem;
  margin-bottom: 12px;
  text-align: center;
}
.room-section p {
  font-family: 'Lato', Arial, sans-serif;
  color: #333;
  font-size: 1.1rem;
  margin-bottom: 32px;
  text-align: center;
}
.room-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
}
.room-thumbnail {
  cursor: pointer;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(30,60,90,0.1);
  transition: transform 0.2s, box-shadow 0.2s;
}
.room-thumbnail:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(30,60,90,0.15);
}
.room-thumbnail img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  display: block;
}
.room-description {
  font-family: 'Lato', Arial, sans-serif;
  color: #333;
  font-size: 1.2rem;
  margin-bottom: 40px;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  .room-gallery {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 12px;
  }
  .room-thumbnail img {
    height: 120px;
  }
  .modal-content {
    max-width: 95%;
    max-height: 80%;
  }
  .modal-arrow {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
}
@media (max-width: 800px) {
  nav ul {
    gap: 12px;
  }
  .rooms-list, .gallery-list, .services-list {
    flex-direction: column;
    align-items: center;
  }
  main {
    padding: 0 8px;
  }
  .background-slider .hero h1 {
    font-size: 2rem;
  }
  .background-slider .hero p {
    font-size: 1rem;
  }
}
@media (max-width: 900px) {
  .rooms-list {
    flex-direction: column;
    gap: 18px;
  }
  .dining-slider {
    width: 95vw;
    height: 220px;
  }
} 
/* Hakkımızda Sayfası Stilleri */
.about-hero {
  background: linear-gradient(135deg, #f9efdf 0%, #e8d5c0 100%);
  color: #234;
  text-align: center;
  padding: 80px 20px 60px 20px;
  margin-bottom: 40px;
}
.about-hero h1 {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 3.2rem;
  margin-bottom: 16px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.1);
  color: #1A4D8F;
}
.about-subtitle {
  font-family: 'Lato', Arial, sans-serif;
  font-size: 1.3rem;
  font-weight: 400;
  opacity: 0.8;
  margin: 0;
  color: #234;
}

.about-content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}
.about-section {
  background: #fff;
  margin: 40px 0;
  padding: 40px 30px;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(30,60,90,0.08);
}
.about-section h2 {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  color: #1A4D8F;
  font-size: 2.2rem;
  margin-bottom: 24px;
  text-align: center;
}
.about-section p {
  font-family: 'Lato', Arial, sans-serif;
  color: #333;
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 20px;
  text-align: justify;
}
.about-section p:last-child {
  margin-bottom: 0;
}
.about-section strong {
  color: #1A4D8F;
  font-weight: 700;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-top: 32px;
}
.value-item {
  background: #f8f9fa;
  padding: 24px 20px;
  border-radius: 12px;
  text-align: center;
  border-left: 4px solid #FF6F1A;
  transition: transform 0.2s, box-shadow 0.2s;
}
.value-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(30,60,90,0.12);
}
.value-item h3 {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  color: #1A4D8F;
  font-size: 1.4rem;
  margin-bottom: 12px;
}
.value-item p {
  font-family: 'Lato', Arial, sans-serif;
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
  text-align: center;
}

@media (max-width: 768px) {
  .about-hero h1 {
    font-size: 2.4rem;
  }
  .about-subtitle {
    font-size: 1.1rem;
  }
  .about-section {
    padding: 30px 20px;
    margin: 30px 0;
  }
  .about-section h2 {
    font-size: 1.8rem;
  }
  .about-section p {
    font-size: 1rem;
  }
  .values-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
} 
/* Responsive Footer */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  
  .footer-text {
    font-size: 0.9rem;
  }
  
  .social-links {
    justify-content: center;
  }
  
  .instagram-link {
    width: 35px;
    height: 35px;
    font-size: 18px;
  }
  
  .instagram-link svg {
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 480px) {
  .footer-content {
    padding: 0 15px;
    gap: 12px;
  }
  
  .footer-text {
    font-size: 0.85rem;
    line-height: 1.4;
  }
  
  .instagram-link {
    width: 32px;
    height: 32px;
    font-size: 16px;
  }
  
  .instagram-link svg {
    width: 16px;
    height: 16px;
  }
}

/* Responsive Navigation */
@media (max-width: 768px) {
  .nav-container {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }
  
  .language-selector {
    margin-left: 0;
    align-self: flex-end;
  }
  
  nav ul {
    flex-wrap: wrap;
    gap: 15px;
  }
  
  nav ul li a {
    font-size: 1rem;
    padding: 8px 10px;
  }
}

@media (max-width: 480px) {
  nav {
    padding: 0 15px;
    height: auto;
    min-height: 70px;
  }
  
  .nav-container {
    gap: 10px;
  }
  
  nav ul {
    gap: 10px;
  }
  
  nav ul li a {
    font-size: 0.9rem;
    padding: 6px 8px;
  }
  
  .language-btn {
    padding: 4px 8px;
    font-size: 0.8rem;
  }
}

/* Responsive Gallery */
@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
  }
  
  .modal-arrow {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
  
  .modal-arrow.left {
    left: -50px;
  }
  
  .modal-arrow.right {
    right: -50px;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 10px;
  }
  
  .modal-arrow {
    width: 35px;
    height: 35px;
    font-size: 18px;
  }
  
  .modal-arrow.left {
    left: -40px;
  }
  
  .modal-arrow.right {
    right: -40px;
  }
}

/* Responsive Rooms Section */
@media (max-width: 768px) {
  .rooms-list {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }
  
  .room {
    margin-bottom: 20px;
  }
  
  .room-image {
    height: 200px;
  }
}

@media (max-width: 480px) {
  .rooms-list {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .room-image {
    height: 180px;
  }
  
  .room h3 {
    font-size: 1.2rem;
  }
  
  .room p {
    font-size: 0.9rem;
  }
}

/* Responsive Dining Section */
@media (max-width: 768px) {
  .dining-slider {
    width: 220px;
    max-width: 220px;
    height: 400px;
  }
  
  .dining-section p {
    font-size: 0.95rem;
    line-height: 1.6;
  }
  
  .dining-arrow {
    width: 45px;
    height: 45px;
    font-size: 22px;
  }
}

@media (max-width: 480px) {
  .dining-slider {
    width: 220px;
    height: 350px;
    max-width: 220px;
  }
  
  .dining-section h2 {
    font-size: 1.8rem;
  }
  
  .dining-section p {
    font-size: 0.9rem;
  }
  
  .dining-arrow {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
}

@media (max-width: 360px) {
  .dining-slider {
    width: 220px;
    height: 320px;
    max-width: 220px;
  }
  
  .dining-arrow {
    width: 35px;
    height: 35px;
    font-size: 18px;
  }
}

/* Responsive About Page */
@media (max-width: 768px) {
  .about-hero h1 {
    font-size: 2.5rem;
  }
  
  .about-subtitle {
    font-size: 1.1rem;
  }
  
  .about-section p {
    font-size: 0.95rem;
    line-height: 1.7;
  }
}

@media (max-width: 480px) {
  .about-hero h1 {
    font-size: 2rem;
  }
  
  .about-subtitle {
    font-size: 1rem;
  }
  
  .about-section p {
    font-size: 0.9rem;
  }
}

/* Responsive Contact & Reservation Forms */
@media (max-width: 768px) {
  .contact-form, .reservation-form {
    max-width: 100%;
    padding: 20px;
  }
  
  input, textarea, select {
    font-size: 16px; /* Prevents zoom on iOS */
  }
}

@media (max-width: 480px) {
  .contact-form, .reservation-form {
    padding: 15px;
  }
  
  .contact-info, .reservation-form h2 {
    font-size: 1.3rem;
  }
}

/* Responsive Hero Section */
@media (max-width: 768px) {
  .background-slider .hero h1 {
    font-size: 2.5rem;
  }
  
  .background-slider .hero p {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .background-slider .hero h1 {
    font-size: 2rem;
  }
  
  .background-slider .hero p {
    font-size: 1rem;
  }
} 

/* Rezervasyon butonu */
.reserve-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 16px;
  background: linear-gradient(135deg, #1A4D8F 0%, #FF6F1A 100%);
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 700;
  letter-spacing: 0.3px;
  box-shadow: 0 6px 16px rgba(26,77,143,0.25);
  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
}

.reserve-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(26,77,143,0.3);
  opacity: 0.95;
}

.rooms-section .room {
  text-align: center;
} 