/* ===== Base Variables and Settings ===== */
:root {
  /* Color Palette - Neutral with subtle highlights */
  --color-primary: #3273dc;
  --color-primary-dark: #2160c4;
  --color-primary-light: #4a89dc;
  --color-secondary: #4a4a4a;
  --color-secondary-dark: #363636;
  --color-secondary-light: #666666;
  --color-accent: #ffdd57;
  --color-accent-dark: #ffcc00;
  --color-success: #48c774;
  --color-warning: #ffdd57;
  --color-danger: #f14668;
  --color-info: #3298dc;
  
  /* Neutral Colors */
  --color-white: #ffffff;
  --color-off-white: #f5f5f5;
  --color-light-grey: #e0e0e0;
  --color-grey: #b5b5b5;
  --color-dark-grey: #7a7a7a;
  --color-black: #0a0a0a;
  
  /* Background colors */
  --color-background: var(--color-white);
  --color-background-light: var(--color-off-white);
  --color-background-dark: #2c3e50;
  
  /* Text colors */
  --color-text: #333333;
  --color-text-light: #666666;
  --color-text-inverted: var(--color-white);
  
  /* Typography */
  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --font-size-base: 1rem;
  --font-size-sm: 0.875rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 1.875rem;
  --font-size-4xl: 2.25rem;
  --font-size-5xl: 3rem;
  
  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-8: 3rem;
  --space-10: 4rem;
  --space-12: 5rem;
  
  /* Borders */
  --border-radius-sm: 0.2rem;
  --border-radius: 0.375rem;
  --border-radius-lg: 0.5rem;
  --border-radius-xl: 1rem;
  --border-radius-full: 9999px;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  
  /* Transitions */
  --transition-fast: 150ms ease-in-out;
  --transition-normal: 300ms ease-in-out;
  --transition-slow: 500ms ease-in-out;
  
  /* Z-index */
  --z-below: -1;
  --z-normal: 1;
  --z-above: 10;
  --z-dropdown: 1000;
  --z-sticky: 1100;
  --z-fixed: 1200;
  --z-modal: 1300;
  --z-popover: 1400;
  --z-tooltip: 1500;
}

/* ===== Reset & Base Styles ===== */
html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  line-height: 1.6;
  background-color: var(--color-background);
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  margin-top: 0;
  margin-bottom: var(--space-4);
}

