/* ===================================
   Lena Dugnus Photography - Main CSS
   Modern, Editorial, Timeless Design
   =================================== */

/* CSS Custom Properties (Variables) */
:root {
  /* Color Palette - Black & White Tones */
  --color-primary: #000000;
  --color-secondary: #f5f5f5;
  --color-accent: #333333;
  --color-text: #000000;
  --color-text-light: #666666;
  --color-background: #ffffff;
  --color-background-alt: #fafafa;
  --color-border: #e0e0e0;
  
  /* Button Hover Colors */
  --color-button-hover: #666666;
  --color-button-hover-light: rgba(0, 0, 0, 0.05);
  
  /* Typography - Font variables are defined in fonts.css */
  --letter-spacing-secondary: 0.1em; /* Letter spacing for secondary font (Cormorant) */
  
  /* Spacing */
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 2rem;
  --spacing-2xl: 3rem;
  --spacing-3xl: 4rem;
  
  /* Layout */
  --container-max-width: 1200px;
  --border-radius: 0px;
  --border-radius-lg: 0px;
  --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --box-shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
  
  /* Header/Navbar */
  --header-height: 60px;
  --header-scroll-threshold: 100px;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* ===================================
   Reset & Base Styles
   =================================== */

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

html {
  /* Base font size: 18px (1.125rem) - provides optimal base for rem calculations */
  font-size: 1.125rem; /* 18px - respects user browser font size preferences */
  scroll-behavior: smooth;
  overflow-x: hidden; /* Prevent horizontal scrolling */
}

/* Override fonts.css body styles if needed, but use consistent variables */

body {
  font-family: var(--font-primary);
  line-height: var(--line-height-relaxed);
  color: var(--color-text);
  background-color: var(--color-background);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: var(--font-weight-light);
  overflow-x: hidden; /* Prevent horizontal scrolling */
  width: 100%;
  max-width: 100vw; /* Ensure body doesn't exceed viewport width */
}

/* ===================================
   Typography
   =================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-secondary);
  font-weight: var(--font-weight-light);
  line-height: var(--line-height-tight);
  margin-bottom: var(--spacing-md);
  color: var(--color-primary);
}

h1 { font-size: var(--font-size-2xl); }
h2 { font-size: var(--font-size-xl); }
h2.text-center.mb-xl {
  font-size: var(--font-size-2xl);
}
h3 { font-size: var(--font-size-lg); }
h4 { font-size: var(--font-size-base); }
h5 { font-size: var(--font-size-sm); }
h6 { font-size: var(--font-size-xs); }

p {
  margin-bottom: var(--spacing-md);
  color: var(--color-text);
  font-size: var(--font-size-xs);
  text-align: justify;
  text-justify: inter-word;
}

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-primary);
}

/* ===================================
   Layout Components
   =================================== */

.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
}

.section {
  padding: var(--spacing-lg) 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section--alt {
  background-color: var(--color-background-alt);
  padding: var(--spacing-lg) 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ===================================
   Header & Navigation
   =================================== */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  z-index: 1000;
  transition: transform var(--transition-normal), border-bottom var(--transition-normal);
  border-bottom: none;
  box-shadow: none;
  transform: translateY(0);
  /* Allow dropdown to extend beyond header bounds */
  overflow: visible;
}

/* Blurred background with gradient mask - applied to pseudo-element so dropdown isn't affected */
.header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  /* Gradient mask to fade blur at bottom edge */
  mask-image: linear-gradient(to bottom, 
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 1) 85%,
    rgba(0, 0, 0, 0.7) 95%,
    rgba(0, 0, 0, 0) 100%);
  -webkit-mask-image: linear-gradient(to bottom, 
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 1) 85%,
    rgba(0, 0, 0, 0.7) 95%,
    rgba(0, 0, 0, 0) 100%);
  pointer-events: none;
  z-index: -1;
}

/* Hide navbar when scrolling down */
.header.header--hidden {
  transform: translateY(-100%);
}

.header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 var(--spacing-xl);
  width: 100%;
  max-width: 100%;
  margin: 0;
  height: 100%;
  /* Allow dropdown to extend beyond container bounds */
  overflow: visible;
}

.logo {
  font-family: 'South Castle', var(--font-secondary);
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-semibold);
  color: white;
  text-align: center;
  text-decoration: none;
  transition: transform var(--transition-normal), 
              color var(--transition-normal), 
              text-shadow var(--transition-normal);
  letter-spacing: var(--letter-spacing-secondary);
  padding: var(--spacing-sm) var(--spacing-lg);
  padding-top: calc(var(--spacing-sm) - 25px);
  white-space: nowrap;
  line-height: var(--line-height-tight);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  display: inline-block;
  transform: scale(1);
}

/* Critical mobile logo styles - prevent layout shift */
@media (max-width: 1023px) {
  .logo {
    /* font-size inherits from base .logo definition */
    padding: var(--spacing-sm) var(--spacing-md);
    padding-top: calc(var(--spacing-sm) - 25px);
    line-height: 1.2;
    display: block;
  }
}

.logo:hover {
    transform: scale(1.03);
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 4px 16px rgba(0, 0, 0, 0.5),
                 0 0 20px rgba(255, 255, 255, 0.1);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: var(--spacing-xl);
}

.nav__list {
  display: none; /* Mobile-first: hidden by default */
  list-style: none;
  gap: var(--spacing-lg);
  margin: 0;
  padding: 0;
  min-width: 180px;
  align-items: center;
}

.nav__list--left {
  justify-content: flex-start;
}

.nav__list--right {
  justify-content: flex-end;
}

.nav__center {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 2;
  margin: 0 var(--spacing-lg);
  min-width: 0;
}

/* Critical mobile/tablet positioning - prevent layout shift */
@media (max-width: 1023px) {
  .nav__center {
    position: absolute !important;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
    width: auto;
    margin: 0;
    flex: none;
  }
  
  @media (max-width: 767px) {
    .nav__center {
      transform: translate(-60%, -50%);
    }
  }
}

.nav__link {
  font-family: var(--font-secondary);
  font-weight: var(--font-weight-normal);
  color: white;
  text-decoration: none;
  padding: var(--spacing-xs) var(--spacing-sm);
  font-size: var(--font-size-base);
  letter-spacing: var(--letter-spacing-secondary);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
  position: relative;
  display: inline-block;
  vertical-align: top;
  line-height: 1.5;
  transition: color var(--transition-fast), text-shadow var(--transition-fast);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0.1em;
  left: 0;
  width: 0;
  height: 1px;
  background-color: currentColor;
  transition: width var(--transition-fast);
}

/* Focus and active always work, hover only on hover-capable devices */
.nav__link:is(:focus, :active) {
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.nav__link:hover {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.nav__link:is(:focus, :active)::after,
.nav__link.active::after {
  width: 100%;
}

.nav__link:hover::after {
    width: 100%;
}

/* Dropdown Navigation Styles */
.nav__dropdown {
  position: relative;
  display: inline-block;
  vertical-align: top;
  line-height: 1;
  padding: 0;
  margin: 0;
  /* Create new stacking context to escape parent mask */
  z-index: 1001;
}

.nav__dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--border-radius);
  box-shadow: none;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-fast), visibility var(--transition-fast);
  z-index: 1001;
  list-style: none;
  margin: 0;
  padding: 0;
  /* Remove gradient mask from dropdown - create new stacking context */
  mask-image: none;
  -webkit-mask-image: none;
  isolation: isolate;
}

