/* Ana Stil Dosyası */
:root {
  --primary-color: #4a6fa5;
  --secondary-color: #6cb2eb;
  --accent-color: #f4645f;
  --text-color: #333;
  --light-text: #777;
  --background-color: #fff;
  --light-bg: #f8f9fa;
  --border-color: #ddd;
  --font-heading: 'Raleway', sans-serif;
  --font-body: 'Open Sans', sans-serif;
}

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

body {
  font-family: var(--font-body);
  color: var(--text-color);
  line-height: 1.6;
  background-color: var(--background-color);
  text-align: center;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--accent-color);
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/* Header Styles */
header {
  background-color: var(--background-color);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo-container {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px 0;
}

.logo-container img {
  height: 60px;
  margin-right: 15px;
}

.logo-container h1 {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--primary-color);
}

/* Navigation */
nav {
  background-color: var(--light-bg);
  padding: 15px 0;
}

.nav-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  list-style: none;
}

.nav-links li {
  margin: 0 15px;
}

.nav-links li a {
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.nav-links li a:hover, .nav-links li a.active {
  background-color: var(--primary-color);
  color: white;
}

/* Hero Section */
.hero {
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  color: white;
  padding: 60px 20px;
  text-align: center;
  margin-bottom: 40px;
}

.hero h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto 30px;
}

/* Section Styles */
section {
  margin-bottom: 50px;
}

h2, h3, h4 {
  font-family: var(--font-heading);
  margin-bottom: 20px;
  color: var(--primary-color);
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.2rem;
}

p {
  margin-bottom: 20px;
}

/* Cards and Feature Sections */
.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin: 40px 0;
}

.feature-card {
  flex: 1 1 300px;
  background-color: var(--light-bg);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  max-width: 350px;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.feature-card i, .feature-card img {
  font-size: 2.5rem;
  color: var(--accent-color);
  margin-bottom: 20px;
}

.feature-card img {
  height: 80px;
  width: auto;
}

.feature-card h3 {
  margin-bottom: 15px;
}

/* Blog Section */
.blog-posts {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin: 40px 0;
}

.blog-card {
  flex: 1 1 300px;
  background-color: var(--background-color);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  max-width: 350px;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 20px;
}

.blog-content h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.blog-content p {
  font-size: 0.95rem;
  color: var(--light-text);
  margin-bottom: 15px;
}

.read-more {
  display: inline-block;
  padding: 8px 15px;
  background-color: var(--secondary-color);
  color: white;
  border-radius: 5px;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.read-more:hover {
  background-color: var(--primary-color);
}

/* FAQ Section */
.faq-section {
  max-width: 800px;
  margin: 0 auto 50px;
}

.faq-item {
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 20px;
}

.faq-question {
  font-weight: bold;
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--primary-color);
}

.faq-answer {
  color: var(--text-color);
}

/* Forms */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
  background-color: var(--light-bg);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-group {
  margin-bottom: 20px;
  text-align: left;
}

label {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
}

input, textarea, select {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  font-family: var(--font-body);
  font-size: 1rem;
}

textarea {
  min-height: 150px;
  resize: vertical;
}

button {
  background-color: var(--primary-color);
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: var(--accent-color);
}

/* Footer */
footer {
  background-color: var(--light-bg);
  padding: 40px 0;
  margin-top: 60px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-section {
  flex: 1 1 300px;
  margin-bottom: 30px;
  text-align: left;
}

.footer-section h3 {
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--light-text);
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-icons a {
  color: var(--primary-color);
  font-size: 1.5rem;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: var(--accent-color);
}

.bottom-footer {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid var(--border-color);
  margin-top: 30px;
  color: var(--light-text);
}

/* Single Blog Post */
.blog-post-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

.blog-post-content img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 20px 0;
}

.blog-post-content h2 {
  margin-top: 40px;
}

.blog-post-content ul, .blog-post-content ol {
  margin-left: 20px;
  margin-bottom: 20px;
}

.blog-post-meta {
  color: var(--light-text);
  margin-bottom: 20px;
  font-style: italic;
}

/* Mental Exercise Section */
.exercise-container {
  max-width: 800px;
  margin: 0 auto 40px;
  background-color: var(--light-bg);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.exercise-item {
  margin-bottom: 20px;
}

.exercise-options {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 15px 0;
}

.option-btn {
  padding: 10px 20px;
  background-color: var(--background-color);
  border: 2px solid var(--primary-color);
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.option-btn:hover {
  background-color: var(--secondary-color);
  color: white;
}

/* About Us Page */
.team-section {
  margin: 50px 0;
}

.team-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.team-card {
  flex: 1 1 250px;
  max-width: 300px;
  background-color: var(--light-bg);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.team-card:hover {
  transform: translateY(-5px);
}

.team-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.team-info {
  padding: 20px;
}

.team-info h3 {
  margin-bottom: 5px;
}

.team-info p:first-of-type {
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 10px;
}

/* Cookies Consent */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--background-color);
  padding: 15px;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  z-index: 999;
  display: none;
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
}

.cookie-text {
  flex: 1 1 300px;
  text-align: left;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
}

.cookie-btn {
  padding: 8px 15px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.accept-cookies {
  background-color: var(--primary-color);
  color: white;
  border: none;
}

.accept-cookies:hover {
  background-color: var(--accent-color);
}

.customize-cookies, .reject-cookies {
  background-color: transparent;
  border: 1px solid var(--border-color);
  color: var(--text-color);
}

.customize-cookies:hover, .reject-cookies:hover {
  background-color: var(--light-bg);
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-links {
    flex-direction: column;
    align-items: center;
  }
  
  .nav-links li {
    margin: 5px 0;
  }
  
  .hero h2 {
    font-size: 2rem;
  }
  
  .feature-card, .blog-card {
    flex: 1 1 100%;
  }
  
  .footer-content {
    flex-direction: column;
    align-items: center;
  }
  
  .footer-section {
    text-align: center;
    margin-bottom: 30px;
  }
  
  .social-icons {
    justify-content: center;
  }
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

.modal-content {
  background-color: var(--background-color);
  padding: 30px;
  border-radius: 10px;
  max-width: 500px;
  width: 90%;
  text-align: center;
  position: relative;
}

.close-modal {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.mt-20 {
  margin-top: 20px;
}

.mb-20 {
  margin-bottom: 20px;
}

.p-20 {
  padding: 20px;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: var(--accent-color);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}

.btn-outline:hover {
  background-color: var(--primary-color);
  color: white;
}

.rounded-img {
  border-radius: 50%;
}

.icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

/* Animation */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.animate-fade {
  animation: fadeIn 1s ease-in-out;
}
