* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Georgia, serif;
  background: #fffbe3;
  color: black;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.hidden {
  display: none;
}

/* === Header === */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 20px;
  border-bottom: 2px solid transparent;
  border-image: linear-gradient(to right, black, rgba(0, 0, 0, 1) 75px, rgba(0, 0, 0, 0), rgba(0, 0, 0, 1) 225px, black 225px);
  border-image-slice: 1;
  height: 60px;
  flex-shrink: 0;
}

.logo img {
  max-width: 265px;
  height: auto;
}

/* === Navigation === */
.nav-links {
  display: flex;
  gap: 15px;
}

.nav-links a {
  text-decoration: underline;
  color: inherit;
  font-size: 1rem;
  white-space: nowrap;
  padding: 4px 8px;
  border-radius: 4px;
  border: 1px solid transparent;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.nav-links a:hover {
  background-color: #e5e5e5;
  border-color: black;
}

.page-content img{
  width: 60%;
  -webkit-filter: drop-shadow(5px 5px 5px rgba(0,0,0,0.5));
  filter: drop-shadow(5px 5px 5px rgba(0,0,0,0.5));
}

.chat-wrapper {
  width: 100%;
  max-width: 450px;
  height: 800px;
  margin: 0 0 0 auto; /* shorthand: top 0, right 0, bottom 0, left auto */
  background-color: #f7f0da;
  border: 1px solid #ccc;
  border-radius: 6px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
}

.chat-wrapper iframe {
  width: 100%;
  height: 100%; /* or set a fixed height like 500px */
  display: block;
  border: none;
  border-radius: 4px;
  background-color: #fffbe3;
  box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.1);
}

/* === Mobile Menu === */
.mobile-menu-toggle {
  display: none;
  padding: 10px;
  background: black;
  color: white;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
}

.mobile-dropdown {
  display: none;
  position: absolute;
  top: 70px;
  right: 20px;
  background: white;
  border: 1px solid #aaa;
  padding: 10px;
  border-radius: 6px;
  z-index: 1000;
}

.mobile-dropdown.show {
  display: flex;
  flex-direction: column;
}

.mobile-dropdown a {
  text-decoration: underline;
  padding: 8px 0;
  color: black;
}

@media screen and (max-width: 800px) {
  .nav-links {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

.comment-section {
  margin: 40px auto;
  padding: 20px;
  max-width: 700px;
  background: #fff;
  border: 2px solid #ccc;
  border-radius: 8px;
}

.comment-section h2 {
  margin-bottom: 15px;
  font-size: 1.5em;
  text-align: center;
}

#commentsList .comment {
  margin-bottom: 20px;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  background: #f9f9f9;
}

.comment-author {
  font-weight: bold;
  margin-bottom: 6px;
}

.comment-text {
  margin: 8px 0;
}

#commentForm {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

#commentForm input,
#commentForm textarea {
  padding: 10px;
  border: 1px solid #aaa;
  border-radius: 4px;
  font-family: inherit;
}

#commentForm button {
  padding: 10px;
  font-weight: bold;
  background: #333;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s;
}

#commentForm button:hover {
  background: #555;
}

