/* Montserrat fontu */
body {
  font-family: 'Montserrat', Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: var(--light-gray);
  color: var(--dark-gray);
  line-height: 1.6;
}

:root {
  --main-blue: 	#1C1C1C;
  --main-blue-dark: #2563eb;
  --accent-pink: #f472b6;
  --light-gray: #1C1C1C;
  --dark-gray: #1e293b;
  --white: #fff;
  --black: #18181b;
  --transition: 0.3s cubic-bezier(.4,0,.2,1);
}

/* Navbar */
.navbar {
  background: rgba(96,165,250,0.92);
  box-shadow: 0 4px 24px rgba(96,165,250,0.08);
  backdrop-filter: blur(8px);
  border-bottom: 1.5px solid rgba(96,165,250,0.10);
  min-height: 64px;
  display: flex;
  align-items: center;
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.5rem 2rem;
  width: 100%;
}
.nav-left {
  flex: 1 1 0;
  display: flex;
  align-items: center;
  min-width: 160px;
}
.logo {
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--main-blue-dark);
  text-decoration: none;
  letter-spacing: 1px;
  padding: 0.2rem 0.5rem;
  border-radius: 8px;
  background: rgba(255,255,255,0.7);
  box-shadow: 0 2px 8px rgba(96,165,250,0.08);
}
.nav-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  margin: 0 auto;
  padding: 0;
  flex: 2 1 0;
  justify-content: center;
  align-items: center;
}
.nav-links li a {
  color: var(--dark-gray);
  font-weight: 500;
  font-size: 1.08rem;
  padding: 0.3rem 0.7rem;
  border-radius: 6px;
  transition: background var(--transition), color var(--transition);
}
.nav-links li a:hover,
.nav-links li a:focus {
  background: var(--main-blue-dark);
  color: var(--white);
}
.nav-right {
  flex: 1 1 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.2rem;
  min-width: 180px;
}
.cv-btn {
  background: var(--accent-pink);
  color: var(--white) !important;
  font-size: 1rem;
  padding: 0.4rem 1.1rem;
  border-radius: 22px;
  font-weight: 600;
  margin-left: 0.5rem;
  box-shadow: 0 2px 8px rgba(244,114,182,0.10);
  border: none;
  transition: background var(--transition), box-shadow var(--transition);
}
.cv-btn:hover {
  background: var(--main-blue-dark);
  box-shadow: 0 4px 16px var(--main-blue-dark);
}
.header-social-icons {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  margin-left: 0.7rem;
}
.header-social-icons img {
  width: 26px;
  height: 26px;
  border-radius: 6px;
  background: rgba(96,165,250,0.10);
  transition: box-shadow 0.3s, filter 0.3s;
  box-shadow: 0 2px 8px rgba(96,165,250,0.10);
}
.header-social-icons a:hover img {
  filter: brightness(1.2) drop-shadow(0 2px 8px var(--accent-pink));
  box-shadow: 0 4px 16px var(--accent-pink);
}
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  margin-left: 1.2rem;
}
.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--main-burgundy);
  border-radius: 2px;
  transition: all var(--transition);
}

/* Hero Section */
.hero-section {
  background: linear-gradient(120deg, var(--main-blue-dark) 0%, var(--main-blue) 60%, var(--accent-pink) 100%);
  color: var(--white);
  padding: 7rem 0 0 0;
  min-height: 90vh;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
}
.hero-content {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 3.5rem;
  min-height: 60vh;
}
.hero-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  z-index: 2;
}
.hero-title {
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  letter-spacing: -1px;
  animation: fadeInDown 1.2s cubic-bezier(.4,0,.2,1);
  color: var(--white);
}
.hero-subtitle {
  font-size: 1.5rem;
  min-height: 2.2em;
  margin-bottom: 2.2rem;
  color: var(--accent-pink);
  font-weight: 500;
  letter-spacing: 0.5px;
  animation: fadeInUp 1.5s cubic-bezier(.4,0,.2,1);
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-40px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-img img {
  width: 220px;
  height: 220px;
  object-fit: cover;
  border-radius: 50%;
  border: 7px solid var(--accent-pink);
  box-shadow: 0 8px 32px rgba(128,0,0,0.18);
  background: var(--light-gray);
  transition: transform 0.5s cubic-bezier(.4,0,.2,1);
}
.hero-img img:hover {
  transform: scale(1.06) rotate(-2deg);
}
.hero-divider {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: -1px;
  z-index: 1;
  line-height: 0;
}
.hero-divider svg {
  display: block;
  width: 100%;
  height: 120px;
}
.hero-divider svg path {
  fill: var(--light-gray);
}
.hero-text h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}
.hero-text .highlight {
  color: var(--accent-pink);
}
.hero-text p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}
.btn-primary {
  background: var(--main-blue);
  color: var(--white);
  padding: 0.7rem 2rem;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
  box-shadow: 0 2px 8px rgba(128,0,0,0.08);
}
.btn-primary:hover {
  background: var(--accent-pink);
  color: var(--white);
}

