/*------------------------------------------------------------------
  LfD Ana Tema CSS
  Yapı:
  1.  General Style
      1.1 Base
      1.2 Typography
      1.3 Utility Classes
      1.4 Buttons
  2.  Header
      2.1 Logo & Navigation Wrapper
      2.2 Logo Subtitle (ÖZEL İÇERİK ÇÖZÜMLERİ)
      2.3 Üst Butonlu Ana Menü (mainmenu-wrapper)
      2.4 Burger Button
      2.5 Fullscreen Navigation (Collapse Navigation)
  3.  Pages Style (Layout, Sections)
  4.  Home Slider
      4.1 Navigation Buttons
      4.2 Slider Inner Info
      4.3 Pagination
  5.  Albums (Genel)
  6.  Gallery
  7.  Blog
  8.  About
  9.  Contact
  10. Footer
  11. Responsive Rules (Global)
  12. LfD İçerik Sayfaları Ortak Tasarım
      12.1 Body & Typography
      12.2 Hero Kartları
      12.3 Örnek Çalışmalar (Samples)
      12.4 Kart (album-item) Düzeni
      12.5 CTA Bloğu
      12.6 Footer Renk Fix
      12.7 Responsive (İçerik Sayfaları)
--------------------------------------------------------------------
  Font: 'Poppins', 'Yantramanav', 'Montserrat';
  Colors:
    #151515 (siyah ton)
    #df1f29 (kırmızı)
    #555555 (gri)
    #EEFBF3 (açık yeşil arka plan)
    #dff5e7 (soft yeşil)
    #990099 (mor)
    #1b5731 (LfD yeşili)
------------------------------------------------------------------*/

/*==================================================
  1. GENERAL STYLE
==================================================*/

/* 1.0 Font importları */
@import 'https://fonts.googleapis.com/css?family=Yantramanav:100,300,400,500,700,900';
@import 'https://d1azc1qln24ryf.cloudfront.net/114779/Socicon/style-cf.css?rd5re8';

/* 1.1 Base */

::selection {
  background: #555;
  color: #fff;
}
::-moz-selection {
  background: #555;
  color: #fff;
}

body {
  background: #EEFBF3;
  padding: 0;
  margin: 0 auto;
  min-height: 100vh;
  font-family: 'Poppins', Arial, sans-serif;
  color: #fff;
}

article, aside, details, figcaption, footer,
header, hgroup, nav, section {
  display: block;
}

a {
  color: #EEFBF3;
  text-decoration: none;
}

blockquote {
  padding: 10px 20px;
  color: #151515;
  font-size: 1.4em;
  font-style: italic;
  font-weight: 300;
  margin: 0 auto 30px;
}

ul {
  list-style-type: none;
  list-style: none;
  padding-left: 0 !important;
  -webkit-padding-start: initial !important;
  -moz-padding-start: initial;
}
menu, ol, ul {
  padding: 0 !important;
}

button {
  background: transparent;
  border: none;
}
button:focus {
  outline: none;
}

input, textarea {
  font-family: 'Poppins', Arial, sans-serif;
}
textarea {
  padding: 14px;
}
input:focus,
textarea:focus {
  outline: none !important;
  border: 1px solid #EEFBF3;
  box-shadow: none;
}
input[type="submit"] {
  position: absolute;
  display: inline-block;
  left: 0;
  top: 0;
  opacity: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  cursor: pointer;
}
input[type="submit"]:focus {
  outline: none;
}

img {
  width: 100%;
}

/* 1.2 Typography */

h1, h2, h4, h5, h6 {
  color: #151515;
  margin-top: 0;
  text-align: center;
}

h1 {
  font-size: calc(80px + 1vw);
}
h2 {
  font-size: calc(36px + 16 * (100vw - 992px) / 1508);
}
h3 {
  font-size: calc(28px + 16 * (100vw - 992px) / 1508);
  margin-bottom: 20px;
}
h4 {
  font-size: calc(24px + 16 * (100vw - 992px) / 1508);
  font-weight: 300;
}
h5 {
  font-size: 20px;
  font-weight: 400;
}
h6 {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: calc(10px + 10 * (100vw - 992px) / 1508);
}

p {
  font-size: calc(18px + 2 * (100vw - 992px) / 1508);
  line-height: 1.8;
  font-weight: 300;
}

/* 1.3 Utility Classes */

