/* Add this to the top of your styles.css file */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

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

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: #333;
  font-weight: 400;
}

/* Hero Section */
.hero {
  height: 100vh;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url('img/hero-bg.jpg') no-repeat center center;
  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-logo {
  margin-bottom: 2rem;
}

.zilklogo {
  width: 20rem;
}

.hero-tagline {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.hero-contact {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  font-weight: 400;
}

.hero-address {
  font-size: 1rem;
  opacity: 0.9;
  font-weight: 300;
}

/* Services Section */
.services {
  background: linear-gradient(135deg, #161317, #201c22);
  color: white;
  padding: 5rem 0;
  position: relative;
}

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

.services-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.services-text h2 {
  font-size: 2.8rem;
  line-height: 1.2;
  margin-bottom: 2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.services-subtitle {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  opacity: 0.9;
  font-weight: 400;
}

.logos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  padding-bottom: 1rem;
}

.logo {
  padding: 4rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
  text-align: center;
  min-width: 80px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
}

.logo img {
  max-width: 10rem;
  height: auto;
  display: block;
}

/* Newsletter Section */
.newsletter {
  background: #f8f9fa;
  padding: 4rem 0;
}

.newsletter-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.newsletter h2 {
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.newsletter p {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.6;
  font-weight: 400;
}

.newsletter-form {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #333;
}

.form-group input {
  width: 100%;
  padding: 0.8rem;
  border: 2px solid #e1e8ed;
  border-radius: 5px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  font-family: 'Inter', sans-serif;
}

.form-group input:focus {
  outline: none;
  border-color: #667eea;
}

.subscribe-btn {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  padding: 0.8rem 2rem;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}

.subscribe-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

/* About Section */
.about {
  background: linear-gradient(135deg, #161317, #201c22);
  color: white;
  padding: 5rem 0;
}

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

.about-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: white;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.about-text .highlight {
  color: #a300e8;
  font-weight: 700;
}

.about-text p {
  margin-bottom: 1.5rem;
  line-height: 1.7;
  font-size: 1.1rem;
  font-weight: 400;
}

.zilkphoto {
  background: url('img/zilkheadshot.jpg') no-repeat center center;
  aspect-ratio: 3/4;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.2rem;
  text-align: center;
  font-weight: 500;
}

/* Contact Section */
.contact {
  background: #f8f9fa;
  padding: 4rem 0;
  text-align: center;
}

.contact h2 {
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.contact-info {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #666;
  font-weight: 400;
}

.contact-info p {
  margin-bottom: 1rem;
}

.contact-link {
  color: #667eea;
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 500;
}

.contact-link:hover {
  color: #764ba2;
}

/* Footer */
.footer {
  background: #161317;
  color: white;
  padding: 2rem 0;
  text-align: center;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.social-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: white;
  transition: background 0.3s ease, transform 0.3s ease;
  font-weight: 600;
}

.social-icon:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.copyright {
  font-size: 0.9rem;
  opacity: 0.7;
  font-weight: 400;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-tagline {
    font-size: 2.5rem;
  }

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

  .container {
    padding: 0 1rem;
  }

  .services-text h2,
  .about-text h2,
  .contact h2,
  .newsletter h2 {
    font-size: 2rem;
  }
}

/* Smooth scrolling animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}