/* Section General */
.section {
  padding: 3rem 0 2rem 0;
  background: var(--white);
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(37,99,235,0.04);
  margin-bottom: 2.5rem;
}
.section h2 {
  color: var(--main-blue);
  font-size: 2rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* About, Education, Experience */
.about-section p,
.education-section p,
.experience-section p {
  font-size: 1.1rem;
  color: #444;
}
.education-item, .experience-item {
  background: #e0e7ff;
  border-radius: 12px;
  padding: 1rem 1.5rem;
  margin-bottom: 1.2rem;
  box-shadow: 0 2px 8px rgba(128,0,0,0.03);
  border-left: 6px solid var(--main-blue);
}
.education-item h3, .experience-item h3 {
  color: var(--main-blue-dark);
  margin-bottom: 0.3rem;
}

/* Skills */
.skills-bars {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 600px;
}
.skill-bar {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.bar-bg {
  background: #e0e7ff;
  border-radius: 10px;
  width: 100%;
  height: 16px;
  overflow: hidden;
}
.bar-fill {
  background: linear-gradient(90deg, var(--main-blue) 60%, var(--accent-pink) 100%);
  height: 100%;
  border-radius: 10px;
  transition: width 1.2s cubic-bezier(.4,0,.2,1);
}

/* Projects */
.modern-projects {
  background: transparent;
  transition: background 0.6s cubic-bezier(.4,0,.2,1);
  padding: 6rem 0 5rem 0;
  min-height: 80vh;
  position: relative;
  z-index: 2;
}
.projects-dot-row {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 3.5rem;
}
.projects-dot {
  width: 24px;
  height: 24px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 12px rgba(0,0,0,0.10);
  display: inline-block;
}
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}
.project-card {
  background: none;
  border-radius: 18px;
  overflow: visible;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.3s;
}
.project-img-wrap {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 18px;
  overflow: hidden;
  background: #222;
  margin-bottom: 1.2rem;
  transition: box-shadow 0.3s;
}
.project-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
  transition: transform 0.5s cubic-bezier(.4,0,.2,1), filter 0.5s cubic-bezier(.4,0,.2,1);
  filter: brightness(0.95) grayscale(0.1);
}
.project-card:hover .project-img {
  transform: scale(1.07) rotate(-1deg);
}
.project-title {
  color: #fff;
  font-size: 1.35rem;
  font-weight: 600;
  margin: 0.5rem 0 0 0.2rem;
  letter-spacing: 0.01em;
}
/* Projeler bölümü aktifken body arka planı siyah olsun */
body.projects-dark,
.modern-projects.projects-dark,
body.projects-dark .modern-projects {
  background: #1c1c1c !important;
}
.modern-projects.projects-dark .project-title,
body.projects-dark .modern-projects .project-title {
  color: #fff !important;
}
body.projects-dark .projects-section,
body.projects-dark .projects-grid,
body.projects-dark .project-card {
  background: transparent !important;
}
.modern-projects.projects-dark .container,
body.projects-dark .modern-projects .container,
.modern-projects.projects-dark .projects-grid,
body.projects-dark .modern-projects .projects-grid,
.modern-projects.projects-dark .project-card,
body.projects-dark .modern-projects .project-card {
  background: transparent !important;
}
.btn-secondary {
  background: var(--main-blue);
  color: var(--white);
  padding: 0.4rem 1.2rem;
  border-radius: 20px;
  font-weight: 600;
  text-decoration: none;
  margin-top: 0.7rem;
  transition: background var(--transition);
  border: none;
  cursor: pointer;
}
.btn-secondary:hover {
  background: var(--accent-pink);
}

