html {
  font-size: 1rem;
  font-family: "Mulish", sans-serif;
  font-family: "PT Sans", sans-serif;
  color: #F0F5F9;
  overflow-x: hidden;
}

body {
  padding: 0;
  margin: 0;
  background: radial-gradient(1200px circle at 12% 20%, rgba(251, 218, 17, 0.14), transparent 40%), radial-gradient(900px circle at 88% 10%, rgba(82, 97, 107, 0.22), transparent 35%), linear-gradient(140deg, rgba(30, 32, 34, 0.95) 0%, rgba(30, 32, 34, 0.9) 60%, rgba(82, 97, 107, 0.9) 100%);
}

ul, ol {
  list-style: none;
}

a {
  text-decoration: none;
  color: #F0F5F9;
}

*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  border: none;
  outline: none;
  scroll-behavior: smooth;
}

.is-scrolled {
  background-color: rgba(30, 32, 34, 0.95);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

/* Section titles: subtle underline for elegance */
section h2 {
  position: relative;
  display: inline-block;
  padding-bottom: 0.5rem;
}

section h2::after {
  content: "";
  display: block;
  width: 100px;
  height: 3px;
  margin: 0.35rem auto 0;
  background: #C9D6DF;
  border-radius: 999px;
}

header {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem 4rem;
  background-color: transparent;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  gap: 2rem;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
header a {
  position: relative;
  padding-bottom: 0.35rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}
header a.active {
  color: #FBDA11;
}
header a.active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -0.35rem;
  transform: translateX(-50%);
  width: 70%;
  height: 3px;
  background: #FBDA11;
  border-radius: 999px;
}
header a img {
  width: 195px;
  height: 100px;
}
header a:hover {
  color: #FBDA11;
}

.home {
  width: 100%;
  height: 100vh;
  position: relative;
  background: #1E2022;
  overflow: hidden;
}
.home::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/home.webp") no-repeat center center;
  background-size: cover;
  opacity: 0.5;
  z-index: 0;
}
.home .home-content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
}
.home .home-content h1 {
  font-size: 4rem;
  font-weight: 700;
  color: #FBDA11;
}
.home .home-content p {
  font-size: 1.5rem;
  font-weight: 400;
  color: #F0F5F9;
  margin-bottom: 2rem;
}
.home .home-content a {
  background: linear-gradient(120deg, #FBDA11 0%, #ffe25d 100%);
  color: #1E2022;
  padding: 0.95rem 1.9rem;
  border-radius: 999px;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid transparent;
  box-shadow: 0 12px 28px rgba(251, 218, 17, 0.25);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}
.home .home-content a:hover {
  background: transparent;
  color: #FBDA11;
  border: 1px solid #FBDA11;
  box-shadow: 0 12px 26px rgba(251, 218, 17, 0.35);
  transform: translateY(-1px);
}
.home .home-content a:active {
  transform: translateY(0);
  box-shadow: 0 8px 20px rgba(251, 218, 17, 0.28);
}

.portfolio {
  width: 1280px;
  height: 100vh;
  background-color: transparent;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 3rem auto;
  padding: 4rem 0;
}
.portfolio h2 {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: #FBDA11;
  margin-bottom: 2rem;
}
.portfolio .portfolio-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.portfolio .portfolio-content .portfolio-item {
  width: 500px;
  height: 800px;
  border-radius: 0.5rem;
  overflow: hidden;
  position: relative;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
  background: linear-gradient(135deg, rgba(30, 32, 34, 0.95), rgba(82, 97, 107, 0.9));
  border: 1px solid rgba(201, 214, 223, 0.22);
  padding: 1.25rem 1.25rem 1.4rem;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.portfolio .portfolio-content .portfolio-item:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.5);
}
.portfolio .portfolio-content .portfolio-item img {
  width: 400px;
  height: 600px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.5rem;
}
.portfolio .portfolio-content .portfolio-item h3 {
  margin: 1rem 0;
  font-size: 1.5rem;
  font-weight: 700;
  color: #FBDA11;
}
.portfolio .portfolio-content .portfolio-item p {
  font-size: 1.2rem;
  font-weight: 400;
  color: #F0F5F9;
  margin-bottom: 1rem;
  text-align: center;
}
.portfolio .portfolio-content .portfolio-item a {
  background-color: #FBDA11;
  color: #1E2022;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-weight: 700;
  border: 1px solid transparent;
  transition: all 0.2s ease;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0.35rem;
}
.portfolio .portfolio-content .portfolio-item a:hover {
  background-color: transparent;
  color: #FBDA11;
  border-color: #FBDA11;
}

