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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background-color: #000000;
  color: #ffffff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 1.5rem;
  line-height: 1.6;
}

.language-selector {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.globe-icon {
  color: #9ca3af;
  width: 16px;
  height: 16px;
}

#languageSelect {
  background: transparent;
  border: 1px solid #374151;
  border-radius: 4px;
  padding: 0.25rem 0.5rem;
  color: #ffffff;
  font-size: 0.875rem;
}

#languageSelect:focus {
  outline: none;
  border-color: #ef4444;
  box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.2);
}

#languageSelect option {
  background-color: #000000;
  color: #ffffff;
}

.container {
  text-align: center;
  max-width: 72rem;
  width: 100%;
}

.header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.logo {
  height: 4rem;
  width: 4rem;
}

.title {
  font-size: 4rem;
  font-weight: bold;
}

.acid {
  color: #ef4444;
}

.house {
  color: #ffffff;
}

.subtitle {
  font-size: 1.5rem;
  color: #d1d5db;
  font-weight: 300;
  margin-bottom: 3rem;
}

.tagline {
  font-size: 1.25rem;
  color: #9ca3af;
  font-style: italic;
  max-width: 32rem;
  margin: 0 auto 4rem;
}

.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 5rem;
}

.service {
  text-align: left;
}

.service-title {
  font-size: 1.25rem;
  font-weight: bold;
  color: #ef4444;
  margin-bottom: 1rem;
}

.service-description {
  color: #9ca3af;
  font-size: 0.875rem;
  line-height: 1.6;
}

.gallery-section {
  margin-bottom: 5rem;
}

.gallery-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #ef4444;
  margin-bottom: 2rem;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.gallery-item {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 4px;
  border: 1px solid #374151;
  transition: all 0.3s ease;
}

.gallery-item:hover {
  border-color: #ef4444;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.contact {
  padding-top: 2rem;
}

.contact-info {
  color: #9ca3af;
  margin-bottom: 1rem;
}

.contact-info p {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.contact-label {
  color: #ef4444;
}

.email {
  color: #ef4444;
  font-size: 1.25rem;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.email:hover {
  color: #dc2626;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .title {
    font-size: 3rem;
  }

  .subtitle {
    font-size: 1.25rem;
  }

  .tagline {
    font-size: 1.125rem;
  }

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

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

  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  body {
    padding: 1.5rem 1rem;
  }

  .header {
    flex-direction: column;
    gap: 0.5rem;
  }

  .logo {
    height: 3rem;
    width: 3rem;
  }

  .title {
    font-size: 2.5rem;
  }

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