* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Georgia', serif;
  line-height: 1.6;
  color: #333;
  scroll-behavior: smooth;
}

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #2c3e50;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  text-decoration: none;
  color: #2c3e50;
  font-weight: 500;
  transition: color 0.3s ease;
  padding: 0.5rem 1rem;
  border-radius: 4px;
}

.nav-links a:hover {
  color: #228b22;
  background-color: rgba(34, 139, 34, 0.1);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: #2c3e50;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Home Section */
.hero {
  height: 100vh;
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
  url(./assets/images/hero.jpg);
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  position: relative;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  font-weight: normal;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.cta-button {
  display: inline-block;
  padding: 1rem 2rem;
  background-color: #228b22;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: all 0.3s ease;
  text-shadow: none;
}

.cta-button:hover {
  background-color: #1e5631;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(34, 139, 34, 0.4);
}

/* Announcement Section */
.announcement {
  /* background: linear-gradient(135deg, #2d5016, #228b22); */
  background:#228b22;
  padding: 1.5rem 0;
  margin: 1rem;
  border-radius: 5px;
  text-align: center;
  color: white;
}

.announcement-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.announcement-content p {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.announcement-link {
  color: #fff;
  text-decoration: underline;
  font-weight: bold;
  transition: opacity 0.3s ease;
}

.announcement-link:hover {
  opacity: 0.8;
}

.youtube-icon {
  display: inline-block;
  margin-left: 0.5rem;
  font-size: 1.2rem;
}

/* About & Build Sections */
.about {
  padding: 5rem 0;
  background-color: #f8f9fa;
}

.build {
  padding: 5rem 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #2c3e50;
}

.specialties {
  margin-top: 1.5rem;
}

.center {
  text-align: center;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 4rem;
}

.about-grid.reverse {
  direction: rtl;
}

.about-grid.reverse > * {
  direction: ltr;
}

.about-text h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #34495e;
}

.about-text p {
  font-size: 1rem;
  line-height: 1.8;
  color: #555;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-card {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-card h4 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #2c3e50;
}

.feature-card p {
  color: #666;
  text-align: left;
}

.build-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

.gallery-item {
  width: 90%;
  margin: auto;
}

.gallery-image {
  height: 250px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Contact Section */
.contact {
  padding: 5rem 0;
  background-color: #2c3e50;
  color: white;
}

.contact .section-title {
  color: white;
}

.contact-grid {
  display: center;
  margin-top: 2rem;
  margin-inline: 4rem;
}

.contact-form {
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 10px;
  backdrop-filter: blur(10px);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: #ecf0f1;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: none;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.9);
  color: #333;
  font-family: inherit;
}

.form-group textarea {
  resize: vertical;
  height: 120px;
}

.submit-btn {
  width: 100%;
  padding: 1rem;
  background-color: #228b22;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.submit-btn:hover {
  background-color: #1e5631;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .nav-container {
    padding: 0 1rem;
  }

  .nav-links {
    gap: 1rem;
  }

  .nav-container {
      padding: 0 1rem;
    }

  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 65px;
    left: -100%;
    width: 100%;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 2rem 0;
    gap: 0;
    transition: left 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  }

  .nav-links.active {
    left: 0;
  }

  .nav-links li {
    width: 100%;
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }

  .nav-links a {
    display: block;
    padding: 1rem 2rem;
    width: 100%;
  }

  .hero-content h1 {
      font-size: 2.5rem;
  }

  .hero-content p {
      font-size: 1.1rem;
  }

  .about-grid,
  .contact-grid {
      grid-template-columns: 1fr;
      gap: 2rem;
  }

  .features {
      grid-template-columns: 1fr;
  }

  .container {
      padding: 0 1rem;
  }

  .section-title {
      font-size: 2rem;
  }

  .build-gallery {
    grid-template-columns: 1fr;
}
}