
/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  background-color: #efebe5;
  color: #333;
}

/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background: #623e2a;
  color: #000000;
}
.logo img {
  height: 100px;
}

/* Nav */
nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}
nav a {
  color: #000000;
  text-decoration: none;
  font-weight: bold;
}
.nav :hover{
  cursor: pointer;
  color: #1f5909;
}

/* Hero Video Styling */
.hero-video {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.hero-video video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  z-index: -1;
}
/* Intro Section */
.intro {
  padding: 40px 20px;
  text-align: center;
}
.intro h1{
  font-size: 24px;
  color: #6a4e42;
  margin-bottom: 20px;
}
.intro h2 {
  font-size: 24px;
  color: #6a4e42;
  margin-bottom: 20px;
}
.intro p {
  font-size: 16px;
  margin-bottom: 30px;
}
.cta-buttons .btn {
  text-decoration: none;
  padding: 10px 20px;
  margin: 5px;
  border-radius: 4px;
  color: #000000;
}
.join {
  background-color: #1f5909;
}
.signin {
  background-color: #1f5909;
}
.intro h3{
  font-size: 24px;
  font-style: italic;
  color: #6a4e42;
  margin-bottom: 20px;
  text-align: right;
}
.about img {
  max-width: 100%;
  height: auto;
}


/* Featured Poems */
.featured {
  padding: 24px;
  background-color: #efebe5;
  text-align: center;
  font-size: 20px;
}
.feautured p{
  font-size: 16px;
  margin-bottom: 20px;
  text-align: center;
}
.search-container {
  display: flex;
  float: left;
  margin-bottom: 20px;
}
.search-container p{
  padding: 24px;
  background-color: #efebe5;
  text-align: right;
  font-size: 20px;
  font-style: italic;
}
.search-container input {
  flex: 1;
  padding: 10px;
  border: 1px solid #ccc;
}
.search-container button {
  background-color: #6a4e42;
  color: #fff;
  border: none;
  padding: 10px;
  cursor: pointer;
 align-content: start;
}
.poem-card {
  display: flex;
  flex-direction: column;
  border: 1px solid #ddd;
  padding: 20px;
  border-radius: 8px;
  margin-top: 20px;
}
.poem-card img {
  max-width: 50%;
  border-radius: 4px;
  height: auto;
}
.poem-info h3 {
  font-size: 18px;
}
.poem-info p {
  color: #777;
}
.poem-info :hover{
  cursor: pointer;
  background-color: #1f5909;
}
.cta-buttons .btn {
  text-decoration: none;
  padding: 10px 20px;
  margin: 5px;
  border-radius: 4px;
  color: #fff;
  float: right;
}
.about {
  background-color: #1f5909;
  align-items: right ;
}

/* Footer */
.footer {
  background-color: #623e2a;
  color: #fff;
  padding: 15px;
  text-align: center;
}
.footer .icons img {
  width: 24px;
  margin: 0 8px;
}