.c-white       { color: #fff !important; }
.navbar-white  { color: #fff; background-color: transparent !important; }

.center-block  { display: flex; justify-content: center; }
.align-left    { text-align: left; }
.align-right   { text-align: right; }
.align-center  { text-align: center; display: block; }

.socials li    { display: inline-block; }

.share-links a {
  font-size: 19px;
  padding: .5em;
}

[class*="socicon-"] {
  display: inline-block;
  color: inherit;
  margin: 0;
  transition: opacity .3s ease;
}
#contact [class*="socicon-"] {
  padding-right: .7em;
}
[class*="socicon-"]:hover {
  opacity: .4;
}

/* 1.4 Buttons (ms-button & slider button) */

.ms-button {
  color: #151515;
  display: inline-block;
  position: relative;
  padding: .5em 1em;
  margin-bottom: 0;
  font-weight: 400 !important;
  font-size: 14px;
  letter-spacing: .15em;
  text-transform: uppercase;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  cursor: pointer;
  background-image: none;
  border: solid 1px;
  transition: color .4s ease;
}
.ms-button:after {
  position: absolute;
  display: block;
  content: attr(data-title);
  padding: 7px 0;
  font-size: 14px;
  left: 0;
  top: 0;
  width: 0%;
  background: #1b5731;
  color: #fff;
  text-indent: 1rem;
  transition: all .3s ease;
  overflow: hidden;
  border: none;
  bottom: 0;
}
.ms-button:hover {
  color: #1b5731;
}
.ms-button:active::after,
.ms-button:focus::after,
.ms-button:hover::after {
  width: 100%;
  padding-right: 25px;
}

/* Slider için özel buton */
.ms-btn--slider {
  text-transform: uppercase;
  text-decoration: none;
  position: relative;
  display: flex;
  align-items: center;
  width: 11em;
  font-weight: 600;
  letter-spacing: .15em;
}
.ms-btn--slider::before {
  content: '';
  height: .1rem;
  width: 2rem;
  margin-right: .7rem;
  background: #1b5731;
  transition: width .3s ease;
}
.ms-btn--slider:hover::before {
  width: 3rem;
}

/*==================================================
  2. HEADER
==================================================*/

/* 2.1 Header Wrapper & Logo */

.ms-header {
  position: fixed;
  width: 100%;
  background-color: #dff5e7;
  z-index: 3;
}

.ms-nav {
  padding: 1.5em 3em;
  color: inherit;
  display: flex;
  align-items: center;
}

.ms-logo {
  position: relative;
  z-index: 7;
  height: 50px;
}
.logo-dark,
.logo-light {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity .3s ease .4s;
}
.ms-logo img {
  width: auto;
  height: 100%;
}
.logo-dark.current,
.logo-light.current {
  opacity: 1;
}
.logo-dark.active,
.logo-light.active {
  opacity: 1;
  transition: opacity .1s;
}

/* 2.2 Logo altı “ÖZEL İÇERİK ÇÖZÜMLERİ” */

.ms-header .logo-subtitle {
  position: absolute;
  top: calc(100% + 8px);
  left: 4px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  pointer-events: none;
  white-space: nowrap;
}

/* Açık zeminli sayfalar (header .navbar-white değilken) */
.ms-header:not(.navbar-white) .logo-subtitle {
  color: #1b5731;
  text-shadow: none;
  opacity: 0.9;
}

/* Koyu zeminli ana sayfa (header.navbar-white) */
.ms-header.navbar-white .logo-subtitle {
  color: #ffffff;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.7);
  opacity: 0.98;
}

/* Menü açıkken (fullscreen) her zaman beyaz */
.ms-nav.is-visible .logo-subtitle {
  color: #ffffff;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.7);
  opacity: 0.98;
}

/* ================================
   MOBİL HEADER: LOGO + ALT METİN
   ================================ */
@media (max-width: 768px) {

  /* Header padding */
  .ms-nav {
    padding: 1.1em 1.4em;
  }

  /* Logo kutusu: üstte logo, altında yazı */
  .ms-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: auto;            /* sabit 50px yerine içerik kadar */
  }

  /* Logo linki: yüksekliği sabitle, img buna otursun */
  .ms-logo a {
    position: relative;
    display: block;
    height: 42px;            /* logonun yüksekliği */
    line-height: 0;
  }

  .ms-logo img {
    height: 100%;
    width: auto;
  }

  /* Alt yazı: tamamen normal akışta, logonun ALTINDA */
  .ms-header .logo-subtitle {
    position: static !important;   /* absolute'tan kurtar */
    margin-top: 4px;
    margin-left: 0;

    max-width: 90px;               /* taşmayı engelle */
    font-size: 9px;
    line-height: 1.2;
    letter-spacing: 1px;
    white-space: normal;           /* gerektiğinde satır kır */
    text-align: left;
  }
}


/* 2.3 Üst Butonlu Ana Menü (mainmenu-wrapper) */

.mainmenu-wrapper {
  display: none; /* mobile-first: gizli */
  width: 100%;
  margin-top: 0;
}

.mainmenu-button-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 6px 10px;
  max-width: 1100px;
  margin: 0 auto;
}

.mainmenu-ms-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #309255;
  color: #fff;
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 999px;
  font-family: system-ui, Arial, sans-serif;
  font-weight: 600;
  font-size: 13px;
  white-space: nowrap;
  transition: 0.2s;
}

.mainmenu-ms-btn:hover {
  background: #1b5731;
}
.mainmenu-ms-btn.active {
  background: #1b5731;
}

/* 992px ve üzeri: üst yeşil menü aktif */

@media (min-width: 992px) {
  .mainmenu-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 8px;
  }

  .ms-nav {
    flex-wrap: wrap;
  }

  .hamburger {
    margin-left: auto; /* hamburger sağda */
  }
}

/* 2.3.1 İletişim butonu (turuncu CTA) */

.iletisim-ms-btn {
  display: inline-block;
  margin: 0 auto;
  background: #FF7F00;
  color: #fff;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 8px;
  font-family: system-ui, Arial, sans-serif;
  font-weight: 600;
  text-align: center;
  transition: 0.3s;
}
.iletisim-ms-btn:hover {
  background: #1b5731;
}
.iletisim-ms-btn.active {
  background: #1b5731;
}

