/* Creative Pixel Photo Studio - Brand Styles */
:root {
  --gold: #D59E0E;
  --gold-light: #F3E079;
  --burgundy: #950000;
  --dark: #2C2C2C;
  --light: #F7F7F7;
  --green: #37ca37;
  --cream: #FDF8ED;
  --tan: #D59E0E;
  --gray: #f4f4f4;
  --text: #333333;
  --text-light: #666666;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.12);
  --transition: all 0.3s ease;
}

/* Brand Fonts */
@font-face {
  font-family: 'Glacial Indifference';
  src: url('/fonts/GlacialIndifference-Bold.otf') format('opentype');
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: 'Glacial Indifference';
  src: url('/fonts/GlacialIndifference-Regular.otf') format('opentype');
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'Gotham';
  src: url('/fonts/GOTHAM-BOLD.TTF') format('truetype');
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: 'Gotham';
  src: url('/fonts/Gotham-Book.otf') format('opentype');
  font-weight: 400;
  font-display: swap;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Open Sans', sans-serif;
  color: var(--text);
  background: var(--light);
  line-height: 1.6;
}

h1, h2, h3, h4, h5 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border: none;
  border-radius: var(--radius);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary {
  background: var(--burgundy);
  color: #fff;
}
.btn-primary:hover {
  background: #7a0000;
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-outline {
  background: transparent;
  color: var(--burgundy);
  border: 2px solid var(--burgundy);
}
.btn-outline:hover {
  background: var(--burgundy);
  color: #fff;
}

.btn-sm { padding: 10px 24px; font-size: 0.9rem; }

/* ── Navbar ── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  padding: 16px 0;
  transition: var(--transition);
}

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

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

.logo-img {
  height: 44px;
  width: auto;
}

.navbar-brand .logo-text {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--dark);
}

.navbar-brand .logo-text span {
  color: var(--burgundy);
}

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

.nav-links a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text);
  transition: var(--transition);
}

.nav-links a:hover { color: var(--burgundy); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--dark);
  transition: var(--transition);
}

/* ── Hero ── */
.hero {
  padding: 160px 0 100px;
  background: linear-gradient(135deg, var(--cream) 0%, var(--light) 50%, #f8f4ef 100%);
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(138,32,44,0.06) 0%, transparent 70%);
  border-radius: 50%;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content { position: relative; z-index: 1; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(149,0,0,0.08);
  color: var(--burgundy);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: 3.5rem;
  color: var(--dark);
  margin-bottom: 20px;
}

.hero h1 .accent { color: var(--burgundy); }

.hero p {
  font-size: 1.15rem;
  color: var(--text-light);
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-visual {
  position: relative;
  z-index: 1;
}

.hero-visual .photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.hero-visual .photo-card {
  background: var(--tan);
  border-radius: var(--radius);
  aspect-ratio: 3/4;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  text-align: center;
  padding: 0;
}

.hero-visual .photo-card img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-visual .photo-card .photo-label {
  position: relative;
  z-index: 1;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  padding: 8px 16px;
  width: 100%;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.hero-visual .photo-card:nth-child(2) { margin-top: 40px; }
.hero-visual .photo-card:nth-child(3) { margin-top: -40px; }

/* ── Section Shared ── */
.section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 2.5rem;
  color: var(--dark);
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

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

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

.service-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 0;
  border: 1px solid rgba(0,0,0,0.06);
  transition: var(--transition);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}

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

.service-img {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.service-card:hover .service-img img {
  transform: scale(1.05);
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 1.05rem;
  margin: 16px 20px 8px;
  color: var(--dark);
}

.service-card p {
  font-size: 0.85rem;
  color: var(--text-light);
  margin: 0 20px 20px;
  line-height: 1.5;
}

/* ── Packages ── */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}

.package-card {
  background: #fff;
  border-radius: var(--radius);
  border: 2px solid rgba(0,0,0,0.06);
  overflow: hidden;
  transition: var(--transition);
}

.package-card:hover {
  border-color: var(--burgundy);
  box-shadow: var(--shadow-lg);
}

.package-card.featured {
  border-color: var(--burgundy);
  position: relative;
}

.package-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: 16px;
  right: -32px;
  background: var(--burgundy);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 40px;
  transform: rotate(45deg);
  z-index: 2;
}

.package-img {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.package-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.package-card:hover .package-img img {
  transform: scale(1.05);
}

.footer-logo {
  height: 48px;
  width: auto;
  filter: brightness(0) invert(1);
}

.package-header {
  padding: 32px 28px 24px;
  text-align: center;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.package-header h3 {
  font-size: 1.3rem;
  color: var(--dark);
  margin-bottom: 8px;
}

.package-price {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--burgundy);
}

.package-price small {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-light);
}

.package-body {
  padding: 28px;
}

.package-body ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.package-body li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text);
}

.package-body li::before {
  content: '\2713';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
}

.package-body .btn { width: 100%; justify-content: center; }

