/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #fdfdfd;
  color: #333;
}

/* Üst görsel */
.image-header img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* Kayan yazı */
.scrolling-text {
  background: #222;
  color: white;
  padding: 10px;
  font-weight: bold;
}

/* Ana içerik */
.content {
  display: grid;
  grid-template-columns: 2fr 2fr 1fr;
  grid-template-rows: auto auto;
  gap: 15px;
  padding: 20px;
}

.site-log {
  grid-column: 1;
  grid-row: 1 / span 2;
  background: #e3f2fd;
  padding: 10px;
  border-radius: 8px;
}

.about {
  grid-column: 2;
  grid-row: 1;
  background: #fff3e0;
  padding: 10px;
  border-radius: 8px;
}

.chatbox {
  grid-column: 2;
  grid-row: 2;
  background: #f1f8e9;
  padding: 10px;
  border-radius: 8px;
}

.music {
  grid-column: 3;
  grid-row: 1 / span 2;
  background: #fce4ec;
  padding: 10px;
  border-radius: 8px;
  text-align: center;
}

.music img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 10px;
}

/* Footer */
.footer-box {
  background: #ddd;
  padding: 20px;
  text-align: center;
}

/* Yan menü */
.sidebar {
  position: fixed;
  left: -150px;
  top: 0;
  height: 100%;
  width: 150px;
  background: #444;
  transition: left 0.3s;
  padding-top: 50px;
}

.sidebar:hover {
  left: 0;
}

.sidebar ul {
  list-style: none;
  padding: 0;
}

.sidebar li {
  margin: 20px 0;
}

.sidebar a {
  color: white;
  text-decoration: none;
}
  /* Slideshow */
 .slideshow-container {
  position: relative;
  max-width: 100%;
  overflow: hidden;
}

.slide {
  display: none;
  text-align: center;
}

.slide img {
  width: 100%;
  border-radius: 10px;
  .chatbox {
  background: #f1f8e9;
  padding: 10px;
  border-radius: 8px;
  height: 250px;
  display: flex;
  flex-direction: column;
}

#messages {
  flex: 1;
  overflow-y: auto;
  background: #fff;
  padding: 5px;
  border: 1px solid #ccc;
  margin-bottom: 10px;
  border-radius: 5px;
}

#messages p {
  margin: 5px 0;
  padding: 5px;
  background: #e0f7fa;
  border-radius: 4px;
}

#chat-input {
  padding: 5px;
  flex: none;
  margin-bottom: 5px;
}

button {
  padding: 5px 10px;
  background: #4caf50;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}