/* Main Content Area */
.main-content-area {
  padding-top: 80px;
  min-height: 100vh;
}

/* Hero Sections */
.hero-banner-section {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000000;
  border-bottom: 8px solid #FF0000;
  overflow: hidden;
}

.hero-banner-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #FF0000 0%, #0000FF 50%, #FFFF00 100%);
  opacity: 0.3;
  z-index: 1;
}

.hero-content-wrapper {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 48px 24px;
  background: #000000;
  border: 4px solid #FFFFFF;
}

.hero-title {
  font-size: 64px;
  font-family: system-ui, monospace;
  font-weight: 900;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: -2px;
  margin-bottom: 24px;
  text-shadow: none;
}

.hero-subtitle {
  font-size: 24px;
  color: #FFFF00;
  font-family: system-ui, monospace;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 32px;
  border: 2px solid #FF0000;
  padding: 16px;
  background: #0000FF;
}

.hero-description {
  font-size: 18px;
  color: #FFFFFF;
  font-family: monospace;
  font-weight: 700;
  line-height: 1.8;
  margin-bottom: 32px;
}

/* About Section */
.about-content-section {
  background: #FFFFFF;
  padding: 72px 0;
  border-bottom: 8px solid #000000;
}

.about-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.about-text-content h2 {
  color: #000000;
  font-family: system-ui, monospace;
  font-weight: 900;
  text-transform: uppercase;
  border-bottom: 4px solid #FF0000;
  padding-bottom: 16px;
  margin-bottom: 24px;
}

