/*=============== GOOGLE FONTS ===============*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 3.5rem;

  /*========== Colors ==========*/
  --first-color: #2ecc71;
  --first-color-dark: #27ae60;
  --first-color-light: #e8f5e9;
  --second-color: #2980b9;
  --second-color-dark: #1c5a85;
  --title-color: #2c3e50;
  --text-color: #7f8c8d;
  --text-color-light: #bdc3c7;
  --body-color: #ffffff;
  --container-color: #f8f9fa;
  --white-color: #ffffff;
  --black-color: #2c3e50;
  --gray-border: #e0e0e0;

  /*========== Font and typography ==========*/
  --body-font: 'Poppins', sans-serif;
  --big-font-size: 2.5rem;
  --h1-font-size: 1.5rem;
  --h2-font-size: 1.25rem;
  --h3-font-size: 1.125rem;
  --normal-font-size: .938rem;
  --small-font-size: .813rem;

  /*========== Font weight ==========*/
  --font-regular: 400;
  --font-medium: 500;
  --font-semi-bold: 600;
  --font-bold: 700;

  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
}

/*========== Responsive typography ==========*/
@media screen and (min-width: 1150px) {
  :root {
    --big-font-size: 3.5rem;
    --h1-font-size: 2.25rem;
    --h2-font-size: 1.5rem;
    --h3-font-size: 1.25rem;
    --normal-font-size: 1rem;
    --small-font-size: .875rem;
  }
}

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

html {
  scroll-behavior: smooth;
}

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

h1, h2, h3, h4 {
  color: var(--title-color);
  font-weight: var(--font-semi-bold);
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

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

/*=============== REUSABLE CSS CLASSES ===============*/
.container {
  max-width: 1120px;
  margin-inline: 1.5rem;
}

.grid {
  display: grid;
  gap: 1.5rem;
}

.section {
  padding-block: 5rem 1rem;
}

.section__title {
  font-size: var(--h1-font-size);
  font-weight: var(--font-bold);
  text-align: center;
  margin-bottom: 1.5rem;
}

.section__title span {
  color: var(--first-color);
}

.section__subtitle {
  display: block;
  text-align: center;
  font-size: var(--normal-font-size);
  font-weight: var(--font-semi-bold);
  color: var(--first-color);
  margin-bottom: .5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.main {
  overflow: hidden;
}

/*=============== HEADER & NAV ===============*/
.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background-color: transparent;
  z-index: var(--z-fixed);
  transition: background-color .4s;
}

.nav {
  position: relative;
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1.5rem;
}

.nav__logo {
  display: flex;
  align-items: center;
  column-gap: .5rem;
  font-weight: var(--font-semi-bold);
  color: var(--white-color);
  transition: color .4s;
}

.nav__logo img {
  width: 200px;
  height: auto;
}

.nav__logo span {
  font-size: var(--h3-font-size);
}

.bg-header .nav__logo {
  color: var(--title-color);
}

.nav__toggle,
.nav__close {
  font-size: 1.5rem;
  color: var(--title-color);
  cursor: pointer;
  transition: color .4s;
}

.bg-header .nav__toggle,
.bg-header .nav__close {
  color: var(--title-color);
}

/* Navigation for mobile devices */
@media screen and (max-width: 1150px) {
  .nav__menu {
    position: fixed;
    top: 0;
    right: -100%;
    background-color: var(--white-color);
    width: 50%;
    height: 100%;
    padding: 7rem 3rem 0;
    box-shadow: -2px 0 12px hsla(0, 0%, 0%, 0.1);
    transition: right .4s;
  }
}

.nav__list {
  display: flex;
  flex-direction: column;
  row-gap: 2.5rem;
}

.nav__link {
  color: var(--title-color);
  font-weight: var(--font-semi-bold);
  transition: color .4s;
}

.nav__link:hover {
  color: var(--first-color);
}

.nav__close {
  position: absolute;
  top: 1.15rem;
  right: 1.5rem;
}

/* Show menu */
.show-menu {
  right: 0;
}

/* Change background header */
.bg-header {
  background-color: var(--body-color);
  box-shadow: 0 2px 16px hsla(0, 0%, 0%, 0.1);
}

/* Active link */
.active-link {
  color: var(--first-color);
}

/*=============== HOME ===============*/

        .home {
            position: relative;
            background: linear-gradient(135deg, var(--second-color) 0%, var(--second-color-dark) 100%);
            padding-top: 7rem;
            overflow: hidden;
            min-height: 100vh;
            color: white;
        }
        
        /* Doğa temalı arka plan */
        .home::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 5px, transparent 5px),
                radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.1) 5px, transparent 5px),
                radial-gradient(circle at 40% 50%, rgba(255, 255, 255, 0.08) 8px, transparent 8px),
                radial-gradient(circle at 60% 20%, rgba(255, 255, 255, 0.08) 6px, transparent 6px);
            background-size: 300px 300px;
            z-index: 0;
            pointer-events: none;
        }
        
        /* Güneş efekti */
        .home::after {
            content: '';
            position: absolute;
            top: 10%;
            right: 15%;
            width: 150px;
            height: 150px;
            background: radial-gradient(circle, rgba(255, 204, 0, 0.3) 0%, transparent 70%);
            border-radius: 50%;
            z-index: 0;
        }



