@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400;500;600&display=swap');

* { margin: 0; padding: 0; box-sizing: border-box; }

#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 72px;
  background: linear-gradient(135deg, #0B6E6E 0%, #0D8585 50%, #0A7A7A 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.header-inner {
  width: 100%;
  max-width: 1200px;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo { display: flex; align-items: center; flex-shrink: 0; }
.logo img { height: 46px; width: auto; display: block; }

/* Sağ grup */
.header-right {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

/* Nav */
nav ul {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 2rem;
}
nav ul li a {
  font-family: 'Raleway', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.92);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s;
  position: relative;
  padding-bottom: 3px;
}
nav ul li a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: #5BA3C3;
  transform: scaleX(0);
  transition: transform 0.25s;
}
nav ul li a:hover { color: #fff; }
nav ul li a:hover::after { transform: scaleX(1); }

nav ul li a.reserve {
  background: #2A7FA5;
  color: #fff;
  padding: 0.5rem 1.25rem;
  border-radius: 4px;
  transition: background 0.2s, transform 0.2s;
}
nav ul li a.reserve::after { display: none; }
nav ul li a.reserve:hover { background: #1B5E7A; transform: translateY(-1px); }

/* Dil */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex-shrink: 0;
  border-left: 1px solid rgba(255,255,255,0.12);
  padding-left: 2rem;
}
.lang-switch a {
  font-family: 'Raleway', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.2s;
}
.lang-switch a:hover { color: #fff; }
.lang-switch a.active { color: #fff; }
.lang-switch span { color: rgba(255,255,255,0.2); font-size: 0.65rem; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: transform 0.3s, opacity 0.3s;
}

/* Mobil nav */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: linear-gradient(135deg, #0B6E6E 0%, #0D8585 50%, #0A7A7A 100%);
  z-index: 1000;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav ul { list-style: none; text-align: center; }
.mobile-nav ul li { margin-bottom: 1.5rem; }
.mobile-nav ul li a {
  font-family: 'Raleway', sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  text-decoration: none;
}
.mobile-nav ul li a.reserve { color: #5BA3C3; }
.mobile-nav .lang-switch {
  border-left: none;
  padding-left: 0;
  margin-top: 0.5rem;
}
.mobile-close {
  position: absolute;
  top: 1.5rem; right: 2rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.2s;
}
.mobile-close:hover { opacity: 1; }

/* Responsive */
@media (max-width: 960px) {
  .header-right { display: none; }
  .hamburger { display: flex; }
}


/* =============================================
   FOOTER
   ============================================= */

#site-footer {
  background: linear-gradient(135deg, #0B6E6E 0%, #0D8585 100%);
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 3.5rem 2rem 0;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* Sol: Brand */
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer-logo img {
  height: 48px;
  width: auto;
  display: block;
}
.footer-hotel-name {
  font-family: 'Raleway', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.85);
}

/* Orta: Nav */
.footer-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-start;
}
.footer-nav ul li a {
  font-family: 'Raleway', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-nav ul li a:hover { color: #fff; }

/* Sağ: İletişim */
.footer-contact h4 {
  font-family: 'Raleway', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 1.25rem;
}
.footer-contact ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.footer-contact ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  color: rgba(255,255,255,0.55);
  font-family: 'Raleway', sans-serif;
  font-size: 0.83rem;
  line-height: 1.5;
}
.footer-contact ul li svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: rgba(255,255,255,0.7);
}
.footer-contact ul li a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-contact ul li a:hover { color: #fff; }

/* Alt bar */
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.25rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-bottom p {
  font-family: 'Raleway', sans-serif;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.05em;
}
.footer-designed {
  margin-top: 0;
}
.footer-designed a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-family: 'Raleway', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  transition: color 0.2s;
}
.footer-designed a:hover {
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}