/* ============================================
   GUARDSMAN® — Premium Shoe Services
   Color Palette:
     Background: #000000
     Gold:        #C9A84C (primary accent)
     Gold Light:  #E2C878
     Gold Dark:   #A07E2E
     White:       #FFFFFF (titles)
     Off-white:   #F5F0E8 (body text)
   ============================================ */

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  background-color: #000;
  color: #F5F0E8;
  line-height: 1.7;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', 'Georgia', serif;
  color: #FFFFFF;
  font-weight: 700;
  letter-spacing: 0.02em;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

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

ul {
  list-style: none;
}

/* ---------- Utility ---------- */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.gold-text {
  color: #C9A84C;
}

.section-padding {
  padding: 80px 0;
}

/* ---------- Gold Divider ---------- */
.gold-divider {
  width: 120px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #C9A84C, transparent);
  margin: 20px auto;
}

.gold-divider-left {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, #C9A84C, transparent);
  margin: 15px 0;
}

/* ---------- Crown Icon (image) — 1.5× base sizes ---------- */
.crown-icon {
  display: inline-block;
  width: 54px;
  height: 54px;
  object-fit: contain;
  vertical-align: middle;
}

.crown-icon-sm {
  width: 36px;
  height: 36px;
}

.crown-icon-lg {
  width: 90px;
  height: 90px;
}

.crown-icon-xl {
  width: 135px;
  height: 135px;
}

/* ---------- Navigation ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.3);
  transition: background 0.3s ease;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-brand .crown-icon {
  width: 48px;
  height: 48px;
}

.nav-brand-text {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-links a {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #F5F0E8;
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: #C9A84C;
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: #C9A84C;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a.active {
  color: #C9A84C;
}

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

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #C9A84C;
  transition: all 0.3s ease;
}

.nav-hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ---------- Hero Section ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 20px 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(201, 168, 76, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero-crown {
  margin-bottom: 30px;
  animation: fadeInDown 1s ease;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 8px;
  animation: fadeInUp 1s ease 0.2s both;
}

.hero-registered {
  font-size: 0.5em;
  vertical-align: super;
  color: #C9A84C;
}

.hero-tagline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: #C9A84C;
  font-style: italic;
  letter-spacing: 0.08em;
  margin-bottom: 30px;
  animation: fadeInUp 1s ease 0.4s both;
}

.hero-description {
  font-size: 1rem;
  color: rgba(245, 240, 232, 0.7);
  max-width: 550px;
  margin: 0 auto 40px;
  line-height: 1.8;
  animation: fadeInUp 1s ease 0.6s both;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 14px 40px;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1px solid #C9A84C;
  cursor: pointer;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: #C9A84C;
  color: #000;
}

.btn-primary:hover {
  background: #E2C878;
  border-color: #E2C878;
  box-shadow: 0 0 30px rgba(201, 168, 76, 0.3);
}

.btn-outline {
  background: transparent;
  color: #C9A84C;
}

.btn-outline:hover {
  background: #C9A84C;
  color: #000;
}

.btn-group {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease 0.8s both;
}

/* ---------- Section Header ---------- */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header .crown-icon {
  margin-bottom: 16px;
}

.section-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.section-header p {
  color: rgba(245, 240, 232, 0.6);
  font-size: 0.95rem;
  max-width: 500px;
  margin: 0 auto;
}

/* ---------- Services Grid (Home) ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-card {
  border: 1px solid rgba(201, 168, 76, 0.25);
  padding: 40px 30px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  background: rgba(201, 168, 76, 0.02);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #C9A84C, transparent);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.service-card:hover {
  border-color: rgba(201, 168, 76, 0.5);
  background: rgba(201, 168, 76, 0.05);
  transform: translateY(-4px);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card .crown-icon {
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.service-card p {
  color: rgba(245, 240, 232, 0.6);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ---------- Placeholder Image Area ---------- */
.placeholder-area {
  border: 1px dashed rgba(201, 168, 76, 0.3);
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(201, 168, 76, 0.4);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 40px 0;
}

