/* General Styles */
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #f5f5f5;
  color: #333;
}

header {
  background-color: #4a90e2;
  color: white;
  padding: 1rem;
  text-align: center;
  position: sticky;
  top: 0;
  z-index: 10;
}

.clock {
  font-size: 1.2rem;
  margin-top: 0.5rem;
}

/* Marquee */
.marquee-wrapper {
  background-color: #fff7d6;
  padding: 0.5rem 0;
  border-top: 2px solid #ffc107;
  border-bottom: 2px solid #ffc107;
  font-weight: bold;
  color: #d35400;
}

/* Layout */
.container {
  display: flex;
  flex-direction: row;
  margin-top: 10px;
}

aside {
  width: 220px;
  background-color: #f1f1f1;
  padding: 1rem;
  border-right: 2px solid #ddd;
}

aside h3 {
  margin-top: 0;
}

aside ul {
  list-style: none;
  padding: 0;
}

aside li {
  margin-bottom: 0.7rem;
}

aside a {
  text-decoration: none;
  color: #0077cc;
}

aside a:hover {
  text-decoration: underline;
}

main {
  flex-grow: 1;
  padding: 1.5rem;
}

/* Gallery */
.gallery {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.gallery img {
  width: 150px;
  height: 150px;
  border-radius: 10px;
  box-shadow: 0 0 8px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.gallery img:hover {
  transform: scale(1.05);
}

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: 1rem;
}

.contact-form input,
.contact-form textarea {
  padding: 10px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.contact-form button {
  padding: 10px;
  font-size: 1rem;
  border: none;
  background-color: #4a90e2;
  color: white;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.contact-form button:hover {
  background-color: #357ab8;
}

/* Footer */
footer {
  background-color: #4a90e2;
  color: white;
  text-align: center;
  padding: 1rem;
  margin-top: 1rem;
}