.nav__dropdown:hover .nav__dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.nav__dropdown[aria-expanded="true"] .nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
}

/* Dropdown menu when header is scrolled - black background like navbar */
.header.scrolled .nav__dropdown-menu {
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.nav__dropdown-link {
  font-family: var(--font-secondary);
  display: block;
  padding: var(--spacing-sm) var(--spacing-md);
  color: white;
  text-decoration: none;
  font-size: var(--font-size-base);
  letter-spacing: 0.5px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
  position: relative;
  transition: color var(--transition-fast), text-shadow var(--transition-fast);
}

.nav__dropdown-link::after {
  content: '';
  position: absolute;
  bottom: 0.1em;
  left: var(--spacing-md);
  width: 0;
  height: 1px;
  background-color: currentColor;
  transition: width var(--transition-fast);
}

.nav__dropdown-link:is(:focus, :active) {
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.nav__dropdown-link:hover {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.nav__dropdown-link:is(:focus, :active)::after,
.nav__dropdown-link.active::after {
  width: calc(100% - 2 * var(--spacing-md));
}

.nav__dropdown-link:hover::after {
    width: calc(100% - 2 * var(--spacing-md));
}

/* Language Switcher */
.lang-switcher {
  margin-left: 0;
  display: flex;
  align-items: center;
}

/* Mobile Language Switcher */
.mobile-menu__item.lang-switcher {
  border-top: 1px solid var(--color-border);
  margin-top: var(--spacing-md);
  padding-top: var(--spacing-md);
}

.mobile-menu__item.lang-switcher .lang-switcher__link {
  justify-content: center;
  width: 100%;
}

/* Mobile Dropdown Styles */
.mobile-menu__dropdown {
  position: relative;
  display: block;
}

.mobile-menu__link--dropdown {
  display: block;
  position: relative;
  cursor: pointer;
}

.mobile-menu__link--dropdown::after {
  content: '▼';
  position: absolute;
  right: calc(var(--spacing-md) - 30px);
  top: 50%;
  transform: translateY(-50%);
  font-size: var(--font-size-base);
  transition: transform var(--transition-fast);
}

.mobile-menu__dropdown[aria-expanded="true"] .mobile-menu__link--dropdown::after {
  transform: translateY(-50%) rotate(180deg);
}

.mobile-menu__dropdown-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal);
}

.mobile-menu__dropdown[aria-expanded="true"] .mobile-menu__dropdown-menu {
  max-height: 200px;
}

.mobile-menu__dropdown-link {
  display: block;
  padding: var(--spacing-sm) var(--spacing-xl);
  color: white;
  text-decoration: none;
  font-size: var(--font-size-lg);
  letter-spacing: 0.5px;
  transition: color var(--transition-fast);
  border-left: 3px solid transparent;
}

.mobile-menu__dropdown-link:hover {
    color: var(--color-secondary);
    border-left-color: var(--color-secondary);
}

.mobile-menu__dropdown-link.active {
  color: var(--color-secondary);
  border-left-color: var(--color-secondary);
}

/* Mobile navigation toggle styling */
.mobile-nav-toggle {
  display: block; /* Mobile-first: shown by default */
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--spacing-md);
  position: absolute;
  top: 50%;
  right: var(--spacing-md);
  transform: translateY(-50%);
  z-index: 1001;
  min-height: 44px;
  min-width: 44px;
}

.mobile-nav-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background: white;
  margin: 5px 0;
  transition: all var(--transition-normal);
  border-radius: 2px;
  box-shadow: none;
}

.mobile-nav-toggle:hover span {
  background: rgba(255, 255, 255, 0.9);
}

/* When scrolled, mobile toggle stays white on black background */
.header.scrolled .mobile-nav-toggle span {
  background: white;
  box-shadow: none;
}

.header.scrolled .mobile-nav-toggle:hover span {
  background: rgba(255, 255, 255, 0.9);
}

/* Mobile menu overlay */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.95);
  z-index: 1002;
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.mobile-menu.active {
  display: flex;
  opacity: 1;
}

.mobile-menu__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: var(--spacing-3xl);
  max-width: 600px;
  margin: 0 auto;
}

.mobile-menu__list {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
}

.mobile-menu__item {
  margin: var(--spacing-lg) 0;
}

.mobile-menu__link {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-normal);
  color: white;
  text-decoration: none;
  letter-spacing: var(--letter-spacing-secondary);
  transition: color var(--transition-fast);
  display: block;
  padding: var(--spacing-md);
  text-align: center;
  font-family: var(--font-secondary);
}

.mobile-menu__link:hover,
.mobile-menu__link.active {
  color: var(--color-secondary);
}

