/* style.css */

/* Temel sıfırlamalar */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: "Arial", sans-serif;
    background: #f5f5f5;
    color: #333;
  }
  
  /* Sayfanın ana konteyneri */
  .coming-soon-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 100vh;
    padding: 20px;
  }
  
  /* Logo alanı */
  .logo-wrapper img {
    max-width: 250px;
    height: auto;
    margin-bottom: 20px;
  }
  
  /* Başlıklar */
  .title {
    font-size: 2.5rem;
    margin-bottom: 10px;
  }
  
  .subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 600px;
    color: #666;
  }
  
  /* Sayaç alanı */
  .countdown {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
  }
  
  .time-box {
    background: #fff;
    border: 2px solid #0077be;
    border-radius: 8px;
    padding: 10px 15px;
    min-width: 60px;
  }
  
  .time-box span {
    display: block;
    font-size: 1.5rem;
    color: #0077be;
    font-weight: bold;
  }
  
  .time-box p {
    margin-top: 5px;
    font-size: 0.9rem;
    color: #333;
  }
  
  /* Abonelik formu */
  .notify-form {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 30px;
  }
  
  .notify-form input {
    padding: 10px;
    font-size: 1rem;
    border: 2px solid #ccc;
    border-radius: 4px 0 0 4px;
    outline: none;
    width: 250px;
    max-width: 100%;
  }
  
  .notify-form button {
    padding: 10px 20px;
    font-size: 1rem;
    border: 2px solid #0077be;
    background: #0077be;
    color: #fff;
    cursor: pointer;
    border-radius: 0 4px 4px 0;
    outline: none;
  }
  
  .notify-form button:hover {
    background: #005f8a;
    border-color: #005f8a;
  }
  
  /* Sosyal medya ikonları */
  .social-media {
    display: flex;
    gap: 20px;
  }
  
  .social-media a img {
    width: 30px;
    height: 30px;
    transition: transform 0.2s ease;
  }
  
  .social-media a img:hover {
    transform: scale(1.1);
  }
  
  /* Responsive Tasarım */
  @media (max-width: 600px) {
    .title {
      font-size: 2rem;
    }
    .subtitle {
      font-size: 1rem;
    }
    .time-box {
      min-width: 50px;
      padding: 5px 10px;
    }
    .time-box span {
      font-size: 1.2rem;
    }
    .notify-form {
      flex-direction: column;
      align-items: center;
    }
    .notify-form input {
      border-radius: 4px;
      margin-bottom: 10px;
    }
    .notify-form button {
      border-radius: 4px;
    }
  }
  