.nav-logo img,
.navbar.scrolled {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.services h2,
body {
  color: var(--dark);
}
.footer-bottom,
.hero-section,
.loading-content,
.page-title,
.services h2,
.services-list {
  text-align: center;
}
#content,
.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}
:root {
  --primary: #ff4757;
  --primary-dark: #e60026;
  --secondary: #2f3542;
  --accent: #ffa502;
  --light: #f1f2f6;
  --dark: #1e272e;
  --white: #ffffff;
  --text-dark: #2d3436;
  --text-light: #f5f6fa;
  --shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  --transition: all 0.3s ease;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Lora', serif;
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  position: relative;
}
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: 0 0;
  transition: 0.3s;
  padding: 1.5rem 0;
}
.nav-link,
.nav-logo img {
  transition: var(--transition);
}
.nav-link {
  color: var(--text-light) !important;
  text-decoration: none;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 5px;
}
.nav-link:hover {
  color: var(--primary) !important;
  background: rgba(255, 255, 255, 0.1);
}
.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  padding: 1rem 0;
}
.navbar.scrolled .nav-link {
  color: var(--text-dark) !important;
}
.navbar.scrolled .nav-link:hover {
  color: var(--primary) !important;
  background: var(--light);
}
.navbar.scrolled .nav-logo img {
  height: 45px;
  width: 45px;
  border-color: var(--primary);
}
.nav-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-logo img {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--white);
}
.phone-button,
.primary-button,
.secondary-button {
  border-radius: 50px;
  text-decoration: none;
  transition: var(--transition);
}
.nav-logo:hover img {
  transform: scale(1.1);
  border-color: var(--primary);
}
.nav-list {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.phone-button {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  background: var(--primary);
  color: var(--white);
}
.phone-button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.hero-section {
  height: 100vh;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5))
      center/cover,
    url("/images/nişan_organizasyon.jpg") center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  padding: 0 1rem;
}
.hero-content {
  max-width: 800px;
}
.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  animation: 1s fadeInDown;
}
.hero-content p {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  animation: 1s 0.3s both fadeInUp;
}
.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  animation: 1s 0.6s both fadeInUp;
}
.primary-button,
.secondary-button {
  padding: 1rem 2rem;
  font-weight: 500;
}
.primary-button {
  background: var(--primary);
  color: var(--white);
}
.secondary-button {
  background: 0 0;
  color: var(--white);
  border: 2px solid var(--white);
}
.primary-button:hover,
.secondary-button:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.services {
  padding: 5rem 0;
  background: var(--light);
}
.services h2 {
  font-size: 2.5rem;
  margin-bottom: 3rem;
}
.container,
.service-slider {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
.service-item {
  margin: 1rem;
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  width: calc(50% - 2rem);
}
.social-icon,
.social-link {
  border-radius: 50%;
  text-decoration: none;
}
.service-card:hover,
.service-item:hover {
  transform: translateY(-5px);
}
.service-item img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}
.service-item h3 {
  padding: 1.5rem;
  margin: 0;
  color: var(--primary);
}
.service-item p {
  padding: 0 1.5rem 1.5rem;
  margin: 0;
}
.footer {
  background: var(--secondary);
  color: var(--text-light);
  padding: 4rem 0 0;
  position: relative;
}
.footer-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.contact-info,
.footer h4 {
  margin-bottom: 1.5rem;
}
.footer h4 {
  color: var(--primary);
  font-size: 1.5rem;
  font-weight: 600;
}
.footer p {
  color: var(--text-light);
  margin-bottom: 1rem;
  line-height: 1.8;
  opacity: 1;
}
.footer-services ul {
  list-style: none;
  padding: 0;
}
.footer-services li {
  color: var(--text-light);
  transition: var(--transition);
  cursor: pointer;
}
.contact-info p {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.8rem;
}
.contact-info i {
  color: var(--primary);
  font-size: 1.2rem;
}
.contact-info a,
.footer-contact a,
.footer-services ul li a {
  color: var(--text-light);
  text-decoration: none;
  transition: var(--transition);
}
.contact-info a:hover,
.footer-about h4,
.footer-contact a:hover,
.footer-contact h4,
.footer-services h4 {
  color: var(--primary);
}
.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}
.social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-light);
  transition: var(--transition);
}
.social-link:hover {
  transform: translateY(-3px);
}
.social-link.whatsapp:hover {
  background: #25d366;
  color: #fff;
}
.social-link.instagram:hover {
  background: #e4405f;
  color: #fff;
}
.social-link.phone:hover {
  background: #66CCFF;
  color: #fff;
}
.footer-bottom {
  margin-top: 3rem;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-bottom p {
  color: var(--text-light);
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.7;
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 768px) {
  .nav-menu {
    background: var(--white);
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: var(--white);
    padding: 1rem;
    transition: var(--transition);
    z-index: 1000;
    overflow-y: auto;
  }
  .nav-link,
  .navbar.scrolled .nav-link {
    color: var(--dark) !important;
  }
  .footer-container {
    grid-template-columns: 1fr;
  }
  .contact-info p,
  .footer-social {
    justify-content: center;
  }
  .footer-services li:hover {
    padding-left: 0;
  }
  .hero-buttons,
  .nav-list {
    flex-direction: column;
    gap: 1rem;
  }
  .footer-container,
  .nav-link {
    text-align: center;
  }
  .nav-menu.active {
    left: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
  .nav-list {
    padding: 1rem 0;
  }
  .nav-link {
    display: block;
    padding: 0.8rem;
    font-size: 1.1rem;
  }
  .nav-contact {
    display: none;
  }
  body.menu-open {
    overflow: hidden;
  }
  .hero-content {
    padding: 0 1rem;
  }
  .hero-content h1 {
    font-size: 2rem;
    line-height: 1.3;
  }
  .hero-content p {
    font-size: 1.1rem;
  }
  .about-content,
  .footer-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .services {
    padding: 3rem 0;
  }
  .service-slider {
    padding: 0;
  }
  .service-item {
    margin: 0.5rem;
    width: calc(100% - 2rem);
  }
  .about-header {
    height: 40vh;
  }
  .page-title h1 {
    font-size: 2rem;
  }
  .about-image {
    height: 300px;
  }
  .footer {
    padding: 3rem 0 0;
  }
  .contact-info,
  .footer-services ul {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.social-icon,
.social-icon::before {
  background: rgba(255, 255, 255, 0.95);
  color: var(--dark);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
@media (min-width: 769px) and (max-width: 1024px) {
  .container,
  .footer-container,
  .nav-container {
    padding: 0 2rem;
  }
  .hero-content h1 {
    font-size: 3rem;
  }
  .about-content {
    gap: 2rem;
  }
  .service-item {
    margin: 0.75rem;
  }
}
@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.8rem;
  }
  .hero-content p {
    font-size: 1rem;
  }
  .services h2 {
    font-size: 2rem;
  }
  .service-item {
    margin: 0.3rem;
  }
  .footer h4 {
    font-size: 1.3rem;
  }
}
.mobile-toggle {
  margin-left: 1rem;
}
.social-media-container {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 99;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.social-media-icons {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.social-icon {
  position: relative;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  overflow: hidden;
}
.about-image,
.service-card {
  border-radius: 15px;
  box-shadow: var(--shadow);
}
.social-icon i {
  font-size: 1.2rem;
  transition: 0.3s;
}
.footer-services li,
.mobile-toggle span,
.service-card {
  transition: var(--transition);
}
.social-icon::before {
  content: attr(data-title);
  position: absolute;
  right: 100%;
  top: 50%;
  transform: translateY(-50%);
  padding: 8px 15px;
  border-radius: 25px;
  font-size: 0.9rem;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  margin-right: 10px;
}
.social-icon:hover::before {
  opacity: 1;
  visibility: visible;
}
.social-icon.whatsapp:hover {
  background: #25d366;
  transform: translateX(-5px);
}
.social-icon.instagram:hover i,
/* .social-icon.phone:hover i, */
.social-icon.whatsapp:hover i {
  color: #fff;
}
.social-icon.instagram:hover {
  background: #e4405f;
  transform: translateX(-5px);
}
.social-icon.phone:hover {
  background: #66CCFF;
  transform: translateX(-5px);
}
@media (max-width: 768px) {
  .social-media-container {
    top: auto;
    bottom: 20px;
    right: 20px;
    transform: none;
    flex-direction: row;
  }
  .social-media-icons {
    flex-direction: row;
    gap: 15px;
  }
  .social-icon {
    width: 40px;
    height: 40px;
  }
  .social-icon::before {
    display: none;
  }
  .social-icon:hover {
    transform: translateY(-5px) !important;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .social-media-container {
    right: 15px;
  }
  .social-icon {
    width: 40px;
    height: 40px;
  }
}
#content {
  width: 100%;
  overflow: hidden;
  display: none;
  animation: 0.5s forwards fadeIn;
}
.about-header {
  height: 50vh;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7))
      center/cover,
    url("/images/nişan_organizasyon.jpg") center/cover;
  display: flex;
  flex-direction: column;
}
.page-title {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--white);
  padding: 2rem;
}
.page-title h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  animation: 1s fadeInDown;
}
.breadcrumb {
  display: flex;
  gap: 0.5rem;
  animation: 1s fadeInUp;
}
.breadcrumb a {
  color: var(--primary);
  text-decoration: none;
}
.breadcrumb span,
.footer-social .social-link:hover {
  color: var(--white);
}
.about-text h2,
.footer-services li:hover,
.footer-services ul li a:hover,
.service-card i,
.services-list h3 {
  color: var(--primary);
  color: var(--primary);
}
.about-section {
  padding: 5rem 0;
}
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}
.about-text {
  animation: 1s fadeInLeft;
}
.about-text h2 {
  margin-bottom: 1.5rem;
  font-size: 2rem;
}
.about-text p {
  margin-bottom: 1rem;
  line-height: 1.8;
}
.about-image {
  overflow: hidden;
  animation: 1s fadeInRight;
}
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.services-list h3 {
  font-size: 2rem;
  margin-bottom: 3rem;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}
