/* Base CSS for Kişisel Evrim - Turkish Personal Evolution Website */

:root {
  /* Color Variables - Neutral with Brutalist accents */
  --primary: #3d3d3d;
  --primary-dark: #262626;
  --secondary: #e8e8e8;
  --secondary-light: #f5f5f5;
  --accent: #ff6b35;
  --accent-light: #ff8b5a;
  --accent-dark: #e04e1e;
  --text-dark: #222222;
  --text-light: #ffffff;
  --text-muted: #6c757d;
  --border-color: #d9d9d9;
  --background-light: #f8f9fa;
  --background-dark: #343a40;
  --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  --box-shadow-hover: 0 8px 25px rgba(0, 0, 0, 0.15);
  --transition: all 0.3s ease-in-out;
  --border-radius: 4px;
  --border-radius-lg: 8px;
  --brutalist-shadow: 8px 8px 0 rgba(0, 0, 0, 0.7);
  --biomorphic-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

/* Typography */
body {
  font-family: 'IBM Plex Sans', sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .display-1, .display-2, .display-3, .display-4, .display-5, .display-6 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.lead {
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1.5;
}

/* Global styles */
a {
  color: var(--accent);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--accent-dark);
  text-decoration: underline;
}

.min-vh-80 {
  min-height: 80vh;
}

/* Button styles - GLOBAL */
.btn, button, input[type="submit"] {
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 0.5rem 1.5rem;
  border-radius: var(--border-radius);
  transition: var(--transition);
  text-transform: uppercase;
  font-size: 0.9rem;
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn:hover, button:hover, input[type="submit"]:hover {
  transform: translateY(-3px);
  box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.3);
}

.btn:active, button:active, input[type="submit"]:active {
  transform: translateY(1px);
  box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.1);
}

.btn::before, button::before, input[type="submit"]::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease-out;
  z-index: -1;
}

.btn:hover::before, button:hover::before, input[type="submit"]:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.btn-primary {
  background-color: var(--accent);
  border-color: var(--accent);
  color: var(--text-light) !important;
}

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

.btn-outline-light {
  color: var(--text-light);
  border-color: var(--text-light);
}

.btn-outline-light:hover {
  background-color: var(--text-light);
  color: var(--text-dark);
}

.btn-lg {
  padding: 0.75rem 2rem;
  font-size: 1rem;
}

/* Header */
.header-section {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  transition: var(--transition);
}

.header-section.scrolled {
  padding: 0.5rem 0;
  background-color: rgba(255, 255, 255, 0.98);
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--primary);
}

.navbar-nav .nav-link {
  font-weight: 500;
  color: var(--text-dark);
  padding: 0.5rem 1rem;
  margin: 0 0.2rem;
  position: relative;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--accent);
  transition: var(--transition);
  transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 80%;
}

.navbar-toggler {
  border: none;
  padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
  box-shadow: none;
  outline: none;
}

/* Hero Section */
.hero-section {
  padding-top: 70px;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%);
  z-index: 1;
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

.hero-section h1 {
  color: var(--text-light);
  font-weight: 800;
  margin-bottom: 1.5rem;
  position: relative;
}

.hero-section h1::before {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100px;
  height: 4px;
  background-color: var(--accent);
}

.hero-section p {
  color: var(--text-light);
  font-size: 1.2rem;
  max-width: 600px;
  margin-bottom: 2rem;
}

.hero-section .btn {
  margin-top: 1rem;
}

/* Mission Section */
.mission-section {
  background-color: var(--background-light);
  padding: 5rem 0;
}

.mission-section .image-container {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--brutalist-shadow);
  transform: rotate(-2deg);
  transition: var(--transition);
}

.mission-section .image-container:hover {
  transform: rotate(0deg) scale(1.02);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.mission-section .image-container img {
  width: 100%;
  height: auto;
  transition: var(--transition);
}

.mission-section .mission-content {
  padding: 0 1rem;
}

.mission-section h3 {
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  position: relative;
}

.mission-section h3::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--accent);
}