/* Contact */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 500px;
  margin: 0 auto;
}
.contact-form input,
.contact-form textarea {
  padding: 0.8rem 1rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  transition: border var(--transition);
  background: var(--white);
}
.contact-form input:focus,
.contact-form textarea:focus {
  border: 1.5px solid var(--main-blue);
  outline: none;
}
.contact-form button {
  align-self: flex-end;
}

/* Footer & Social Icons */
.footer {
  background: var(--main-blue-dark);
  color: var(--white);
  padding: 2rem 0 1rem 0;
  text-align: center;
}
.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.social-icons {
  display: flex;
  gap: 1.2rem;
  margin-bottom: 0.5rem;
}
.social-icons a {
  display: inline-block;
  transition: transform var(--transition);
}
.social-icons a:hover {
  transform: scale(1.15) rotate(-6deg);
  filter: brightness(1.2) drop-shadow(0 2px 8px var(--accent-pink));
}
.social-icons img {
  width: 32px;
  height: 32px;
  filter: grayscale(0.2) brightness(1.1);
}

/* Scroll Up Button */
#scrollUpBtn {
  position: fixed;
  bottom: 32px;
  right: 32px;
  background: var(--main-blue);
  color: var(--white);
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  font-size: 2rem;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(128,0,0,0.12);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition), background var(--transition);
  z-index: 200;
}
#scrollUpBtn.show {
  opacity: 1;
  pointer-events: auto;
}
#scrollUpBtn:hover {
  background: var(--main-blue-dark);
}

/* Minimal Navbar */
.minimal-navbar {
  background: #fff;
  box-shadow: none;
  border-bottom: 1.5px solid #ececec;
  min-height: 72px;
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
}
.minimal-nav-container {
  padding: 0 2.5rem;
  max-width: 1400px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.minimal-logo {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  color: #222;
  letter-spacing: 0.5px;
  background: none;
  box-shadow: none;
  padding: 0;
}
.minimal-nav-links {
  display: flex;
  gap: 2.2rem;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}
.minimal-nav-links li a {
  color: #222;
  font-size: 1.08rem;
  font-weight: 500;
  text-decoration: none;
  background: none;
  border-radius: 0;
  padding: 0.2rem 0.1rem;
  transition: color 0.2s;
}
.minimal-nav-links li a:hover,
.minimal-nav-links li a:focus {
  color: #3e0303;
  background: none;
}
.minimal-navbar .hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  margin-left: 1.2rem;
  z-index: 201;
}
.minimal-navbar .hamburger span {
  width: 28px;
  height: 3px;
  background: #222;
  border-radius: 2px;
  transition: all var(--transition);
  display: block;
}
.menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(30,41,59,0.45);
  z-index: 150;
  transition: opacity var(--transition);
  opacity: 0;
}
.menu-overlay.open {
  display: block;
  opacity: 1;
}
/* Overlay menüden altta ve tıklamayı engellemesin */
.menu-overlay {
  z-index: 100 !important;
  pointer-events: none !important;
}
@media (max-width: 700px) {
  .minimal-nav-links {
    display: none;
    position: fixed;
    top: 0;
    right: -100vw;
    width: 80vw;
    height: 100vh;
    background: #fff !important;
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem 2rem 2rem 2rem;
    gap: 2rem;
    box-shadow: -2px 0 16px rgba(96,165,250,0.10);
    transition: right var(--transition);
    z-index: 150;
    margin: 0;
    justify-content: flex-start;
    overflow-y: auto;
  }
  .minimal-nav-links.open {
    display: flex !important;
    right: 0;
  }
  .minimal-navbar .hamburger {
    display: flex;
  }
}

/* Hamburger to X animation */
.minimal-navbar .hamburger.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.minimal-navbar .hamburger.open span:nth-child(2) {
  opacity: 0;
}
.minimal-navbar .hamburger.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Minimal Hero */
.minimal-hero {
  background: #fff;
  padding: 4.5rem 0 2.5rem 0;
  min-height: 70vh;
  display: flex;
  align-items: center;
}
.minimal-hero-content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  gap: 3.5rem;
}
.minimal-hero-left {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-width: 320px;
}
.minimal-hello-row {
  display: flex;
  align-items: center;
  font-weight: 700;
  gap: 1.1rem;
  margin-bottom: 1.7rem;
}
.minimal-dot {
  width: 18px;
  height: 18px;
  background: #222;
  border-radius: 50%;
  display: inline-block;
}
.minimal-hello {
  font-size: 1.9rem;
  color: #222;
  font-weight: 500;
  letter-spacing: 0.1rem;
}
.minimal-hero-title {
  font-size: 3.3rem;
  font-weight: 600;
  color: #222;
  line-height: 1.08;
  letter-spacing: -1.5px;
  margin-bottom: 0.5rem;
  margin-top: 0;
  word-break: break-word;
}
.minimal-hero-right {
  flex: 0 0 340px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}