p {
  margin-top: 0;
  margin-bottom: var(--space-4);
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

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

img {
  max-width: 100%;
  height: auto;
}

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

.text-right {
  text-align: right;
}

.d-flex {
  display: flex;
}

.flex-column {
  flex-direction: column;
}

.justify-center {
  justify-content: center;
}

.align-center {
  align-items: center;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.mb-0 {
  margin-bottom: 0;
}

.mt-0 {
  margin-top: 0;
}

.mb-1 {
  margin-bottom: var(--space-1);
}

.mt-1 {
  margin-top: var(--space-1);
}

.mb-2 {
  margin-bottom: var(--space-2);
}

.mt-2 {
  margin-top: var(--space-2);
}

.mb-3 {
  margin-bottom: var(--space-3);
}

.mt-3 {
  margin-top: var(--space-3);
}

.mb-4 {
  margin-bottom: var(--space-4);
}

.mt-4 {
  margin-top: var(--space-4);
}

.mb-5 {
  margin-bottom: var(--space-5);
}

.mt-5 {
  margin-top: var(--space-5);
}

.mb-6 {
  margin-bottom: var(--space-6);
}

.mt-6 {
  margin-top: var(--space-6);
}

.mb-8 {
  margin-bottom: var(--space-8);
}

.mt-8 {
  margin-top: var(--space-8);
}

.py-6 {
  padding-top: var(--space-6);
  padding-bottom: var(--space-6);
}

/* ===== Button Styles ===== */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 500;
  padding: 0.5rem 1.5rem;
  border-radius: var(--border-radius);
  border: none;
  cursor: pointer;
  transition: all var(--transition-normal);
  text-decoration: none;
  line-height: 1.5;
}

.button.is-primary {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.button.is-primary:hover {
  background-color: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.button.is-light {
  background-color: var(--color-white);
  color: var(--color-secondary);
  border: 1px solid var(--color-light-grey);
}

.button.is-light:hover {
  background-color: var(--color-off-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.button.is-large {
  font-size: var(--font-size-lg);
  padding: 0.75rem 2rem;
}

.button.is-medium {
  font-size: var(--font-size-base);
  padding: 0.625rem 1.75rem;
}

.button.is-fullwidth {
  width: 100%;
  display: flex;
}

/* ===== Global Card Styles ===== */
.card {
  background-color: var(--color-white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  height: 100%;
  display: flex;
  flex-direction: column;
}

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

.card-image {
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.card-image img {
  width: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.card-content {
  padding: var(--space-5);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.card-content > .content {
  flex-grow: 1;
}

/* ===== Header & Navigation ===== */
.header {
  width: 100%;
  position: relative;
  z-index: var(--z-sticky);
}

.navbar {
  background-color: var(--color-white);
  box-shadow: var(--shadow);
}

.navbar-brand {
  font-family: var(--font-heading);
  font-weight: 700;
}

.navbar-item {
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: color var(--transition-fast);
}

.navbar-item:hover {
  color: var(--color-primary);
}

/* ===== Hero Section ===== */
.hero {
  position: relative;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-body {
  z-index: 2;
  width: 100%;
}

.hero .title,
.hero .subtitle,
.hero p {
  color: var(--color-white);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero .title {
  font-size: clamp(2rem, 5vw, 4rem);
  margin-bottom: var(--space-3);
  font-weight: 700;
}

.hero .subtitle {
  font-size: clamp(1.25rem, 3vw, 2.5rem);
  margin-bottom: var(--space-5);
  font-weight: 500;
}

.hero .buttons {
  margin-top: var(--space-6);
}

/* ===== Section Styles ===== */
.section {
  padding: 4rem 1.5rem;
}

.section.has-background-light {
  background-color: var(--color-background-light);
}

.section .title {
  font-weight: 700;
  margin-bottom: var(--space-2);
}

.section .subtitle {
  color: var(--color-text-light);
  margin-bottom: var(--space-6);
}

/* ===== Statistics ===== */
.box {
  background-color: var(--color-white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  padding: var(--space-5);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

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

/* ===== About Section ===== */
.content {
  color: var(--color-text);
}

.content p {
  margin-bottom: var(--space-4);
  line-height: 1.7;
}

.content ul {
  margin-bottom: var(--space-4);
  padding-left: var(--space-5);
}

.content ul li {
  margin-bottom: var(--space-2);
}

/* ===== Courses Section ===== */
.columns {
  margin-left: -0.75rem;
  margin-right: -0.75rem;
  margin-top: -0.75rem;
}

.columns:last-child {
  margin-bottom: -0.75rem;
}

.column {
  padding: 0.75rem;
}

.image.is-4by3 {
  padding-top: 75%;
  position: relative;
}

.image.is-4by3 img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image.is-16by9 {
  padding-top: 56.25%;
  position: relative;
}

.image.is-16by9 img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image.is-square {
  padding-top: 100%;
  position: relative;
}

.image.is-square img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image.is-3by2 {
  padding-top: 66.66%;
  position: relative;
}

.image.is-3by2 img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== Vision Section ===== */
#vizyon {
  position: relative;
}

#vizyon .image img {
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
}

/* ===== External Resources ===== */
.is-two-thirds {
  width: 66.66%;
  margin: 0 auto;
}

/* ===== Events Calendar ===== */
#etkinlikler .card {
  height: 100%;
}

#etkinlikler .card-content {
  display: flex;
  flex-direction: column;
  height: 100%;
}

#etkinlikler .content {
  flex-grow: 1;
}

/* ===== Insights Section ===== */
.has-background-light {
  background-color: var(--color-background-light);
}

/* ===== Team Section ===== */
#ekip .card {
  text-align: center;
}

#ekip .card-content {
  padding-top: var(--space-4);
}

#ekip .image {
  overflow: hidden;
}

#ekip .image img {
  transition: transform var(--transition-slow);
}

#ekip .card:hover .image img {
  transform: scale(1.1);
}

/* ===== Success Stories ===== */
.media {
  display: flex;
  align-items: flex-start;
  margin-bottom: var(--space-4);
}

.media-left {
  margin-right: var(--space-4);
}

.media-content {
  flex-grow: 1;
}

/* ===== Behind the Scenes ===== */
#eğitim-ortamımız .image {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

/* ===== Workshops ===== */
.has-background-light {
  background-color: var(--color-background-light);
}

/* ===== Contact Section ===== */
#iletisim .card {
  height: 100%;
}

.field {
  margin-bottom: var(--space-4);
}

.label {
  color: var(--color-text);
  display: block;
  font-weight: 600;
  margin-bottom: var(--space-2);
}

.control {
  position: relative;
  width: 100%;
}

.input, .textarea, .select select {
  background-color: var(--color-white);
  border: 1px solid var(--color-light-grey);
  border-radius: var(--border-radius);
  color: var(--color-text);
  padding: 0.5rem 0.75rem;
  width: 100%;
  transition: border-color var(--transition-fast);
}

.input:focus, .textarea:focus, .select select:focus {
  border-color: var(--color-primary);
  outline: none;
  box-shadow: 0 0 0 2px rgba(50, 115, 220, 0.25);
}

.textarea {
  min-height: 120px;
  resize: vertical;
}

.checkbox {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.checkbox input {
  margin-right: var(--space-2);
}

/* ===== Footer ===== */
.footer {
  background-color: var(--color-background-dark);
  color: var(--color-white);
  padding: 3rem 1.5rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: var(--space-2);
}

.footer-links a {
  color: var(--color-light-grey);
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--color-white);
  text-decoration: none;
}

.footer .title {
  color: var(--color-white);
}

.footer hr {
  background-color: var(--color-dark-grey);
  height: 1px;
  margin: 2rem 0;
}

/* ===== Cookie Popup ===== */
#cookie-popup {
  padding: var(--space-4);
  background-color: rgba(0, 0, 0, 0.85);
  color: var(--color-white);
}

#accept-cookies {
  background-color: var(--color-primary);
  color: var(--color-white);
  border: none;
  padding: var(--space-2) var(--space-5);
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: background-color var(--transition-fast);
}