.about-text-content p {
  color: #000000;
  font-family: monospace;
  font-weight: 700;
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-image-wrapper {
  position: relative;
}

.about-image-wrapper img {
  width: 100%;
  border: 4px solid #000000;
  box-shadow: 8px 8px 0px #FF0000;
}

/* Features Grid */
.features-grid-section {
  background: #0000FF;
  padding: 72px 0;
  border-bottom: 8px solid #FFFF00;
}

.features-grid-section h2 {
  color: #FFFFFF;
  text-align: center;
  font-family: system-ui, monospace;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 48px;
  font-size: 48px;
}

.features-grid-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.feature-card-item {
  background: #FFFFFF;
  border: 4px solid #000000;
  padding: 32px 24px;
  text-align: center;
  transition: none;
}

.feature-card-item:hover {
  background: #FFFF00;
  transform: translateY(-8px);
  box-shadow: 12px 12px 0px #FF0000;
}

.feature-icon-wrapper {
  width: 80px;
  height: 80px;
  background: #FF0000;
  border: 4px solid #000000;
  margin: 0 auto 24px auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon-wrapper svg {
  width: 40px;
  height: 40px;
  fill: #FFFFFF;
}

.feature-card-item h3 {
  color: #000000;
  font-family: system-ui, monospace;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.feature-card-item p {
  color: #000000;
  font-family: monospace;
  font-weight: 700;
  line-height: 1.6;
}

/* Services Grid */
.services-grid-section {
  background: #FFFF00;
  padding: 72px 0;
  border-bottom: 8px solid #FF0000;
}

.services-grid-section h2 {
  color: #000000;
  text-align: center;
  font-family: system-ui, monospace;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 48px;
  font-size: 48px;
}

.services-grid-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.service-card-item {
  background: #FFFFFF;
  border: 4px solid #000000;
  padding: 24px;
  display: flex;
  gap: 24px;
  transition: none;
}

.service-card-item:hover {
  background: #0000FF;
  transform: translateX(8px);
  box-shadow: -8px 8px 0px #FF0000;
}

.service-card-item:hover h3,
.service-card-item:hover p {
  color: #FFFFFF;
}

.service-image-wrapper {
  flex: 0 0 150px;
}

.service-image-wrapper img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border: 4px solid #000000;
}

.service-content-wrapper {
  flex: 1;
}

.service-content-wrapper h3 {
  color: #000000;
  font-family: system-ui, monospace;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.service-content-wrapper p {
  color: #000000;
  font-family: monospace;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 16px;
}

/* Team Section */
.team-showcase-section {
  background: #FF0000;
  padding: 72px 0;
  border-bottom: 8px solid #000000;
}

.team-showcase-section h2 {
  color: #FFFFFF;
  text-align: center;
  font-family: system-ui, monospace;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 48px;
  font-size: 48px;
}

.team-members-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.team-member-card {
  background: #FFFFFF;
  border: 4px solid #000000;
  padding: 24px;
  text-align: center;
  transition: none;
}

.team-member-card:hover {
  background: #000000;
  transform: scale(1.05);
}

.team-member-card:hover h3,
.team-member-card:hover p {
  color: #FFFFFF;
}

.team-member-photo {
  width: 120px;
  height: 120px;
  border: 4px solid #000000;
  margin: 0 auto 16px auto;
  background: #FFFF00;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: system-ui, monospace;
  font-weight: 900;
  font-size: 32px;
  color: #000000;
}

/* Gallery Section */
.gallery-showcase-section {
  background: #000000;
  padding: 72px 0;
  border-bottom: 8px solid #FFFFFF;
}

.gallery-showcase-section h2 {
  color: #FFFFFF;
  text-align: center;
  font-family: system-ui, monospace;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 48px;
  font-size: 48px;
}

.gallery-grid-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.gallery-item-card {
  position: relative;
  background: #FFFFFF;
  border: 4px solid #FF0000;
  overflow: hidden;
  transition: none;
}

.gallery-item-card:hover {
  transform: rotateY(5deg);
  box-shadow: 16px 16px 0px #FFFF00;
}

.gallery-item-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border: none;
}

.gallery-item-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #0000FF;
  color: #FFFFFF;
  padding: 12px 16px;
  font-family: system-ui, monospace;
  font-weight: 900;
  text-transform: uppercase;
  border-top: 4px solid #FFFFFF;
}

/* Contact Section */
.contact-content-section {
  background: #FFFFFF;
  padding: 72px 0;
  border-bottom: 8px solid #000000;
}

.contact-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.contact-info-wrapper h2 {
  color: #000000;
  font-family: system-ui, monospace;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 24px;
  border-bottom: 4px solid #FF0000;
  padding-bottom: 16px;
}

.contact-info-item {
  margin-bottom: 24px;
  padding: 16px;
  border: 2px solid #000000;
  background: #FFFF00;
}

.contact-info-item h4 {
  color: #000000;
  font-family: system-ui, monospace;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.contact-info-item p {
  color: #000000;
  font-family: monospace;
  font-weight: 700;
  margin: 0;
}

/* Page Title Section */
.page-title-section {
  background: #FF0000;
  padding: 48px 0;
  border-bottom: 8px solid #000000;
  margin-top: 80px;
}

.page-title-section h1 {
  color: #FFFFFF;
  text-align: center;
  font-family: system-ui, monospace;
  font-weight: 900;
  text-transform: uppercase;
  margin: 0;
  font-size: 56px;
}

/* Breadcrumb */
.breadcrumb-area {
  background: #0000FF;
  padding: 16px 0;
  border-bottom: 4px solid #FFFFFF;
}

.breadcrumb-area a {
  color: #FFFFFF;
  font-family: system-ui, monospace;
  font-weight: 700;
  text-transform: uppercase;
  margin-right: 16px;
}

.breadcrumb-area a:hover {
  color: #FFFF00;
}

.breadcrumb-area span {
  color: #FFFF00;
  font-family: system-ui, monospace;
  font-weight: 900;
  text-transform: uppercase;
}

/* Menu Items */
.menu-items-section {
  background: #FFFFFF;
  padding: 72px 0;
  border-bottom: 8px solid #000000;
}

.menu-items-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.menu-item-card {
  background: #FFFFFF;
  border: 4px solid #000000;
  padding: 24px;
  display: flex;
  gap: 24px;
  transition: none;
}

.menu-item-card:hover {
  background: #FFFF00;
  transform: translateY(-4px);
  box-shadow: 8px 8px 0px #FF0000;
}

.menu-item-image {
  flex: 0 0 120px;
}

.menu-item-image img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border: 4px solid #000000;
}

.menu-item-content {
  flex: 1;
}

.menu-item-content h3 {
  color: #000000;
  font-family: system-ui, monospace;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.menu-item-price {
  background: #0000FF;
  color: #FFFFFF;
  padding: 4px 12px;
  border: 2px solid #000000;
  font-size: 14px;
}

.menu-item-content p {
  color: #000000;
  font-family: monospace;
  font-weight: 700;
  line-height: 1.6;
  margin: 0;
}

/* Interactive Elements */
.interactive-widget-wrapper {
  background: #000000;
  border: 4px solid #FFFFFF;
  padding: 32px;
  margin: 32px 0;
  text-align: center;
}

.interactive-widget-wrapper h3 {
  color: #FFFFFF;
  font-family: system-ui, monospace;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.widget-button-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.widget-action-button {
  background: #FFFF00;
  color: #000000;
  border: 4px solid #FF0000;
  padding: 16px;
  font-family: system-ui, monospace;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
  transition: none;
}

.widget-action-button:hover {
  background: #FF0000;
  color: #FFFFFF;
}

/* Responsive Design */
@media (max-width: 768px) {
  .main-content-area {
    padding-top: 70px;
  }
  
  .hero-title {
    font-size: 40px;
  }
  
  .hero-subtitle {
    font-size: 18px;
    padding: 12px;
  }
  
  .about-content-wrapper {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .features-grid-wrapper {
    grid-template-columns: 1fr;
  }
  
  .services-grid-wrapper {
    grid-template-columns: 1fr;
  }
  
  .service-card-item {
    flex-direction: column;
  }
  
  .service-image-wrapper {
    flex: none;
  }
  
  .team-members-grid {
    grid-template-columns: 1fr;
  }
  
  .gallery-grid-wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  
  .contact-content-wrapper {
    grid-template-columns: 1fr;
  }
  
  .menu-items-grid {
    grid-template-columns: 1fr;
  }
  
  .menu-item-card {
    flex-direction: column;
  }
  
  .menu-item-image {
    flex: none;
  }
  
  .widget-button-grid {
    grid-template-columns: 1fr;
  }
}