/* =============================================
   Güler Mefruşat – Logo-Matched CSS
   Colors: #D6177A (pink), #111111 (black), #fff
   ============================================= */

:root {
  --pink:        #D6177A;
  --pink-dark:   #A80F5D;
  --pink-light:  #fce8f3;
  --black:       #111111;
  --dark:        #1a1a1a;
  --grey:        #555555;
  --light-grey:  #888888;
  --bg:          #ffffff;
  --bg-alt:      #f7f6f4;
  --border:      rgba(0,0,0,0.08);

  --font-sans: 'Plus Jakarta Sans', sans-serif;
  --font-serif: 'Playfair Display', serif;

  --pad: clamp(1.25rem, 5vw, 4rem);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }

html { font-size:16px; scroll-behavior:smooth; }

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--black);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display:block; max-width:100%; }
a { color:inherit; text-decoration:none; }
ul { list-style:none; }

/* ---- Utility ---- */
.section-label {
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .25em;
  font-weight: 600;
  color: var(--pink);
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(1.9rem, 4.5vw, 3.5rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -.02em;
  margin-bottom: 2rem;
}

.section-title em {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--pink);
  font-weight: 400;
}

.btn {
  display: inline-block;
  padding: .85rem 2.25rem;
  font-size: .85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  border-radius: 2px;
  transition: background .3s, color .3s, transform .25s;
}

.btn-primary {
  background: var(--pink);
  color: #fff;
}

.btn-primary:hover {
  background: var(--pink-dark);
  transform: translateY(-2px);
}

/* ---- Header / Nav ---- */
.header {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 200;
  background: rgba(255,255,255,1);
  box-shadow: 0 2px 20px rgba(0,0,0,.06);
  padding: 0;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.4rem var(--pad);
  transition: padding .3s;
}

/* scrolled state kept for JS compatibility but visually same */
.header.scrolled {
  background: rgba(255,255,255,1);
  box-shadow: 0 2px 30px rgba(0,0,0,.06);
}

.logo-link { display:flex; align-items:center; }
.logo-img { height: 36px; width:auto; object-fit:contain; }

/* Nav Drawer (hidden by default) */
.nav-drawer {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: #fff;
  border-top: 1px solid var(--border);
  max-height: 0;
  overflow: hidden;
  transition: max-height .45s var(--ease);
}

.nav-drawer.open { max-height: 400px; }

.nav-item {
  padding: 1rem var(--pad);
  font-size: 1rem;
  font-weight: 500;
  border-bottom: 1px solid var(--border);
  transition: color .2s;
}

.nav-item:hover { color: var(--pink); }

/* Hamburger */
.nav-toggle {
  background: none; border: none; cursor: pointer;
  display: flex; flex-direction: column;
  gap: 5px; padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 26px; height: 2px;
  background: var(--black);
  transition: transform .35s var(--ease), opacity .3s;
  transform-origin: center;
}

.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding: calc(5rem + var(--pad)) var(--pad) 4rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-photo {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,.15) 0%,
    rgba(0,0,0,.6) 70%,
    rgba(0,0,0,.85) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  color: #fff;
  max-width: 700px;
}

.hero-eyebrow {
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: var(--pink);
  margin-bottom: 1.25rem;
  font-weight: 600;
}

.hero-headline {
  font-size: clamp(2.4rem, 6vw, 5.5rem);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -.035em;
  margin-bottom: 2.5rem;
}

.hero-headline em {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--pink);
  font-weight: 400;
}

/* Floating phone pill */
.hero-phone-pill {
  position: absolute;
  bottom: 4rem; right: var(--pad);
  z-index: 10;
  display: flex; align-items: center; gap: .6rem;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.25);
  color: #fff;
  padding: .7rem 1.4rem;
  border-radius: 100px;
  font-size: .9rem;
  font-weight: 600;
  transition: background .3s;
}

.hero-phone-pill:hover { background: var(--pink); border-color: var(--pink); }

.hero-phone-pill svg { width: 18px; height: 18px; }

/* ---- Contact Section ---- */
.contact-section {
  padding: 6rem var(--pad);
  background: var(--bg);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem 1.75rem;
  border: 1.5px solid var(--border);
  border-radius: 4px;
  transition: border-color .3s, box-shadow .3s, transform .3s;
  background: #fff;
  cursor: pointer;
}

.contact-card:hover {
  border-color: var(--pink);
  box-shadow: 0 8px 40px rgba(214,23,122,.1);
  transform: translateY(-4px);
}

.card-wide { grid-column: 1 / -1; }

.contact-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--pink-light);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 22px; height: 22px;
  stroke: var(--pink);
}

.contact-meta {
  display: flex; flex-direction: column; gap: .3rem;
  flex: 1; min-width: 0;
}

.contact-label {
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .15em;
  font-weight: 600;
  color: var(--light-grey);
}

.contact-value {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--black);
  line-height: 1.5;
}

.contact-arrow {
  font-size: .95rem;
  font-weight: 600;
  color: var(--pink);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity .3s, transform .3s;
}

.contact-card:hover .contact-arrow { opacity:1; transform:translateX(0); }

/* ---- Social Section ---- */
.social-section {
  padding: 6rem var(--pad);
  background: var(--bg-alt);
}

