/* ============================================
   Kütahya Otel - Modern SEO Uyumlu Tema
   ============================================ */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #b8860b;
  --primary-dark: #8b6508;
  --secondary: #1a3a5c;
  --accent: #c9a227;
  --light: #faf7f0;
  --dark: #222;
  --gray: #666;
  --light-gray: #f5f5f5;
  --white: #fff;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-hover: 0 8px 30px rgba(0,0,0,0.15);
  --transition: all 0.3s ease;
  --radius: 12px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.7;
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: var(--primary);
  transition: var(--transition);
}

a:hover {
  color: var(--primary-dark);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ============ HEADER ============ */
.header {
  background: var(--white);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--secondary);
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
}

.logo span {
  color: var(--primary);
}

.nav ul {
  display: flex;
  list-style: none;
  gap: 8px;
  flex-wrap: wrap;
}

.nav a {
  color: var(--dark);
  padding: 8px 14px;
  font-weight: 500;
  border-radius: 6px;
  font-size: 0.95rem;
}

.nav a:hover, .nav a.active {
  background: var(--primary);
  color: var(--white);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: var(--secondary);
  cursor: pointer;
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, rgba(26,58,92,0.85), rgba(184,134,11,0.75)),
              url('https://images.unsplash.com/photo-1566073771259-6a8506099945?w=1600') center/cover;
  color: var(--white);
  padding: 80px 20px;
}

.hero-content {
  max-width: 900px;
}

.hero h1 {
  font-size: 3.2rem;
  font-weight: 800;
  margin-bottom: 20px;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
  line-height: 1.2;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.95;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--primary-dark);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--secondary);
}

/* ============ SECTION ============ */
.section {
  padding: 80px 0;
}

.section-alt {
  background: var(--light);
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 2.4rem;
  color: var(--secondary);
  margin-bottom: 10px;
  font-weight: 700;
}

.section-title p {
  color: var(--gray);
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

.section-title .line {
  width: 80px;
  height: 4px;
  background: var(--primary);
  margin: 15px auto;
  border-radius: 2px;
}

/* ============ BREADCRUMB ============ */
.breadcrumb {
  background: var(--light-gray);
  padding: 15px 0;
  font-size: 0.9rem;
}

.breadcrumb ol {
  display: flex;
  list-style: none;
  flex-wrap: wrap;
  gap: 8px;
}

.breadcrumb li + li::before {
  content: '›';
  margin-right: 8px;
  color: var(--gray);
}

.breadcrumb a {
  color: var(--gray);
}

.breadcrumb .current {
  color: var(--primary);
  font-weight: 600;
}

/* ============ CARDS / OTEL LIST ============ */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.card-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.card:hover .card-img img {
  transform: scale(1.1);
}

.card-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--primary);
  color: var(--white);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.card-body {
  padding: 25px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-body h3 {
  font-size: 1.3rem;
  color: var(--secondary);
  margin-bottom: 10px;
}

.card-body p {
  color: var(--gray);
  margin-bottom: 15px;
  flex: 1;
}

.card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 15px;
  border-top: 1px solid var(--light-gray);
}

.price {
  color: var(--primary);
  font-weight: 700;
  font-size: 1.2rem;
}

.rating {
  color: var(--accent);
  font-size: 0.9rem;
}

/* ============ FEATURES ============ */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.feature {
  text-align: center;
  padding: 30px 20px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.feature:hover {
  transform: translateY(-5px);
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 20px;
}

.feature h3 {
  color: var(--secondary);
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.feature p {
  color: var(--gray);
  font-size: 0.95rem;
}

/* ============ CONTENT ============ */
.content {
  max-width: 900px;
  margin: 0 auto;
}

.content h2, .content h3 {
  color: var(--secondary);
  margin: 30px 0 15px;
}

.content h2 {
  font-size: 1.9rem;
  border-left: 5px solid var(--primary);
  padding-left: 15px;
}

.content h3 {
  font-size: 1.4rem;
}

.content p {
  margin-bottom: 18px;
  color: #333;
  font-size: 1.05rem;
}

.content strong, .content b {
  color: var(--secondary);
  background: rgba(184,134,11,0.1);
  padding: 2px 6px;
  border-radius: 3px;
}

.content ul, .content ol {
  margin: 15px 0 20px 30px;
}

.content li {
  margin-bottom: 8px;
}

/* ============ CTA BOX ============ */
.cta-box {
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  color: var(--white);
  padding: 60px 40px;
  border-radius: var(--radius);
  text-align: center;
  margin: 50px 0;
}

.cta-box h2 {
  color: var(--white);
  font-size: 2rem;
  margin-bottom: 15px;
}

.cta-box p {
  margin-bottom: 25px;
  opacity: 0.95;
}

/* ============ RELATED LINKS ============ */
.related-links {
  background: var(--light);
  padding: 40px;
  border-radius: var(--radius);
  margin: 40px 0;
}

.related-links h3 {
  color: var(--secondary);
  margin-bottom: 20px;
}

.related-links ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 10px;
  list-style: none;
}

.related-links li a {
  display: block;
  padding: 10px 15px;
  background: var(--white);
  border-radius: 8px;
  color: var(--dark);
  border-left: 3px solid var(--primary);
  transition: var(--transition);
}

.related-links li a:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateX(5px);
}