.minimal-hero-img {
  width: 340px;
  height: 340px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 4px 32px rgba(30,41,59,0.10);
  background: #f3f4f6;
}
.project-link {
  cursor: pointer;
  text-decoration: none; 
  color: inherit; 
  display: block; 
}
@media (max-width: 1100px) {
  .minimal-hero-content {
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
  }
  .minimal-hero-left {
    align-items: center;
    text-align: center;
  }
  .minimal-hero-right {
    justify-content: center;
  }
}
@media (max-width: 700px) {
  .minimal-nav-container {
    padding: 0 1rem;
  }
  .minimal-hero {
    padding: 2.2rem 0 1.2rem 0;
  }
  .minimal-hero-title {
    font-size: 2.1rem;
  }
  .minimal-hero-img {
    width: 180px;
    height: 180px;
  }
  .minimal-navbar .hamburger {
    display: flex;
  }
  .minimal-nav-links {
    position: fixed;
    top: 0;
    right: -100vw;
    width: 80vw;
    height: 100vh;
    background: #fff !important;
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem 2rem 2rem 2rem;
    gap: 2rem;
    box-shadow: -2px 0 16px rgba(96,165,250,0.10);
    transition: right var(--transition);
    z-index: 150;
    margin: 0;
    justify-content: flex-start;
  }
  .minimal-nav-links.open {
    right: 0;
  }
}
@media (max-width: 600px) {
  .container {
    padding: 0 1rem;
  }
  .section {
    padding: 2rem 0 1rem 0;
  }
  .hero-section {
    padding: 3.5rem 0 0 0;
    min-height: 60vh;
  }
  .hero-title {
    font-size: 1.3rem;
  }
  .hero-divider svg {
    height: 60px;
  }
  .footer {
    padding: 1.2rem 0 0.5rem 0;
  }
  .projects-dot-row {
    margin-bottom: 1.5rem;
  }
  .project-title {
    font-size: 1.05rem;
  }
} 

.minimal-about-section {
  background: #fff;
  padding: 3.5rem 0 2.5rem 0;
}
.minimal-about-content {
  display: grid;
  grid-template-columns: 1.1fr 0.1fr 1.1fr 2.2fr;
  gap: 2.5rem 1.5rem;
  max-width: 1400px;
  margin: 0 auto;
  align-items: flex-start;
}
.about-col-list h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 1.2rem;
}
.about-col-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.about-col-list ul li {
  color: #666;
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
  padding-left: 1.8rem;
  position: relative;
}
.about-col-list ul li:before {
  content: '\2014';
  position: absolute;
  left: 0;
  color: #bbb;
  font-size: 1.1rem;
}
.about-col-dot {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  height: 100%;
}
.about-dot {
  width: 18px;
  height: 18px;
  background: #222;
  border-radius: 50%;
  margin-top: 2.2rem;
  display: inline-block;
}
.about-col-text {
  font-size: 1.13rem;
  color: #222;
  line-height: 1.7;
  letter-spacing: 0.01em;
  font-weight: 400;
  padding-left: 1.5rem;
}
.minimal-about-section.about-dark,
body.projects-dark .minimal-about-section {
  background: #1c1c1c !important;
}
.minimal-about-section.about-dark .container,
body.projects-dark .minimal-about-section .container,
.minimal-about-section.about-dark .minimal-about-content,
body.projects-dark .minimal-about-section .minimal-about-content,
.minimal-about-section.about-dark .about-col-list,
body.projects-dark .minimal-about-section .about-col-list,
.minimal-about-section.about-dark .about-col-text,
body.projects-dark .minimal-about-section .about-col-text {
  background: transparent !important;
}
body.projects-dark .minimal-about-section h3,
.minimal-about-section.about-dark h3 {
  color: #fff !important;
}
body.projects-dark .minimal-about-section ul li,
.minimal-about-section.about-dark ul li {
  color: #ccc !important;
}
body.projects-dark .minimal-about-section .about-col-text,
.minimal-about-section.about-dark .about-col-text {
  color: #fff !important;
}
@media (max-width: 1100px) {
  .minimal-about-content {
    grid-template-columns: 1fr 0.1fr 1fr;
    grid-template-rows: auto auto;
    gap: 2rem 1rem;
  }
  .about-col-text {
    grid-column: 1 / span 3;
    padding-left: 0;
    margin-top: 2.5rem;
  }
}
@media (max-width: 700px) {
  .minimal-about-section {
    padding: 1.5rem 0 1rem 0;
  }
  .minimal-about-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 0 1rem;
  }
  .about-col-dot {
    display: none;
  }
  .about-col-text {
    font-size: 1rem;
    margin-top: 1.2rem;
  }
} 