.mobile-menu__close {
  position: fixed;
  top: calc(var(--header-height) / 2);
  right: var(--spacing-md);
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: white;
  font-size: var(--font-size-3xl);
  font-weight: var(--font-weight-light);
  padding: var(--spacing-sm);
  z-index: 1005;
  transition: color var(--transition-fast);
  font-family: var(--font-secondary);
  min-height: 44px;
  min-width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu__close:hover {
  color: var(--color-secondary);
}

/* Active state for current page - underline is handled by ::after */
.nav__link.active {
  color: white;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

/* Header scroll effect - becomes semi-transparent black when scrolled */
.header.scrolled::before {
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.header.scrolled {
  box-shadow: none;
  border-bottom: none;
}

/* When scrolled, keep text white for readability on black background */
.header.scrolled .logo,
.header.scrolled .nav__link {
  color: white;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.header.scrolled .logo:hover {
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.header.scrolled .nav__link:hover {
  color: white;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

/* ===================================
   Fullscreen Slider
   =================================== */

.slider {
  height: 100vh;
  position: relative;
  overflow: hidden;
  /* Prevent slider from retaining focus after interaction */
  outline: none !important;
  -webkit-tap-highlight-color: transparent;
  /* Make slider non-focusable */
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
  /* Prevent touch delay issues */
  touch-action: pan-x pan-y;
}

/* Ensure NO element inside the slider can retain focus after touch */
.slider *:focus {
  outline: none !important;
}

/* Remove focus ring from slider dots after tap */
.slider__dot:focus {
  outline: none !important;
}

.slider__container {
  position: relative;
  width: 100%;
  height: 100%;
  /* Prevent container from capturing focus */
  outline: none;
  -webkit-tap-highlight-color: transparent;
  /* Ensure container doesn't block clicks */
  pointer-events: none;
}

/* Allow dots to be clickable */
.slider__container .slider__dots {
  pointer-events: auto;
}

.slider__slides {
  position: relative;
  width: 100%;
  height: 100%;
  /* Prevent slides container from blocking clicks */
  pointer-events: none;
}

.slider__slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-slow);
  display: flex;
  align-items: center;
  justify-content: center;
  /* Prevent slides from capturing focus */
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

.slider__slide.active {
  opacity: 1;
  /* Keep none - only images should be clickable if needed */
  pointer-events: none;
}

.slider__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  /* Prevent images from capturing focus or showing tap highlights */
  outline: none;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
  -webkit-user-select: none;
}

/* Slider Dots - Consolidated Design */
.slider__dots,
.testimonial-slider__dots {
  display: flex;
  justify-content: center;
  gap: var(--spacing-md);
  z-index: 3;
}

.slider__dots {
  position: absolute;
  bottom: var(--spacing-xl);
  left: 50%;
  transform: translateX(-50%);
}

/* Critical mobile/tablet slider dots positioning - prevent layout shift */
@media (max-width: 1023px) {
  .slider__dots {
  bottom: var(--spacing-md);
  }
}

.testimonial-slider__dots {
  margin-top: var(--spacing-xl);
}

/* Base dot styles - shared by both sliders */
.slider__dot,
.testimonial-slider__dot {
  width: 4px;
  height: 4px;
  padding: 10px;
  border-radius: 50%;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all var(--transition-normal);
  box-sizing: content-box;
  position: relative;
  /* Prevent focus issues on mobile */
  outline: none !important;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.slider__dot::before,
.testimonial-slider__dot::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  transition: all var(--transition-normal);
}

/* Light dots for hero slider (white default, gray when active) */
.slider__dot::before {
  background: white;
}

.slider__dot:hover::before {
    background: rgba(255, 255, 255, 0.8);
    transform: translate(-50%, -50%) scale(1.15);
}

.slider__dot.active::before {
  background: gray;
  transform: translate(-50%, -50%) scale(1.25);
}

/* Dark dots for testimonial slider (dark on white background) */
.testimonial-slider__dot::before {
  background: rgba(0, 0, 0, 0.3);
}

.testimonial-slider__dot:hover::before {
    background: rgba(0, 0, 0, 0.5);
    transform: translate(-50%, -50%) scale(1.15);
}

.testimonial-slider__dot.active::before {
  background: var(--color-primary);
  transform: translate(-50%, -50%) scale(1.25);
}

/* ===================================
   Buttons
   =================================== */

.btn {
  display: inline-block;
  padding: var(--spacing-md) var(--spacing-xl);
  border: none;
  border-radius: var(--border-radius);
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-normal);
  text-decoration: none;
  font-size: var(--font-size-sm);
  letter-spacing: var(--letter-spacing-secondary);
  font-family: var(--font-secondary);
  text-transform: uppercase;
}

.btn--primary {
  background: var(--color-primary);
  color: white;
  border: 2px solid var(--color-primary);
}

.btn--primary:hover {
  background: var(--color-button-hover);
  border-color: var(--color-button-hover);
  color: white;
  transform: translateY(0px);
  box-shadow: none;
}

.btn--secondary {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.btn--secondary:hover {
  background: var(--color-button-hover);
  border-color: var(--color-button-hover);
  color: white;
  transform: translateY(0px);
  box-shadow: none;
}

.btn--outline {
  background: var(--color-primary);
  color: white;
  border: 2px solid var(--color-primary);
}

.btn--outline:hover {
  background: var(--color-button-hover);
  border-color: var(--color-button-hover);
  color: white;
  transform: translateY(0px);
  box-shadow: none;
}

/* ===================================
   Shared Cookie Button Styles
   =================================== */

/* Base cookie button styles shared between cookie-banner and cookie-settings */
.cookie-button-base {
  padding: var(--spacing-sm) var(--spacing-md);
  font-size: var(--font-size-xxs);
  font-weight: var(--font-weight-normal);
  border: 1px solid var(--color-primary);
  background-color: transparent;
  color: var(--color-primary);
  cursor: pointer;
  transition: all var(--transition-fast);
  font-family: var(--font-secondary);
  line-height: var(--line-height-tight);
  text-transform: uppercase;
  border-radius: var(--border-radius);
  text-align: center;
}

.cookie-button-base:hover {
  background-color: var(--color-primary);
  color: var(--color-text-light);
  transform: translateY(-1px);
  box-shadow: none;
}

.cookie-button-base--primary {
  background-color: var(--color-primary);
  color: var(--color-background);
}

.cookie-button-base--primary:hover {
  background-color: var(--color-accent);
  border-color: var(--color-accent);
}

.cookie-button-base:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

/* ===================================
   Cards & Grid System
   =================================== */

.card {
  background: var(--color-background-alt);
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
  transition: transform var(--transition-normal);
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: none;
}

.card__image {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  object-position: center 30%;
}

.card__image--wedding {
  object-position: center 25%;
}

.card__image--maternity {
  object-position: center 40%;
}

.card__content {
  padding: var(--spacing-xl);
}

.card__title {
  font-size: var(--font-size-xl);
  margin-bottom: var(--spacing-sm);
}

.card__text {
  color: var(--color-text-light);
  margin-bottom: var(--spacing-lg);
  line-height: 1.6;
}

.grid {
  display: grid;
  gap: var(--spacing-xl);
}

/* FAQ Grid: 2 columns, explicit rows for tight text stacking */
.grid--2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto 1fr;
  column-gap: var(--spacing-lg);
  row-gap: 0;
  align-items: start;
  min-height: auto;
}

/* Ensure grid has enough height for sticky positioning on pricing/FAQ pages */
main:has(.faq-image-collage) .grid--2 {
  min-height: auto;
}

/* About page grids: Center alignment */
.grid--2.grid--about,
body:has(#main-content .gallery-hero) .grid--2 {
  align-items: center;
}

.grid--3 {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.grid--4 {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

/* ===================================
   Gallery (Unified for all types)
   =================================== */

.gallery {
  display: grid;
  gap: var(--spacing-md);
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius);
  aspect-ratio: 4/3;
}

.gallery__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
  background: var(--color-background-alt);
  min-height: 200px;
}

.gallery__image:not([src]), 
.gallery__image[src=""],
.gallery__image[src*="placeholder"] {
  background: linear-gradient(45deg, var(--color-background-alt) 25%, transparent 25%), 
              linear-gradient(-45deg, var(--color-background-alt) 25%, transparent 25%), 
              linear-gradient(45deg, transparent 75%, var(--color-background-alt) 75%), 
              linear-gradient(-45deg, transparent 75%, var(--color-background-alt) 75%);
  background-size: 20px 20px;
  background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
}

.gallery__item:hover .gallery__image {
    transform: scale(1.05);
}

.gallery__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
  padding: var(--spacing-lg);
  transform: translateY(100%);
  transition: transform var(--transition-normal);
}

.gallery__item:hover .gallery__overlay {
    transform: translateY(0);
}

.gallery__overlay h3 {
  margin: 0 0 var(--spacing-sm) 0;
  font-weight: var(--font-weight-normal);
}

.gallery__overlay p {
  margin: 0;
  opacity: 0.9;
}

/* ===================================
   Masonry Gallery (Featured Work)
   =================================== */

.masonry-gallery {
  column-count: 1; /* Mobile default - will be overridden by responsive CSS */
  column-gap: var(--spacing-md);
  width: 100%;
  margin-bottom: 0; /* Remove dynamic margin to prevent jumping */
}

.masonry-gallery__item {
  display: inline-block;
  width: 100%;
  margin-bottom: var(--spacing-md);
  break-inside: avoid;
  overflow: hidden;
  border-radius: var(--border-radius);
  transition: transform var(--transition-normal);
}

.masonry-gallery__item:hover {
  transform: translateY(-4px);
}

.masonry-gallery__image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform var(--transition-normal);
  background: var(--color-background-alt);
}

.masonry-gallery__item:hover .masonry-gallery__image {
  transform: scale(1.05);
}

.masonry-gallery__loading {
  text-align: center;
  padding: var(--spacing-xl);
  color: var(--color-text-light);
  /* Always maintain height to prevent footer jumping - reserve space even when hidden */
  min-height: calc(var(--spacing-xl) * 4);
  margin-bottom: calc(var(--spacing-xl) * 3);
  /* Keep space reserved - use visibility instead of display when hidden */
  display: block; /* Always take up space */
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* When loading, show the indicator */
.masonry-gallery__loading.is-loading {
  visibility: visible;
  opacity: 1;
}

/* Add stable bottom spacing to Featured Work section to prevent footer jumping */
/* Target the section containing the featured gallery */
#featured-gallery {
  margin-bottom: calc(var(--spacing-xl) * 2);
}

/* Add padding to the container that holds both gallery and loading indicator */
.section--alt .container:last-child {
  padding-bottom: calc(var(--spacing-xl) * 3);
}

.masonry-gallery__loading p {
  margin: 0;
  font-size: var(--font-size-sm);
}

/* ===================================
   Forms
   =================================== */

/* Generic form styles - apply to all forms */
.form {
  max-width: 100%;
}

.form__group {
  margin-bottom: var(--spacing-lg);
  display: flex;
  flex-direction: column;
}

.form__label {
  color: var(--color-primary);
  font-weight: var(--font-weight-normal);
  margin-bottom: var(--spacing-xs);
  font-size: var(--font-size-xs);
  font-family: var(--font-secondary);
  display: block;
}

.form__input,
.form__textarea {
  background: var(--color-background-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
  padding: var(--spacing-sm) var(--spacing-md);
  font-family: var(--font-primary);
  font-size: var(--font-size-xs);
  color: var(--color-text);
  transition: all var(--transition-normal);
  width: 100%;
  box-sizing: border-box;
}

.form__input:focus,
.form__textarea:focus {
  background-color: white;
  border-color: var(--color-accent);
  box-shadow: none;
  outline: none;
}

.form__input::placeholder,
.form__textarea::placeholder {
  color: var(--color-text-light);
  font-style: italic;
}

.form__textarea {
  resize: vertical;
  min-height: 120px;
}

/* Select dropdowns */
select.form__input {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right var(--spacing-sm) center;
  background-size: 16px;
  padding-right: var(--spacing-2xl);
  cursor: pointer;
}

/* Note: Contact-specific form layout styles are in contact.css */

/* ===================================
   Portfolio Styles (Unified)
   =================================== */

/* Page Header */
.page-header {
  background: var(--color-background-alt);
  height: calc(100vh * 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 0;
}

/* Removed .page-subtitle - use standard h2 or h3 instead */

/* Unified Portfolio Gallery Styles */
.portfolio-gallery {
  margin-bottom: var(--spacing-3xl);
  padding-bottom: var(--spacing-3xl);
  border-bottom: 1px solid var(--color-border);
}

.portfolio-gallery:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.portfolio-hero {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 0;
  overflow: hidden;
  margin-bottom: var(--spacing-2xl);
}

.portfolio-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--color-background-alt);
  min-height: 300px;
}

.portfolio-hero-image:not([src]), 
.portfolio-hero-image[src=""],
.portfolio-hero-image[src*="placeholder"] {
  background: linear-gradient(45deg, var(--color-background-alt) 25%, transparent 25%), 
              linear-gradient(-45deg, var(--color-background-alt) 25%, transparent 25%), 
              linear-gradient(45deg, transparent 75%, var(--color-background-alt) 75%), 
              linear-gradient(-45deg, transparent 75%, var(--color-background-alt) 75%);
  background-size: 20px 20px;
  background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
}

.portfolio-hero-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
  padding: var(--spacing-xl);
}