/* 2.4 Burger Button */

.hamburger {
  margin-right: 0;
  margin-left: auto;
  overflow: visible;
  cursor: pointer;
  z-index: 7;
  border: 0;
  transition-timing-function: linear;
  transition-duration: .3s ease;
  transition-property: opacity, filter, -webkit-filter;
}

/* Burger hizalama fix */
.ms-header .hamburger-box {
  position: relative;
  top: -4px;
}

.navbar-white.hamburger-label {
  color: #fff;
}

.hamburger-label {
  display: block;
  font-family: 'Poppins', Arial, sans-serif;
  font-size: 16px;
  width: 100%;
  height: auto;
  position: relative;
  top: 0;
  left: -4em;
  padding-right: 4em;
  text-transform: uppercase;
  line-height: 1.5em;
  transition: color .3s ease .4s;
  color: #151515;
}

.hamburger.is-active .hamburger-label {
  color: #fff !important;
  transition: color .1s ease;
}

.hamburger-box {
  position: relative;
  display: inline-block;
  width: 30px;
  height: 20px;
  vertical-align: middle;
}
.hamburger-inner {
  display: block;
  top: 0;
}
.navbar-white .hamburger-inner,
.navbar-white .hamburger-inner:after,
.navbar-white .hamburger-inner:before {
  background-color: #fff;
}
.hamburger-inner:after,
.hamburger-inner:before {
  display: block;
  content: '';
}
.hamburger-inner,
.hamburger-inner:after,
.hamburger-inner:before {
  position: absolute;
  width: 30px;
  height: 3px;
  background-color: #151515;
  transition: all .3s ease .5s;
}
.hamburger-inner:before {
  top: 8px;
  left: -8px;
}
.hamburger-inner:after {
  top: 16px;
  width: 26px;
}
.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner:after {
  background-color: #fff;
  transition-delay: .1s;
}
.hamburger.is-active .hamburger-inner {
  transform: translate3d(0, 8px, 0) rotate(45deg);
}
.hamburger.is-active .hamburger-inner:before {
  opacity: 0;
  transition: opacity .3s ease 0s;
}
.hamburger.is-active .hamburger-inner:after {
  width: 30px;
  transform: translate3d(0, -16px, 0) rotate(-90deg);
}

/* 2.5 Collapse Navigation (Fullscreen Menu) */

.height-full-viewport {
  position: fixed;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow-y: auto;
  left: 0;
  top: 0;
  width: 100%;
  height: 0%;
  background-color: #151515;
  z-index: 5;
  overflow: hidden;
  transition: height .8s cubic-bezier(0.3, 1, 0.3, 1) .1s;
}

.ms-navbar {
  z-index: 6;
  margin: 0 auto;
  display: block;
  width: auto;
  height: auto;
  top: 0;
  left: 0;
}

.ms-nav.is-visible .height-full-viewport {
  height: 100vh;
  transition: height 1s ease;
}

.nav-item {
  cursor: pointer;
  padding: .75em;
  opacity: 0;
  width: 240px;
  margin-left: 3em;
  transition: opacity .3s ease;
}

.ms-navbar a {
  display: block;
}

.ms-navbar .ms-btn {
  display: inline-block;
  text-transform: uppercase;
  line-height: 1;
  padding: 0 0.25em;
  position: relative;
  font-size: 1.75em;
  letter-spacing: .02em;
  color: #fff;
  font-weight: 700 !important;
  backface-visibility: hidden;
}

.ms-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 0;
  height: .1rem;
  background: #1b5731;
  transition: width .3s ease;
}

.nav-item__label {
  position: relative;
  display: block;
  margin-top: 0.25em;
  padding: 0.5em;
  color: #555;
  transition: color .3s ease;
  text-decoration: none;
}

.nav-item:hover .nav-item__label {
  color: #9a9a9a;
}

.is-visible .nav-item {
  opacity: 1;
  transition: opacity 2s cubic-bezier(0.16, 1.08, 0.38, 0.98) .3s;
}

.nav-item .ms-btn {
  transition: all .3s ease;
}

.nav-item:active .ms-btn,
.nav-item:focus .ms-btn,
.nav-item:hover .ms-btn {
  color: #1b5731;
  opacity: 1;
  padding-left: 2.4rem;
}

.nav-item:active .ms-btn::before,
.nav-item:focus .ms-btn::before,
.nav-item:hover .ms-btn::before {
  width: 2rem;
}

/*==================================================
  3. PAGES STYLE (Layout, Sections)
==================================================*/

.ms-preloader {
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 8;
  top: 0;
  left: 0;
  opacity: 1;
  visibility: visible;
  background-color: #151515;
}

.ms-main-container {
  position: relative;
  width: 100%;
  min-height: 100vh;
  opacity: 0;
  background-color: #EEFBF3;
}

.ms-container {
  width: 100%;
  height: 100%;
  position: relative;
  padding-top: 14em; /* 12em → 14em */
}

.ms-section__block {
  width: 85%;
  max-width: 88em;
  margin: 0 auto 6em;
}

.ms-page-title span {
  text-transform: uppercase;
  letter-spacing: .15em;
  color: #1b5731;
}

.page-header {
  text-transform: uppercase;
  position: relative;
  margin: 15px 0;
}