.modern-footer {
  background: #fff;
  padding: 4.5rem 0 2.5rem 0;
  border-top: 1.5px solid #ececec;
}
.modern-footer-content {
  display: grid;
  grid-template-columns: 2.5fr 0.2fr 1.2fr 1.2fr;
  gap: 2.5rem 1.5rem;
  max-width: 1400px;
  margin: 0 auto;
  align-items: flex-start;
}
.footer-col-title h2 {
  font-size: 3.2rem;
  font-weight: 600;
  color: #333;
  line-height: 1.08;
  margin: 0;
  letter-spacing: -1.5px;
}
.footer-col-dot {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.footer-dot {
  width: 22px;
  height: 22px;
  background: #222;
  border-radius: 50%;
  display: inline-block;
}
.footer-col-social h3,
.footer-col-contact h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 1.2rem;
}
.footer-col-social ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-col-social ul li {
  margin-bottom: 0.7rem;
}
.footer-col-social ul li a {
  color: #333;
  font-size: 1.13rem;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col-social ul li a:hover {
  color: #2563eb;
}
.footer-mail {
  color: #222;
  font-size: 1.13rem;
  transition: color 0.2s;
  text-decoration: none;
}
.footer-cv {
  color: #222;
  font-size: 1.13rem;
  transition: color 0.2s;
  text-decoration: none;
}
.italic-fancy {
  font-weight: 550;  
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 0.05em; 
  font-size: 2rem; 
  color: #333333; 
  font-variant: normal;
  text-decoration: none;
}
@media (max-width: 1100px) {
  .modern-footer-content {
    grid-template-columns: 1fr 0.1fr 1fr;
    grid-template-rows: auto auto;
    gap: 2rem 1rem;
  }
  .footer-col-contact {
    grid-column: 3;
    grid-row: 2;
    margin-top: 2.5rem;
  }
}
@media (max-width: 700px) {
  .modern-footer {
    padding: 2rem 0 1rem 0;
  }
  .modern-footer-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 0 1rem;
  }
  .footer-col-dot {
    display: none;
  }
  .footer-col-title h2 {
    font-size: 1.5rem;
  }
} 

