/* Animated reservation button */
#rezervare-btn {
  position: fixed;
  bottom: 32px;
  right: 32px;
  background: #263238;
  color: #fff;
  font-family: 'Arhaic Romanesc', Arial, sans-serif;
  font-size: 1.2em;
  border-radius: 50px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.18);
  padding: 0.7em 2em;
  min-width: 60px;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(.25,.8,.25,1);
  z-index: 1002;
  cursor: pointer;
  opacity: 0.95;
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
}
#rezervare-btn:hover {
  font-size: 1.5em;
  padding: 1em 3em;
  min-width: 120px;
  min-height: 70px;
  background: #37474f;
  opacity: 1;
  box-shadow: 0 8px 32px rgba(0,0,0,0.22);
}
#gallery-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.85);
  z-index: 1000;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
#gallery-modal img {
  max-width: 80vw;
  max-height: 80vh;
  border-radius: 16px;
  box-shadow: 0 4px 24px #000;
}
#gallery-close, #gallery-prev, #gallery-next {
  font-size: 2em;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  z-index: 1001;
}
#room-gallery-sections {
  display: flex;
  flex-direction: column;
  gap: 2em;
}
.room-section {
  margin-bottom: 2em;
}
.room-section h2, .room-section h3 {
  margin-bottom: 0.5em;
  color: #37474f;
  font-size: 1.3em;
  text-align: center;
}
.room-gallery-scroll {
  display: flex;
  overflow-x: auto;
  gap: 0.5em;
  padding-bottom: 0.5em;
}
.room-gallery-scroll img {
  flex: 0 0 auto;
  transition: transform 0.2s;
}
.room-gallery-scroll img:hover {
  transform: scale(1.05);
}
body {
  font-family: 'Arhaic Romanesc', Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: linear-gradient(135deg, #e8f0f2 0%, #f5f5f5 100%);
  color: #222;
}
header {
  background: #263238;
  color: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 2em;
}
nav li {
  margin: 0;
}
nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.1em;
  padding: 0.8em 1.2em;
  border-radius: 4px;
  transition: background 0.2s;
}
nav a:hover {
  background: #37474f;
}
main {
  padding: 3em 1em 5em 1em;
  max-width: 900px;
  margin: 0 auto;
}
h1 {
  font-size: 2.2em;
  margin-bottom: 0.5em;
  color: #37474f;
}
p {
  font-size: 1.1em;
  line-height: 1.6;
}
form {
  background: #fff;
  padding: 2em;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  max-width: 400px;
  margin: 2em auto;
  display: flex;
  flex-direction: column;
  gap: 1em;
}
label {
  font-weight: 500;
  color: #263238;
}
input, button {
  padding: 0.7em;
  border-radius: 4px;
  border: 1px solid #b0bec5;
  font-size: 1em;
}
input:focus {
  outline: 2px solid #90caf9;
  border-color: #90caf9;
}
button {
  background: #263238;
  color: #fff;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
button:hover {
  background: #37474f;
}
#photo-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 2em;
}
#photo-gallery img {
  width: 220px;
  height: 160px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: transform 0.2s;
}
#photo-gallery img:hover {
  transform: scale(1.04);
}
/* Floating menu styles are handled inline for homepage. Remove footer styles. */
@media (max-width: 600px) {
  nav ul {
    flex-direction: column;
    gap: 0.5em;
  }
  main {
    padding: 1em 0.5em 5em 0.5em;
  }
  #photo-gallery img {
    width: 100px;
    height: 70px;
  }
  form {
    padding: 1em;
    max-width: 100%;
  }
}