/* Copyright belongs to RokHost LTD. 2025 */
/* Genel Ayarlar */
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #FFFFFF;
  color: #1C1C1C;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 16px;
}

a {
  text-decoration: none;
  color: #3B5BA5;
}

a:hover {
  color: #E87A5D;
}

/* Header */
.site-header {
  background-color: #3B5BA5;
  color: #FFFFFF;
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 10;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 24px;
  font-weight: bold;
}

.main-nav {
  display: flex;
  gap: 20px;
}

.main-nav a {
  color: #FFFFFF;
  font-weight: 500;
}

/* Hamburger */
.hamburger {
  display: none;
  font-size: 24px;
  background: none;
  border: none;
  color: #FFFFFF;
}

/* Ana İçerik */
.main-content {
  background-color: #F3F4F6;
  padding: 80px 20px;
  text-align: center;
}

.hero h1 {
  font-size: 36px;
}

.hero p {
  font-size: 18px;
  margin-top: 10px;
}

.cta-button {
  display: inline-block;
  margin-top: 20px;
  background-color: #E87A5D;
  color: #FFFFFF;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: bold;
}

.cta-button:hover {
  background-color: #cf654c;
}


.features {
  background-color: #FFFFFF;
  padding: 60px 20px;
}

.section-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
  color: #1C1C1C;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.feature-card {
  background-color: #F3F4F6;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.feature-icon {
  font-size: 40px;
  margin-bottom: 16px;
  color: #3B5BA5;
}

.feature-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #1C1C1C;
}

.feature-card p {
  font-size: 15px;
  color: #4B5563;
}

.pricing {
  background-color: #F3F4F6;
  padding: 60px 20px;
}

.pricing .section-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
  color: #1C1C1C;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.pricing-card {
  background-color: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

.pricing-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #3B5BA5;
}

.pricing-card .price {
  font-size: 28px;
  font-weight: bold;
  color: #1C1C1C;
  margin-bottom: 16px;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
}

.pricing-card ul li {
  margin-bottom: 10px;
  color: #4B5563;
}

.price-btn {
  display: inline-block;
  background-color: #E87A5D;
  color: #FFFFFF;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.price-btn:hover {
  background-color: #cf654c;
}

.pricing-card.highlight {
  border: 2px solid #3B5BA5;
  box-shadow: 0 0 0 3px #E5E7EB;
}


.register-section {
  background-color: #FFFFFF;
  padding: 60px 20px;
}

.register-section .section-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
  color: #1C1C1C;
}

.register-form {
  max-width: 600px;
  margin: 0 auto;
  background-color: #F3F4F6;
  padding: 30px;
  border-radius: 12px;
  border: 1px solid #E5E7EB;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.register-form .form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.register-form label {
  font-weight: 500;
  margin-bottom: 8px;
  color: #1C1C1C;
}

.register-form input {
  padding: 12px;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  font-size: 15px;
  background-color: #F9FAFB;
}

.register-btn {
  width: 100%;
  background-color: #E87A5D;
  color: #FFFFFF;
  padding: 14px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.2s ease;
  margin-top: 10px;
}

.register-btn:hover {
  background-color: #cf654c;
}

.auth-link {
  text-align: center;
  margin-top: 16px;
  font-size: 14px;
}

.auth-link a {
  color: #3B5BA5;
  text-decoration: none;
}

.auth-link a:hover {
  text-decoration: underline;
}

.login-section {
  background-color: #F3F4F6;
  padding: 60px 20px;
}

.login-section .section-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
  color: #1C1C1C;
}

.login-form {
  max-width: 500px;
  margin: 0 auto;
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 12px;
  border: 1px solid #E5E7EB;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.login-form .form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.login-form label {
  font-weight: 500;
  margin-bottom: 8px;
  color: #1C1C1C;
}

.login-form input {
  padding: 12px;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  font-size: 15px;
  background-color: #F9FAFB;
}

.login-btn {
  width: 100%;
  background-color: #3B5BA5;
  color: #FFFFFF;
  padding: 14px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.2s ease;
  margin-top: 10px;
}

.login-btn:hover {
  background-color: #2e477f;
}

.auth-link {
  text-align: center;
  margin-top: 16px;
  font-size: 14px;
}

.auth-link a {
  color: #E87A5D;
  text-decoration: none;
}

.auth-link a:hover {
  text-decoration: underline;
}



/* Footer */
.site-footer {
  background-color: #1F2937;
  color: #D1D5DB;
  text-align: center;
  padding: 24px 0;
}

/* Responsive */
@media (max-width: 768px) {
  .main-nav {
    display: none;
    flex-direction: column;
    background-color: #3B5BA5;
    position: absolute;
    top: 60px;
    right: 16px;
    padding: 10px;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
  }

  .main-nav.active {
    display: flex;
  }

  .hamburger {
    display: block;
  }
}

/* Blog kısmı  */


.blog-section {
  padding: 60px 0;
  background-color: #F9FAFB;
}

.blog-section h2 {
  font-size: 28px;
  text-align: center;
  margin-bottom: 40px;
  color: #1C1C1C;
}

.blog-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.blog-card {
  background-color: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
}

.blog-card img {
  width: 100%;
  height: auto;
  display: block;
}

.blog-content {
  padding: 20px;
}

.blog-content h3 {
  font-size: 18px;
  color: #1C1C1C;
  margin-bottom: 10px;
}

.blog-content p {
  font-size: 14px;
  color: #4B5563;
  margin-bottom: 10px;
}

.blog-date {
  font-size: 12px;
  color: #9CA3AF;
  display: block;
  margin-bottom: 10px;
}

.read-more {
  display: inline-block;
  background-color: #3B5BA5;
  color: white;
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 14px;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.read-more:hover {
  background-color: #2f4c8e;
}