.page-desc {
  width: 50vh;
  font-size: 1.5em;
  line-height: 1.5;
  color: #151515;
  letter-spacing: .05em;
}

/*==================================================
  4. HOME SLIDER
==================================================*/

.home-slider {
  padding-top: 0 !important;
}

.swiper-container {
  width: 100%;
  height: 100vh;
}

.swiper-slide {
  overflow: hidden;
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  opacity: 1;
  background: linear-gradient(to bottom, black 0, transparent 50%, transparent 63%, rgba(0, 0, 0, 1) 100%);
  transition: all .65s ease;
}

.swiper-slide-duplicate-active .overlay,
.swiper-slide-active .overlay {
  opacity: .4;
}

.slide-inner {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: #000;
  backface-visibility: hidden;
}

.slide-inner--image {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: .2;
  transform: scale(1.07);
  transition: opacity .6s ease-in-out, transform 2s ease .7s;
}

.swiper-slide-duplicate-active .slide-inner--image,
.swiper-slide-active .slide-inner--image {
  opacity: 1;
  transform: scale(1);
}

/* 4.1 Slider Navigation Buttons */

.swiper-button-prev,
.swiper-button-next {
  text-transform: uppercase;
  color: #fff;
  letter-spacing: .2em;
  line-height: 1.6em;
  font-size: 16px;
  width: auto;
  height: 24px;
  background-image: none !important;
  backface-visibility: hidden;
}

.swiper-button-prev {
  padding-left: 6em;
  left: 0;
  transition: padding-left .3s ease;
}
.swiper-button-next {
  padding-right: 6em;
  right: 0;
  transition: padding-right .3s ease;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  content: "";
  width: 4em;
  height: 1px;
  background-color: #fff;
  position: absolute;
  top: calc(50% - 1px);
}
.swiper-button-prev::after {
  left: 0;
}
.swiper-button-next::after {
  right: 0;
}

.swiper-button-prev:hover {
  padding-left: 90px;
}
.swiper-button-prev:hover::after {
  width: 75px;
}
.swiper-button-next:hover {
  padding-right: 90px;
}
.swiper-button-next:hover::after {
  width: 75px;
}

/* 4.2 Slider Inner Info */

.slide-inner--info {
  position: absolute;
  width: auto;
  min-height: 50px;
  bottom: 3em;
  padding-left: 3em;
  color: #fff;
  z-index: 1;
  opacity: 0;
  transition: opacity 1s ease;
  user-select: none;
}

.swiper-slide-active .slide-inner--info {
  opacity: 1;
  transition: opacity 1s ease 1s;
}

.slide-inner--info h1 {
  margin: 10px 0;
  text-transform: uppercase;
  font-weight: 900;
  line-height: 1em;
  color: #fff;
}

.slide--info__link {
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  border-bottom: solid 2px;
}

.swiper-slide--bottom {
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 0;
  right: 0;
  height: 90px;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}

/* 4.3 Pagination */

.expanded-timeline {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: right;
  z-index: 3;
  bottom: 2.8em;
  right: 3em;
  width: 40vh;
}

.swiper-pagination {
  z-index: 4;
  width: 85%;
  left: 0;
  right: 0;
  height: 1px;
  background-color: rgba(255, 255, 255, .5);
}
.swiper-pagination-progressbar-fill {
  background: #fff !important;
}

.expanded-timeline__counter span {
  text-align: center;
  margin-left: 1.8em;
  margin-right: 100%;
  padding: .4em 0;
  color: #fff;
  display: block;
}

.scroll-message {
  position: absolute;
  right: 0;
  color: #fff;
  opacity: .5;
  font-size: 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  letter-spacing: .15em;
}

.scroll-svg {
  width: 24px;
  margin: 0 auto 1.2em;
  display: block;
}

/*==================================================
  5. ALBUMS (GENEL)
==================================================*/

.filtr-container {
  transition: height .5s ease-out;
  overflow: hidden;
}

.filtr-btn {
  display: inline-block;
  margin-bottom: 2.4em;
}
.filtr-btn li {
  cursor: pointer;
  display: inline-block;
  opacity: .5;
  margin-bottom: 15px;
  transition: opacity .3s ease;
}
.filtr-btn h6 {
  margin-bottom: 0;
  padding-right: 1.2em;
}
.filtr-btn li.active {
  opacity: 1;
}
.filtr-btn li:hover {
  opacity: 1 !important;
}

.album-item {
  padding-bottom: 1.8em;
}

.album-item a {
  padding-top: 60%;
  display: flex;
  overflow: hidden;
  position: relative;
  z-index: 9;
}

.album-item__img {
  position: absolute;
  width: 100.5%;
  height: 100%;
  top: 0;
  left: 0;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  transform: scale(1);
  transition: transform .3s ease;
  backface-visibility: hidden;
}

.album-item__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100.5%;
  height: 100%;
  z-index: 2;
  overflow: hidden;
}

.album-item__cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .7);
  z-index: 1;
  overflow: hidden;
  opacity: 0;
  transition: opacity .3s ease;
}

.album-item__overlay h5 {
  position: relative;
  color: #fff;
  margin: 0;
  max-width: 100%;
  padding: 1em;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  backface-visibility: hidden;
  z-index: 1;
  transform: scale(1.5);
  opacity: 0;
  transition: all .3s ease;
}

.album-item:hover .album-item__img {
  transform: scale(1.1);
}

