/* Global Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Base Styles */
body {
  font-family: "Inter", sans-serif;
  background-color: #1a1a1b;
  color: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  background: #1a1a1b;
}
.hero-content h1 {
  font-size: 4rem;
  font-weight: 300;
  margin-bottom: 1rem;
  letter-spacing: 2px;
  animation: fadeInUp 1s ease-out;
}
.hero-content p {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  opacity: 0.8;
  animation: fadeInUp 1s ease-out 0.4s both;
  font-weight: 300;
}
.cta-button {
  display: inline-block;
  padding: 15px 40px;
  background-color: #fff;
  color: #000;
  text-decoration: none;
  font-weight: 500;
  margin-top: 2rem;
  transition: all 0.3s ease;
  animation: fadeInUp 1s ease-out 0.6s both;
  border-radius: 4px;
}

.cta-button:hover {
  background-color: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1);
}

/* About Section */
.about {
  padding: 100px 0;
  background-color: #1a1a1b;
}
.about-box {
  margin: 0 auto;
  border-radius: 8px;
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 60px;
}
.about-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 400;
  color: #fff;
}
.about-content p {
  font-size: 1.1rem;
  opacity: 0.9;
  line-height: 1.7;
}
.credentials {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
.credential-section h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: #fff;
  font-weight: 500;
}
.credential-item h4 {
  font-size: 1rem;
  margin-bottom: 0.3rem;
  font-weight: 400;
  color: #fff;
}
.credential-item p {
  font-size: 0.9rem;
  opacity: 0.7;
  color: #ccc;
  line-height: 1.4;
}
.credential-item {
  margin-bottom: 24px;
}

/* Portfolio Section */
.portfolio {
  padding: 100px 0;
  background-color: #1a1a1b;
}
.portfolio h2 {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 3rem;
  font-weight: 300;
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}
.portfolio-item {
  background-color: #2a2a2b;
  padding: 40px;
  transition: all 0.3s ease;
  border: 1px solid #333;
  border-radius: 8px;
}
.portfolio-item a h3,
.portfolio-item a p {
  color: white;
  text-decoration: none;
}
.portfolio-item a:hover h3,
.portfolio-item a:hover p {
  color: #ffffff;
}
.portfolio-item:hover {
  transform: translateY(-10px);
  background-color: #333;
  border-color: #ffffff;
  color: rgba(255, 255, 255, 0.9);
}
.portfolio-item h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}
.portfolio-item p {
  opacity: 0.8;
  line-height: 1.6;
}

/* Quote Section */
.quote {
  padding: 80px 0;
  background-color: #111;
  text-align: center;
}
.quote blockquote {
  font-size: 2rem;
  font-style: italic;
  opacity: 0.9;
}

/* More Work Section */
.more-work {
  padding: 100px 0;
  background-color: #1a1a1b;
}
.more-work h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 4rem;
  font-weight: 400;
  color: #fff;
}
.work-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: minmax(200px, auto);
  gap: 30px;
  max-width: 700px;
  margin: 0 auto;
}
.work-item {
  background-color: #2a2a2b;
  border: 10px solid #333;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease,
              background 0.3s ease,
              border-color 0.3s ease;
}
.work-item:hover {
  transform: translateY(-5px);
  background-color: #333;
  border-color: #0ea5e9;
}
.work-item h3 {
  font-size: 1.1rem;
  font-weight: 400;
  color: #fff;
  padding: 20px;
}
.work-item iframe {
  width: 100%;
  height: 200px;
  border: none;
}

/* Centering "Soon." item */
.center-soon {
  grid-column: 1 / -1;
  justify-self: center;
  max-width: 300px;
}

/* Contact Section */
.contact {
  padding: 100px 0;
  background-color: #111;
}
.contact-content {
  text-align: center;
}
.contact h2 {
  font-size: 3rem;
  margin-bottom: 2rem;
  font-weight: 300;
}
.contact p {
  font-size: 1.2rem;
  margin-bottom: 3rem;
  opacity: 0.9;
}
.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-top: 3rem;
}
.contact-item h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.contact-item p {
  opacity: 0.8;
  font-size: 1rem;
}

/* Footer */
footer {
  background-color: #000;
  padding: 20px 0;
  text-align: center;
  border-top: 1px solid #333;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }
  .hero-content p {
    font-size: 1.2rem;
  }
  .about-box {
    padding: 40px 20px;
  }
  .credentials {
    align-items: center;
  }
  .about-content h2,
  .portfolio h2,
  .more-work h2,
  .contact h2 {
    font-size: 2rem;
  }
  .quote blockquote {
    font-size: 1.5rem;
  }
  
  .work-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    max-width: 400px;
  }
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #1a1a1b;
}
::-webkit-scrollbar-thumb {
  background: #333;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #555;
}