.portfolio-hero-content h2 {
  color: white;
  margin-bottom: var(--spacing-sm);
}

.portfolio-date,
.portfolio-location {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--spacing-xs);
}

.portfolio-story {
  margin-bottom: var(--spacing-2xl);
  max-width: 800px;
}

.portfolio-story h3 {
  color: var(--color-primary);
  margin-bottom: var(--spacing-lg);
}

.portfolio-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-lg);
}

/* Wedding Overview Styles */
.wedding-overview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--spacing-xl);
  margin-top: var(--spacing-2xl);
}

.wedding-overview-card {
  background: var(--color-background-alt);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: none;
  transition: transform 0.3s ease;
  text-decoration: none;
  color: inherit;
  display: block;
}

.wedding-overview-card:hover {
    transform: translateY(-5px);
    box-shadow: none;
    text-decoration: none;
    color: inherit;
}

.wedding-overview-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.overview-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.wedding-overview-card:hover .overview-image {
    transform: scale(1.05);
}

.wedding-overview-content {
  padding: var(--spacing-xl);
  text-align: center;
}

.wedding-overview-content h3 {
  margin-bottom: var(--spacing-sm);
  color: var(--color-primary);
}

.wedding-overview-location {
  color: var(--color-accent);
  font-weight: var(--font-weight-normal);
  margin-bottom: var(--spacing-md);
  font-size: var(--font-size-xs);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: var(--font-primary);
}

/* When h3 has location class, use h3 styling */
.wedding-overview-content h3.wedding-overview-location {
  margin-bottom: var(--spacing-sm);
  color: var(--color-primary);
  font-weight: var(--font-weight-normal);
  text-transform: uppercase;
  letter-spacing: normal;
}

.wedding-overview-description {
  color: var(--color-text-light);
  line-height: 1.6;
  margin: 0;
  text-align: center;
}

/* ===================================
   Testimonial Slider
   =================================== */

/* Full-width banner background for testimonial section */
.section:has(.testimonial-slider) {
  background-color: var(--color-secondary);
  position: relative;
}

.testimonial-slider {
  position: relative;
  max-width: var(--container-max-width);
  margin: 0 auto;
  /* Prevent slider from retaining focus after interaction */
  outline: none !important;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
  touch-action: pan-x pan-y;
}

/* Ensure NO element inside the testimonial slider can retain focus after touch */
.testimonial-slider *:focus {
  outline: none !important;
}

.testimonial-slider__container {
  position: relative;
  overflow: hidden;
  /* Prevent container from capturing focus */
  outline: none;
  -webkit-tap-highlight-color: transparent;
  /* Ensure container doesn't block clicks */
  pointer-events: none;
}

/* Allow dots to be clickable */
.testimonial-slider__container .testimonial-slider__dots {
  pointer-events: auto;
}

.testimonial-slider__slides {
  display: flex;
  transition: transform var(--transition-slow);
  position: relative;
  /* Prevent slides container from blocking clicks */
  pointer-events: none;
}

