/* main.css */

/* Consolidated Hero Section Styles */
#hero {
  height: auto;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #867d45;
  text-align: center;
  padding: 2rem 0;
  margin-bottom: 2rem;
}

.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 80%;
  max-width: 1100px;
  flex-wrap: wrap;
  gap: 2rem;
}

.hero-logo {
  flex: 1;
  display: flex;
  justify-content: center;
}

.hero-logo img {
  max-width: 100%;
  height: auto;
}

.hero-text {
  flex: 1;
  text-align: left;
}

.hero-text h1 {
  font-size: 1.8rem;
  color: #ffce58;
}

.hero-text p {
  margin-top: 1rem;
  font-size: 1rem;
  color: #f5f0e1;
}

/* Button Styling */
.btn {
  display: inline-block;
  background: linear-gradient(135deg, #ffce58 0%, #f5a623 100%);
  color: #222;
  padding: 0.8rem 1.5rem;
  margin-top: 2rem;
  text-decoration: none;
  font-size: 1rem;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.btn:hover {
  opacity: 0.85;
}

/* Portfolio Grid Layout */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.portfolio-item {
  overflow: hidden;
  border: 2px solid #f4b400;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.portfolio-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.portfolio-btn {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}


/* Section Heading & Paragraph Styling */
.section-heading {
  font-size: 1.8rem;
  color: #ffce58;
  text-align: center;
  margin-bottom: 1rem;
}

.section-paragraph {
  font-size: 1rem;
  line-height: 1.6;
  color: #f5f0e1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 2rem;
}

/* Responsive Adjustments */
@media screen and (max-width: 768px) {
  nav ul {
    flex-direction: row;
    align-items: center;
    gap: 1rem;
  }

  .hero-container {
    flex-direction: column;
    text-align: center;
  }

  .hero-text {
    text-align: center;
  }

  .btn {
    width: 80%;
    max-width: 300px;
  }
}

/* Book Feature Section Styling */
.feature-section {
  background: #222;
  padding: 4rem 1rem;
  text-align: center;
  color: #f5f0e1;
}

.feature-section .container {
  max-width: 800px;
  margin: 0 auto;
}

.feature-section h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #ffce58;
}

.feature-section p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1rem;
  color: #f5f0e1;
}