﻿/*
Theme Name: Soya Terzi
Theme URI: https://example.com/
Author: Codex
Description: Tailor-focused WordPress theme for Soya Terzi.
Version: 1.2.2
Text Domain: soya-terzi
*/

:root {
  --ink: #2a2a33;
  --ink-deep: #16161d;
  --mint: #e1efe8;
  --mint-strong: #cfe3d9;
  --cream: #f5f0e8;
  --sand: #ece3d7;
  --accent: #a48449;
  --accent-2: #8f7140;
  --shadow: rgba(22, 22, 29, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Source Sans 3", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink-deep);
  background:
    linear-gradient(180deg, #ffffff 0%, var(--cream) 55%, var(--sand) 100%),
    repeating-linear-gradient(45deg, rgba(22, 22, 29, 0.02) 0 1px, transparent 1px 3px);
  line-height: 1.7;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.site {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(247, 243, 235, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(164, 132, 73, 0.35);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.6rem;
  letter-spacing: 0.6px;
}

.brand img {
  width: 68px;
  height: 68px;
  object-fit: contain;
}

.site-nav ul {
  list-style: none;
  display: flex;
  gap: 22px;
  margin: 0;
  padding: 0;
  font-weight: 500;
  font-size: 0.95rem;
}

.site-nav a {
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus {
  border-color: var(--accent);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: auto;
}

.lang-switcher ul {
  list-style: none;
  display: flex;
  gap: 10px;
  margin: 0;
  padding: 0;
  font-weight: 600;
  font-size: 0.9rem;
}

.lang-switcher li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.lang-switcher-inline {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
}

.lang-switcher-inline a {
  color: var(--ink-deep);
}

.lang-switcher-inline a.current-lang {
  color: var(--accent-2);
}

.lang-sep {
  color: rgba(22, 22, 29, 0.4);
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 22px;
  border-radius: 999px;
  background: transparent;
  color: var(--ink-deep);
  font-weight: 600;
  border: 1px solid rgba(22, 22, 29, 0.2);
  letter-spacing: 0.4px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.cta-button:hover,
.cta-button:focus {
  transform: translateY(-2px);
  border-color: var(--accent);
  box-shadow: 0 10px 20px rgba(22, 22, 29, 0.12);
}

.cta-button.cta-inverse {
  background: #f7f3eb;
  color: var(--ink-deep);
  border-color: transparent;
}

.cta-button.cta-inverse:hover,
.cta-button.cta-inverse:focus {
  border-color: transparent;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.cta-button.cta-primary {
  background: #1b1b24;
  color: #fff;
  border-color: transparent;
  box-shadow: 0 12px 22px rgba(27, 27, 36, 0.18);
}

.cta-button.cta-primary:hover,
.cta-button.cta-primary:focus {
  border-color: transparent;
  box-shadow: 0 16px 26px rgba(27, 27, 36, 0.22);
}


.cta-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero {
  position: relative;
  min-height: 80vh;
  padding: 0;
  overflow: hidden;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 42px;
  align-items: center;
  padding: 90px 28px 70px;
}

.hero-text h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.4rem, 3.2vw, 3.8rem);
  margin: 0 0 18px;
  line-height: 1.05;
}

.hero-text p {
  font-size: 1.05rem;
  margin: 0 0 24px;
}

.hero-card {
  background: #fff;
  padding: 26px;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(22, 22, 29, 0.12);
  border: 1px solid rgba(22, 22, 29, 0.08);
  position: relative;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  height: 100%;
}

.hero-video video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.hero-overlay {
  position: relative;
  z-index: 1;
  min-height: inherit;
  background: linear-gradient(90deg, rgba(245, 240, 232, 0.35) 0%, rgba(245, 240, 232, 0.2) 45%, rgba(245, 240, 232, 0.1) 100%);
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: -35% -35% auto auto;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(164, 132, 73, 0.12), transparent 70%);
  opacity: 0.9;
}

.hero-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hero-card li {
  padding: 12px 0;
  border-bottom: 1px dashed rgba(31, 32, 77, 0.15);
  font-weight: 600;
}

.hero-card li:last-child {
  border-bottom: none;
}

.section {
  padding: 70px 28px;
}

.services .section-inner {
  max-width: 1100px;
}

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

.service-card {
  padding: 24px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(22, 22, 29, 0.08);
  box-shadow: 0 18px 40px rgba(22, 22, 29, 0.1);
}

.service-card h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.4rem;
  margin: 0 0 12px;
}

.signature {
  padding-top: 0;
}

.signature-strip {
  padding: 22px 28px;
  border-radius: 999px;
  border: 1px solid rgba(164, 132, 73, 0.4);
  background: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.signature-strip h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.4rem;
}

.signature-items {
  display: flex;
  gap: 18px;
  font-weight: 600;
  color: var(--accent-2);
  flex-wrap: wrap;
}
.section.alt {
  background: linear-gradient(130deg, #ffffff 0%, var(--mint) 100%);
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.9rem, 2.6vw, 2.8rem);
  margin-bottom: 18px;
}

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

.card {
  padding: 22px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 16px 36px rgba(22, 22, 29, 0.1);
  border: 1px solid rgba(22, 22, 29, 0.08);
}

.feature-line {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
}

.feature-line span {
  font-weight: 600;
  color: var(--accent);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
}

.gallery-grid img {
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(22, 22, 29, 0.12);
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.gallery-actions {
  margin: 12px 0 24px;
}

.callout {
  background: linear-gradient(120deg, #1a1a22, #3a2a1a);
  color: #fff;
  padding: 42px;
  border-radius: 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
}

.site-footer {
  margin-top: auto;
  padding: 32px 28px;
  background: #111334;
  color: #e6e6f5;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.95rem;
}

.entry-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 28px 70px;
}

.entry-content h1,
.entry-content h2,
.entry-content h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
}

.fade-in {
  animation: fadeUp 0.8s ease forwards;
}

.fade-delay-1 {
  animation-delay: 0.2s;
}

.fade-delay-2 {
  animation-delay: 0.4s;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 800px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 18px;
    gap: 14px;
  }

  .site-nav ul {
    flex-wrap: wrap;
    gap: 14px;
  }

  .brand {
    font-size: 1.3rem;
  }

  .brand img {
    width: 52px;
    height: 52px;
  }

  .header-actions {
    width: 100%;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 12px;
  }

  .cta-button {
    padding: 9px 18px;
    font-size: 0.9rem;
  }

  .hero-inner {
    padding-top: 70px;
  }

  .callout {
    text-align: left;
  }
}

@media (max-width: 520px) {
  .brand {
    font-size: 1.15rem;
  }

  .hero-card {
    padding: 22px;
  }

  .header-actions {
    flex-direction: column;
    align-items: flex-start;
  }
}