.album-item:hover .album-item__cover,
.album-item:hover .album-item__overlay h5 {
  opacity: 1;
  transform: translateZ(0);
}

/*==================================================
  6. GALLERY
==================================================*/

.ug-thumb-overlay:hover::before {
  top: 15px;
  right: 15px;
}
.ug-thumb-overlay:hover::after {
  bottom: 15px;
  left: 15px;
}
.ug-thumb-image {
  backface-visibility: hidden;
  opacity: 0;
  transition: transform .3s ease, opacity 2s cubic-bezier(0.16, 1.08, 0.38, 0.98) 0s !important;
  transform: scale(1) !important;
}
.ug-thumb-wrapper,
.post-item {
  pointer-events: none;
}
.ug-thumb-wrapper.ug-tile.ug-tile-clickable.ug-thumb-ratio-set:hover .ug-thumb-image {
  transform: scale(1.1) !important;
}

/*==================================================
  7. BLOG
==================================================*/

.ms-right-sidebar {
  display: inline-block;
}
.ms-right-sidebar h5 {
  margin-bottom: 15px;
}
.ms-right-sidebar a {
  display: block;
  border-top: solid 1px rgba(103, 103, 103, .3);
  padding: 15px 0;
}
.ms-right-sidebar a:hover .post-item__title {
  color: #1b5731;
}
.ms-right-sidebar .post-item__title {
  margin-bottom: 0;
  transition: color .3s ease;
}
.ms-right-sidebar .post-item__date {
  margin-top: .3em;
}

#ms-blog-post img {
  margin-bottom: 30px;
}

.post-item {
  margin-bottom: 3em;
  padding-right: 3em;
}
.post-item:nth-child(2n) {
  padding-right: 15px;
  padding-left: 3em;
}

.post-item__img {
  position: relative;
  overflow: hidden;
}

.album-item__overlay::before,
.post-item__img::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  opacity: 1;
  background-color: rgb(240, 240, 240);
  transition: opacity 2s cubic-bezier(0.16, 1.08, 0.38, 0.98) 1.2s;
}
.loaded .album-item__overlay::before,
.loaded .post-item__img::before {
  opacity: 0;
}

.post-item__img img {
  width: 100%;
  height: auto;
  max-height: 35em;
  padding: 0;
  display: block;
}

.post-item__img::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  opacity: 0;
  background: radial-gradient(ellipse at center, rgba(231, 55, 39, 0) 0%, rgba(0, 0, 0, 1) 100%);
  transition: opacity .3s ease;
}

.post-item__info {
  position: relative;
  margin: 2.5em 0 0 2.5em;
}
.post-item__title {
  width: 100%;
  max-width: 400px;
  margin-left: 0;
  margin-right: auto;
  margin-bottom: 20px;
}
.post-item__date {
  margin-left: 0;
  margin-right: auto;
  color: rgba(0, 0, 0, 0.7);
  font-size: 14px;
}

.post-item__link {
  position: absolute;
  width: auto;
  bottom: 0;
  right: 0;
  padding-right: 3em;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .12em;
  transition: padding-right .3s ease;
}
.post-item__link::after {
  content: '';
  width: 2em;
  height: 1px;
  position: absolute;
  top: calc(50% - 1px);
  right: 0;
  background: red;
  transition: width .3s ease;
}

.post-item:hover .post-item__img::after {
  opacity: .7;
}
.post-item:hover .post-item__link::after {
  width: 3em;
}
.post-item:hover .post-item__link {
  padding-right: 4em;
}

.ms-pagination {
  padding: 0;
  display: flex;
  justify-content: center;
}
.page-item {
  height: auto;
  position: relative;
  display: inline-block;
  margin: 0 .5em;
  border-right: none !important;
}
.page-item:last-child {
  border-right: solid 1px rgba(0, 0, 0, .1);
}
.page-link {
  padding: 1em;
  display: block;
  line-height: 1em;
}

/*==================================================
  8. ABOUT
==================================================*/

.about__info {
  justify-content: center;
  display: flex;
  flex-direction: column;
}
.about__info h4 {
  margin: 1em 0;
}

#about .row {
  margin-bottom: 9em;
}

/*==================================================
  9. CONTACT
==================================================*/

.form-group {
  position: relative;
  margin: 0;
  transition: border-color .3s ease;
}
.form-control {
  position: relative;
  display: block;
  width: 100%;
  padding: 0 1em;
  height: 34px;
  font-size: calc(16px + 2 * (100vw - 992px) / 1508);
  color: #151515;
  font-weight: 300;
  margin-bottom: 2em;
  background-image: none;
  border: 1px solid #555;
}
#message {
  min-height: 150px;
  max-height: 150px;
  max-width: 100%;
  min-width: 100%;
  padding: 10px 14px;
}
label.error {
  position: absolute;
  bottom: 1.2em;
  font-size: 12px;
  color: #1b5731;
}

/*==================================================
  10. FOOTER
==================================================*/

footer {
  position: relative;
  right: 0;
  bottom: -400px;
  left: 0;
  width: 100%;
  background: #151515;
}

.ms-footer {
  width: 85%;
  max-width: 88em;
  margin: 0 auto;
  display: flex;
  font-size: 16px;
  align-items: center;
}