.testimonial-slider__slide {
  min-width: 100%;
  flex-shrink: 0;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  pointer-events: none;
  /* Prevent slides from capturing focus */
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

.testimonial-slider__slide.active {
  opacity: 1;
  position: relative;
  pointer-events: auto;
  display: flex;
  align-items: center;
}

.testimonial {
  display: flex;
  align-items: center;
  gap: var(--spacing-xl);
  padding: var(--spacing-2xl);
  background: var(--color-background);
  border-radius: 0;
  margin: 0 var(--spacing-md);
  position: relative;
}

.testimonial__stars {
  color: #FFD700;
  font-size: var(--font-size-lg);
  margin-bottom: var(--spacing-lg);
}

.testimonial__image {
  flex-shrink: 0;
  width: 300px;
  height: 400px;
  overflow: hidden;
  /* Shift up by: (cite line height + blockquote margin-bottom) / 2 to center with blockquote */
  transform: translateY(calc((1.2em + var(--spacing-lg)) / -2));
}

.testimonial__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.testimonial__content {
  flex: 1;
}

.testimonial blockquote {
  font-style: italic;
  margin-bottom: var(--spacing-lg);
  color: var(--color-text);
  line-height: 1.6;
  font-size: var(--font-size-xxs);
  text-align: justify;
}

.testimonial cite {
  font-weight: var(--font-weight-normal);
  color: var(--color-accent);
  display: block;
  margin-bottom: var(--spacing-sm);
  font-family: var(--font-primary);
  font-size: var(--font-size-xxs);
}

.testimonial__source {
  color: var(--color-text-light);
  font-style: italic;
}

/* Contact CTA Section - Match height with testimonials section */
.section:has(.testimonial-slider) + .section {
  min-height: 500px;
  display: flex;
  align-items: center;
}

/* ===================================
   Accessibility
   =================================== */

.skip-link {
  position: absolute;
  top: -100px;
  left: 6px;
  background: var(--color-accent);
  color: white;
  padding: 8px;
  text-decoration: none;
  border-radius: 0;
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-fast), visibility var(--transition-fast);
}

.skip-link:focus {
  top: 6px;
  opacity: 1;
  visibility: visible;
}

/* ===================================
   Lightbox
   =================================== */

.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox.show {
  opacity: 1;
  pointer-events: auto;
}

.lightbox__content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox__image {
  max-width: 100%;
  max-height: 90vh;
  width: auto;
  height: auto;
  border-radius: 0;
  object-fit: contain;
}

/* Shared styles for all lightbox buttons */
.lightbox__close,
.lightbox__nav {
  position: absolute;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  padding: 0;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease, transform 0.2s ease;
  z-index: 2001;
  box-sizing: border-box;
}

/* Close button specific styles */
.lightbox__close {
  top: 20px;
  right: 20px;
  font-size: 32px;
}

.lightbox__close:hover {
  opacity: 0.8;
  transform: scale(1.1);
}

/* Navigation buttons specific styles */
.lightbox__nav {
  top: 50%;
  transform: translateY(-50%);
  font-size: 48px;
  user-select: none;
}

.lightbox__nav:hover {
  opacity: 0.8;
  transform: translateY(-50%) scale(1.1);
}

.lightbox__nav--prev {
  left: 20px;
}

.lightbox__nav--next {
  right: 20px;
}

.lightbox__nav:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.lightbox__nav:disabled:hover {
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
}

@media (max-width: 767px) {
  .lightbox__close,
  .lightbox__nav {
    width: 80px;
    height: 80px;
  }
  
  .lightbox__close {
    top: 10px;
    right: 10px;
    font-size: 24px;
  }
  
  .lightbox__nav {
    font-size: 36px;
  }
  
  .lightbox__nav--prev {
    left: 10px;
  }
  
  .lightbox__nav--next {
    right: 10px;
  }
}

/* ===================================
   Notifications
   =================================== */

.notification {
  position: fixed;
  top: 20px;
  right: 20px;
  padding: var(--spacing-lg);
  border-radius: 0;
  color: white;
  z-index: 2000;
  transform: translateX(100%);
  transition: transform var(--transition-normal);
}

.notification.show {
  transform: translateX(0);
}

.notification--success {
  background: #27ae60;
}

.notification--error {
  background: #e74c3c;
}

.notification--info {
  background: #3498db;
}

/* ===================================
   Footer
   =================================== */

.footer {
  background: var(--color-primary);
  color: white;
  padding: var(--spacing-xl) 0 var(--spacing-md);
}

/* Footer Instagram Section */
.footer__instagram-section {
  padding: var(--spacing-sm) 0;
  margin-bottom: var(--spacing-md);
}

.footer__instagram-section .container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
}

.footer__instagram-title {
  color: white;
  text-align: center;
  margin-bottom: var(--spacing-xs);
}

.footer__instagram-button-wrapper {
  text-align: center;
  margin-bottom: var(--spacing-sm);
}

.footer__instagram-btn {
  font-size: var(--font-size-lg);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-md);
}

.footer__instagram-btn-icon {
  width: 28px;
  height: 28px;
  display: block;
  flex-shrink: 0;
}

.footer__instagram-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-sm);
  overflow-x: auto;
}

.footer__instagram-item {
  display: block;
  overflow: hidden;
}

.footer__instagram-item img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  transition: transform var(--transition-normal);
}

.footer__instagram-item:hover img {
  transform: scale(1.05);
}

/* Footer Main Section */
.footer__main {
  background: var(--color-primary);
  padding: var(--spacing-md) 0;
}

.footer__content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-md);
  align-items: center;
}

.footer__section {
  font-size: 0.9rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--spacing-xs);
  align-items: center;
}

.footer__section p {
  margin: 0;
  color: white;
}

.footer__link {
  color: white;
  transition: color var(--transition-fast);
}

.footer__link:hover {
    color: #999999;
}

.footer__section .btn--primary {
  background: var(--color-button-hover);
  color: white;
  border: 2px solid var(--color-button-hover);
}

.footer__section .btn--primary:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: white;
    transform: translateY(0px);
    box-shadow: none;
}

.footer__copyright {
  padding: var(--spacing-sm) 0;
}

.footer__copyright p {
  color: var(--color-text-light);
  text-align: center;
  margin: 0;
}

/* ===================================
   Utilities
   =================================== */

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mb-sm { margin-bottom: var(--spacing-sm); }
.mb-md { margin-bottom: var(--spacing-md); }
.mb-lg { margin-bottom: var(--spacing-lg); }
.mb-xl { margin-bottom: var(--spacing-xl); }

.mt-0 { margin-top: 0; }
.mt-sm { margin-top: var(--spacing-sm); }
.mt-md { margin-top: var(--spacing-md); }
.mt-lg { margin-top: var(--spacing-lg); }
.mt-xl { margin-top: var(--spacing-xl); }

.hidden { display: none; }
.visible { display: block; }

/* ===================================
   Animations
   =================================== */

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.fade-in {
  animation: fadeIn 0.6s ease-out;
}

/* ===================================
   Gallery Pages Styles
   =================================== */

/* Gallery Hero Section */
.gallery-hero {
  position: relative;
  height: calc(100vh * 0.7);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0;
}

.gallery-hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Default object-position, can be overridden with inline style like: style="object-position: center 50%;" */
  object-position: var(--hero-image-position, center 50%);
}

.gallery-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  max-width: 800px;
  padding: 0 var(--spacing-lg);
}

.gallery-hero-text {
  background: rgba(0, 0, 0, 0.7);
  padding: var(--spacing-2xl);
  border-radius: var(--border-radius-lg);
  backdrop-filter: blur(10px);
}

