/* Genel Stil Ayarları */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Playfair Display', serif;
  overflow-x: hidden;
}

/* Navbar Stili */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #04121d;
  padding: 10px 20px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
}

.navbar .logo img {
  width: 100px; /* Logonun boyutunu ayarlayın */
}

.navbar .nav-links {
  display: flex;
  list-style: none;
  padding: 0;
}

.navbar .nav-links li {
  margin-right: 20px;
}

.navbar .nav-links a {
  color: white;
  text-decoration: none;
  font-size: 20px;
}

/* Dropdown Menüsü */
.dropdown {
  position: relative;
}

.dropdown .dropbtn {
  background-color: #04121d;
  color: white;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  font-size: 16px;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #04121d;
  min-width: 160px;
  z-index: 1;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown-content a {
  color: white;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {
  background-color: #17264f;
}
/* Canvas için Stil */
#bgCanvas {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Playfair Display', serif;
  background-color: #ffffff;
  background-image: url('https://www.transparenttextures.com/patterns/linen.png');
  background-repeat: repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  text-align: center;
  color: #04121d;
}

.coming-soon-container {
  max-width: 800px;
  padding: 2rem;
  position: relative;
}

.logo {
  width: 120px;
  margin-bottom: 1rem;
}

.log {
  width: 290px;
  margin-bottom: 0.5rem;
}

h1 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #04121d;
}

p {
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #ccc;
  border-top: 4px solid #333;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 1rem auto;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.email-form {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.email-form input {
  padding: 0.6rem 1rem;
  border: 1px solid #04121d;
  border-radius: 5px 0 0 5px;
  outline: none;
  width: 60%;
  min-width: 200px;
}

.email-form button {
  padding: 0.6rem 1rem;
  border: none;
  background-color: #04121d;
  color: white;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
  transition: background 0.3s;
}

.email-form button:hover {
  background-color: #04121d;
}

.socials {
  margin-top: 1rem;
}

.socials a {
  color: #04121d;
  font-size: 1.5rem;
  margin: 0 10px;
  transition: color 0.3s;
}

.socials a:hover {
  color: #04121d;
}

.decoration {
  width: 60px;
  position: absolute;
  bottom: 10px;
  right: 10px;
  opacity: 3.6;
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  .email-form {
    flex-direction: column;
  }
  .email-form input, .email-form button {
    width: 100%;
    border-radius: 5px;
    margin: 0.3rem 0;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  opacity: 0;
  animation: fadeInUp 1s ease-out forwards;
}
.fade-in-up:nth-child(2) { animation-delay: 0.2s; }
.fade-in-up:nth-child(3) { animation-delay: 0.4s; }
.fade-in-up:nth-child(4) { animation-delay: 0.6s; }


@keyframes slowSpin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.decoration {
  width: 60px;
  position: absolute;
  bottom: 10px;
  right: 10px;
  opacity: 0.8;
  animation: slowSpin 10s linear infinite;
}
.contact-info {
  margin-top: 2rem;
  color: #04121d;
  font-size: 1rem;
  line-height: 1.6;
}

.contact-info h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #04121d;
}

.contact-info a {
  color: #04121d;
  text-decoration: none;
  border-bottom: 1px dashed #aaa;
  transition: color 0.3s;
}

.contact-info a:hover {
  color: #04121d;
}

body[dir="rtl"] {
  font-family: 'Cairo', sans-serif; /* Arapça dostu font */
  text-align: right;
}

body {
  direction: ltr; /* İngilizce sayfa için varsayılan yazı yönü */
}