.ms-footer .copyright {
  padding: 1.2em 0;
  margin-left: 0;
  margin-right: auto;
}

.ms-footer .socials {
  padding: 0;
  margin-left: auto;
  margin-right: 0;
}

.ms-footer .socials a {
  padding-left: 15px;
}

/*==================================================
  11. RESPONSIVE RULES (GLOBAL)
==================================================*/

@media only screen and (max-width: 805px) {
  h1 { font-size: calc(48px + 1vw); }
  h6 { font-size: 16px; }

  blockquote {
    margin: 0 auto 15px;
    font-size: 1em;
  }

  .expanded-timeline {
    width: 50vh;
  }

  .ms-nav {
    padding-top: 1.4em;
  }

  .ms-navbar .ms-btn {
    font-size: 1.4em;
  }
  .ms-navbar {
    position: relative;
    width: 100%;
    min-height: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    overflow-y: auto;
  }
  .nav-item {
    display: inline-block;
    width: auto;
    margin-left: 0;
  }
  .nav-item__label {
    display: none;
  }

  .ms-nav {
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 1.4em;
  }

  .overlay {
    background: linear-gradient(to bottom, black 0, transparent 35%, transparent 45%, rgba(0, 0, 0, 0.9) 100%);
  }

  .swiper-button-prev,
  .swiper-button-next {
    top: 50vh;
  }
  .swiper-button-prev {
    padding-left: 3em;
  }
  .swiper-button-next {
    padding-right: 3em;
  }
  .swiper-button-prev::after,
  .swiper-button-next::after {
    width: 2em;
  }
  .swiper-button-prev:hover {
    padding-left: 3em;
  }
  .swiper-button-prev:hover::after {
    width: 2em;
  }
  .swiper-button-next:hover {
    padding-right: 3em;
  }
  .swiper-button-next:hover::after {
    width: 2em;
  }

  .expanded-timeline {
    display: none;
  }

  .slide-inner--info {
    width: 100%;
    text-align: center;
    min-height: 50px;
    bottom: 10vh;
    padding-left: 0;
    color: #fff;
    z-index: 1;
    opacity: 0;
    transition: opacity 1s ease;
    user-select: none;
  }

  .ms-btn--slider {
    margin: 15px auto;
    display: inline-block;
    letter-spacing: .15em;
    background: #1b5731;
    color: #fff;
    padding: .5em 0;
  }
  .ms-btn--slider::before {
    display: none;
    width: 0;
  }

  .ms-container {
    padding-top: 6em;
    padding-bottom: 3em;
  }
  .ms-container.home-slider {
    padding-bottom: 0 !important;
  }

  .ms-section__block {
    width: auto;
    margin: 0 15px 3em;
  }

  .page-desc {
    width: 100%;
    font-size: 1.2em;
    line-height: 1.5;
    color: #151515;
    letter-spacing: .05em;
  }

  .post-item,
  .post-item:nth-child(2n) {
    padding-right: 15px;
    padding-left: 15px;
  }

  #contact > div {
    margin-bottom: 30px;
  }

  .ms-footer .copyright {
    margin-left: auto;
  }
  .ms-footer .socials {
    display: none;
  }
}

/*==================================================
  12. LfD İÇERİK SAYFALARI ORTAK TASARIM
  (video-page, animasyon-page, etkilesimli-page,
   fotovideo-page, oyunlastirma-page,
   oryantasyon-page, ekran-page)
==================================================*/

/* 12.1 Body & Typography */

body.video-page,
body.animasyon-page,
body.etkilesimli-page,
body.fotovideo-page,
body.oyunlastirma-page,
body.oryantasyon-page,
body.ekran-page {
  color: #151515;
}

body.video-page p,
body.animasyon-page p,
body.etkilesimli-page p,
body.fotovideo-page p,
body.oyunlastirma-page p,
body.oryantasyon-page p,
body.ekran-page p {
  font-size: 18px;
  line-height: 1.6;
  font-weight: 400;
  color: #111827;
}

body.video-page h2,
body.video-page h3,
body.animasyon-page h2,
body.animasyon-page h3,
body.etkilesimli-page h2,
body.etkilesimli-page h3,
body.fotovideo-page h2,
body.fotovideo-page h3,
body.oyunlastirma-page h2,
body.oyunlastirma-page h3,
body.oryantasyon-page h2,
body.oryantasyon-page h3,
body.ekran-page h2,
body.ekran-page h3 {
  color: #0f172a;
}

/* 12.2 Hero Kartları (video-hero, anim-hero, vs.) */

.video-hero,
.anim-hero,
.etk-hero,
.foto-hero,
.game-hero,
.ory-hero,
.screen-hero {
  margin-bottom: 4em;
}

.video-hero__inner,
.anim-hero__inner,
.etk-hero__inner,
.foto-hero__inner,
.game-hero__inner,
.ory-hero__inner,
.screen-hero__inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: left;
  background: #ffffff;
  border-radius: 18px;
  padding: 2.2rem 2.6rem 2.4rem;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
}

.video-hero__eyebrow,
.anim-hero__eyebrow,
.etk-hero__eyebrow,
.foto-hero__eyebrow,
.game-hero__eyebrow,
.ory-hero__eyebrow,
.screen-hero__eyebrow {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  font-weight: 600;
  color: #1b5731;
  text-align: center;
  margin-bottom: 0.75em;
}

