/* assets/style.css */

:root {
  --accent: #333333;
  --dark: #0c0c0c;
  --gray: #999999;
  --light: #ffffff;
  --primary: #c9c9c9;
  --secondary: #ffffff;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--dark);
  color: var(--light);
  font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
  line-height: 1.6;
}

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

section {
  padding: 50px 0 10px;
}

.hero {
  align-items: center;
  display: flex;
  min-height: 100vh;
  overflow: hidden;
  position: relative;
}

.hero::before {
  background: linear-gradient(45deg, rgba(201, 201, 201, 0.05), rgba(255, 255, 255, 0.05));
  content: '';
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
}

.hero-content {
  margin: 0 auto;
  max-width: 800px;
  position: relative;
  text-align: center;
  z-index: 2;
}

.hero-logo {
  margin-bottom: 3rem;
  text-align: center;
}

.hero-logo img {
  height: auto;
  max-width: 360px;
  width: auto;
}

h1 {
  color: var(--primary);
  font-size: 4rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

h2 {
  color: var(--primary);
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.hero-content h2 {
  font-size: 1.5rem;
}

section h2 {
  font-size: 3rem;
}

h3 {
  color: var(--secondary);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

p {
  color: var(--gray);
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.cta-button {
  background: var(--accent);
  border: 1px solid var(--primary);
  border-radius: 4px;
  color: var(--light);
  display: inline-block;
  font-weight: bold;
  margin-bottom: 20px;
  padding: 1rem 2rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background: var(--primary);
  color: var(--dark);
}

.services-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 2rem;
}

.service-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--accent);
  border-radius: 4px;
  padding: 2rem;
  transition: transform 0.3s ease;
}

.service-card:hover {
  border-color: var(--primary);
  transform: translateY(-5px);
}

.service-icon {
  align-items: center;
  background: var(--accent);
  border-radius: 4px;
  color: var(--primary);
  display: flex;
  font-size: 40px;
  height: 100px;
  justify-content: center;
  margin-bottom: 1.5rem;
  width: 100px;
}

.contact-section {
  text-align: center;
}

.contact-info {
  margin: 0 auto;
  max-width: 600px;
}

.social-links {
  margin-top: 2rem;
}

.social-links a {
  color: var(--gray);
  font-size: 1.5rem;
  margin: 0 1rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: var(--primary);
}

footer {
  background: var(--accent);
  color: var(--gray);
  padding: 2rem 0;
  text-align: center;
}

footer a {
  color: var(--gray);
  text-decoration: underline;
  transition: color 0.3s ease, text-decoration 0.3s ease;
}

footer a:hover {
  color: var(--gray);
  text-decoration: none;
}

@media (max-width: 959px) {
  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2.5rem;
  }

  .hero-content h2 {
    font-size: 1.25rem;
  }

  section h2 {
    font-size: 2.5rem;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-logo img {
    max-width: 280px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    margin-left: 0;
    margin-right: 0;
  }
}
