:root{
  --bg-top: #3a7bd5;
  --bg-bottom: #00d2ff;
  --header-height: 70px;
  --accent: #0b67b2;
  --muted: #555;
  --header-height: 100px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: linear-gradient(to bottom, var(--bg-top), var(--bg-bottom));
  padding-top: var(--header-height);
  color: #111;
  padding-top: var(--header-height);
}

/* NAVBAR */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  backdrop-filter: blur(6px);
  background: rgba(255,255,255,0.12);
  border-bottom: 1px solid rgba(255,255,255,0.2);
  z-index: 999;
  height: var(--header-height);
}

.brand {
  color: white;
  font-weight: bold;
  text-decoration: none;
}

nav a {
  color: white;
  text-decoration: none;
  margin-left: 14px;
  padding: 8px 12px;
  border-radius: 6px;
  font-weight: bold;
}

nav a:hover {
  background: rgba(255,255,255,0.2);
}

nav a.active {
  background: white;
  color: var(--accent);
}

/* SECTIONS */
section {
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.card {
  background: rgba(255,255,255,0.9);
  padding: 28px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
  text-align: center;
  max-width: 800px;
  width: 100%;
}

p {
  color: var(--muted);
}

/* Yeni Sayfa butonu farklı renkli yapmak için: */
#mainNav a[href="yeni.html"] {
    background: #ffcc00;
    color: #000;
}

#mainNav a[href="yeni.html"]:hover {
    background: #e6b800;
}

.yeter {
    margin-right: 24px;  /* isteğe bağlı sağ boşluk */
}
-------


.container {
  max-width: 1000px;
  margin: auto;
  padding: 10px;
}

.room {
  position: relative;
  display: inline-block;
  margin: 20px;
}

.room-image {
  width: 300px;
  border-radius: 10px;
}

.hotspot {
  position: absolute;
  background: #0077cc;
  color: white;
  border: none;
  border-radius: 8px;
  padding: 4px 8px;
  cursor: pointer;
}

.hotspot:hover {
  background: #005fa3;
}

.score-panel {
  margin-top: 20px;
}

.modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal.hidden { display: none; }

.modal-card {
  background: white;
  padding: 20px;
  border-radius: 10px;
  width: 300px;
}

.choice-btn {
  display: block;
  width: 100%;
  margin-top: 8px;
  padding: 8px;
  border: none;
  border-radius: 5px;
  background: #0077cc;
  color: white;
  cursor: pointer;
}

.navbarrr .logo {
    font-size: 22px;
    font-weight: bold;
    margin-left: 40px;   /* ← LOGO soldan boşluk aldı */
}

.logoo{
  position: absolute;
  top: 0;
  left: 0;
}