.home__container {
  position: relative;
  row-gap: 3rem;
  padding-block: 2.5rem 6rem;
}

.home__content {
  position: relative;
  z-index: 2;
  color: var(--white-color);
}

.home__title {
  font-size: var(--big-font-size);
  font-weight: var(--font-bold);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.home__title span {
  color: var(--first-color);
}

.home__description {
  margin-bottom: 2.5rem;
  font-size: var(--h3-font-size);
}

.home__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.button {
  display: inline-flex;
  background-color: var(--first-color);
  color: var(--white-color);
  font-weight: var(--font-semi-bold);
  padding: 1rem 2rem;
  border-radius: .5rem;
  transition: background-color .4s, transform .4s;
}

.button:hover {
  background-color: var(--first-color-dark);
  transform: translateY(-3px);
  color: var(--white-color);
}

.button--light {
  background-color: transparent;
  border: 2px solid var(--white-color);
}

.button--light:hover {
  background-color: var(--white-color);
  color: var(--second-color);
}

.home__info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.home__info-item {
  text-align: center;
}

.home__info-title {
  font-size: 2.5rem;
  font-weight: var(--font-bold);
  margin-bottom: .5rem;
  color: var(--first-color);
}

.home__info-description {
  font-size: var(--small-font-size);
}

.home__image {
  position: relative;
  justify-self: center;
}

.home__img {
  width: 100%;
  max-width: 500px;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  z-index: 2;
  position: relative;
}

/* Home section ek fotoğraf stilleri */
.home__images-stack {
    position: absolute;
    bottom: -70px;
    right: -30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 3;
}

.home__img-stack-1,
.home__img-stack-2 {
    width: 200px;
    height: 150px;
    object-fit: cover;
    border-radius: 0.75rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
    position: relative;
}

.home__img-stack-1 {
    transform: rotate(-5deg);
    z-index: 2;
}

.home__img-stack-2 {
    transform: rotate(3deg);
    z-index: 1;
    margin-top: -15px;
    margin-left: 30px;
}

.home__image:hover .home__img-stack-1 {
    transform: rotate(-3deg) translateY(-5px);
}

.home__image:hover .home__img-stack-2 {
    transform: rotate(2deg) translateY(-5px);
}

/* Mobil uyumluluk için medya sorguları */
@media screen and (max-width: 1150px) {
    .home__images-stack {
        right: -20px;
        bottom: -20px;

    }
    
    .home__img-stack-1,
    .home__img-stack-2 {
        width: 120px;
        height: 100px;
    }
}

@media screen and (max-width: 768px) {
    .home__images-stack {
        position: relative;
        flex-direction: row;
        justify-content: center;
        bottom: -20px;
        right: 0;
        margin-top: 20px;
                display: none;
    }
    
    .home__img-stack-1,
    .home__img-stack-2 {
        width: 100px;
        height: 80px;
                display: none;
    }
    
    .home__img-stack-2 {
        margin-top: 15px;
        margin-left: -15px;
    }
}

@media screen and (max-width: 400px) {
    .home__images-stack {
        gap: 10px;
    }
    
    .home__img-stack-1,
    .home__img-stack-2 {
        width: 90px;
        height: 70px;
    }
}

.home__blob {
  position: absolute;
  width: 400px;
  height: 400px;
  background: linear-gradient(180deg, 
              hsla(0, 0%, 100%, 0.1) 0%, 
              hsla(0, 0%, 100%, 0) 100%);
  border-radius: 50%;
  filter: blur(20px);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

/*=============== ABOUT ===============*/
.about__container {
  row-gap: 4rem;
}

.about__image {
  position: relative;
  justify-self: center;
}

.about__img {
  width: 100%;
  max-width: 500px;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about__experience {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: linear-gradient(135deg, var(--first-color) 0%, var(--first-color-dark) 100%);
  color: var(--white-color);
  padding: 1.5rem;
  border-radius: 1rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(46, 204, 113, 0.3);
  z-index: 2;
}

.about__experience::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 20px;
  width: 20px;
  height: 20px;
  background-color: var(--first-color-dark);
  transform: rotate(45deg);
  z-index: -1;
}

.about__experience-title {
  font-size: 2.5rem;
  font-weight: var(--font-bold);
  margin-bottom: .25rem;
  line-height: 1;
}

.about__experience-text {
  font-size: var(--small-font-size);
  font-weight: var(--font-medium);
}

.about__content {
  display: grid;
  row-gap: 2rem;
}

.about__description {
  font-size: var(--h3-font-size);
  margin-bottom: 1rem;
}

.about__details {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 1.5rem;
}

.about__detail {
  display: flex;
  align-items: flex-start;
  column-gap: 1rem;
}

.about__detail i {
  font-size: 1.5rem;
  color: var(--first-color);
  padding: .5rem;
  background-color: var(--first-color-light);
  border-radius: .5rem;
  flex-shrink: 0;
}

.about__detail-content h3 {
  font-size: var(--h3-font-size);
  margin-bottom: .25rem;
}

.about__detail-content p {
  font-size: var(--small-font-size);
}

/* For medium devices */
@media screen and (min-width: 576px) {
  .about__details {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

/* For large devices */
@media screen and (min-width: 1150px) {
  .about__container {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 4rem;
  }
  
  .about__image {
    order: 1;
  }
  
  .about__content {
    order: 2;
  }
  
  .about__details {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

/*=============== SERVICES ===============*/
.services .container {
  text-align: center;
}

.services__container {
  margin-top: 2rem;
}

.services__description {
  text-align: left;
  padding: 0;
}

.services__container {
  grid-template-columns: 1fr;
  row-gap: 3rem;
}

.services__image {
  position: relative;
  justify-self: center;
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}

.services__main-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.2s, opacity 0.2s;
}

.services__image:hover .services__main-img {
  transform: scale(1.05);
}

.services__content {
  display: grid;
  row-gap: 2rem;
}

.services__title {
  font-size: var(--h2-font-size);
  margin-bottom: 1rem;
  color: var(--title-color);
}

.services__text {
  font-size: var(--normal-font-size);
  line-height: 1.8;
  color: var(--text-color);
  margin-bottom: 1.5rem;
}

/* Services section düzenlemeleri */
.services__items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.service__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0;
  background-color: transparent;
  border-radius: .5rem;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  position: relative;
  overflow: hidden;
  margin-bottom: 2rem;
}

.service__item-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem;
  width: 100%;
  transition: all 0.3s ease;
}

.service__item:hover .service__item-content {
  background-color: rgba(46, 204, 113, 0.05);
}

.service__item.active .service__item-content {
  background-color: rgba(46, 204, 113, 0.1);
}

.service__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: transparent;
  color: var(--text-color-light);
  font-size: 1.25rem;
  border-radius: 50%;
  margin-bottom: 0.5rem;
  transition: all 0.3s ease;
  z-index: 1;
}

.service__item:hover .service__icon {
  color: var(--first-color);
}

.service__item.active .service__icon {
  color: var(--first-color);
  background-color: rgba(46, 204, 113, 0.1);
}

.service__name {
  font-size: var(--small-font-size);
  font-weight: var(--font-medium);
  color: var(--text-color);
  text-align: center;
  transition: color 0.3s ease;
  z-index: 1;
}

.service__item:hover .service__name {
  color: var(--first-color);
}

.service__item.active .service__name {
  color: var(--first-color);
}

.services__button {
  text-align: center;
  position: relative;
}

.services__button .button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  padding: 0.875rem 1.5rem;
}

.services__button .button i {
  transition: transform 0.3s ease;
}

.services__button .button:hover {
  background-color: var(--first-color-dark);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(46, 204, 113, 0.3);
}

.services__button .button:hover i {
  transform: translateX(3px);
}

/* For medium devices */
@media screen and (min-width: 768px) {
  .services__items {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* For large devices */
@media screen and (min-width: 1150px) {
  .services__container {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
  }
  
  .services__image {
    order: 1;
    margin-bottom: 0;
  }
  
  .services__content {
    order: 2;
  }
  
  .services__description {
    text-align: left;
    padding: 0;
  }
  
  .services__items {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* For small devices */
@media screen and (max-width: 576px) {
  .services__items {
    grid-template-columns: 1fr;
  }
  
  .service__item {
    flex-direction: row;
    text-align: left;
    padding: 0.75rem;
    gap: 0.75rem;
  }
  
  .service__icon {
    margin-bottom: 0;
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }
  
  .service__name {
    font-size: 0.8rem;
  }
}

/* Mobil cihazlarda servis öğeleri için tıklanabilir stil */
@media screen and (max-width: 768px) {
    .service__item {
        cursor: pointer;
        transition: transform 0.2s ease;
        margin-bottom: 0;
    }
    
    .service__item:active {
        transform: scale(0.95);
    }
    
    /* Servis içeriği vurgu efekti */
    .services__description {
        transition: background-color 0.3s ease;
    }
}

/*=============== PROJECTS ===============*/
.projects {
    padding: 5rem 0;
    background-color: var(--container-color);
}

.projects__container {
    row-gap: 3rem;
    margin-top: 2rem;
}

.project__card {
    background-color: var(--body-color);
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
}

.project__card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.project__image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.project__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project__card:hover .project__img {
    transform: scale(1.05);
}

.project__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.project__card:hover .project__overlay {
    opacity: 1;
}

.project__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: var(--first-color);
    color: var(--white-color);
    border-radius: 50%;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.project__button:hover {
    background-color: var(--first-color-dark);
    transform: scale(1.1);
}

.project__data {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
}

.project__title {
    font-size: var(--h3-font-size);
    margin-bottom: 0.5rem;
    color: var(--title-color);
    line-height: 1.3;
}

.project__location {
    color: var(--text-color-light);
    font-size: var(--small-font-size);
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.project__details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.project__detail {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background-color: var(--container-color);
    border-radius: 0.5rem;
}

.project__detail i {
    font-size: 1.25rem;
    color: var(--first-color);
    background-color: var(--first-color-light);
    padding: 0.5rem;
    border-radius: 0.5rem;
    min-width: 40px;
    text-align: center;
    flex-shrink: 0;
}

.project__detail-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.project__detail-label {
    font-size: 0.75rem;
    color: var(--text-color-light);
    margin-bottom: 0.25rem;
}

.project__detail-value {
    font-size: 0.9rem;
    font-weight: var(--font-medium);
    color: var(--title-color);
}

/* Küçük ekran uyumu */
@media screen and (max-width: 400px) {
    .project__detail {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .project__detail i {
        margin-bottom: 0.25rem;
    }
}

.project__link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--first-color);
    font-weight: var(--font-semi-bold);
    transition: all 0.3s ease;
    margin-top: auto;
}

.project__link:hover {
    color: var(--first-color-dark);
    gap: 0.75rem;
}

.projects__more {
    text-align: center;
    margin-top: 3rem;
}

.projects__more .button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background-color: var(--first-color);
    color: var(--white-color);
    border-radius: 0.5rem;
    font-weight: var(--font-semi-bold);
    transition: all 0.3s ease;
}

.projects__more .button:hover {
    background-color: var(--first-color-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(46, 204, 113, 0.3);
    gap: 0.75rem;
}

/* For medium devices */
@media screen and (min-width: 576px) {
    .projects__container {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* For large devices */
@media screen and (min-width: 1150px) {
    .projects__container {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* For small devices */
@media screen and (max-width: 400px) {
    .project__detail {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .project__detail i {
        margin-bottom: 0.25rem;
    }
}

/*=============== REFERENCES ===============*/
.references {
  padding: 5rem 0;
}

.references-swiper {
  padding: 2rem 0;
}

.reference__logo {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 150px;
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: transform .4s;
}

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

.reference__logo img {
  max-width: 100%;
  max-height: 85px;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: filter .4s, opacity .4s;
}

.reference__logo:hover img {
  filter: grayscale(0);
  opacity: 1;
}

/* Swiper styles */
.swiper-wrapper {
  transition-timing-function: linear !important;
}

/*=============== BLOG ===============*/
.blog__container {
  row-gap: 3rem;
}

.blog__card {
  background-color: var(--container-color);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: transform .4s;
}

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

.blog__img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog__data {
  padding: 1.5rem;
}


.blog__title {
  font-size: var(--h3-font-size);
  margin-bottom: .75rem;
}

.blog__description {
  margin-bottom: 1.5rem;
}

.blog__link {
  display: inline-flex;
  align-items: center;
  column-gap: .5rem;
  color: var(--first-color);
  font-weight: var(--font-semi-bold);
  transition: color .4s;
}

.blog__link:hover {
  color: var(--first-color-dark);
}

.blog__more {
  text-align: center;
  margin-top: 3rem;
}

/*=============== CONTACT ===============*/
.contact__container {
  row-gap: 3rem;
}

.contact__info {
  display: grid;
  row-gap: 2rem;
  margin-bottom: 2rem;
}

.contact__info-title {
  font-size: var(--h2-font-size);
  margin-bottom: 1.5rem;
  color: var(--title-color);
}

.contact__info-item {
  display: flex;
  align-items: flex-start;
  column-gap: 1rem;
}

.contact__info-icon {
  font-size: 1.5rem;
  color: var(--first-color);
  padding: .5rem;
  background-color: var(--first-color-light);
  border-radius: .5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 50px;
  height: 50px;
}

.contact__info-content h4 {
  font-size: var(--h3-font-size);
  margin-bottom: .25rem;
  color: var(--title-color);
}

.contact__info-content p {
  font-size: var(--small-font-size);
}

.contact__social {
  display: flex;
  column-gap: 1rem;
  margin-top: 1.5rem;
}

.contact__social-link {
  display: inline-flex;
  background-color: var(--first-color-light);
  color: var(--first-color);
  font-size: 1.25rem;
  padding: .5rem;
  border-radius: .5rem;
  transition: background-color .4s, color .4s, transform .4s;
}

.contact__social-link:hover {
  background-color: var(--first-color);
  color: var(--white-color);
  transform: translateY(-3px);
}

.contact .contact__map {
  margin-top: 2.5rem;
  height: 450px;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* For large devices */
@media screen and (min-width: 1150px) {
  .contact__container {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
  
  .contact__info {
    grid-column: 1;
  }
  
  .contact__map {
    grid-column: 2;
    grid-row: 1 / span 2;
    height: 100%;
  }
}

/*=============== FOOTER ===============*/
.footer {
  background: linear-gradient(135deg, var(--second-color) 0%, var(--second-color-dark) 100%);
  color: var(--white-color);
  padding-block: 4rem 2rem;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(255,255,255,0.03)"/></svg>');
  background-size: cover;
}

.footer__container {
  position: relative;
  z-index: 2;
  row-gap: 3rem;
}

.footer__content {
  display: grid;
  row-gap: 1.5rem;
}

.footer__logo {
  display: inline-flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.footer__logo img {
  width: 200px;
  height: auto;
  filter: brightness(0) invert(1);
}

.footer__description {
  margin-bottom: 1.5rem;
  line-height: 1.8;
  max-width: 300px;
}

.footer__title {
  font-size: var(--h3-font-size);
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer__title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 2px;
  background-color: var(--first-color);
}

.footer__links {
  display: grid;
  row-gap: 0.75rem;
}

.footer__link {
  color: rgba(255, 255, 255, 0.8);
  transition: color .4s, transform .4s;
  display: inline-block;
}

.footer__link:hover {
  color: var(--first-color);
  transform: translateX(5px);
}

.footer__contact {
  display: grid;
  row-gap: 1rem;
}

.footer__contact li {
  display: flex;
  align-items: center;
  column-gap: 1rem;
  color: rgba(255, 255, 255, 0.8);
}

.footer__contact i {
  color: var(--first-color);
  font-size: 1.2rem;
}

.footer__social {
  display: flex;
  column-gap: 1rem;
  margin-top: 1.5rem;
}

.footer__social-link {
  display: inline-flex;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white-color);
  font-size: 1.25rem;
  padding: .5rem;
  border-radius: .5rem;
  transition: background-color .4s, transform .4s;
}

.footer__social-link:hover {
  background-color: var(--first-color);
  transform: translateY(-3px);
}

.footer__bottom {
  margin-top: 5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer__copy {
  font-size: var(--small-font-size);
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1rem;
}

.footer__privacy {
  display: flex;
  justify-content: center;
  column-gap: 2rem;
}

.footer__privacy a {
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--small-font-size);
  transition: color .4s;
}

.footer__privacy a:hover {
  color: var(--first-color);
}

/* For medium devices */
@media screen and (min-width: 768px) {
  .footer__container {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
  
  .footer__privacy {
    justify-content: flex-end;
  }
}

/* For large devices */
@media screen and (min-width: 1150px) {
  .footer__container {
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
  }
  
  .footer__content:first-child {
    grid-column: 1 / 2;
  }
}

/*=============== BREAKPOINTS ===============*/

/*=============== MOBILE OPTIMIZATION FOR HOME SECTION ===============*/
@media screen and (max-width: 768px) {
  .home__container {
    padding-block: 2rem 4rem;
  }
  
  .home__content {
    text-align: center;
    margin-bottom: 2rem;
  }
  
  .home__title {
    font-size: 2.2rem;
    line-height: 1.2;
    margin-bottom: 1rem;
  }
  
  .home__description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }
  
  .home__buttons {
    justify-content: center;
    margin-bottom: 2rem;
  }
  
  .home__info {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
  }
  
  .home__info-title {
    font-size: 1.8rem;
  }
  
  .home__info-description {
    font-size: 0.75rem;
  }
  
  .home__image {
    position: relative;
    margin: 0 auto;
    max-width: 350px;
  }
  
  .home__img {
    width: 100%;
    border-radius: 1rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  }
  
  .home__images-stack {
    position: absolute;
    bottom: -30px;
    right: -50px;
    left: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
    z-index: 3;
  }
  
  .home__img-stack-1 {
    width: 120px;
    height: 90px;
    object-fit: cover;
    border-radius: 0.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
    transform: rotate(-3deg);
  }
  
  .home__img-stack-2 {
    width: 120px;
    height: 90px;
    object-fit: cover;
    border-radius: 0.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
    transform: rotate(5deg);
    margin-top: 15px;
  }
  
  .home__blob {
    width: 300px;
    height: 300px;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}

/* For very small devices */
@media screen and (max-width: 400px) {
  .home__title {
    font-size: 1.8rem;
  }
  
  .home__description {
    font-size: 1rem;
  }
  
  .home__info {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .home__images-stack {
    gap: 15px;
  }
  
  .home__img-stack-1,
  .home__img-stack-2 {
    width: 100px;
    height: 80px;
  }
  
  .button {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }
}

/* For small devices */
@media screen and (max-width: 340px) {
  .container {
    margin-inline: 1rem;
  }

  .home__title {
    font-size: 2rem;
  }

  .home__info {
    grid-template-columns: 1fr;
  }

  .services__card,
  .projects__card,
  .blog__card {
    padding: 1.5rem;
  }
}

/* For medium devices */
@media screen and (min-width: 576px) {
  .services__container,
  .projects__container,
  .blog__container {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact__container {
    grid-template-columns: 1fr;
  }
}

@media screen and (min-width: 768px) {
  .home__container,
  .about__container {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }

  .home__content {
    order: 1;
  }

  .home__image {
    order: 2;
  }

  .about__image {
    order: 1;
  }

  .about__content {
    order: 2;
  }

  .contact__container {
    grid-template-columns: repeat(2, 1fr);
    align-items: flex-start;
  }
}

/* For large devices */
@media screen and (min-width: 1150px) {
  .container {
    margin-inline: auto;
  }

  .section {
    padding-block: 7rem 2rem;
  }

  .nav {
    height: calc(var(--header-height) + 2rem);
  }

  .nav__toggle,
  .nav__close {
    display: none;
  }

  .nav__menu {
    width: initial;
  }

  .nav__list {
    flex-direction: row;
    column-gap: 3rem;
  }

  .home__container {
    grid-template-columns: 1fr 1fr;
    padding-block: 4rem 8rem;
  }

  .home__title {
    font-size: var(--big-font-size);
  }

  .projects__container,
  .blog__container {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer__container {
    grid-template-columns: repeat(4, 1fr);
  }
}


/* Admin Giriş Butonu */
.nav__admin-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: linear-gradient(135deg, var(--first-color) 0%, var(--first-color-dark) 100%);
    color: var(--white-color);
    border-radius: 30px;
    font-weight: var(--font-medium);
    transition: all 0.3s ease;
    margin-left: 10px;
    order: 3;
    box-shadow: 0 4px 12px rgba(46, 204, 113, 0.3);
    border: 2px solid transparent;
}

.nav__admin-button:hover {
    background: linear-gradient(135deg, var(--first-color-dark) 0%, var(--first-color) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(46, 204, 113, 0.4);
    border-color: rgba(255, 255, 255, 0.3);
}

.nav__admin-button i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.nav__admin-button:hover i {
    transform: scale(1.1);
}

/* Masaüstü düzeni */
@media screen and (min-width: 1150px) {
    .nav__list {
        display: flex;
        flex-direction: row;
        column-gap: 2.5rem;
        margin: 0 auto;
    }
    
    .nav__admin-button {
        margin-left: 2rem;
        order: unset;
    }
}

/* Mobil düzeni */
@media screen and (max-width: 1150px) {
    .nav {
        display: grid;
        grid-template-columns: auto 1fr auto;
        align-items: center;
        gap: 1rem;
    }
    
    .nav__logo {
        grid-column: 1;
    }
    
    .nav__admin-button {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.6rem 1.2rem;
        background: linear-gradient(135deg, var(--first-color) 0%, var(--first-color-dark) 100%);
        color: var(--white-color);
        border-radius: 30px;
        font-weight: var(--font-medium);
        transition: all 0.3s ease;
        margin-left: 10px;
        order: 3;
        box-shadow: 0 4px 12px rgba(46, 204, 113, 0.3);
        border: 2px solid transparent;
    }
    
    
    .nav__toggle {
        grid-column: 3;
        justify-self: end;
        margin: 0;
    }
    
    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        background-color: var(--white-color);
        width: 50%;
        height: 100%;
        padding: 4rem 2rem 2rem;
        box-shadow: -2px 0 12px hsla(0, 0%, 0%, 0.1);
        transition: right .4s;
        z-index: 999;
    }
    
    .nav__menu.show-menu {
        right: 0;
    }
    
    .nav__close {
        position: absolute;
        top: 1.5rem;
        right: 1.5rem;
        font-size: 1.5rem;
    }
}

/* Çok küçük ekranlar için ek düzenleme */
@media screen and (max-width: 360px) {
    .nav__admin-button {
        width: 38px;
        height: 38px;
        padding: 0.5rem;
    }
    
    .nav__admin-button i {
        font-size: 1.1rem;
    }
}
/* Admin paneli stilleri (admin.css olarak ayrı bir dosyaya da koyabilirsiniz) */
.admin-container {
    display: flex;
    min-height: 100vh;
}

.admin-sidebar {
    width: 280px;
    background: linear-gradient(135deg, var(--second-color) 0%, var(--second-color-dark) 100%);
    color: white;
    padding: 1.5rem;
    position: fixed;
    height: 100vh;
    overflow-y: auto;
}

.admin-content {
    flex: 1;
    margin-left: 280px;
    padding: 2rem;
    background-color: var(--container-color);
}

.admin-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.admin-logo img {
    width: 40px;
    height: auto;
    filter: brightness(0) invert(1);
}

.admin-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    color: rgba(255, 255, 255, 0.8);
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.nav-item:hover, .nav-item.active {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
}

.nav-item.logout {
    margin-top: 2rem;
    color: #e74c3c;
}

.nav-item.logout:hover {
    background-color: rgba(231, 76, 60, 0.1);
}

.admin-header {
    margin-bottom: 2rem;
}

.admin-header h1 {
    color: var(--title-color);
    margin-bottom: 0.5rem;
}

.admin-header p {
    color: var(--text-color);
}

.admin-stats {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-card {
    background-color: var(--body-color);
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.stat-info h3 {
    font-size: 1.75rem;
    color: var(--title-color);
    margin-bottom: 0.25rem;
}

.stat-info p {
    color: var(--text-color);
    font-size: 0.875rem;
}

.recent-activities {
    background-color: var(--body-color);
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.recent-activities h2 {
    color: var(--title-color);
    margin-bottom: 1.5rem;
}

.activity-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.activity-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f0f0f0;
}

.activity-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.activity-icon {
    width: 40px;
    height: 40px;
    border-radius: 0.5rem;
    background-color: rgba(46, 204, 113, 0.1);
    color: var(--first-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.activity-content p {
    margin-bottom: 0.25rem;
    color: var(--title-color);
}

.activity-content span {
    font-size: 0.75rem;
    color: var(--text-color);
}

/* Responsive tasarım */
@media (max-width: 992px) {
    .admin-sidebar {
        width: 230px;
    }
    
    .admin-content {
        margin-left: 230px;
    }
}

@media (max-width: 768px) {
    .admin-sidebar {
        width: 100%;
        position: relative;
        height: auto;
    }
    
    .admin-content {
        margin-left: 0;
    }
    
    .admin-container {
        flex-direction: column;
    }
    
    .admin-stats {
        grid-template-columns: 1fr;
    }
}


/* WhatsApp Butonu - Güncellenmiş */
.whatsapp-float {
    position: fixed;
    width: 45px;
    height: 45px;
    bottom: 30px;
    right: 100px; /* Scroll up butonu için yer açtık */
    background-color: #25d366;
    color: #FFF;
    border-radius: 50%;
    text-align: center;
    font-size: 26px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.7);
}

.pulse-ring {
    content: '';
    position: absolute;
    width: 50px;
    height: 50px;
    border: 2px solid #25d366;
    border-radius: 50%;
    animation: pulsate 2s ease-out infinite;
    opacity: 0;
    z-index: -1;
}

.pulse-ring-2 {
    animation-delay: 1s;
    width: 65px;
    height: 65px;
}

@keyframes pulsate {
    0% {
        transform: scale(0.8);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

/* Scroll Up Butonu - Güncellenmiş */
.scrollup {
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 45px;
    height: 45px;
    background-color: var(--first-color);
    color: var(--white-color);
    box-shadow: 0 4px 20px rgba(46, 204, 113, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    z-index: 998;
    font-size: 22px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease, opacity 0.4s ease, visibility 0.4s ease;
}

.scrollup.show-scroll {
    opacity: 0.9;
    visibility: visible;
}

.scrollup:hover {
    transform: translateY(-5px);
    opacity: 1;
    background-color: var(--first-color-dark);
    box-shadow: 0 6px 25px rgba(46, 204, 113, 0.7);
}

/* Show Scroll Up */
.show-scroll {
    bottom: 30px;
}

/* Mobil cihazlar için düzenleme */
@media screen and (max-width: 768px) {
    .whatsapp-float {
        width: 40px;
        height: 40px;
        bottom: 20px;
        right: 80px; /* Scroll up butonu için yer açtık */
        font-size: 22px;
    }
    
    .scrollup {
        width: 40px;
        height: 40px;
        right: 20px;
        bottom: 20px;
        font-size: 20px;
    }
    
    .pulse-ring {
        width: 60px;
        height: 60px;
    }
    
    .pulse-ring-2 {
        width: 70px;
        height: 70px;
    }
}

/* Çok küçük ekranlar için ek düzenleme */
@media screen and (max-width: 400px) {
    .whatsapp-float {
        width: 30px;
        height: 30px;
        right: 70px;
        font-size: 20px;
    }
    
    .scrollup {
        width: 30px;
        height: 30px;
        font-size: 18px;
    }
}

/* Dil Değiştirme Butonları */
.language-switcher {
    position: fixed;
    bottom: 20px;
    left: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 997;
    padding: 15px 12px;
    border-radius: 25px;
}

.lang-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid transparent;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.lang-btn img {
    width: 32px;
    height: 22px;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.lang-btn span {
    position: absolute;
    bottom: -20px;
    left: 0;
    right: 0;
    font-size: 11px;
    font-weight: 600;
    color: var(--title-color);
    opacity: 0;
    transition: all 0.3s ease;
    text-align: center;
}

.lang-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.lang-btn:hover img {
    transform: scale(1.15);
}

.lang-btn:hover span {
    bottom: -25px;
    opacity: 1;
}

.lang-btn.active {
    border-color: var(--first-color);
    box-shadow: 0 0 0 3px rgba(46, 204, 113, 0.2);
}

.lang-btn.active::after {
    content: '';
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: 12px;
    height: 12px;
    background-color: var(--first-color);
    border-radius: 50%;
    border: 2px solid white;
}

/* Mobil cihazlar için düzenleme */
@media screen and (max-width: 768px) {
    .language-switcher {
        bottom: 5px;
        left: 15px;
        flex-direction: row;
        padding: 10px;
        border-radius: 20px;
    }
    
    .lang-btn {
        width: 45px;
        height: 45px;
    }
    
    .lang-btn img {
        width: 28px;
        height: 19px;
    }
    
    .lang-btn span {
        display: none;
    }
    
    .lang-btn.active::after {
        width: 10px;
        height: 10px;
        bottom: 3px;
        right: 3px;
    }
}
@media screen and (max-width: 400px) {
      .lang-btn {
        width: 35px;
        height: 35px;
    }
}



/* Footer Aksiyon Butonları */
.footer__privacy {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
    position: relative;
    z-index: 10; /* Butonların üstte görünmesini sağlar */
}

.footer__action-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--first-color) 0%, var(--first-color-dark) 100%);
    color: var(--white-color);
    border-radius: 50px;
    font-weight: var(--font-semi-bold);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(46, 204, 113, 0.3);
    position: relative;
    z-index: 10;
}

.footer__action-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(46, 204, 113, 0.4);
    color: var(--white-color);
}

.footer__action-btn i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.footer__action-btn:hover i {
    transform: scale(1.2);
}

/* Footer z-index düzenlemesi */
.footer__bottom {
    margin-top: 5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    position: relative;
    z-index: 5;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(255,255,255,0.03)"/></svg>');
    background-size: cover;
    z-index: 1;
}

.footer__container {
    position: relative;
    z-index: 2;
}

/* Mobil cihazlar için düzenleme */
@media screen and (max-width: 768px) {
    .footer__privacy {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .footer__action-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
}








/*=============== IMAGE MODAL ===============*/
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  padding-top: 50px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(5px);
}

.modal-content {
  position: relative;
  margin: auto;
  padding: 0;
  width: 90%;
  max-width: 900px;
  animation: zoom 0.3s ease;
}

@keyframes zoom {
  from {transform: scale(0.9); opacity: 0;}
  to {transform: scale(1); opacity: 1;}
}

.modal-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: white;
  font-size: 35px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s;
  z-index: 1001;
}

.modal-close:hover {
  color: var(--first-color);
}

.modal-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.5);
}

/* Mobil cihazlar için düzenleme */
@media screen and (max-width: 768px) {
  .modal-content {
    width: 95%;
  }
  
  .modal-close {
    top: -30px;
    right: -10px;
    font-size: 30px;
  }
}








/* Footer geliştirici bilgisi stilleri */
.footer__development {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    width: 100%;
}

.footer__dev-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
}

.footer__dev-link:hover {
    color: var(--first-color);
    background-color: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
}

.footer__dev-link i {
    font-size: 1.1rem;
    color: var(--first-color);
}

/* Mobil uyumluluk */
@media screen and (max-width: 768px) {
    .footer__dev-link {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .footer__dev-link i {
        font-size: 1rem;
    }
}

@media screen and (max-width: 400px) {
    .footer__dev-link {
        flex-direction: column;
        gap: 0.25rem;
    }
}









