/* === GENERAL RESET === */
body {
  margin: 0;
  padding: 0;
}

/* === CAROUSEL SETTINGS === */
.carousel-item img {
  width: 100%;
  height: auto;
  max-height: 100vh;
  object-fit: cover;
}

/* === HEADER OVERLAY: HAMBURGER, TITLE, CONTACT === */
.navbar-toggler {
  background-color: white;
  border: none;
  padding: 0.4rem;
  border-radius: 0.375rem;
  z-index: 1001;
}

.navbar-toggler-icon {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  content: "";
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.7%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
}

.header-overlay {
  background: transparent;
  z-index: 1000;
}

/* === HOTEL LOGO + TITLE + SUBTITLE === */
.hotel-logo {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
}
.hotel-title {
  font-family: 'Georgia', serif;
  font-size: 1.8rem;
  font-weight: bold;
  color: white;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.7);
}

.hotel-subtitle {
  font-size: 1rem;
  color: white;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.6);
}

/* === CONTACT INFO IN HEADER === */
.contact-label {
  color: white;
  font-weight: bold;
  font-size: 0.9rem;
}

.contact-label:hover {
  text-decoration: underline;
}

.contact-phone {
  color: white;
  font-size: 0.9rem;
}

/* === NAVBAR DROPDOWN MENU === */
.navbar-nav.bg-white {
  background-color: rgba(255, 255, 255, 0.95);
  padding: 1rem;
  border-radius: 8px;
  margin-top: 0.5rem;
  max-width: 200px;
  min-width: 160px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

/* Show dark navbar menu background when expanded (for subpages) */
body.subpage .navbar-collapse.show {
  background-color: #343a40;
  color: white;
  border-radius: 8px;
  padding: 1rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

body.subpage .navbar-collapse.show .nav-link {
  color: white;
}

body.subpage .navbar-collapse.show .nav-link:hover {
  text-decoration: underline;
}

/* === CAROUSEL FOOTER OVERLAY === */
.footer-overlay {
  background-color: rgba(0, 0, 0, 0.6);
  color: white;
  font-size: 0.9rem;
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
  margin-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-overlay a {
  color: white;
  margin-left: 0.5rem;
  margin-right: 0.5rem;
  text-decoration: none;
  font-size: 1.1rem;
}

.footer-overlay a:hover {
  color: #ddd;
}

@media (max-width: 768px) {
  .footer-overlay {
    flex-direction: column;
    text-align: center;
  }

  .footer-overlay > div:first-child {
    margin-bottom: 0.5rem;
  }
}

/* === WELCOME SECTION (INDEX PAGE) === */
.welcome-section {
  background-color: white;
  width: 100%;
  min-height: 350px;
}

.welcome-left {
  width: 40%;
}

.welcome-right {
  width: 60%;
}

.welcome-left h5 {
  font-size: 1.1rem;
  color: #444;
}

.welcome-message {
  font-family: 'Georgia', serif;
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.3;
  color: #222;
}

.welcome-message .spacer {
  line-height: 2.5rem;
  display: block;
  content: "";
}

.portrait-img {
  width: 100%;
  max-width: 250px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

.portrait-img-top {
  margin-top: 0;
}

.portrait-img-bottom {
  margin-top: 4rem;
}

/* === FOOTER === */
footer {
  background-color: #222;
  color: #ccc;
  text-align: center;
  padding: 1rem 0;
  font-size: 0.85rem;
}

/* === OPTIONAL UTILITIES === */
.mt-1rem {
  margin-top: 1rem;
}

/* === ABOUT US PAGE CUSTOM STYLES === */
.about-row {
  margin-bottom: 4rem;
}

.about-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.about-row p {
  text-align: justify;
  margin-right: 1rem;
}

.about-title {
  text-align: left;
  font-size: 2rem;
  font-weight: bold;
  color: #007bff;
  padding-top: 3rem;
  margin-bottom: 2rem;
}

/* === WELCOME PART FOR MEDIA === */
@media (max-width: 767.98px) {
  .welcome-section {
    flex-direction: column !important;
  }

  .welcome-left,
  .welcome-right {
    width: 100%;
  }

  .welcome-left {
    order: 1;
  }

  .welcome-right {
    order: 2;
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
  }

  .welcome-right .portrait-img {
    margin: 1rem;
  }
}

/* === CAROUSEL OVERLAY MOBILE === */
@media (max-width: 768px) {
  .carousel-overlay {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }

  .carousel-overlay > div:first-child {
    margin-bottom: 0.4rem;
  }

  .carousel-overlay .clock-weather {
    margin-bottom: 0.3rem;
  }

  .carousel-overlay a {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }
}
/* === CAROUSEL SLIDE TEXT RESPONSIVE === */
@media (max-width: 768px) {
  .slide-heading {
    font-size: 1.3rem !important;
  }

  .slide-subtext {
    font-size: 1rem !important;
  }
}
/* === MOBILE HEADER TITLE & LOGO ADJUSTMENT === */
@media (max-width: 768px) {
  .hotel-title {
    font-size: 1.2rem !important;
  }

  .hotel-subtitle {
    font-size: 0.9rem !important;
  }

  .hotel-logo {
    width: 30px !important;
    height: 30px !important;
  }
}
@media (max-width: 576px) {
  .footer-overlay .clock-weather {
    font-size: 0.75rem; /* Yazı boyutunu küçült */
  }

  .footer-overlay .clock-weather i {
    margin-left: 0.4rem !important;
    margin-right: 0.4rem !important;
  }

  .footer-overlay .clock-weather span {
    margin-right: 0.3rem;
  }
}
/* Custom margin for one image, removed on mobile */
.img-shift-left {
  margin-left: 2rem;
}

@media (max-width: 768px) {
  .img-shift-left {
    margin-left: 0 !important;
  }
}

/* Testimonial Section */
.testimonial-section {
  padding: 3rem 0;
}

.testimonial-section .section-title {
  font-size: 2.1rem;
  font-family: 'Georgia', serif;
  color: var(--dark);
  margin-bottom: 1.5rem;
}

.testimonial-section .carousel-inner {
  background-color: #e0f7fa; /* light sky blue */
  border-radius: 8px;
  padding: 1rem 1.5rem;
}

.testimonial-section .card {
  max-width: 600px;
  margin: 0 auto;
}

.testimonial-section .carousel-control-prev-icon,
.testimonial-section .carousel-control-next-icon {
  filter: invert(1); /* white arrows on light bg */
}
