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

body, html {
  height: 100%;
  font-family: 'Inter', sans-serif;
  color: #ffffff;
  overflow: hidden;
  background-color: #121212;
}

/* Background Image with Overlay */
.background-container {
  position: absolute;
  top: -20px;
  left: -20px;
  width: calc(100% + 40px);
  height: calc(100% + 40px);
  background-image: url('images/UnderConstruction.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: blur(4px);
  z-index: 0;
  animation: zoom-in-out 30s infinite alternate;
}

/* Dark overlay to ensure text readability */
.background-container::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

/* Flexbox centering for the main panel */
body {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Glassmorphism Panel */
.glass-panel {
  position: relative;
  z-index: 10;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  padding: 3rem 4rem;
  max-width: 700px;
  width: 90%;
  text-align: center;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

/* Logo */
.logo-container {
  margin-bottom: 2rem;
}

.logo {
  width: 100%;
  max-width: 500px;
  height: auto;
  margin-bottom: 1.5rem;
  padding: 0.5rem;
  border-radius: 8px;
  border: 1px solid #000000; /* Siyah çizgi */
  transition: border-color 0.3s ease;
}

.logo:hover {
  border-color: #333333;
}

.company-name {
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #ffffff;
}

/* Typography */
.title {
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
  color: #FF6B00; /* İşçi turuncusu (Safety Orange) */
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3); /* Biraz gölge ile daha okunaklı ve estetik */
}

.subtitle {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.divider {
  width: 50px;
  height: 3px;
  background: rgba(255, 255, 255, 0.5);
  margin: 0 auto 2rem auto;
  border-radius: 2px;
}

.text-tr, .text-en {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.2rem;
  font-weight: 300;
}

.text-en {
  color: rgba(255, 255, 255, 0.85);
}

/* Contact Button */
.contact-box {
  margin-top: 3rem;
}

.contact-box p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-btn {
  display: inline-block;
  padding: 12px 32px;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-weight: 600;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.contact-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

/* Animations */
.fade-in {
  animation: fadeIn 1.2s ease-out forwards;
  opacity: 0;
  transform: translateY(20px);
}

@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes zoom-in-out {
  0% { transform: scale(1); }
  100% { transform: scale(1.1); }
}

/* Responsive adjustments */
@media (max-width: 600px) {
  .glass-panel {
    padding: 2rem;
  }
  
  .title {
    font-size: 1.8rem;
  }
  
  .subtitle {
    font-size: 1rem;
  }
  
  .logo {
    max-width: 180px;
  }
}