/* Lightbox overlay for portfolio */
.lightbox {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1500;
}

.lightbox[hidden] {
  display: none;
}

.lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55); /* solid overlay, no blur for better perf */
}

.lightbox__dialog {
  position: relative;
  z-index: 1;
  max-width: min(92vw, 1280px);
  max-height: 92vh;
  padding: 1rem 1rem 1.25rem;
  background: rgba(30, 32, 34, 0.94);
  border: 1px solid rgba(240, 245, 249, 0.3);
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 0.75rem;
}

.lightbox__main {
  position: relative;
  width: min(88vw, 1100px);
  height: min(60vh, 640px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(82, 97, 107, 0.28);
  border: 1px solid rgba(240, 245, 249, 0.25);
  border-radius: 10px;
  overflow: hidden;
}

.lightbox__image {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 8px;
}

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(240, 245, 249, 0.3);
  color: #F0F5F9;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.5rem;
  display: grid;
  place-items: center;
  transition: background 0.2s ease, transform 0.2s ease;
}

.lightbox__nav:hover {
  background: rgba(0, 0, 0, 0.55);
  transform: translateY(-50%) scale(1.05);
}

.lightbox__nav--prev {
  left: 0.75rem;
}

.lightbox__nav--next {
  right: 0.75rem;
}

.lightbox__close {
  position: absolute;
  top: 0.25rem;
  right: 0.35rem;
  background: none;
  color: #F0F5F9;
  border: none;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  padding: 0.25rem 0.5rem;
  transition: color 0.2s ease, transform 0.2s ease;
}

.lightbox__close:hover {
  color: #FBDA11;
  transform: scale(1.05);
}

.lightbox__thumbs {
  width: 100%;
  max-height: 22vh;
  overflow-y: auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
  gap: 0.5rem;
  padding-top: 0.25rem;
}

.lightbox__thumb {
  border: 1px solid rgba(240, 245, 249, 0.35);
  background: rgba(30, 32, 34, 0.75);
  border-radius: 6px;
  padding: 0.25rem;
  cursor: pointer;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.lightbox__thumb img {
  width: 100%;
  height: 80px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  border-radius: 4px;
}

.lightbox__thumb:hover {
  border-color: #FBDA11;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
}

.lightbox__thumb.is-active {
  border-color: #FBDA11;
  box-shadow: 0 0 0 2px rgba(251, 218, 17, 0.6);
}

.video {
  width: 100%;
  height: 100vh;
  background-color: transparent;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 2rem auto;
}
.video h2 {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: #FBDA11;
  margin-bottom: 2rem;
}
.video .video-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 5rem 0;
}
.video .video-content .video-item {
  width: 500px;
  height: 400px;
  border-radius: 0.5rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, rgba(30, 32, 34, 0.95), rgba(82, 97, 107, 0.9));
  border: 1px solid rgba(201, 214, 223, 0.22);
  padding: 1rem;
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.35);
}
.video .video-content .video-item h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #F0F5F9;
  margin-bottom: 2rem;
}
.video .video-content .video-item iframe {
  width: 100%;
  height: 100%;
  border-radius: 0.5rem;
}