/* ============ FAQ ============ */
.faq-item {
  background: var(--white);
  margin-bottom: 15px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.faq-question {
  padding: 20px 25px;
  font-weight: 600;
  color: var(--secondary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.05rem;
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--primary);
  transition: var(--transition);
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 25px;
  color: var(--gray);
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 25px 20px;
}

/* ============ CONTACT ============ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-info {
  background: var(--light);
  padding: 30px;
  border-radius: var(--radius);
}

.contact-info h3 {
  color: var(--secondary);
  margin-bottom: 20px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.contact-item-icon {
  width: 45px;
  height: 45px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--secondary);
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
}

/* ============ FOOTER ============ */
.footer {
  background: var(--secondary);
  color: #ccc;
  padding: 60px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h4 {
  color: var(--white);
  margin-bottom: 20px;
  font-size: 1.1rem;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--primary);
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 10px;
}

.footer-col a {
  color: #ccc;
  font-size: 0.95rem;
}

.footer-col a:hover {
  color: var(--primary);
  padding-left: 5px;
}

.footer-col p {
  font-size: 0.95rem;
  line-height: 1.8;
}

.footer-bottom {
  text-align: center;
  padding-top: 25px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.9rem;
}

.footer-bottom a {
  color: var(--primary);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 992px) {
  .hero h1 { font-size: 2.4rem; }
  .hero p { font-size: 1.05rem; }
  .section-title h2 { font-size: 2rem; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .menu-toggle { display: block; }

  .nav {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: var(--shadow);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }

  .nav.active {
    max-height: 600px;
  }

  .nav ul {
    flex-direction: column;
    padding: 20px;
    gap: 5px;
  }

  .nav a {
    display: block;
    padding: 12px 15px;
  }

  .hero { min-height: 450px; padding: 60px 20px; }
  .hero h1 { font-size: 1.9rem; }
  .section { padding: 60px 0; }
  .section-title h2 { font-size: 1.6rem; }
  .cta-box { padding: 40px 25px; }
  .cta-box h2 { font-size: 1.5rem; }
  .content h2 { font-size: 1.5rem; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.6rem; }
  .btn { padding: 12px 24px; font-size: 0.9rem; }
  .hero-buttons { flex-direction: column; }
  .logo { font-size: 1.3rem; }
}

/* ============ UTILITIES ============ */
.text-center { text-align: center; }
.mt-20 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }

/* Skip link for accessibility */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--primary);
  color: var(--white);
  padding: 8px 16px;
  z-index: 10000;
}

.skip-link:focus {
  top: 0;
}

/* ============ MOBILE CONTACT BAR ============ */
.mobile-contact-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
  z-index: 999;
  padding: 8px;
  gap: 8px;
}

.mobile-contact-bar a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 10px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  color: #fff;
  transition: var(--transition);
}

.mobile-contact-bar .mc-phone {
  background: linear-gradient(135deg, #b8860b, #c9a227);
}

.mobile-contact-bar .mc-wa {
  background: linear-gradient(135deg, #25d366, #128c7e);
}

.mobile-contact-bar .mc-mail {
  background: linear-gradient(135deg, #1a3a5c, #2c5282);
}

.mobile-contact-bar a:hover {
  opacity: 0.92;
  transform: translateY(-2px);
  color: #fff;
}

@media (max-width: 768px) {
  .mobile-contact-bar {
    display: flex;
  }
  body {
    padding-bottom: 70px;
  }
}

/* Desktop floating contact (right bottom) */
.floating-contact {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 998;
}

.floating-contact a {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.4rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  transition: var(--transition);
}

.floating-contact .fc-wa { background: #25d366; }
.floating-contact .fc-phone { background: var(--primary); }

.floating-contact a:hover {
  transform: scale(1.1);
  color: #fff;
}

@media (max-width: 768px) {
  .floating-contact { display: none; }
}

/* Footer Menu - additional organized nav */
.footer-nav {
  background: #122538;
  padding: 15px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5px 20px;
  list-style: none;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-nav a {
  color: #ccc;
  font-size: 0.85rem;
  padding: 5px 8px;
  border-radius: 4px;
  transition: var(--transition);
}

.footer-nav a:hover {
  color: var(--primary);
  background: rgba(184,134,11,0.1);
}