/* ---------- Homepage Images ---------- */
.homepage-image-block {
  margin: 40px 0;
  border: 1px solid rgba(201, 168, 76, 0.25);
  overflow: hidden;
}

.homepage-image {
  width: 100%;
  max-width: 900px;
  height: auto;
  max-height: 480px;
  object-fit: cover;
  display: block;
  margin: 0 auto;
}

/* ---------- Testimonial / Quote ---------- */
.quote-section {
  text-align: center;
  padding: 80px 20px;
  border-top: 1px solid rgba(201, 168, 76, 0.15);
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}

.quote-text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-style: italic;
  color: #FFFFFF;
  max-width: 700px;
  margin: 0 auto 20px;
  line-height: 1.6;
}

.quote-author {
  color: #C9A84C;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ---------- Shop Page ---------- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.product-card {
  border: 1px solid rgba(201, 168, 76, 0.25);
  transition: all 0.4s ease;
  background: rgba(201, 168, 76, 0.02);
  overflow: hidden;
}

.product-card:hover {
  border-color: rgba(201, 168, 76, 0.5);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.product-image {
  width: 100%;
  height: 320px;
  background: rgba(201, 168, 76, 0.04);
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(201, 168, 76, 0.3);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-info {
  padding: 24px;
}

.product-info h3 {
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}

.product-info .price {
  color: #C9A84C;
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.product-info p {
  color: rgba(245, 240, 232, 0.5);
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.product-info .btn {
  width: 100%;
  text-align: center;
  padding: 12px 20px;
  font-size: 0.75rem;
}

/* Shop Category Filter */
.shop-filter {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.filter-btn {
  background: transparent;
  border: 1px solid rgba(201, 168, 76, 0.3);
  color: #F5F0E8;
  padding: 10px 28px;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background: #C9A84C;
  border-color: #C9A84C;
  color: #000;
}

/* Shop coming soon message */
.shop-coming-soon {
  text-align: center;
  padding: 80px 20px;
  border: 1px solid rgba(201, 168, 76, 0.25);
  background: rgba(201, 168, 76, 0.02);
}

.shop-coming-soon p {
  margin: 0;
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.6);
}

/* ---------- Booking Page ---------- */
.booking-form {
  max-width: 600px;
  margin: 0 auto;
  border: 1px solid rgba(201, 168, 76, 0.25);
  padding: 50px 40px;
  background: rgba(201, 168, 76, 0.02);
}

.form-group {
  margin-bottom: 28px;
}

.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #C9A84C;
  margin-bottom: 10px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 168, 76, 0.3);
  color: #F5F0E8;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  transition: border-color 0.3s ease;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #C9A84C;
  box-shadow: 0 0 0 1px rgba(201, 168, 76, 0.2);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C9A84C' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  cursor: pointer;
}

.form-group select option {
  background: #111;
  color: #F5F0E8;
}

.booking-form .btn {
  width: 100%;
  text-align: center;
  margin-top: 10px;
  padding: 16px;
}

/* Form hint text */
.form-hint {
  display: block;
  margin-top: 8px;
  font-size: 0.75rem;
  color: rgba(201, 168, 76, 0.6);
  font-style: italic;
}

/* Conditional dropdown slide-in */
.form-conditional {
  display: none;
  overflow: hidden;
  margin-bottom: 0;
}

.form-conditional.show-field {
  display: block;
  margin-bottom: 28px;
  animation: slideDown 0.35s ease forwards;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Photo upload area */
.photo-upload-area {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.photo-upload-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1px solid rgba(201, 168, 76, 0.3);
  color: #C9A84C;
  padding: 10px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.photo-upload-btn:hover {
  background: rgba(201, 168, 76, 0.1);
  border-color: #C9A84C;
}

.photo-previews {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.photo-preview {
  position: relative;
  width: 60px;
  height: 60px;
  border: 1px solid rgba(201, 168, 76, 0.3);
  overflow: hidden;
}

.photo-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-preview-remove {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 18px;
  height: 18px;
  background: rgba(0, 0, 0, 0.8);
  border: 1px solid rgba(201, 168, 76, 0.5);
  color: #C9A84C;
  font-size: 11px;
  line-height: 16px;
  text-align: center;
  cursor: pointer;
  padding: 0;
}

.photo-preview-remove:hover {
  background: #C9A84C;
  color: #000;
}

/* Booking Info Sidebar */
.booking-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.booking-info {
  padding: 40px 0;
}

.booking-info h3 {
  font-size: 1.56rem;
  margin-bottom: 20px;
  letter-spacing: 0.06em;
}

.booking-info p {
  color: rgba(245, 240, 232, 0.6);
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 24px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.info-item .crown-icon {
  flex-shrink: 0;
  margin-top: 2px;
}

.info-item-text h4 {
  font-size: 0.95rem;
  margin-bottom: 4px;
  letter-spacing: 0.04em;
}

.info-item-text p {
  margin-bottom: 0;
  font-size: 0.85rem;
}

/* Booking page: services list (left column) */
.booking-info .services-subhead {
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  color: #C9A84C;
  margin-top: 28px;
  margin-bottom: 12px;
}

.booking-info .services-subhead:first-of-type {
  margin-top: 0;
}

.service-tier {
  margin-bottom: 24px;
}

.service-tier h5 {
  font-size: 1.14rem;
  letter-spacing: 0.04em;
  color: #FFFFFF;
  margin-bottom: 8px;
}

.service-tier p {
  margin-bottom: 8px;
  font-size: 0.88rem;
  line-height: 1.7;
}

.service-price {
  color: #C9A84C;
  font-weight: 600;
  margin-top: 4px;
  margin-bottom: 0;
}

.booking-info-box {
  margin-top: 32px;
  padding: 20px;
  border: 1px solid rgba(201, 168, 76, 0.3);
  background: rgba(201, 168, 76, 0.04);
}

.booking-info-box p {
  margin-bottom: 12px;
  font-size: 0.82rem;
  line-height: 1.7;
  color: rgba(245, 240, 232, 0.7);
}

.booking-info-box p:last-child {
  margin-bottom: 0;
}

.booking-contact-box h5 {
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  color: #C9A84C;
  margin-bottom: 12px;
}

.booking-contact-box a {
  color: #F5F0E8;
  transition: color 0.2s ease;
}

.booking-contact-box a:hover {
  color: #C9A84C;
}

/* ---------- Footer ---------- */
.site-footer {
  margin-top: auto;
  border-top: 1px solid rgba(201, 168, 76, 0.2);
  padding: 50px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #fff;
}

.footer-brand p {
  color: rgba(245, 240, 232, 0.4);
  font-size: 0.82rem;
  line-height: 1.7;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #C9A84C;
  margin-bottom: 16px;
}

.footer-links a {
  display: block;
  color: rgba(245, 240, 232, 0.5);
  font-size: 0.85rem;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #C9A84C;
}

.footer-contact p {
  color: rgba(245, 240, 232, 0.5);
  font-size: 0.85rem;
  margin-bottom: 8px;
}

.footer-contact a {
  color: rgba(245, 240, 232, 0.7);
  transition: color 0.2s ease;
}

.footer-contact a:hover {
  color: #C9A84C;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(201, 168, 76, 0.1);
  color: rgba(245, 240, 232, 0.3);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
}

/* ---------- Page Header (inner pages) ---------- */
.page-header {
  padding: 160px 20px 80px;
  text-align: center;
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
  position: relative;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center top, rgba(201, 168, 76, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.page-header h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 16px;
  margin-bottom: 8px;
}

.page-header p {
  color: rgba(245, 240, 232, 0.6);
  font-size: 0.95rem;
}

/* ---------- Animations ---------- */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

/* Fade in on scroll */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(0, 0, 0, 0.97);
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    transition: right 0.4s ease;
    border-left: 1px solid rgba(201, 168, 76, 0.2);
  }

  .nav-links.open {
    right: 0;
  }

  .nav-hamburger {
    display: flex;
  }

  .hero {
    padding: 140px 20px 60px;
    min-height: auto;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .booking-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .booking-form {
    padding: 30px 20px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .btn-group {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    letter-spacing: 0.1em;
  }

  .section-padding {
    padding: 50px 0;
  }
}