.video-hero__title,
.anim-hero__title,
.etk-hero__title,
.foto-hero__title,
.game-hero__title,
.ory-hero__title,
.screen-hero__title {
  text-align: center;
  margin-bottom: 1.2rem;
}

.video-hero__text p,
.anim-hero__text p,
.etk-hero__text p,
.foto-hero__text p,
.game-hero__text p,
.ory-hero__text p,
.screen-hero__text p {
  margin-bottom: 0.9rem;
}

/* 12.3 Örnek Çalışmalar (samples block) */

.video-samples,
.anim-samples,
.etk-samples,
.foto-samples,
.game-samples,
.screen-samples {
  margin-top: 1rem;
}

.video-samples__header,
.anim-samples__header,
.etk-samples__header,
.foto-samples__header,
.game-samples__header,
.screen-samples__header {
  max-width: 780px;
  margin: 0 auto 2.2em;
  text-align: center;
}

.video-samples__header h3,
.anim-samples__header h3,
.etk-samples__header h3,
.foto-samples__header h3,
.game-samples__header h3,
.screen-samples__header h3 {
  font-size: 26px;
  margin-bottom: 0.5rem;
}

.video-samples__desc,
.anim-samples__desc,
.etk-samples__desc,
.foto-samples__desc,
.game-samples__desc,
.screen-samples__desc {
  font-size: 15px;
  color: #374151;
  margin: 0;
}

/* 12.4 Kart Düzeni – içerik sayfalarındaki album-item’lar */

body.video-page .album-item,
body.animasyon-page .album-item,
body.etkilesimli-page .album-item,
body.fotovideo-page .album-item,
body.oyunlastirma-page .album-item,
body.ekran-page .album-item {
  padding-bottom: 2.2em;
}

body.video-page .album-item a,
body.animasyon-page .album-item a,
body.etkilesimli-page .album-item a,
body.fotovideo-page .album-item a,
body.oyunlastirma-page .album-item a,
body.ekran-page .album-item a {
  padding-top: 0;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(0);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

body.video-page .album-item a:hover,
body.animasyon-page .album-item a:hover,
body.etkilesimli-page .album-item a:hover,
body.fotovideo-page .album-item a:hover,
body.oyunlastirma-page .album-item a:hover,
body.ekran-page .album-item a:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.12);
}

/* Medya alanı */

body.video-page .album-item__img,
body.animasyon-page .album-item__img,
body.etkilesimli-page .album-item__img,
body.fotovideo-page .album-item__img,
body.oyunlastirma-page .album-item__img,
body.ekran-page .album-item__img {
  position: relative;
  width: 100%;
  background-size: cover;
  background-position: center;
  aspect-ratio: 16 / 9;
}

body.video-page .album-item__img iframe,
body.animasyon-page .album-item__img iframe,
body.fotovideo-page .album-item__img iframe,
body.oyunlastirma-page .album-item__img iframe,
body.ekran-page .album-item__img iframe {
  display: block;
  width: 100%;
  height: 100%;
}

/* Başlık kısmını overlay’den çıkarıp kart altına alıyoruz */

body.video-page .album-item__overlay,
body.animasyon-page .album-item__overlay,
body.etkilesimli-page .album-item__overlay,
body.fotovideo-page .album-item__overlay,
body.oyunlastirma-page .album-item__overlay,
body.ekran-page .album-item__overlay {
  position: static;
  width: 100%;
  height: auto;
  padding: 1rem 1.25rem 1.25rem;
  background: #ffffff;
}

body.video-page .album-item__cover,
body.animasyon-page .album-item__cover,
body.etkilesimli-page .album-item__cover,
body.fotovideo-page .album-item__cover,
body.oyunlastirma-page .album-item__cover,
body.ekran-page .album-item__cover {
  display: none;
}

body.video-page .album-item__overlay h5,
body.animasyon-page .album-item__overlay h5,
body.etkilesimli-page .album-item__overlay h5,
body.fotovideo-page .album-item__overlay h5,
body.oyunlastirma-page .album-item__overlay h5,
body.ekran-page .album-item__overlay h5 {
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-weight: 600;
  color: #151515;
  text-align: left;
  transform: none;
  opacity: 1;
}

/* Hover’da scale animasyonunu iptal et (içerik sayfalarında düz kalsın) */
body.video-page .album-item:hover .album-item__img,
body.animasyon-page .album-item:hover .album-item__img,
body.etkilesimli-page .album-item:hover .album-item__img,
body.fotovideo-page .album-item:hover .album-item__img,
body.oyunlastirma-page .album-item:hover .album-item__img,
body.ekran-page .album-item:hover .album-item__img {
  transform: none;
}

/* 12.5 CTA Bloğu */

.video-cta,
.anim-cta,
.etk-cta,
.foto-cta,
.game-cta,
.ory-cta,
.screen-cta {
  text-align: center;
  margin: 1rem auto 5rem;
  max-width: 680px;
}

.video-cta__text,
.anim-cta__text,
.etk-cta__text,
.foto-cta__text,
.game-cta__text,
.ory-cta__text,
.screen-cta__text {
  font-size: 16px;
  color: #111827;
  margin-bottom: 1rem;
}