.social-sub {
  color: var(--grey);
  font-size: 1.1rem;
  font-weight: 300;
  max-width: 540px;
  margin-bottom: 3rem;
  line-height: 1.65;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.social-card {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  display: block;
  min-height: 260px;
  cursor: pointer;
  transition: transform .4s var(--ease);
}

.social-card:hover { transform: translateY(-6px); }

.social-card-bg {
  position: absolute;
  inset: 0;
  opacity: 1;
  transition: opacity .4s;
}

.social-instagram .social-card-bg {
  background: linear-gradient(135deg, #f9ce34, #ee2a7b, #6228d7);
}
.social-facebook .social-card-bg { background: #1877F2; }
.social-whatsapp .social-card-bg { background: #25D366; }

.social-card-inner {
  position: relative; z-index: 1;
  padding: 2.5rem 2rem;
  color: #fff;
  display: flex; flex-direction: column; gap: .6rem;
  height: 100%;
}

.social-icon { width: 36px; height: 36px; margin-bottom: .5rem; }

.social-name { font-size: 1.4rem; font-weight: 700; }

.social-handle { font-size: .95rem; opacity: .8; }

.social-action {
  margin-top: auto;
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .35s, transform .35s;
}

.social-card:hover .social-action { opacity:1; transform:translateY(0); }

/* ---- About Strip ---- */
.about-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  padding: 6rem var(--pad);
  align-items: center;
  background: #fff;
}

.about-text-col p {
  color: var(--grey);
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.stat-row { display: flex; gap: 2.5rem; flex-wrap: wrap; }

.stat { display: flex; flex-direction: column; gap: .3rem; }

.stat-n {
  font-size: 2rem;
  font-weight: 200;
  color: var(--pink);
  line-height: 1;
}

.stat-l {
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--light-grey);
}

.about-image-col {
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4/5;
}

.about-image-col img { width:100%; height:100%; object-fit:cover; }

/* ---- Gallery ---- */
.gallery-section {
  padding: 6rem var(--pad);
  background: var(--bg-alt);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 1.5rem;
}

@media (min-width: 960px) {
  .gallery-grid { grid-template-columns: repeat(4, 1fr); }
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 3/4;
  cursor: pointer;
}

.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .9s var(--ease), filter .5s;
  filter: grayscale(30%);
}

.gallery-item:hover img { transform: scale(1.07); filter: grayscale(0%); }

.gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.25rem 1rem .9rem;
  background: linear-gradient(transparent, rgba(0,0,0,.75));
  color: #fff;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.15rem;
}

/* ---- Service Areas Section ---- */
.services-section {
  background: var(--dark);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.services-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: var(--pink);
}

.services-inner {
  max-width: 1800px;
  margin: 0 auto;
  padding: 0 var(--pad);
}

.services-header {
  margin-bottom: 4rem;
  max-width: 600px;
}

.services-header .section-label { color: var(--pink); }

.services-header .section-title { color: #fff; }

.services-header .section-title em { color: var(--pink); }

.services-sub {
  color: rgba(255,255,255,.5);
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.65;
}

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

@media (max-width: 900px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .services-grid { grid-template-columns: 1fr; }
}

.service-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 6px;
  padding: 2rem 1.75rem;
  transition: background .3s, border-color .3s, transform .35s;
}

.service-card:hover {
  background: rgba(214,23,122,.08);
  border-color: rgba(214,23,122,.3);
  transform: translateY(-4px);
}

.service-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(214,23,122,.15);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}

.service-icon svg {
  width: 22px; height: 22px;
  stroke: var(--pink);
}

.service-card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: .6rem;
}

.service-card p {
  font-size: .9rem;
  color: rgba(255,255,255,.5);
  line-height: 1.65;
  font-weight: 300;
}

/* ---- Footer ---- */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,.85);
  padding: 5rem var(--pad) 2rem;
  border-top: 4px solid var(--pink);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 3.5rem;
}

.footer-logo-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border-radius: 100px;
  padding: .75rem 1.75rem;
  box-shadow: 0 0 0 1px rgba(255,255,255,.15);
}

.footer-logo { height: 36px; width: auto; object-fit: contain; }

.footer-cta { text-align: right; }

.footer-cta p {
  font-size: .95rem;
  color: rgba(255,255,255,.5);
  margin-bottom: 1rem;
}

.footer-divider {
  height: 1px;
  background: rgba(255,255,255,.1);
  margin-bottom: 3rem;
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-col h3 {
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: var(--pink);
  margin-bottom: 1.25rem;
  font-weight: 600;
}

.footer-col p {
  font-size: .95rem;
  color: rgba(255,255,255,.55);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.footer-link {
  display: block;
  font-size: .95rem;
  color: rgba(255,255,255,.65);
  margin-bottom: .6rem;
  transition: color .25s;
}

.footer-link:hover { color: var(--pink); }

.social-fl {
  display: flex;
  align-items: center;
  gap: .5rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 1.5rem;
  font-size: .78rem;
  color: rgba(255,255,255,.3);
  text-align: center;
}

/* ---- Reveal Animations ---- */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .8s var(--ease), transform .9s var(--ease);
}

.reveal.delay { transition-delay: .18s; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ---- Responsive ---- */
@media (max-width: 800px) {
  .about-strip { grid-template-columns: 1fr; }
  .about-image-col { order: -1; aspect-ratio: 16/9; }
  .footer-top { flex-direction: column; align-items: flex-start; }
  .footer-cta { text-align: left; }
  .card-wide { grid-column: auto; }
}

@media (max-width: 480px) {
  .hero-phone-pill { font-size: .8rem; padding: .6rem 1.1rem; bottom: 2rem; }
  .stat-row { gap: 1.5rem; }
}