.service-card {
  background: var(--white);
  padding: 2rem;
}
.service-card i {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.service-card h4 {
  color: var(--dark);
  font-size: 1.1rem;
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s;
}
.loading-content {
  position: relative;
}
.loading-logo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary);
  animation: 2s linear infinite logoSpin, 1.5s infinite logoPulse;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}
@keyframes logoSpin {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes logoPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 71, 87, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(255, 71, 87, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 71, 87, 0);
  }
}
.loading-spinner {
  display: none;
}
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}
.mobile-toggle {
  display: none;
  background: 0 0;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}
.mobile-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background: var(--dark);
  margin: 5px 0;
}
.mobile-toggle.active span:first-child {
  transform: rotate(45deg) translate(5px, 5px);
}
.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}
.footer-logo {
  height: 60px;
  width: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary);
}
@media (max-width: 768px) {
  .about-content,
  .services-grid {
    grid-template-columns: 1fr;
  }
  .page-title h1 {
    font-size: 2rem;
  }
  .about-text h2 {
    font-size: 1.5rem;
  }
  .mobile-toggle {
    display: block;
  }
  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: var(--white);
    padding: 2rem;
    transition: var(--transition);
    z-index: 1000;
  }
  .nav-menu.active {
    left: 0;
  }
  .nav-list {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
  .nav-link {
    font-size: 1.2rem;
    width: 100%;
    text-align: center;
    padding: 1rem;
  }
  .nav-contact {
    display: none;
  }
  body.menu-open {
    overflow: hidden;
  }
  .nav-logo img {
    height: 40px;
    width: 40px;
  }
  .navbar.scrolled .nav-logo img {
    height: 35px;
    width: 35px;
  }
}
.footer-services ul li a:hover {
  padding-left: 5px;
}
.footer-services li {
  color: var(--text-light);
  margin-bottom: 0.8rem;
  opacity: 1;
}
.footer-services li:hover {
  opacity: 1;
  padding-left: 5px;
}
.footer-social .social-link {
  color: var(--text-light);
  background: rgba(255, 255, 255, 0.1);
}
.service-slider {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
.service-item {
  margin: 1rem;
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  width: calc(50% - 2rem);
}
.service-item img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .service-item {
    margin: 0.5rem;
    width: calc(100% - 2rem);
  }
  .service-item img {
    height: 300px;
  }
}
@media (max-width: 480px) {
  .service-item img {
    height: 280px;
  }
}

/* Galeri Stilleri */
.gallery-section {
  padding: 50px 0;
}

.gallery {
  display: flex;
  flex-direction: column; /* Her resmin alt alta hizalanmasını sağlar */
  gap: 15px; /* Resimler arasındaki boşluk */
}

.gallery-item {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
  max-width: 600px; /* Maksimum genişlik ayarı */
  margin: 0 auto; /* Ortalamak için */
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  /* Hover efektini kaldırdık */
  /* transition: transform 0.3s ease; */
}

/* Hover olayını kaldırdık */
.gallery-item:hover {
  /* transform: scale(1.05); */
}

.gallery-item:hover img {
  /* transform: scale(1.1); */
}

/* Galeri Stilleri */
.gallery-title {
  font-family: 'Lora', serif;
  text-align: center; /* Başlığı ortalar */
  margin-bottom: 30px; /* Başlık ile galeri arasındaki boşluk */
  font-size: 2rem; /* Başlık boyutu */
  color: var(--text-dark); /* Başlık rengi */
}