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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #f5f5f5;
  min-height: 100vh;
}

.app {
  min-height: 100vh;
  background-color: transparent;
  padding: 20px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

/* Logo Section */
.logo-section {
  margin-top: 20px;
  margin-bottom: 20px;
}

.logo {
  max-width: 300px;
  height: auto;
}

.logo-placeholder {
  text-align: center;
  color: #d4af37;
}

.logo-crown {
  font-size: 48px;
  margin-bottom: 10px;
}

.logo-text {
  font-size: 32px;
  font-weight: bold;
  letter-spacing: 2px;
}

/* Buttons Grid */
.buttons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  width: 100%;
  max-width: 900px;
}

.action-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
  text-align: center;
  min-height: 100px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.action-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.button-icon {
  font-size: 24px;
  margin-bottom: 8px;
}

.button-text {
  font-size: 12px;
  line-height: 1.3;
}

/* Info Section */
.info-section {
  text-align: center;
  max-width: 800px;
  margin: 20px 0;
}

.info-text {
  font-size: 16px;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.6;
}

/* Contact Section */
.contact-section {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
  max-width: 800px;
}

.contact-card {
  display: flex;
  align-items: center;
  padding: 15px 20px;
  border: 2px solid #9b59b6;
  border-radius: 8px;
  background-color: white;
  cursor: pointer;
  transition: all 0.2s;
}

.contact-card:hover {
  filter: brightness(1.1);
  transform: translateX(5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.contact-icon {
  font-size: 32px;
  margin-right: 20px;
  min-width: 40px;
  text-align: center;
}

.contact-info {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.contact-card .contact-title {
  font-weight: bold;
  font-size: 16px;
  color: inherit;
}

.contact-card .contact-phone {
  font-size: 18px;
  color: inherit;
  font-weight: bold;
}

/* Banner Section (sadece görsel) */
.banner-section {
  width: 100%;
  min-height: 120px;
  background: #722F37;
  border: 3px solid #8B3A42;
  padding: 30px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.banner-image {
  width: 100%;
  height: auto;
  max-height: 200px;
  object-fit: contain;
  display: block;
}

/* Responsive Design */
@media (max-width: 768px) {
  .buttons-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .banner-section {
    min-height: 100px;
  }

  .banner-image {
    max-height: 150px;
  }

  .contact-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .contact-phone {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .buttons-grid {
    grid-template-columns: 1fr;
  }

  .banner-image {
    max-height: 120px;
  }
}
