/*
Theme Name: House Of Gatha
Theme URI: https://houseofgatha.com/
Author: OpenAI Codex
Description: Luxury wedding photography WordPress theme for House Of Gatha.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.8
Requires PHP: 7.4
Text Domain: house-of-gatha
*/

:root {
  --hog-bg: #faf3e8;
  --hog-section: #f6ebdd;
  --hog-text: #111111;
  --hog-accent: #6f0000;
  --hog-highlight: #f4dfaf;
  --hog-border: rgba(17, 17, 17, 0.08);
  --hog-soft-text: #5b5550;
  --hog-shadow: 0 24px 80px rgba(17, 17, 17, 0.12);
  --hog-font-body: "Century Gothic", "Apple Gothic", "Avant Garde", sans-serif;
  --hog-font-display: "Moela", "Cormorant Garamond", serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--hog-bg);
  color: var(--hog-text);
  font-family: var(--hog-font-body);
  line-height: 1.65;
}

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

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

.hog-site {
  overflow: hidden;
}

.hog-container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.hog-topbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  padding: 22px 0;
  transition: background 240ms ease, backdrop-filter 240ms ease;
}

.hog-topbar.is-scrolled {
  background: rgba(17, 17, 17, 0.28);
  backdrop-filter: blur(12px);
}

.hog-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #fff;
}

.hog-brand {
  display: grid;
  gap: 2px;
}

.hog-brand-mark,
.hog-display {
  font-family: var(--hog-font-display);
}

.hog-brand-mark {
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hog-brand-sub {
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}

.hog-menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  cursor: pointer;
}

.hog-menu-toggle span {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 20px;
}

.hog-menu-toggle i {
  display: block;
  height: 1px;
  background: #fff;
  transition: 220ms ease;
}

.hog-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  padding: 0;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.92rem;
}

.hog-menu a:hover,
.hog-menu .current-menu-item > a {
  color: var(--hog-highlight);
}

.hog-mobile-menu {
  width: min(1180px, calc(100% - 32px));
  margin: 14px auto 0;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(18px);
  transition: 280ms ease;
}

.hog-mobile-menu nav {
  display: flex;
  flex-direction: column;
  padding: 18px 24px;
}

.hog-mobile-menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hog-mobile-menu a {
  display: block;
  padding: 14px 0;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.88rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hog-mobile-menu a:last-child {
  border-bottom: 0;
}

body.hog-mobile-open .hog-mobile-menu {
  max-height: 320px;
  opacity: 1;
}

body.hog-mobile-open .hog-menu-toggle i:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

body.hog-mobile-open .hog-menu-toggle i:nth-child(2) {
  opacity: 0;
}

body.hog-mobile-open .hog-menu-toggle i:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hog-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  overflow: hidden;
  color: #fff;
  background: url("https://images.unsplash.com/photo-1519741497674-611481863552?auto=format&fit=crop&w=1600&q=80") center/cover no-repeat;
}

.hog-hero::before {
  content: "";
  position: absolute;
  inset: -2rem;
  background: inherit;
  animation: hogHeroZoom 18s ease-in-out infinite alternate;
}

.hog-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(17, 17, 17, 0.18), rgba(17, 17, 17, 0.56)),
    radial-gradient(circle at top, rgba(255, 255, 255, 0.06), transparent 35%);
}

.hog-hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  width: min(1180px, calc(100% - 32px));
  padding: 128px 0 72px;
  text-align: center;
}

.hog-hero-copy {
  max-width: 980px;
  animation: hogHeroFade 900ms ease-out both;
}

.hog-hero-subheading,
.hog-section-tag {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.35em;
}

.hog-hero-subheading {
  font-size: 0.82rem;
  letter-spacing: 0.8em;
  color: rgba(255, 255, 255, 0.8);
}

.hog-hero-title {
  margin: 22px 0 0;
  font-family: var(--hog-font-body);
  font-size: clamp(3rem, 8vw, 6.4rem);
  font-weight: 200;
  text-transform: uppercase;
  letter-spacing: 0.28em;
}

.hog-hero-arrow {
  position: absolute;
  left: 16px;
  top: 50%;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.72);
}

.hog-hero-arrow-line {
  width: 40px;
  height: 1px;
  background: rgba(255, 255, 255, 0.5);
}

.hog-hero-slides {
  position: absolute;
  right: 20px;
  top: 50%;
  z-index: 1;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.hog-hero-slide-number {
  writing-mode: vertical-rl;
  font-size: 0.74rem;
  letter-spacing: 0.4em;
}

.hog-hero-slide-number.is-muted {
  color: rgba(255, 255, 255, 0.55);
}

.hog-hero-slide-number.is-active {
  color: #fff;
}

.hog-hero-slide-line {
  width: 1px;
  height: 80px;
  background: rgba(255, 255, 255, 0.28);
}

.hog-section {
  padding: 96px 0;
}

.hog-section-alt {
  background: var(--hog-section);
}

.hog-intro,
.hog-philosophy,
.hog-story-grid,
.hog-contact-grid,
.hog-grid-two {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
  align-items: center;
}

.hog-section-tag {
  color: var(--hog-accent);
  font-size: 0.76rem;
}

.hog-section-title {
  margin: 16px 0 0;
  font-family: var(--hog-font-display);
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--hog-accent);
}

.hog-copy {
  max-width: 60ch;
  color: var(--hog-soft-text);
  font-size: 1.02rem;
}

.hog-card-image,
.hog-story-visual {
  min-height: 540px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--hog-shadow);
  background-size: cover;
  background-position: center;
}

.hog-card-image {
  position: relative;
  background-image:
    linear-gradient(180deg, rgba(17, 17, 17, 0.08), rgba(17, 17, 17, 0.3)),
    url("https://images.unsplash.com/photo-1520854221256-17451cc331bf?auto=format&fit=crop&w=1200&q=80");
}