.modern-experience {
  background: #fff;
  padding: 4.5rem 0 2.5rem 0;
}
.experience-content {
  max-width: 900px;
  margin: 0 auto;
}
.experience-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 2.5rem;
  letter-spacing: -1px;
}
.experience-timeline {
  display: flex;
  flex-direction: column-reverse;
  gap: 2.5rem;
}
.experience-item {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(30,41,59,0.04);
  padding: 2rem 2.2rem;
  position: relative;
}
.exp-logo {
  flex: 0 0 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  width: 56px;
  background: #f7f8fa;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(30,41,59,0.08);
  margin-right: 0.5rem;
}
.exp-logo img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  display: block;
}
.exp-details {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.exp-header {
  display: flex;
  align-items: baseline;
  gap: 1.1rem;
  font-size: 1.18rem;
  font-weight: 600;
  color: #222;
}
.exp-role {
  font-weight: 700;
  color: #111;
  font-size: 1.13rem;
}
.exp-company {
  font-weight: 500;
  color: #222;
  font-size: 1.13rem;
}
.exp-meta {
  display: flex;
  gap: 1.5rem;
  font-size: 1.02rem;
  color: #666;
  font-weight: 400;
}
.exp-skills {
  font-size: 0.98rem;
  color: #222;
  font-weight: 500;
  flex-wrap: wrap;
  line-height: 1.7;
}
.exp-skills span {
  background: #f7f8fa;
  color: #111;
  border-radius: 8px;
  padding: 0.15em 0.7em;
  margin: 0 0.2em 0.2em 0;
  display: inline-block;
  font-size: 0.98em;
  font-weight: 500;
}
.exp-note {
  font-size: 0.97rem;
  color: #888;
  margin-top: 0.5rem;
  font-style: italic;
}
@media (max-width: 900px) {
  .experience-item {
    flex-direction: column;
    gap: 1.2rem;
    padding: 1.2rem 1rem;
  }
  .exp-logo {
    margin-bottom: 0.5rem;
  }
}
@media (max-width: 600px) {
  .modern-experience {
    padding: 2rem 0 1rem 0;
  }
  .experience-title {
    font-size: 1.3rem;
  }
  .experience-item {
    padding: 1rem 0.5rem;
  }
} 

/* Dil seçici stil */
/* Bayraklı dil seçici butonlar için stil */
.language-switcher {
  position: static;
  margin-left: 2rem;
  z-index: 300;
  display: flex;
  gap: 1rem;
}
.lang-btn {
  background: #fff;
  border: none;
  border-radius: 8px;
  font-size: 1.45rem;
  padding: 0.4rem 0.8rem;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 2px 12px rgba(96,165,250,0.12);
  outline: none;
}
.lang-btn.active, .lang-btn:focus {
  box-shadow: 0 0 0 2px #2563eb22;
}
.lang-btn:hover {
  box-shadow: 0 0 0 2px #2563eb22;
} 

/* Bayrak ikonları için stil */
.lang-flag {
  width: 32px;
  height: 24px;
  object-fit: cover;
  display: block;
  margin: 0 auto;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  border: 1px solid rgba(0,0,0,0.1);
} 

@media (max-width: 1020px) {
  .minimal-nav-container {
    padding: 0 1rem;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  .nav-left {
    order: 1;
    width: 100%;
    text-align: center;
  }
  .language-switcher {
    order: 2;
    margin: 0 auto 1rem auto;
    z-index: 100;
    display: flex;
    justify-content: center;
  }
  .minimal-nav-links {
    display: none;
    position: fixed;
    top: 0;
    right: -100vw;
    width: 80vw;
    height: 100vh;
    background: #fff !important;
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem 2rem 2rem 2rem;
    gap: 2rem;
    box-shadow: -2px 0 16px rgba(96,165,250,0.10);
    transition: right var(--transition);
    z-index: 200;
    margin: 0;
    justify-content: flex-start;
    overflow-y: auto;
  }
  .minimal-nav-links.open {
    display: flex !important;
    right: 0;
  }
  .minimal-navbar .hamburger {
    order: 4;
    margin-left: auto;
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
  }
}


@media (max-width: 700px) {
  .minimal-nav-links {
    display: none;
    position: fixed;
    top: 0;
    right: -100vw;
    width: 80vw;
    height: 100vh;
    background: #fff !important;
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem 2rem 2rem 2rem;
    gap: 2rem;
    box-shadow: -2px 0 16px rgba(96,165,250,0.10);
    transition: right var(--transition);
    z-index: 200;
    margin: 0;
    justify-content: flex-start;
    overflow-y: auto;
  }
  .minimal-nav-links.open {
    display: flex !important;
    right: 0;
  }
}
@media (max-width: 500px) {
  .minimal-nav-container {
    padding: 0 0.5rem;
  }
  .language-switcher {
    gap: 0.5rem;
  }
  .lang-btn {
    padding: 0.2rem 0.5rem;
  }
  .minimal-nav-links {
    gap: 1rem;
  }
} 

/* AI Chat Widget */
#ai-chat {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 260px;
  background: #ffffff;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-family: Arial, sans-serif;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  z-index: 9999;
}

#ai-messages {
  height: 200px;
  overflow-y: auto;
  padding: 10px;
  font-size: 13px;
}

#ai-messages div {
  margin-bottom: 6px;
}

#ai-input {
  width: 100%;
  border: none;
  border-top: 1px solid #eee;
  padding: 10px;
  font-size: 13px;
  outline: none;
}