.albumler {
  width: 100%;
  max-width: 1280px;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 2rem auto;
  padding: 4rem 0;
}
.albumler h2 {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: #FBDA11;
  margin-bottom: 2rem;
}
.albumler .albumler-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  width: 100%;
}
.albumler .albumler-content .album-item {
  position: relative;
  width: 100%;
  height: 320px;
  border-radius: 0.5rem;
  overflow: hidden;
  isolation: isolate;
}
.albumler .albumler-content .album-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.5rem;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.albumler .albumler-content .album-item .album-info {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 1rem;
  text-align: center;
  color: #F0F5F9;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.65));
  opacity: 0;
  transition: opacity 0.25s ease;
}
.albumler .albumler-content .album-item h3 {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.albumler .albumler-content .album-item p {
  font-size: 1.05rem;
  font-weight: 500;
}
.albumler .albumler-content .album-item:hover img {
  opacity: 0.3;
  transform: scale(1.03);
}
.albumler .albumler-content .album-item:hover .album-info {
  opacity: 1;
}
@media (max-width: 900px) {
  .albumler .albumler-content {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .albumler .albumler-content {
    grid-template-columns: 1fr;
  }
}

.hakkimizda {
  width: 100%;
  max-width: 1280px;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 2rem auto;
  padding: 4rem 0;
}
.hakkimizda h2 {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: #FBDA11;
  margin-bottom: 2rem;
}
.hakkimizda .hakkimizda-content {
  display: flex;
  flex-direction: column;
}
.hakkimizda .hakkimizda-content h1 {
  font-size: 3rem;
  font-weight: 700;
  color: #F0F5F9;
  margin-bottom: 2rem;
}
.hakkimizda .hakkimizda-content p {
  font-size: 1.5rem;
  font-weight: 400;
  color: #F0F5F9;
  margin-bottom: 2rem;
}

.iletisim {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  justify-content: center;
  padding: 6rem 1.25rem 7rem;
  position: relative;
  background: transparent;
  overflow: hidden;
}
.iletisim h2 {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: #FBDA11;
  margin: 0;
}
.iletisim form {
  width: min(1040px, 100%);
  background: linear-gradient(135deg, rgba(30, 32, 34, 0.94), rgba(82, 97, 107, 0.9));
  border: 1px solid rgba(201, 214, 223, 0.22);
  border-radius: 18px;
  padding: clamp(1.9rem, 3vw, 2.9rem);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(7px);
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  position: relative;
  isolation: isolate;
}
.iletisim form::after {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 14px;
  border: 1px dashed rgba(201, 214, 223, 0.18);
  opacity: 0.65;
  pointer-events: none;
  z-index: -1;
}
.iletisim label {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #C9D6DF;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.iletisim input,
.iletisim textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border-radius: 12px;
  background: rgba(240, 245, 249, 0.04);
  border: 1px solid rgba(201, 214, 223, 0.25);
  color: #F0F5F9;
  font-size: 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
}
.iletisim input:focus,
.iletisim textarea:focus {
  border-color: rgba(251, 218, 17, 0.85);
  box-shadow: 0 8px 24px rgba(251, 218, 17, 0.2);
  transform: translateY(-1px);
}
.iletisim textarea {
  min-height: 170px;
  resize: vertical;
}
.iletisim button {
  justify-self: flex-start;
  margin-top: 0.35rem;
  padding: 0.95rem 1.9rem;
  border-radius: 999px;
  background: linear-gradient(120deg, #FBDA11 0%, #ffe25d 100%);
  color: #1E2022;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid transparent;
  box-shadow: 0 12px 28px rgba(251, 218, 17, 0.25);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}
.iletisim button:hover {
  background: transparent;
  color: #FBDA11;
  border-color: #FBDA11;
  box-shadow: 0 12px 26px rgba(251, 218, 17, 0.35);
  transform: translateY(-1px);
}
.iletisim button:active {
  transform: translateY(0);
  box-shadow: 0 8px 20px rgba(251, 218, 17, 0.28);
}

.quote-modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1800;
}
.quote-modal[hidden] {
  display: none;
}
.quote-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
}
.quote-modal__dialog {
  position: relative;
  width: min(640px, 92vw);
  background: linear-gradient(135deg, rgba(30, 32, 34, 0.95), rgba(82, 97, 107, 0.9));
  border: 1px solid rgba(201, 214, 223, 0.25);
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
  padding: clamp(1.6rem, 3vw, 2.4rem);
  color: #F0F5F9;
  display: grid;
  gap: 1rem;
  z-index: 1;
}
.quote-modal__close {
  position: absolute;
  top: 0.75rem;
  right: 0.9rem;
  background: none;
  color: #F0F5F9;
  font-size: 1.6rem;
  border: none;
  cursor: pointer;
  transition: color 0.2s ease, transform 0.2s ease;
}
.quote-modal__close:hover {
  color: #FBDA11;
  transform: scale(1.08);
}
.quote-modal h3 {
  margin: 0 0 0.35rem;
  font-size: 1.6rem;
  color: #FBDA11;
  letter-spacing: 0.01em;
}
.quote-modal__form {
  display: grid;
  gap: 0.85rem;
}
.quote-modal__form label {
  display: grid;
  gap: 0.35rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: #C9D6DF;
}
.quote-modal__form input,
.quote-modal__form textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border-radius: 12px;
  background: rgba(240, 245, 249, 0.05);
  border: 1px solid rgba(201, 214, 223, 0.3);
  color: #F0F5F9;
  font-size: 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
}
.quote-modal__form input:focus,
.quote-modal__form textarea:focus {
  border-color: rgba(251, 218, 17, 0.85);
  box-shadow: 0 8px 24px rgba(251, 218, 17, 0.2);
  transform: translateY(-1px);
}
.quote-modal__form textarea {
  resize: vertical;
  min-height: 120px;
}
.quote-modal__fieldset {
  border: 1px solid rgba(201, 214, 223, 0.25);
  border-radius: 12px;
  padding: 0.9rem 1rem 0.75rem;
  background: rgba(240, 245, 249, 0.02);
}
.quote-modal__fieldset legend {
  padding: 0 0.4rem;
  color: #F0F5F9;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.quote-modal__options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
  margin-top: 0.35rem;
}
.quote-modal__options label {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #F0F5F9;
  font-weight: 600;
}
.quote-modal__options input {
  width: auto;
  accent-color: #FBDA11;
}
.quote-modal__options--grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.65rem 0.75rem;
}
.quote-modal__submit {
  justify-self: flex-start;
  padding: 0.95rem 1.9rem;
  border-radius: 999px;
  background: linear-gradient(120deg, #FBDA11 0%, #ffe25d 100%);
  color: #1E2022;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid transparent;
  box-shadow: 0 12px 28px rgba(251, 218, 17, 0.25);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}
.quote-modal__submit:hover {
  background: transparent;
  color: #FBDA11;
  border-color: #FBDA11;
  box-shadow: 0 12px 26px rgba(251, 218, 17, 0.35);
  transform: translateY(-1px);
}
.quote-modal__submit:active {
  transform: translateY(0);
  box-shadow: 0 8px 20px rgba(251, 218, 17, 0.28);
}

.back-to-top {
  position: fixed;
  right: 1.25rem;
  bottom: 1.5rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(120deg, #FBDA11 0%, #ffe25d 100%);
  color: #1E2022;
  border: 1px solid transparent;
  box-shadow: 0 12px 28px rgba(251, 218, 17, 0.25);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 1.1rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
  z-index: 1600;
}
.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  background: transparent;
  color: #FBDA11;
  border-color: #FBDA11;
  box-shadow: 0 12px 26px rgba(251, 218, 17, 0.35);
}
.back-to-top:active {
  transform: translateY(0);
  box-shadow: 0 8px 20px rgba(251, 218, 17, 0.28);
}

.footer {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 10rem;
  background-color: #1E2022;
}
.footer p {
  display: flex;
}/*# sourceMappingURL=main.css.map */