/* ── How It Works ── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}

.step {
  text-align: center;
  position: relative;
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--burgundy);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.step h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--dark);
}

.step p {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* ── Testimonials ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.testimonial-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid rgba(0,0,0,0.06);
}

.testimonial-stars {
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 16px;
}

.testimonial-card blockquote {
  font-size: 0.95rem;
  color: var(--text);
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.7;
}

.testimonial-author {
  font-weight: 600;
  color: var(--dark);
  font-size: 0.9rem;
}

/* ── CTA Banner ── */
.cta-banner {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--burgundy), #c41a1a);
  color: #fff;
  text-align: center;
}

.cta-banner h2 {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.cta-banner p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner .btn {
  background: #fff;
  color: var(--burgundy);
}
.cta-banner .btn:hover {
  background: var(--cream);
  transform: translateY(-2px);
}

/* ── Footer ── */
.footer {
  background: var(--dark);
  color: #fff;
  padding: 60px 0 30px;
}

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

.footer-brand p {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  margin-top: 12px;
  max-width: 300px;
}

.footer h4 {
  font-size: 1rem;
  margin-bottom: 20px;
  color: #fff;
}

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

.footer ul a {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer ul a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
}

.footer-socials {
  display: flex;
  gap: 16px;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-socials a:hover { background: var(--burgundy); }

/* ── Booking Page ── */
.page-header {
  padding: 140px 0 60px;
  background: linear-gradient(135deg, var(--cream) 0%, var(--light) 100%);
  text-align: center;
}

.page-header h1 {
  font-size: 2.5rem;
  color: var(--dark);
  margin-bottom: 12px;
}

.page-header p {
  font-size: 1.1rem;
  color: var(--text-light);
}

.booking-section {
  padding: 60px 0 100px;
}

.booking-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 48px;
  align-items: start;
}

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

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 8px;
  color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid rgba(0,0,0,0.1);
  border-radius: 8px;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.95rem;
  transition: var(--transition);
  background: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--burgundy);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.package-selector {
  display: grid;
  gap: 12px;
  margin-bottom: 24px;
}

.package-option {
  border: 2px solid rgba(0,0,0,0.1);
  border-radius: var(--radius);
  padding: 20px;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
}

.package-option:hover { border-color: var(--tan); }
.package-option.selected { border-color: var(--burgundy); background: rgba(149,0,0,0.03); }

.package-option input[type="radio"] { display: none; }

.package-option .pkg-name {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--dark);
}

.package-option .pkg-price {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: var(--burgundy);
  font-size: 1.2rem;
}

.package-option .pkg-desc {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 4px;
}

/* ── Order Summary Sidebar ── */
.order-summary {
  background: #fff;
  border: 2px solid rgba(0,0,0,0.06);
  border-radius: var(--radius);
  padding: 32px;
  position: sticky;
  top: 100px;
}

.order-summary h3 {
  font-size: 1.2rem;
  color: var(--dark);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  font-size: 0.9rem;
}

.summary-row.total {
  border-top: 2px solid rgba(0,0,0,0.06);
  margin-top: 12px;
  padding-top: 16px;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--dark);
}

.summary-row.total .amount {
  color: var(--burgundy);
  font-size: 1.3rem;
}

.payment-methods {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.payment-methods p {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 8px;
}

.payment-icons {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.payment-icons span {
  padding: 4px 12px;
  background: var(--gray);
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-light);
}

/* ── Success Page ── */
.success-section {
  padding: 160px 0 100px;
  text-align: center;
}

.success-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(55,202,55,0.1);
  color: var(--green);
  font-size: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.success-section h1 {
  font-size: 2rem;
  color: var(--dark);
  margin-bottom: 12px;
}

.success-section p {
  color: var(--text-light);
  max-width: 500px;
  margin: 0 auto 32px;
}

/* ── Loading & Alerts ── */
.loading {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px;
}

.spinner {
  width: 20px;
  height: 20px;
  border: 3px solid rgba(0,0,0,0.1);
  border-top-color: var(--burgundy);
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

.alert {
  padding: 14px 20px;
  border-radius: 8px;
  font-size: 0.9rem;
  margin-bottom: 20px;
  display: none;
}

.alert-error { background: #fef2f2; color: #dc2626; border: 1px solid #fecaca; }
.alert-success { background: #f0fdf4; color: #16a34a; border: 1px solid #bbf7d0; }

/* ── Responsive ── */
@media (max-width: 968px) {
  .hero .container { grid-template-columns: 1fr; text-align: center; }
  .hero p { margin: 0 auto 36px; }
  .hero-actions { justify-content: center; }
  .hero-visual { display: none; }
  .hero h1 { font-size: 2.5rem; }
  .booking-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .packages-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    padding: 24px;
    box-shadow: var(--shadow);
  }
  .hero { padding: 120px 0 60px; }
  .hero h1 { font-size: 2rem; }
  .section { padding: 60px 0; }
  .section-header h2 { font-size: 1.8rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; }
}

/* ── Category Tabs ── */
.category-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.cat-tab {
  padding: 10px 20px;
  border: 2px solid rgba(0,0,0,0.1);
  border-radius: 50px;
  background: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text);
  cursor: pointer;
  transition: var(--transition);
}

.cat-tab:hover { border-color: var(--tan); }

.cat-tab.active {
  background: var(--burgundy);
  color: #fff;
  border-color: var(--burgundy);
}

.pkg-price small {
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--text-light);
}
