@font-face {
  font-family: "Chillax";
  src: url("../fonts/Chillax-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Chillax";
  src: url("../fonts/Chillax-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

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

:root {
  --foreground-rgb: 255, 255, 255;
  --background-start-rgb: 0, 0, 0;
  --background-end-rgb: 0, 0, 0;
}

body {
  color: rgb(var(--foreground-rgb));
  background: rgb(var(--background-start-rgb));
  font-family: "Chillax", sans-serif;
  min-height: 100vh;
  margin: 0;
}

main {
  min-height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: background-color 1s ease;
}

.bg-blue-600 {
  background-color: #2563eb;
}
.bg-purple-600 {
  background-color: #9333ea;
}
.bg-red-600 {
  background-color: #dc2626;
}
.bg-green-600 {
  background-color: #16a34a;
}
.bg-indigo-600 {
  background-color: #4f46e5;
}

.logo-container {
  position: relative;
  width: 300px;
  height: 150px;
}

@media (max-width: 768px) {
  .logo-container {
    width: 200px;
    height: 100px;
  }
}

.logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.slogan-container {
  margin-top: 2rem;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slogan {
  color: white;
  font-size: 2rem;
  font-weight: 300;
}

@media (max-width: 768px) {
  .slogan {
    font-size: 1.5rem;
  }
}

@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

@keyframes blink {
  50% {
    border-color: transparent;
  }
}

.typewriter {
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  margin: 0 auto;
  letter-spacing: 0.1em;
  border-right: 3px solid white;
  width: 0;
  animation: typing 2s steps(40, end) forwards, blink 1s step-end infinite;
}

.email-button {
  margin-top: 3rem;
  display: flex;
  align-items: center;
  padding: 1rem 2rem;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 9999px;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.email-button:hover {
  background-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.email-button:active {
  transform: translateY(0);
}

.envelope-icon {
  width: 1.75rem;
  height: 1.75rem;
  margin-right: 0.75rem;
  transition: transform 0.3s ease;
}

.email-button:hover .envelope-icon {
  transform: scale(1.1) rotate(-6deg);
}

.email-button span {
  font-weight: 300;
  letter-spacing: 0.05em;
  font-size: 1.125rem;
}

/* Genel Stiller */
:root {
  --primary-color: #1a1a1a;
  --secondary-color: #ffffff;
  --accent-color: #646cff;
  --text-color: #213547;
}

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

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

/* Header */
header {
  background-color: var(--primary-color);
  padding: 1rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.logo img {
  height: 40px;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 4rem 2rem;
  background-color: var(--primary-color);
  color: var(--secondary-color);
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  opacity: 0.9;
}

/* Features Section */
.features {
  padding: 4rem 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  padding: 2rem;
  background-color: #f9f9f9;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-card h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

/* Footer */
footer {
  text-align: center;
  padding: 2rem;
  background-color: var(--primary-color);
  color: var(--secondary-color);
}

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

  .features {
    grid-template-columns: 1fr;
    padding: 2rem 1rem;
  }
}