.gallery-hero-text h1 {
  color: white;
  margin: 0 0 var(--spacing-md) 0;
  font-weight: var(--font-weight-light);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.gallery-location {
  font-size: var(--font-size-sm);
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 var(--spacing-lg) 0;
  font-style: italic;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.gallery-description {
  font-size: var(--font-size-sm);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Gallery Section */
.gallery-section {
  padding: var(--spacing-xl) 0;
}

.gallery-section .gallery-grid {
  /* Masonry layout - display handled by JavaScript */
  max-width: var(--container-max-width);
  margin: 0 auto;
  /* Removed padding - gallery-grid is inside container which already has padding */
  padding: 0;
  width: 100%;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius-lg);
  box-shadow: none;
  transition: transform var(--transition-normal);
  width: 100%;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: none;
}

.gallery-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform var(--transition-normal);
}

.gallery-item:hover .gallery-image {
  transform: scale(1.05);
}

/* Back to Weddings Section */
.back-to-weddings {
  padding: var(--spacing-2xl) 0;
  background: var(--color-background);
  text-align: center;
}

.back-to-weddings .btn {
  display: inline-block;
  padding: var(--spacing-md) var(--spacing-xl);
  background: var(--color-primary);
  color: var(--color-background);
  text-decoration: none;
  border-radius: var(--border-radius);
  transition: background var(--transition-normal);
}

.back-to-weddings .btn:hover {
    background: var(--color-accent);
    text-decoration: none;
    color: var(--color-background);
}

/* Breadcrumb */
.breadcrumb {
  font-size: var(--font-size-xs);
  color: var(--color-text-light);
  margin: var(--spacing-md) 0 0 0;
}

.breadcrumb a {
  color: var(--color-text-light);
  text-decoration: none;
}

.breadcrumb a:hover {
    color: var(--color-primary);
}

/* ===================================
   Page-Specific Styles
   =================================== */

/* About Images - Shared between about.html and index.html */
.about-images {
  position: relative;
  width: 100%;
  height: 400px;
}

.about-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--border-radius-lg);
}

.about-image--primary {
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 55%;
  z-index: 2;
  object-position: center 25%;
}

.about-image--secondary {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 45%;
  z-index: 1;
}

.about-image-single {
  position: absolute;
  left: 50%;
  top: 0;
  width: 60%;
  height: 100%;
  max-height: 600px;
  object-fit: cover;
  object-position: 50% 50%; /* Default: center. Override with inline style if needed */
  border-radius: var(--border-radius-lg);
  transform: translateX(-50%);
}

.grid--2 > div:first-child {
  position: relative;
}

/* Height for about-image-single container */
.grid--2 > div:first-child:has(.about-image-single) {
  min-height: 500px;
  max-height: 600px;
}

@media (min-width: 768px) {
  .grid--2 > div:first-child:has(.about-image-single) {
    min-height: 600px;
  }
}

/* ===================================
   Grid Layout Variants
   Reversed layout for grid--2 (text left, image right on desktop)
   =================================== */

/* Reversed variant: text left, image right (on desktop) */
@media (min-width: 768px) {
  .grid--2--reversed > div:first-child {
    order: 1;
  }
  
  .grid--2--reversed > div:last-child {
    order: 2;
  }
}

/* About Page Image Styles */
.love-story-image {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  border-radius: var(--border-radius-lg);
  display: block;
}

.about-personal-image {
  width: 100%;
  height: auto;
  max-height: 700px;
  object-fit: contain;
  border-radius: var(--border-radius-lg);
  display: block;
}

/* Specific height for love-story-image in reversed layout */
.grid--2--reversed .love-story-image {
  max-height: 750px;
}

/* Video-specific enhancements for love-story-image */
video.love-story-image {
  background-color: var(--color-background); /* Fallback background */
  object-fit: contain; /* Show entire video without cropping */
  height: 750px; /* Increased size for better visibility */
  max-width: 100%;
}

/* For non-reversed layouts */
.grid--2:not(.grid--2--reversed) video.love-story-image {
  height: 700px; /* Increased size for better visibility */
  max-width: 100%;
}

/* Ensure video loads efficiently */
video.love-story-image::-webkit-media-controls {
  display: none !important; /* Hide default controls for autoplay videos */
}

video.love-story-image::-webkit-media-controls-enclosure {
  display: none !important;
}

/* ===================================
   Diagonal Overlapping Images Layout
   Two images positioned diagonally with 10% overlap
   =================================== */

.grid--2--diagonal-images {
  position: relative;
  min-height: 600px;
  max-height: 700px;
  overflow: hidden; /* Prevent images from extending outside container */
}

.grid--2--diagonal-images .diagonal-image {
  position: absolute;
  width: 48%;
  height: auto;
  max-height: 420px;
  object-fit: cover;
  border-radius: var(--border-radius-lg);
  display: block;
  box-shadow: none;
}

.grid--2--diagonal-images .diagonal-image:first-child {
  top: 0;
  left: 0;
  z-index: 2;
}

.grid--2--diagonal-images .diagonal-image:last-child {
  /* Position diagonally with slight overlap - positioned to fit within container */
  top: 35%;
  left: 45%;
  z-index: 1;
}

/* Lovestory Section - Extra bottom padding */
.section--lovestory {
  padding-bottom: var(--spacing-3xl);
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-2xl);
}

.experience-item {
  text-align: center;
  padding: var(--spacing-xl);
  background: var(--color-background-alt);
  border-radius: var(--border-radius-lg);
  box-shadow: none;
}

.experience-number {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-normal);
  color: var(--color-accent);
  margin-bottom: var(--spacing-sm);
  font-family: var(--font-secondary);
}

.experience-label {
  font-size: var(--font-size-lg);
  color: var(--color-text);
  font-weight: var(--font-weight-normal);
  font-family: var(--font-primary);
}

.credentials {
  max-width: 600px;
  margin: 0 auto;
}

.credentials p {
  margin-bottom: var(--spacing-md);
}

/* Removed redundant text styling classes - use standard h1-h6 and p elements instead */

/* Pricing Page Styles */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-xl);
}

/* Pricing Page - Full viewport sections (desktop only) */
main:has(.faq-image-collage) .section {
  min-height: auto;
  margin: 0;
}

/* Add extra spacing after the first section (Wedding) on pricing page */
main:has(.faq-image-collage) .section:has(+ .section--alt) {
  margin-bottom: calc(var(--spacing-xl) * 3);
}

.pricing-card {
  background: var(--color-background-alt);
  border-radius: var(--border-radius-lg);
  padding: 0;
  box-shadow: none;
  position: relative;
  transition: transform var(--transition-normal);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: none;
}

.pricing-card--featured {
  border: 2px solid var(--color-accent);
  transform: scale(1.05);
}

.pricing-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.pricing-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-normal);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-accent);
  color: white;
  padding: var(--spacing-sm) var(--spacing-lg);
  border-radius: var(--border-radius);
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-normal);
  font-family: var(--font-secondary);
}

.pricing-header {
  text-align: center;
  margin-bottom: var(--spacing-md);
  padding: var(--spacing-md) var(--spacing-lg) 0;
}

.pricing-header h3 {
  margin-bottom: var(--spacing-md);
  color: var(--color-primary);
}

.price-text {
  font-family: var(--font-primary);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-normal); 
  color: var(--color-accent);
  margin-bottom: var(--spacing-sm);
  padding: 0 var(--spacing-md);
  line-height: var(--line-height-tight);
}

.addon-price {
  display: none;
}

.pricing-header .price-text {
  margin-bottom: 0;
  padding: 0;
}

.pricing-highlight {
  font-family: var(--font-secondary);
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-normal);
  color: var(--color-accent);
  line-height: var(--line-height-tight);
  margin: var(--spacing-lg) 0;
}