.progress-container {
  margin-bottom: 1.5rem;
}

.progress-container span {
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text-dark);
}

.progress {
  height: 10px;
  border-radius: 10px;
  background-color: var(--secondary);
  overflow: hidden;
}

.progress-bar {
  background-color: var(--accent);
  transition: width 1.5s ease-in-out;
}

/* Insights Section */
.insights-section {
  padding: 5rem 0;
  background-color: var(--background-light);
}

.insights-card {
  border: none;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.insights-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--box-shadow-hover);
}

.card-image {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.card-img-top {
  transition: var(--transition);
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.insights-card:hover .card-img-top {
  transform: scale(1.05);
}

.card-body {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.card-title {
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.card-text {
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

/* External Resources Section */
.external-resources-section {
  padding: 5rem 0;
  background-color: #fff;
}

.resource-card {
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--box-shadow);
  height: 100%;
  transition: var(--transition);
  background-color: var(--secondary-light);
  border-left: 5px solid var(--accent);
}

.resource-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow-hover);
}

.resource-card h3 {
  margin-bottom: 1rem;
}

.resource-card a {
  color: var(--text-dark);
  transition: var(--transition);
  font-weight: 600;
}

.resource-card a:hover {
  color: var(--accent);
  text-decoration: none;
}

.resource-card p {
  color: var(--text-muted);
  margin-bottom: 0;
}

/* Instructors Section */
.instructors-section {
  padding: 5rem 0;
  background-color: var(--background-light);
}

.instructor-card {
  border: none;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.instructor-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--box-shadow-hover);
}

.instructor-card .card-img-top {
  height: 350px;
  width: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.instructor-card:hover .card-img-top {
  transform: scale(1.05);
}

.instructor-card .card-body {
  text-align: center;
  padding: 1.5rem;
}

.instructor-card .card-title {
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.instructor-card .card-subtitle {
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 1rem;
}

/* Press Section */
.press-section {
  padding: 5rem 0;
  background-color: #fff;
}

.press-card {
  margin-bottom: 2rem;
}

.press-card .card-image {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.press-card .card-image:hover {
  box-shadow: var(--box-shadow-hover);
}

.press-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: var(--transition);
}

.press-card:hover img {
  transform: scale(1.05);
}

.press-content {
  padding: 1.5rem 0;
}

.press-content h3 {
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.press-content p {
  color: var(--text-muted);
}

/* Community Section */
.community-section {
  padding: 5rem 0;
  background-color: var(--background-light);
}

.community-image {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--brutalist-shadow);
  transform: rotate(2deg);
  transition: var(--transition);
}

.community-image:hover {
  transform: rotate(0deg) scale(1.02);
  box-shadow: var(--box-shadow-hover);
}

.community-image img {
  width: 100%;
  height: auto;
  transition: var(--transition);
}

.community-content {
  padding: 0 1rem;
}

.community-content h3 {
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  position: relative;
}

.community-content h3::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--accent);
}

.community-content ul li {
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.community-content ul li i {
  position: absolute;
  left: 0;
  top: 5px;
  color: var(--accent);
}

.testimonial-card {
  background-color: #fff;
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  box-shadow: var(--box-shadow);
  height: 100%;
  transition: var(--transition);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 15px;
  font-size: 5rem;
  line-height: 1;
  color: var(--accent);
  opacity: 0.1;
  font-family: 'Georgia', serif;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--box-shadow-hover);
}

.testimonial-content {
  position: relative;
  z-index: 1;
}

.testimonial-content p {
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  margin-top: auto;
}

.testimonial-author p:first-child {
  color: var(--text-dark);
}

.testimonial-author p:last-child {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Contact Section */
.contact-section {
  padding: 5rem 0;
  background-color: #fff;
}

.contact-form-wrapper {
  background-color: var(--secondary-light);
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  box-shadow: var(--brutalist-shadow);
  transition: var(--transition);
}

.contact-form-wrapper:hover {
  box-shadow: 12px 12px 0 rgba(0, 0, 0, 0.5);
}

.contact-form .form-control,
.contact-form .form-select {
  border: 2px solid var(--border-color);
  padding: 0.75rem 1rem;
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: var(--accent);
  box-shadow: none;
}

.contact-form label {
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.contact-info {
  margin-top: 2rem;
}

.contact-info .icon-wrapper {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
}

/* Footer */
.footer-section {
  padding: 4rem 0 2rem;
  background-color: var(--background-dark);
  color: var(--text-light);
}

.footer-section h3 {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  position: relative;
}

.footer-section h3::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--accent);
}

.footer-section ul {
  padding-left: 0;
}

.footer-section ul li {
  margin-bottom: 0.75rem;
}

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

.footer-section a:hover {
  color: var(--accent-light);
  text-decoration: none;
  padding-left: 5px;
}

.footer-section form input {
  border: none;
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius);
}

