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

.center-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.info-section {
  background: white;
  padding: 30px;
  border-radius: 20px;
  max-width: 500px;
  width: 100%;
  text-align: left;
  box-shadow: 0 0 15px rgba(255, 182, 193, 0.3);
}

.info-section h2 {
  margin-top: 20px;
  font-size: 1.3rem;
}

.info-section p,
.info-section ul {
  margin-top: 10px;
  line-height: 1.5;
}

.rules-list {
  list-style: disc;
  padding-left: 20px;
  margin-top: 10px;
}

.discord-link {
  display: inline-block;
  margin-top: 10px;
  color: #d63384;
  text-decoration: underline;
}

.discord-link:hover {
  color: #a61e66;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background: #fff0f5;
  color: #333;
  line-height: 1.6;
  padding-top: 120px;
}

header {
  position: fixed;
  top: 0;
  width: 100%;
  background: #fff;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(255, 105, 180, 0.2);
}

.banner-image {
  width: 100%;
  max-height: 180px;
  object-fit: cover;
  border-bottom: 3px solid #ffc0cb;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background: #fff;
}

.nav-link {
  margin: 0 10px;
  text-decoration: none;
  color: #555;
  padding: 6px 12px;
  border-radius: 8px;
  transition: background 0.2s;
}

.nav-link:hover {
  background: #ffe4e1;
}

.nav-link.active {
  background: #ffb6c1;
  color: white;
  font-weight: bold;
}

.hamburger {
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
  color: #ff69b4;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: #fff0f5;
  padding: 10px;
}

.mobile-menu a {
  margin: 5px 0;
}

.mobile-menu.hidden {
  display: none;
}

main.content {
  padding: 30px 20px;
  max-width: 960px;
  margin: auto;
}

/* Home Page Blocks */
.info-section {
  background: rgba(255, 255, 255, 0.85);
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 0 10px rgba(255, 182, 193, 0.3);
}

.rules-list {
  list-style: square;
  padding-left: 20px;
  margin-top: 10px;
}

.discord-link {
  display: inline-block;
  margin-top: 10px;
  color: #ff69b4;
  text-decoration: underline;
}

/* Menu Page */
.menu-section {
  margin-bottom: 40px;
}

.menu-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  background: rgba(255, 240, 245, 0.8);
  border: 2px solid #ffc0cb;
  border-radius: 20px;
  padding: 15px;
  margin-top: 15px;
  flex-wrap: wrap;
}

.menu-text {
  max-width: 60%;
}

.menu-image {
  width: 200px;
  height: 150px;
  object-fit: cover;
  border-radius: 20px;
  margin-left: 20px;
}

/* Services Section */
.service-item {
  background: rgba(255, 240, 245, 0.8);
  border: 2px solid #ffb6c1;
  padding: 15px;
  border-radius: 15px;
  margin-top: 15px;
}

/* Gallery Page */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 15px;
  margin-top: 20px;
}

.gallery-img {
  width: 100%;
  border-radius: 15px;
  cursor: pointer;
  transition: transform 0.2s;
}

.gallery-img:hover {
  transform: scale(1.05);
}

.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 20px;
}

.lightbox.hidden {
  display: none;
}

/* Staff Page */
.staff-member {
  background: rgba(255, 255, 255, 0.9);
  border: 2px solid #ffc0cb;
  border-radius: 20px;
  padding: 20px;
  text-align: center;
  margin-bottom: 20px;
}

.staff-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 10px;
}

/* Reviews Page */
.review {
  background: #fff;
  border-left: 5px solid #ff69b4;
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 15px;
}

.review h3 {
  margin-bottom: 5px;
  color: #ff69b4;
}

.review-feedback {
  padding: 10px;
  background: #ffe0eb;
  border: 1px solid #ff69b4;
  border-radius: 10px;
  margin: 10px 0;
}

form#review-form {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
}

form#review-form input,
form#review-form textarea {
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ffb6c1;
  border-radius: 10px;
}

form#review-form button {
  background: #ff69b4;
  color: white;
  border: none;
  padding: 10px;
  border-radius: 10px;
  cursor: pointer;
}

form#review-form button:hover {
  background: #ff1493;
}

/* Admin buttons */
.admin-actions {
  margin-top: 10px;
}

.admin-actions button {
  margin-right: 8px;
  padding: 5px 10px;
  border-radius: 6px;
  border: none;
  background: #ddd;
  cursor: pointer;
}

.admin-actions button:hover {
  background: #ffb6c1;
}

/* Login Page */
.login-container {
  max-width: 400px;
  margin: 60px auto;
  background: #fff0f5;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 0 15px rgba(255, 105, 180, 0.3);
}

.login-container h2 {
  margin-bottom: 20px;
  text-align: center;
  color: #ff69b4;
}

.login-container input {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border-radius: 10px;
  border: 1px solid #ffb6c1;
}

.login-container button {
  width: 100%;
  padding: 10px;
  border-radius: 10px;
  border: none;
  background: #ff69b4;
  color: white;
  font-weight: bold;
  cursor: pointer;
}

.login-container button:hover {
  background: #ff1493;
}

.login-error {
  color: red;
  font-weight: bold;
  margin-bottom: 10px;
}

/* Footer */
.site-footer {
  text-align: center;
  padding: 20px;
  font-size: 0.9em;
  color: #888;
  background: #fff;
  margin-top: 60px;
  border-top: 1px solid #eee;
}