.currency {
  font-family: var(--font-secondary);
  font-size: var(--font-size-lg);
  vertical-align: top;
  line-height: 1.1;
}

.pricing-features {
  margin-bottom: var(--spacing-md);
  padding: 0 var(--spacing-lg);
}

.pricing-features ul {
  list-style: none;
  padding: 0;
}

.pricing-features li {
  padding: var(--spacing-sm) 0;
  border-bottom: 1px solid var(--color-border);
  position: relative;
  padding-left: var(--spacing-lg);
}

.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: var(--font-weight-normal);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-footer {
  text-align: center;
  padding: 0 var(--spacing-lg) var(--spacing-lg);
  margin-top: auto;
}

.addons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-xl);
}

.addons-grid--2x3 {
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, auto);
  max-width: 1200px;
  margin: 0 auto var(--spacing-xl);
}

.addon-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

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

/* Shared card content padding */
.addon-item h4,
.service-item h3,
.service-item p {
  padding: 0 var(--spacing-lg);
}

.addon-item p {
  display: none;
}

.addon-item h4,
.service-item h3 {
  padding-top: var(--spacing-md);
  margin-bottom: var(--spacing-xs);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-xl);
}

/* Lovestories Layout - Images in center with titles on sides */
.lovestories-layout {
  display: grid;
  grid-template-columns: 0.7fr 4fr 0.7fr;
  gap: var(--spacing-xl);
  align-items: center;
  max-width: 1800px;
  margin: 0 auto;
  min-height: calc(100vh - var(--header-height) - var(--spacing-3xl) * 2 - 100px);
}

.lovestories-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}

.lovestories-info--left {
  text-align: right;
  padding-right: 0;
}

.lovestories-info--right {
  text-align: left;
  padding-left: 0;
}

.lovestories-info__title {
  font-size: var(--font-size-xl);
  margin-bottom: var(--spacing-md);
  color: var(--color-primary);
}

.lovestories-info__text {
  color: var(--color-text-light);
  margin-bottom: var(--spacing-lg);
  line-height: 1.6;
}

/* Lovestories Section Buttons - Large, no border, underline on hover */
.lovestories-info .btn {
  font-family: var(--font-secondary);
  font-size: var(--font-size-xl);
  background: transparent;
  border: none;
  padding: var(--spacing-sm) 0;
  color: var(--color-primary);
  text-decoration: none;
  transition: all var(--transition-normal);
  cursor: pointer;
  position: relative;
  white-space: nowrap;
}

.lovestories-info .btn::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--color-primary);
  transition: width var(--transition-normal);
}

.lovestories-info--left .btn::after {
  right: 0;
  left: auto;
}

.lovestories-info--right .btn::after {
  left: 0;
  right: auto;
}

.lovestories-info .btn:hover {
    background: transparent;
    color: var(--color-primary);
    transform: none;
    box-shadow: none;
}

.lovestories-info .btn:hover::after {
    width: 100%;
}

.lovestories-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
  justify-items: center;
  align-items: start;
}

.lovestories-image-link {
  display: block;
  width: 100%;
  cursor: pointer;
  text-decoration: none;
  transition: transform var(--transition-normal);
}

.lovestories-image-link:hover {
  transform: scale(1.02);
}

.lovestories-image {
  width: 100%;
  height: auto;
  max-height: 85vh;
  object-fit: contain;
  display: block;
  transition: transform var(--transition-normal);
}

/* Shared Card Pattern - Base styles for addon-item, service-item */
.addon-item,
.service-item {
  background: var(--color-background-alt);
  padding: 0;
  border-radius: var(--border-radius-lg);
  box-shadow: none;
  text-align: center;
  overflow: hidden;
  transition: transform var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.addon-item:hover {
  transform: translateY(-2px);
  box-shadow: none;
}

.service-item:hover {
  transform: translateY(-4px);
  box-shadow: none;
}

.service-image {
  width: 100%;
  height: 100px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-normal);
}

.service-price {
  font-family: var(--font-primary);
  font-size: var(--font-size-sm); 
  font-weight: var(--font-weight-normal); 
  color: var(--color-accent);
  margin-bottom: var(--spacing-md);
  padding: 0 var(--spacing-md);
  line-height: var(--line-height-tight);
}

.booking-info {
  margin-top: var(--spacing-xl);
}

.booking-item {
  margin-bottom: var(--spacing-xl);
}

.booking-item h3 {
  margin-bottom: var(--spacing-sm);
  color: var(--color-primary);
}

.booking-cta {
  background: var(--color-background-alt);
  padding: var(--spacing-2xl);
  border-radius: var(--border-radius-lg);
  box-shadow: none;
  text-align: center;
}

.booking-cta h3 {
  margin-bottom: var(--spacing-md);
  color: var(--color-primary);
}

.booking-cta p {
  margin-bottom: var(--spacing-lg);
}

.contact-quick {
  margin-top: var(--spacing-xl);
  padding-top: var(--spacing-xl);
  border-top: 1px solid var(--color-border);
}

.contact-quick p {
  margin-bottom: var(--spacing-sm);
}

.contact-quick a {
  color: var(--color-accent);
  text-decoration: none;
}

/* FAQ Page Styles */
.faq-image-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

/* FAQ Image Collage - 3 Portrait Images (2 up, 1 down) - Asymmetric with Parallax */
.faq-image-collage {
  position: relative;
  width: 100%;
  max-width: 900px;
  height: 600px;
  min-height: 450px;
  margin: 0 auto;
}

.faq-image-collage__item {
  position: absolute;
  width: 46%;
  max-width: 380px;
  max-height: 350px;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  border-radius: 0;
  background-color: var(--color-background-alt);
  box-shadow: none;
  will-change: transform;
}

/* Top left image - slightly lower and offset */
.faq-image-collage__item:nth-child(1) {
  top: 8%;
  left: 3%;
  z-index: 3;
}

/* Top right image - higher position, overlapping left more */
.faq-image-collage__item:nth-child(2) {
  top: -2%;
  left: 48%;
  z-index: 2;
}

/* Bottom center image - asymmetric center, overlapping both */
.faq-image-collage__item:nth-child(3) {
  top: 52%;
  left: 22%;
  z-index: 4;
}

.faq-image-collage__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Single Image Fallback (if needed) */
.faq-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: var(--border-radius-lg);
  background-color: var(--color-background-alt);
}

/* Text Column: Headline in row 1 */
.faq-image-overlay {
  background: var(--color-background);
  color: var(--color-primary);
  padding: 0;
  margin: var(--spacing-3xl) 0;
  grid-column: 1;
  grid-row: 1;
}

.section--alt .faq-image-overlay {
  grid-column: 2;
}

.faq-image-overlay h2 {
  margin: 0 0 var(--spacing-xs) 0;
  line-height: 1.2;
}

.faq-image-overlay p {
  margin: 0;
  line-height: 1.4;
}

/* Text Column: FAQ Items in row 2 (zero gap between rows) */
.faq-content {
  padding: 0;
  margin: 0 0;
  grid-column: 1;
  grid-row: 2;
}

.section--alt .faq-content {
  grid-column: 2;
}

/* Center the button inside faq-content */
.faq-content .mt-lg {
  text-align: center;
}