.footer-section form button {
  white-space: nowrap;
}

/* Success Page */
.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.success-content {
  max-width: 600px;
  background-color: var(--secondary-light);
  padding: 3rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--brutalist-shadow);
}

.success-icon {
  font-size: 4rem;
  color: var(--accent);
  margin-bottom: 2rem;
}

.success-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.success-message {
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

/* Privacy & Terms Pages */
.page-content {
  padding-top: 120px;
  padding-bottom: 3rem;
}

.page-header {
  margin-bottom: 3rem;
  text-align: center;
}

.page-header h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.content-section {
  background-color: #fff;
  border-radius: var(--border-radius-lg);
  padding: 2.5rem;
  box-shadow: var(--box-shadow);
}

.content-section h2 {
  color: var(--text-dark);
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.content-section h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 3px;
  background-color: var(--accent);
}

.content-section p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.content-section ul {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.content-section ul li {
  margin-bottom: 0.75rem;
}

/* Biomorphic design elements */
.rounded-custom {
  border-radius: var(--biomorphic-radius);
  transition: border-radius 0.5s ease-in-out;
}

.rounded-custom:hover {
  border-radius: 50% 30% 60% 40% / 40% 50% 30% 60%;
}

/* Cookie Consent */
.cookie-consent {
  border-top: 3px solid var(--accent);
}

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

/* Utility Classes */
.z-2 {
  z-index: 2;
}

.text-accent {
  color: var(--accent);
}

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

/* Animations */
@keyframes morphing {
  0% {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  }
  25% {
    border-radius: 50% 50% 50% 50% / 50% 50% 50% 50%;
  }
  50% {
    border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
  }
  75% {
    border-radius: 50% 50% 50% 50% / 50% 50% 50% 50%;
  }
  100% {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  }
}

.animate-morph {
  animation: morphing 10s infinite ease-in-out;
}

/* Media Queries */
@media (max-width: 991.98px) {
  .navbar-nav {
    padding: 1rem 0;
  }

  .navbar-nav .nav-link {
    padding: 0.5rem 0;
  }

  .navbar-nav .nav-link::after {
    left: 0;
    transform: none;
  }

  .hero-section h1 {
    font-size: 2.5rem;
  }

  .mission-section .image-container,
  .community-image {
    margin-bottom: 2rem;
  }
}

@media (max-width: 767.98px) {
  .hero-section h1 {
    font-size: 2rem;
  }

  .hero-section p {
    font-size: 1rem;
  }

  .footer-section h3 {
    margin-top: 1.5rem;
  }

  .contact-form-wrapper {
    margin-top: 2rem;
  }
}

@media (max-width: 575.98px) {
  .btn-lg {
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
  }

  .display-4 {
    font-size: 2rem;
  }

  .lead {
    font-size: 1rem;
  }
}

/* ScrollReveal Animations */
[data-sr-id] {
  visibility: hidden;
}
html,body{
  overflow-x: hidden;
}
*{
  opacity: 1 !important;
  visibility: visible !important;
}