.hog-card-image::after {
  content: "House Of Gatha";
  position: absolute;
  right: 24px;
  bottom: 24px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.hog-philosophy-wrap {
  max-width: 1300px;
}

.hog-philosophy-media {
  position: relative;
}

.hog-philosophy-block {
  position: absolute;
  left: -28px;
  top: 34px;
  width: 86%;
  height: 82%;
  border-radius: 32px;
  background: var(--hog-section);
}

.hog-philosophy-image {
  position: relative;
  margin-left: auto;
  min-height: 620px;
  overflow: hidden;
  border-radius: 32px;
  box-shadow: 0 30px 70px rgba(17, 17, 17, 0.14);
  background:
    linear-gradient(to top, rgba(17, 17, 17, 0.12), transparent),
    url("https://images.unsplash.com/photo-1511285560929-80b456fea0bc?auto=format&fit=crop&w=1200&q=80") center/cover no-repeat;
  transition: transform 300ms ease;
}

.hog-philosophy-image:hover {
  transform: translateY(-4px) scale(1.01);
}

.hog-philosophy-label {
  font-size: 0.72rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: #8e857d;
}

.hog-philosophy-title {
  margin: 18px 0 0;
  font-family: var(--hog-font-display);
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hog-button,
.hog-button-soft {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 30px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.8rem;
  transition: 220ms ease;
}

.hog-button {
  background: var(--hog-accent);
  color: #fff;
}

.hog-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 35px rgba(17, 17, 17, 0.08);
}

.hog-button-soft {
  background: var(--hog-highlight);
  color: var(--hog-text);
}

.hog-button-soft:hover {
  transform: translateY(-2px);
  background: #ead398;
  color: var(--hog-accent);
  box-shadow: 0 18px 35px rgba(17, 17, 17, 0.08);
}

.hog-collection-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.hog-collection-card {
  position: relative;
  min-height: 420px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  border-radius: 28px;
  overflow: hidden;
  color: #fff;
  box-shadow: var(--hog-shadow);
}

.hog-collection-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, transparent 25%, rgba(17, 17, 17, 0.78)),
    var(--hog-card-image) center/cover no-repeat;
  transition: transform 240ms ease;
}

.hog-collection-card:hover::before {
  transform: scale(1.04);
}

.hog-collection-card h3,
.hog-story-item h3,
.hog-page-hero h1 {
  margin: 0 0 10px;
  font-family: var(--hog-font-display);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.hog-story-stack {
  display: grid;
  gap: 18px;
}

.hog-story-item {
  padding: 24px 28px;
  border: 1px solid var(--hog-border);
  border-radius: 22px;
  background: linear-gradient(180deg, #fff, var(--hog-bg));
  transition: 220ms ease;
}

.hog-story-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 35px rgba(17, 17, 17, 0.08);
}

.hog-story-item strong {
  display: block;
  margin-bottom: 6px;
  color: var(--hog-accent);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
}

.hog-story-visual {
  background-image:
    linear-gradient(180deg, rgba(17, 17, 17, 0.06), rgba(17, 17, 17, 0.34)),
    url("https://images.unsplash.com/photo-1511285560929-80b456fea0bc?auto=format&fit=crop&w=1200&q=80");
}

.hog-cta-band {
  padding: 28px 32px;
  border-radius: 30px;
  background: linear-gradient(135deg, var(--hog-accent), #420000);
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  box-shadow: var(--hog-shadow);
}

.hog-cta-title {
  margin: 12px 0 0;
  font-family: var(--hog-font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1;
  text-transform: uppercase;
}

.hog-contact-card,
.hog-page-card {
  padding: 32px;
  border-radius: 28px;
  border: 1px solid var(--hog-border);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--hog-shadow);
}

.hog-contact-item {
  margin-bottom: 18px;
}

.hog-contact-item span {
  display: block;
  margin-bottom: 4px;
  color: var(--hog-accent);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
}

.hog-page-hero {
  padding: 180px 0 80px;
  text-align: center;
  background: linear-gradient(180deg, var(--hog-section), var(--hog-bg));
}

.hog-page-content {
  padding-bottom: 96px;
}

.hog-page-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.hog-footer {
  padding: 30px 0 44px;
  background: var(--hog-section);
  border-top: 1px solid var(--hog-border);
}

.hog-footer-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  color: var(--hog-soft-text);
  font-size: 0.92rem;
}

@keyframes hogHeroZoom {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.08);
  }
}

@keyframes hogHeroFade {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1024px) {
  .hog-intro,
  .hog-philosophy,
  .hog-story-grid,
  .hog-contact-grid,
  .hog-grid-two,
  .hog-collection-grid,
  .hog-page-grid {
    grid-template-columns: 1fr;
  }

  .hog-menu {
    display: none;
  }

  .hog-menu-toggle {
    display: inline-flex;
  }

  .hog-cta-band {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 720px) {
  .hog-hero-title {
    max-width: none;
    letter-spacing: 0.18em;
  }

  .hog-hero-subheading {
    letter-spacing: 0.45em;
    font-size: 0.74rem;
  }

  .hog-hero-arrow,
  .hog-hero-slides {
    display: none;
  }

  .hog-card-image,
  .hog-story-visual,
  .hog-philosophy-image {
    min-height: 420px;
  }

  .hog-section {
    padding: 76px 0;
  }

  .hog-philosophy-block {
    left: -10px;
    top: 18px;
  }

  .hog-button,
  .hog-button-soft {
    width: 100%;
  }

  .hog-philosophy-copy,
  .hog-page-hero {
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hog-hero::before,
  .hog-hero-copy {
    animation: none;
  }
}