.video-cta .iletisim-ms-btn,
.anim-cta .iletisim-ms-btn,
.etk-cta .iletisim-ms-btn,
.foto-cta .iletisim-ms-btn,
.game-cta .iletisim-ms-btn,
.ory-cta .iletisim-ms-btn,
.screen-cta .iletisim-ms-btn {
  padding: 10px 22px;
  border-radius: 999px;
  font-size: 14px;
}

/* 12.6 Footer Renk Fix – içerik sayfalarında yazılar beyaz kalsın */

body.video-page footer,
body.video-page .ms-footer,
body.video-page .ms-footer .copyright,
body.video-page .ms-footer .socials a,
body.animasyon-page footer,
body.animasyon-page .ms-footer,
body.animasyon-page .ms-footer .copyright,
body.animasyon-page .ms-footer .socials a,
body.etkilesimli-page footer,
body.etkilesimli-page .ms-footer,
body.etkilesimli-page .ms-footer .copyright,
body.etkilesimli-page .ms-footer .socials a,
body.fotovideo-page footer,
body.fotovideo-page .ms-footer,
body.fotovideo-page .ms-footer .copyright,
body.fotovideo-page .ms-footer .socials a,
body.oyunlastirma-page footer,
body.oyunlastirma-page .ms-footer,
body.oyunlastirma-page .ms-footer .copyright,
body.oyunlastirma-page .ms-footer .socials a,
body.oryantasyon-page footer,
body.oryantasyon-page .ms-footer,
body.oryantasyon-page .ms-footer .copyright,
body.oryantasyon-page .ms-footer .socials a,
body.ekran-page footer,
body.ekran-page .ms-footer,
body.ekran-page .ms-footer .copyright,
body.ekran-page .ms-footer .socials a {
  color: #ffffff;
}

body.video-page .ms-footer a,
body.animasyon-page .ms-footer a,
body.etkilesimli-page .ms-footer a,
body.fotovideo-page .ms-footer a,
body.oyunlastirma-page .ms-footer a,
body.oryantasyon-page .ms-footer a,
body.ekran-page .ms-footer a {
  color: #ffffff;
}

/* 12.7 Responsive – içerik sayfaları */

@media (max-width: 805px) {
  body.video-page .ms-container,
  body.animasyon-page .ms-container,
  body.etkilesimli-page .ms-container,
  body.fotovideo-page .ms-container,
  body.oyunlastirma-page .ms-container,
  body.oryantasyon-page .ms-container,
  body.ekran-page .ms-container {
    padding-top: 7em;
  }

  .video-hero__inner,
  .anim-hero__inner,
  .etk-hero__inner,
  .foto-hero__inner,
  .game-hero__inner,
  .ory-hero__inner,
  .screen-hero__inner {
    padding: 1.6rem 1.4rem 1.8rem;
  }

  .video-samples__header,
  .anim-samples__header,
  .etk-samples__header,
  .foto-samples__header,
  .game-samples__header,
  .screen-samples__header {
    padding: 0 10px;
  }

  body.video-page .album-item,
  body.animasyon-page .album-item,
  body.etkilesimli-page .album-item,
  body.fotovideo-page .album-item,
  body.oyunlastirma-page .album-item,
  body.ekran-page .album-item {
    padding-bottom: 1.5em;
  }
}

/* Paragraf içinde kelime gibi duran rozet/logo */
.video-page img.inline-badge{
  display: inline-block;
  width: auto !important;       /* img{width:100%} kuralını ezer */
  max-width: none !important;
  height: 1.15em !important;    /* yazı boyutuna göre */
  vertical-align: -0.18em;
  margin: 0 0.35em;
}

/* -------------------------------------------------------
   Home Slider - Ortalı CTA + Başlık Tıklanabilir
   (Sadece ana sayfa slider'ı etkiler)
------------------------------------------------------- */

/* Overlay tıklamayı engellemesin */
.home-slider .overlay{
  pointer-events: none;
}

/* Başlığı link yapınca görünüm bozulmasın */
.home-slider .slide-title-link{
  display: inline-block;
  color: inherit;
  text-decoration: none;
}
.home-slider .slide-title-link h1{
  cursor: pointer;
}
.home-slider .slide-title-link:hover{
  opacity: .92;
}

/* CTA katmanı: ileri/geri ile aynı Y hizası (desktop: 50%) */
.home-slider .swiper-slide .slide-inner{
  position: absolute; /* zaten var, garanti */
}

.home-slider .swiper-slide .slide-cta{
  position: absolute;
  left: 50%;
  top: 50%;                 /* prev/next'in default hizasıyla aynı */
  transform: translate(-50%, -50%);
  z-index: 4;
}

/* Buton stili: cam efekt + mevcut ms-btn--slider çizgisini korur */
.home-slider .ms-btn--slider.ms-btn--slider-center{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;              /* ms-btn--slider'daki 11em sabitliğini ez */
  padding: 14px 22px;

  border-radius: 999px;
  letter-spacing: .5px;
  text-transform: uppercase;
  font-weight: 700;

  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
}

.home-slider .ms-btn--slider.ms-btn--slider-center:hover{
  filter: brightness(1.08);
}

/* Mobilde senin 805px içinde nav butonlarını 50vh yaptığın için CTA da aynı hizaya gelsin */
@media (max-width: 805px){
  .home-slider .swiper-slide .slide-cta{
    top: 50vh;              /* prev/next ile birebir aynı */
  }
}



