/* =========================================
   PREMIUM CORPORATE HEADER
   ========================================= */

.aesop-glass-header {
  position: fixed;
  top: 0; left: 0; width: 100%;
  z-index: 1000;
  transition: all 0.4s ease;
  font-family: var(--font-primary);
  background: #ffffff; /* Pure white */
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 5vw;
  color: #111111 !important; /* Darker text */
  transition: padding 0.4s ease;
}

/* Scrolled state */
.aesop-glass-header.scrolled {
  box-shadow: 0 10px 30px rgba(15, 56, 42, 0.08); /* Premium subtle shadow on scroll */
  border-bottom: 1px solid rgba(70, 196, 221, 0.4); /* Turquoise highlight line */
}

.aesop-glass-header.scrolled .header-inner {
  padding: 15px 5vw;
}

/* Dark Theme Overrides (Removed to ensure 100% consistency across all pages) */
body.dark-theme .header-inner {
  color: var(--color-primary-dark) !important;
}

/* Logo */
.logo-area {
  text-decoration: none;
  color: currentColor;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Nav */
.main-nav ul {
  display: flex;
  gap: 3.5rem;
  list-style: none;
  margin: 0; padding: 0;
}

.main-nav a {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: currentColor;
  text-decoration: none;
  opacity: 0.6;
  transition: opacity 0.4s ease;
  position: relative;
}

.main-nav a:hover, .main-nav a.active {
  opacity: 1;
}

/* Removed the dot underline for a cleaner, marginal look */

/* CTA */
.btn-aesop-cta {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 12px 28px;
  border: 1px solid currentColor;
  color: currentColor;
  text-decoration: none;
  transition: all 0.4s ease;
}

.btn-aesop-cta:hover {
  background: var(--color-primary-dark);
  color: var(--color-bg-light) !important;
  border-color: var(--color-primary-dark);
}

@media (max-width: 992px) {
  .main-nav {
    display: none; /* Add mobile menu logic here if needed */
  }
}





/* =========================================
   FOOTER
   ========================================= */
.site-footer {
  background: var(--color-primary-dark);
  color: rgba(255,255,255,0.7);
  padding-top: 70px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* Kolon 1: Logo + Açıklama */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 700;
  color: var(--color-white);
  font-style: italic;
}

.footer-about p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-fast);
}

.footer-social a:hover {
  background: var(--color-secondary);
}

.footer-social svg {
  width: 16px;
  height: 16px;
  fill: rgba(255,255,255,0.75);
}

/* Kolon 2-4: Linkler */
.footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition-fast);
}

.footer-col ul li a:hover {
  color: var(--color-white);
}

/* Kolon 5: İletişim */
.footer-contact ul {
  gap: 16px;
}

.footer-contact ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255,255,255,0.55);
}

.footer-contact svg {
  width: 14px;
  height: 14px;
  fill: rgba(255,255,255,0.4);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact a {
  color: rgba(255,255,255,0.55);
  transition: color var(--transition-fast);
}

.footer-contact a:hover {
  color: var(--color-white);
}

/* Footer Alt Bar */
.footer-bottom {
  background: #0b281e;
  padding: 18px 0;
}

.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  transition: color var(--transition-fast);
}

.footer-bottom-links a:hover {
  color: rgba(255,255,255,0.7);
}

/* =========================================
   SUBPAGE HERO (Minimal & Striking)
   ========================================= */
.subpage-hero {
    position: relative;
    padding: 15vh 5vw 5vh 5vw;
    background: var(--color-primary-dark);
    overflow: hidden;
    color: var(--color-bg-light);
}

.subpage-hero::before {
    content: '';
    position: absolute;
    top: -50%; right: -10%;
    width: 40vw; height: 40vw;
    background: radial-gradient(circle, rgba(70,196,221,0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.subpage-hero-title {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
    color: var(--color-bg-light);
}

.subpage-hero-title span {
    color: var(--color-secondary);
    font-style: italic;
    font-weight: 400;
}

.subpage-hero-desc {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.6);
    max-width: 600px;
    line-height: 1.5;
}

.subpage-hero-line {
    width: 60px;
    height: 2px;
    background: var(--color-secondary);
    margin-top: 1.5rem;
}