/* Image Column: Spans rows 1-3 with sticky positioning */
.faq-image-section {
  grid-column: 2;
  grid-row: 1 / 4;
  margin: calc(var(--spacing-md) * 2) 0;
  position: sticky;
  top: calc(var(--header-height) + var(--spacing-md));
  align-self: start;
}

.section--alt .faq-image-section {
  grid-column: 1;
}

.faq-list {
  max-width: 100%;
}

.faq-item {
  background: var(--color-background-alt);
  border-radius: var(--border-radius-lg);
  margin-bottom: var(--spacing-xs);
  box-shadow: none;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: var(--spacing-md) var(--spacing-lg);
  background-color: var(--color-background);
  border: none;
  border-bottom: 1px solid var(--color-border);
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-secondary);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-normal);
  color: var(--color-primary);
  transition: background-color var(--transition-fast);
  line-height: var(--line-height-normal);
}

.faq-question:hover {
  background-color: var(--color-background);
}

.faq-answer {
  max-height: 0;
  padding: 0 var(--spacing-lg);
  overflow: hidden;
  background-color: var(--color-background);
}

.faq-question[aria-expanded="true"] + .faq-answer {
  max-height: 800px;
  padding: 0 var(--spacing-lg) var(--spacing-lg);
}

.faq-answer p {
  margin-top: var(--spacing-sm);
  margin-bottom: 0;
}

.faq-icon {
  width: 20px;
  height: 20px;
  position: relative;
  transition: all var(--transition-normal);
  flex-shrink: 0;
  margin-left: var(--spacing-md);
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background-color: var(--color-accent);
  transition: all var(--transition-normal);
}

.faq-icon::before {
  width: 1px;
  height: 100%;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}

.faq-icon::after {
  width: 100%;
  height: 1px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.faq-question[aria-expanded="true"] .faq-icon::before {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}

/* Homepage Styles */
.social-links {
  margin-top: var(--spacing-lg);
}

.social-link {
  display: inline-block;
  margin-right: var(--spacing-md);
  color: rgba(255, 255, 255, 0.8);
  transition: color var(--transition-fast);
}

/* Hero Content Section Styles */
.hero-content {
  padding: var(--spacing-3xl) 0;
  background: var(--color-background);
}

.hero-content__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: var(--spacing-xs) var(--spacing-3xl);
  position: relative;
}

.hero-content__title {
  grid-column: 1 / -1;
  grid-row: 1;
  line-height: var(--line-height-tight);
  margin-bottom: 0;
  padding-right: var(--spacing-xl);
  padding-bottom: var(--spacing-xl);
  color: var(--color-primary);
  text-transform: uppercase;
  font-size: clamp(3.5rem, 4vw + 3rem, 4.5rem); /* Double the h1 size: 56-72px */
  z-index: 2;
  position: relative;
}

.hero-content__text {
  grid-column: 1;
  grid-row: 2;
  padding-right: var(--spacing-xl);
  z-index: 2;
  position: relative;
  align-self: center;
}

.hero-content__gallery {
  grid-column: 2;
  grid-row: 2;
  z-index: 1;
  display: flex;
  align-items: flex-end;
}

.hero-content__description {
  line-height: 1.8;
  margin-bottom: var(--spacing-xl);
  color: var(--color-text);
  text-align: justify;
  text-justify: inter-word;
}

/* Hero Gallery Styles */
.hero-gallery__grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: var(--spacing-md);
  height: 500px;
}

.hero-gallery__item {
  overflow: hidden;
  border-radius: 0;
}

.hero-gallery__item--large {
  grid-row: 1 / 3;
}

.hero-gallery__item--small {
  grid-column: 2;
  grid-row: 1;
}

.hero-gallery__item--medium {
  grid-column: 2;
  grid-row: 2;
}

.hero-gallery__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-normal);
}

.hero-gallery__item:hover .hero-gallery__image {
  transform: scale(1.05);
}

/* Home Banner Section Styles */
.home-banner {
  width: 100%;
  position: relative;
  margin: var(--spacing-3xl) 0;
}

.home-banner__image-container {
  position: relative;
  width: 100%;
  height: 60vh;
  min-height: 400px;
  max-height: 700px;
  overflow: hidden;
}

.home-banner__image {
  width: 100%;
  height: 120%;
  object-fit: cover;
  object-position: center center;
  filter: grayscale(100%) contrast(1.2);
  will-change: transform;
  transform: translateY(-10%);
}

.home-banner__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.2);
}

.home-banner__content {
  text-align: center;
  z-index: 1;
}

.home-banner__title {
  font-family: var(--font-secondary);
  font-size: clamp(1.5rem, 4vw, 3rem);
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: var(--letter-spacing-secondary);
  margin-bottom: var(--spacing-md);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}

.home-banner__subtitle {
  font-family: var(--font-secondary);
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: var(--letter-spacing-secondary);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  margin: 0 auto;
  text-align: center;
}

/* Seen In Section Styles */
.seen-in {
  padding: var(--spacing-3xl) 0;
  margin: var(--spacing-3xl) 0;
  background-color: var(--color-background-alt);
}

.seen-in__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-lg);
}

.seen-in__label {
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-normal);
  color: var(--color-text-light);
  text-transform: uppercase;
  letter-spacing: 2px;
  white-space: nowrap;
  font-family: var(--font-primary);
  margin-bottom: var(--spacing-md);
}

.seen-in__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10rem;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1200px;
}

.seen-in__logo {
  height: 80px;
  width: auto;
  max-width: 200px;
  min-width: 150px;
  object-fit: contain;
  opacity: 1;
  transition: opacity var(--transition-fast);
  filter: none;
  display: block;
  transform: scale(var(--logo-scale, 1));
  transform-origin: center;
}

/* Individual logo scaling - adjust these values to match logo sizes */
.seen-in__logo--vogue {
  --logo-scale: 1.3;
}

.seen-in__logo--tatler {
  --logo-scale: 1.2;
}

.seen-in__logo--vanity {
  --logo-scale: 1.7;
}

.seen-in__logo:hover {
  opacity: 1.0;
}

.service-card {
  text-align: center;
  padding: var(--spacing-xl);
  background: var(--color-background-alt);
  border-radius: var(--border-radius-lg);
  box-shadow: none;
}

.service-icon {
  font-size: var(--font-size-2xl);
  margin-bottom: var(--spacing-lg);
}

.service-card h3 {
  margin-bottom: var(--spacing-md);
  color: var(--color-primary);
}

.service-card p {
  color: var(--color-text-light);
  line-height: 1.6;
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-xl);
}

.tip-item {
  background: var(--color-background-alt);
  padding: var(--spacing-xl);
  border-radius: var(--border-radius-lg);
  box-shadow: none;
}

.tip-item h3 {
  margin-bottom: var(--spacing-md);
  color: var(--color-primary);
}

.tip-item p {
  color: var(--color-text-light);
  line-height: 1.6;
}

/* ===================================
   DEBUG: FAQ Layout Borders
   Remove these after debugging
   =================================== */

/* ===================================
   Print Styles
   =================================== */

@media print {
  .header,
  .footer,
  .btn {
    display: none;
  }
  
  body {
    line-height: 1.4;
    /* font-size inherits from base - no override needed */
  }
  
  .section {
    padding: 1em 0;
  }
}

/* All responsive styles have been moved to responsive.css for better organization and to avoid duplication */