@charset "utf-8";
/* CSS Document */
/* Reset & base */
body {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  background: #000;
  color: #fff;
}

h1, h2 {
  margin: 0 0 1rem;
}

p {
  margin-bottom: 0rem;
}

/* Layout & spacing */
.section {
  padding: 0rem 0rem;
  max-width: 900px;
  margin: auto;
}

.section-title {
  font-size: 1.5rem;
  margin-bottom: 0rem;
}

/* Header */
.header-container {
  position: relative;
  max-width: 1200px;
  margin: auto;
  padding: 1rem 1rem 0rem;
}

.site-header {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 4rem 1rem 0rem;
  position: relative;
  overflow: hidden;
}

.header-content {
  max-width: 800px;
  margin: auto;
  position: relative;
  z-index: 1;
}

.logo {
  font-family: 'Anton', sans-serif;
  font-size: 3rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: -1rem;
}

.subline {
  font-size: 1.1rem;
  font-weight: 500;
  color: #bbb;
}

.tagline {
  font-style: italic;
  font-weight: 400;
  color: #7fffd4;
  font-size: 1.05rem;
}

/* Optional: subtle gradient overlay or animated background */
.site-header::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.05), transparent 70%);
  z-index: 0;
}

/* Optional: glow or pulse animation */
@keyframes pulseGlow {
  0%, 100% { text-shadow: 0 0 5px #7fffd4, 0 0 10px #7fffd4; }
  50% { text-shadow: 0 0 20px #7fffd4, 0 0 30px #7fffd4; }
}

.tagline {
  animation: pulseGlow 3s ease-in-out infinite;
}

.contact-link {
  position: absolute;
  top: 1rem;
  left: 1rem;
  color: #7fffd4;
  font-size: 0.9rem;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.contact-link:hover {
  color: #fff;
  text-decoration: underline;
}

/* Footer */
.site-footer {
  background-color: #0a0a0a;
  color: #777;
  text-align: center;
  padding: 2rem 1rem;
  font-size: 0.9rem;
  border-top: 1px solid #222;
}

.site-footer p {
  margin: 0;
  letter-spacing: 0.5px;
}

.site-footer a {
  color: #00ffff;
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}


/* Services */
.service-list {
  list-style-type: disc;
  padding-left: 1.2rem;
}

/* Buttons */
.btn-primary {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  background: #111;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.2s ease;
}

.btn-primary:hover {
  background: #333;
}
.about-container {
  max-width: 900px;
  margin: auto;
  padding: 2rem 1rem;
}

.about-image-text {
  position: relative;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(0,0,0,0.5);
}

.about-image-text img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  vertical-align: middle;
}

.about-text-overlay {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  color: #fff;
  background: rgba(0,0,0,0.5);
  padding: 1.5rem;
  border-radius: 8px;
  max-width: 70%;
  box-shadow: 0 0 15px rgba(0,255,255,0.4);
}

.about-text-overlay .section-title {
  font-size: 1.8rem;
  margin-bottom: 0.75rem;
}

.about-text-overlay p {
  font-size: 1rem;
  line-height: 1.4;
  margin-bottom: 0.6rem;
  color: #ddd;
}

/* Responsive: make overlay full width on small screens */
@media (max-width: 600px) {
  .about-text-overlay {
    max-width: 90%;
    bottom: 1rem;
    left: 1rem;
    padding: 1rem;
  }
  .about-text-overlay .section-title {
    font-size: 1.4rem;
  }
  .about-text-overlay p {
    font-size: 0.9rem;
  }
}
.services-container {
  max-width: 1000px;
  margin: auto;
  padding: 2rem 1rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.service-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(0,0,0,0.5);
}

.service-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.service-text-overlay {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  color: #fff;
  background: rgba(0,0,0,0.55);
  padding: 1rem 1.5rem;
  border-radius: 8px;
  max-width: 75%;
  box-shadow: 0 0 10px rgba(0,255,255,0.3);
}

.service-text-overlay h3 {
  margin: 0 0 0.5rem 0;
  font-size: 1.5rem;
}

.service-text-overlay p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.3;
  color: #ddd;
}

/* Responsive grid: 2 columns on medium screens and up */
@media (min-width: 700px) {
  .services-container {
    grid-template-columns: 1fr 1fr;
  }
}

/* Optional: hover effect */
.service-item:hover .service-text-overlay {
  background: rgba(0,0,0,0.75);
  box-shadow: 0 0 20px rgba(0,255,255,0.6);
}
.contact {
  background: linear-gradient(135deg, #111, #1a1a1a);
  color: #fff;
  text-align: center;
  padding: 4rem 1.5rem;
  margin-top: 4rem;
  border-top: 1px solid #333;
}

.contact-container {
  max-width: 800px;
  margin: auto;
}

.contact h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.contact p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: #ccc;
}

.contact-button {
  display: inline-block;
  padding: 0.8rem 1.6rem;
  background-color: #00ffff;
  color: #111;
  text-decoration: none;
  font-weight: 600;
  border-radius: 8px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.contact-button:hover {
  background-color: #00cccc;
  transform: scale(1.03);
}