#accept-cookies:hover {
  background-color: var(--color-primary-dark);
}

/* ===== AOS Animation ===== */
[data-aos] {
  pointer-events: none;
}

[data-aos].aos-animate {
  pointer-events: auto;
}

/* ===== Success Page ===== */
.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-6);
}

/* ===== Privacy & Terms Pages ===== */
.privacy-page, .terms-page {
  padding-top: 100px;
}

.privacy-page .container, .terms-page .container {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-6);
}

/* ===== Media Queries ===== */
@media screen and (max-width: 768px) {
  .section {
    padding: 3rem 1rem;
  }
  
  .columns {
    flex-direction: column;
  }
  
  .column {
    width: 100%;
  }
  
  .is-two-thirds {
    width: 100%;
  }
  
  .hero .title {
    font-size: 2rem;
  }
  
  .hero .subtitle {
    font-size: 1.25rem;
  }
  
  .navbar-menu {
    background-color: var(--color-white);
    box-shadow: var(--shadow-lg);
    padding: var(--space-4);
  }
  
  .navbar-item {
    padding: var(--space-3) var(--space-4);
  }
}

@media screen and (min-width: 769px) and (max-width: 1023px) {
  .hero .title {
    font-size: 3rem;
  }
  
  .hero .subtitle {
    font-size: 1.75rem;
  }
}

@media screen and (min-width: 1024px) {
  .container {
    max-width: 960px;
    margin: 0 auto;
  }
}

@media screen and (min-width: 1216px) {
  .container {
    max-width: 1152px;
  }
}

@media screen and (min-width: 1408px) {
  .container {
    max-width: 1344px;
  }
}

/* ===== Additional Animations ===== */
.fade-in {
  animation: fadeIn var(--transition-normal);
}

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

.slide-up {
  animation: slideUp var(--transition-normal);
}

@keyframes slideUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Read More Links */
.read-more {
  display: inline-block;
  color: var(--color-primary);
  font-weight: 600;
  position: relative;
  padding-right: 1.5rem;
  transition: all var(--transition-fast);
}

.read-more:after {
  content: '→';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: transform var(--transition-fast);
}

.read-more:hover {
  color: var(--color-primary-dark);
  text-decoration: none;
}

.read-more:hover:after {
  transform: translate(5px, -50%);
}

/* Social Media Icons */
.social-links {
  display: flex;
  gap: var(--space-3);
}

.social-link {
  color: var(--color-light-grey);
  font-size: var(--font-size-lg);
  transition: color var(--transition-fast), transform var(--transition-fast);
}

.social-link:hover {
  color: var(--color-white);
  transform: translateY(-3px);
}
*{
  opacity: 1 !important;
}

.navbar-burger{
  display: none !important;
}