/* ============================================
   PRAGUE PHOTOSHOOT - PAGE-SPECIFIC STYLESHEET
   ============================================
   Common styles (fonts, nav, footer) in common.css
   This file contains only photoshoot-specific styles
   ============================================ */

/* ============================================
   HEADER / HERO SECTION (page-specific)
   ============================================ */
header {
  background: url('../../media/gallery/photoshoot/photoshoot-header.webp') center calc(50% + 120px) / cover no-repeat;
}

/* ============================================
   PAGE-SPECIFIC SECTIONS
   ============================================ */

/* ============================================
   ABOUT SECTION - Enhanced styling
   ============================================ */
.about {
  padding-top: 40px;
}

/* Section subtitles */
section h2 {
  position: relative;
  display: inline-block;
  margin-bottom: 24px;
}

/* Decorative line under h2 */
section > h2::after {
  content: '';
  display: block;
  width: 70px;
  height: 1px;
  background: var(--color-text-darker);
  margin-top: 15px;
}

/* About Me specific styling */
section:has(> h2:first-child) p {
  font-size: 1.15em;
  color: var(--color-text-dark);
  margin-bottom: 24px;
}

/* ============================================
   ABOUT ME SECTION - Two column layout
   ============================================ */
.about-me {
  padding-top: 40px;
  padding-bottom: 40px;
}

.about-me-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  align-items: start;
  max-width: 1000px;
}

.about-me-text {
  padding-right: 20px;
}

.about-me-text h2 {
  margin-bottom: 30px;
}

.about-me-text h2::after {
  content: '';
  display: block;
  width: 70px;
  height: 1px;
  background: var(--color-text-darker);
  margin-top: 15px;
}

.about-me-text p {
  font-size: 1.15em;
  color: var(--color-text-dark);
  margin-bottom: 24px;
  line-height: 1.5em;
}

/* About Me image with decorative background */
.about-me-image {
  position: relative;
  margin-top: 75px;
}

.about-me-image .img-wrapper {
  position: relative;
  max-width: 320px;
}

.about-me-image img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  transition: transform 0.5s ease;
}

.about-me-image img:hover {
  transform: scale(0.97);
}

/* Responsive - stack on mobile */
@media (max-width: 800px) {
  .about {
    padding-top: 24px;
  }

  .about-me {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .about-me-content {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .about-me-text {
    padding-right: 0;
  }

  .about-me-text h2 {
    margin-bottom: 20px;
  }

  .about-me-text p {
    font-size: 1.15em;
    margin-bottom: 18px;
  }

  .about-me-image {
    margin-top: 0;
  }

  .about-me-image .img-wrapper {
    max-width: 240px;
    margin: 0 auto;
  }

  section h2 {
    margin-bottom: 18px;
  }

  .highlight-box li {
    margin-bottom: 10px;
  }
}

/* ============================================
   WHO IT'S FOR SECTION
   ============================================ */
.who-its-for {
  padding-top: 40px;
  padding-bottom: 40px;
}

.who-its-for h2 {
  display: block;
  width: 100%;
  text-align: center;
}

.who-its-for h2::after {
  margin-left: auto;
  margin-right: auto;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.audience-item {
  background: var(--color-bg-alt);
  border-radius: 12px;
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

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

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

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

.audience-text {
  padding: 20px;
}

.audience-item h3 {
  font-size: 1.1em;
  margin-bottom: 10px;
  color: var(--color-text);
  font-weight: 600;
}

.audience-item p {
  font-size: 0.95em;
  color: var(--color-text-dark);
  line-height: 1.6;
  font-weight: 300;
  margin: 0;
}

@media (max-width: 768px) {
  .who-its-for {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .audience-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .audience-image {
    height: 180px;
  }

  .audience-text {
    padding: 16px;
  }

  .audience-item h3 {
    font-size: 1.05em;
    margin-bottom: 8px;
  }

  .audience-item p {
    font-size: 0.9em;
  }
}

/* ============================================
   HIGHLIGHT BOX
   ============================================ */
.highlight-box {
  padding: 0;
  margin-top: 20px;
}

.highlight-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.highlight-box li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 14px;
  font-weight: 300;
  line-height: 1.5em;
}

.highlight-box li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  background: var(--color-brand);
  border-radius: 50%;
}

/* Section lists (What's Included etc.) */
section > ul {
  list-style: none;
  padding: 0;
}

section > ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-weight: 300;
}

section > ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  background: var(--color-brand);
  border-radius: 50%;
}

/* ============================================
   PORTFOLIO SECTION
   ============================================ */
.portfolio-section {
  padding-top: 40px;
  padding-bottom: 40px;
}

.portfolio-section h2 {
  display: block;
  width: 100%;
  text-align: center;
}

.portfolio-section h2::after {
  margin-left: auto;
  margin-right: auto;
}

.section-intro {
  text-align: center;
  color: var(--color-muted);
  font-size: 1.1em;
  margin-bottom: 30px;
  font-weight: 300;
}

/* ============================================
   MASONRY GRID - CSS Grid Layout
   ============================================ */
.masonry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 8px;
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
}

.masonry-item {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.masonry-item:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

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

/* Placeholder images for development */
.placeholder-image {
  width: 100%;
  aspect-ratio: 2/3;
  background: linear-gradient(135deg, var(--color-bg-alt) 0%, var(--color-bg-cta) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed var(--border);
  transition: all 0.3s ease;
}

.placeholder-image.ratio-3-4 {
  aspect-ratio: 3/4;
}

.placeholder-image span {
  color: var(--color-muted);
  font-size: 1em;
  font-weight: 500;
}

.masonry-item:hover .placeholder-image {
  background: linear-gradient(135deg, var(--color-bg-cta) 0%, var(--color-bg-alt) 100%);
  border-color: var(--color-brand-light);
}

/* ============================================
   LIGHTBOX
   ============================================ */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 4px;
}

.lightbox-content .placeholder-image.lightbox-image {
  width: 60vw;
  height: 70vh;
  max-width: 800px;
  border-radius: 8px;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: white;
  font-size: 40px;
  cursor: pointer;
  opacity: 0.8;
  transition: opacity 0.2s ease;
  line-height: 1;
  padding: 0;
}

.lightbox-close:hover {
  opacity: 1;
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: none;
  color: white;
  font-size: 28px;
  cursor: pointer;
  padding: 16px 20px;
  border-radius: 8px;
  opacity: 0.8;
  transition: all 0.2s ease;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  opacity: 1;
  background: rgba(255,255,255,0.2);
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

.lightbox-counter {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  font-weight: 500;
}

/* Responsive masonry */
@media (max-width: 900px) {
  .masonry-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .masonry-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .masonry-item {
    border-radius: 8px;
  }

  .portfolio-section {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .lightbox-prev,
  .lightbox-next {
    padding: 12px 14px;
    font-size: 22px;
  }

  .lightbox-prev {
    left: 10px;
  }

  .lightbox-next {
    right: 10px;
  }

  .lightbox-close {
    top: 12px;
    right: 16px;
    font-size: 32px;
  }
}

/* ============================================
   HOW IT WORKS SECTION
   ============================================ */
.how-it-works {
  padding-top: 50px;
  padding-bottom: 50px;
}

.how-it-works h2 {
  display: block;
  width: 100%;
  text-align: center;
}

.how-it-works h2::after {
  margin-left: auto;
  margin-right: auto;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.step {
  text-align: center;
  padding: 20px;
}

.step-number {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--color-brand), var(--color-brand-dark));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(var(--color-brand-rgb), 0.3);
}

.step h3 {
  font-size: 1.15em;
  margin-bottom: 12px;
  color: var(--color-text);
  font-weight: 600;
}

.step p {
  font-size: 0.95em;
  color: var(--color-text-dark);
  line-height: 1.6;
  font-weight: 300;
}

@media (max-width: 900px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 480px) {
  .how-it-works {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .step {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 16px;
    text-align: left;
    padding: 16px;
    background: var(--color-bg-alt);
    border-radius: 12px;
  }

  .step-number {
    width: 48px;
    height: 48px;
    margin: 0;
    font-size: 20px;
    grid-row: span 2;
    align-self: center;
  }

  .step h3 {
    margin-bottom: 4px;
    align-self: end;
  }

  .step p {
    align-self: start;
  }
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  background: var(--color-bg-cta);
  text-align: center;
  padding: 50px 20px;
  margin-bottom: 40px;
}

.cta-section p {
  font-weight: 300;
}

.cta-section h2::after {
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   PRICING CARDS - 3 Card Layout
   ============================================ */
.cta-section .section-subtitle {
  text-align: center;
  color: var(--color-muted);
  font-size: 1.15em;
  margin-top: -10px;
  margin-bottom: 40px;
}

.pricing-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin: 40px auto;
  max-width: 700px;
}

.pricing-options.three-cards {
  max-width: 1000px;
  grid-template-columns: repeat(3, 1fr);
}

.price-card {
  position: relative;
  border: 2px solid var(--border);
  padding: 32px 24px;
  text-align: left;
  border-radius: 16px;
  background: var(--color-bg);
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
}

.price-card.popular {
  border-color: var(--color-brand-light);
  border-width: 2px;
  box-shadow: 0 8px 24px rgba(var(--color-brand-light-rgb), 0.15);
  transform: scale(1.02);
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--color-brand), var(--color-brand-dark));
  color: white;
  padding: 6px 20px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(var(--color-brand-rgb), 0.35);
}

.card-header {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.price-card h3 {
  margin: 0 0 16px;
  font-size: 24px;
  letter-spacing: 0.02em;
  font-weight: 700;
  color: var(--color-text);
}

.price-wrapper {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.price-card .price {
  font-size: 42px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--color-primary);
}

.price-card .duration {
  font-size: 16px;
  color: var(--color-muted);
  font-weight: 500;
}

.features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-text);
}

.features svg {
  flex-shrink: 0;
  margin-top: 2px;
}

/* CTA Buttons */
.book-btn {
  display: block;
  width: 100%;
  margin-top: auto;
  padding: 14px 24px;
  text-align: center;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  border-radius: 10px;
  transition: all 0.2s ease;
  background: var(--color-bg);
  color: var(--color-text);
  border: 2px solid var(--border-strong);
}

.book-btn:hover {
  background: var(--color-bg-alt);
  border-color: var(--color-brand-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.book-btn-primary {
  background: linear-gradient(135deg, var(--color-brand), var(--color-brand-dark));
  color: white;
  border-color: transparent;
  box-shadow: 0 4px 12px rgba(var(--color-brand-rgb), 0.3);
}

.book-btn-primary:hover {
  background: linear-gradient(135deg, #C27A1C, #A56409);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(var(--color-brand-rgb), 0.4);
}

/* ============================================
   ADD-ONS SECTION
   ============================================ */
.addons-section {
  margin-top: 40px;
  padding: 28px;
  background: var(--color-bg);
  border-radius: 12px;
  border: 1px solid var(--border);
}

.addons-section h3 {
  text-align: center;
  font-size: 1.2em;
  margin-bottom: 20px;
  color: var(--color-text);
  font-weight: 600;
}

.addons-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 500px;
  margin: 0 auto;
}

.addon-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  background: var(--color-bg-alt);
  border-radius: 10px;
  border: 1px solid var(--border);
}

.addon-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}

.addon-name {
  font-weight: 500;
  color: var(--color-text);
  font-size: 1em;
}

.addon-desc {
  font-size: 0.85em;
  color: var(--color-muted);
  font-weight: 300;
}

.addon-price {
  font-weight: 600;
  color: var(--color-brand);
  font-size: 1em;
  white-space: nowrap;
  margin-left: 16px;
  min-width: 110px;
  text-align: right;
}

@media (max-width: 768px) {
  .addons-section {
    padding: 20px 16px;
    margin: 28px auto 0;
    max-width: 400px;
  }

  .addons-section h3 {
    font-size: 1.1em;
    margin-bottom: 16px;
  }

  .addon-item {
    padding: 12px 14px;
  }

  .addon-name {
    font-size: 0.95em;
  }

  .addon-desc {
    font-size: 0.8em;
  }

  .addon-price {
    font-size: 0.95em;
  }
}

@media (max-width: 480px) {
  .addons-section {
    padding: 18px 14px;
  }

  .addon-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
  }

  .addon-price {
    margin-left: 0;
    text-align: center;
  }
}

.booking-info {
  margin-top: 40px;
  padding: 24px;
  background: var(--color-bg-alt);
  border-radius: 12px;
  text-align: center;
}

.booking-info p {
  margin: 12px 0;
  font-size: 1em;
  line-height: 1.6;
}

.ready-text {
  text-align: center;
  font-size: 1.2em;
  margin-top: 40px;
  font-weight: 500;
}

/* Contact CTA Button */
.contact-cta-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 16px 48px;
  background: linear-gradient(135deg, var(--color-brand), var(--color-brand-dark));
  color: white;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: 600;
  border-radius: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(var(--color-brand-rgb), 0.35);
}

.contact-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(var(--color-brand-rgb), 0.5);
  background: linear-gradient(135deg, #C27A1C, #A56409);
}

/* Responsive pricing */
@media (max-width: 900px) {
  .pricing-options.three-cards {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .price-card.popular {
    transform: none;
  }
}

@media (max-width: 768px) {
  .cta-section {
    padding: 36px 16px;
    margin-bottom: 30px;
  }

  .cta-section .section-subtitle {
    margin-bottom: 28px;
  }

  .pricing-options {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 100%;
    margin: 28px auto;
  }

  .price-card {
    padding: 20px 18px;
  }

  .card-header {
    margin-bottom: 18px;
    padding-bottom: 18px;
  }

  .price-card h3 {
    font-size: 19px;
    margin-bottom: 12px;
  }

  .price-card .price {
    font-size: 34px;
  }

  .price-card .duration {
    font-size: 15px;
  }

  .features {
    gap: 10px;
    margin-bottom: 18px;
  }

  .features li {
    gap: 10px;
    font-size: 15px;
  }

  .booking-info {
    padding: 18px;
    margin-top: 28px;
  }

  .booking-info p {
    margin: 10px 0;
  }

  .book-btn {
    padding: 12px 18px;
    font-size: 14px;
  }

  .ready-text {
    font-size: 1.1em;
    margin-top: 28px;
  }

  .contact-cta-btn {
    padding: 14px 36px;
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .cta-section {
    padding: 28px 14px;
    margin-bottom: 24px;
  }

  .pricing-options {
    gap: 16px;
    margin: 24px auto;
  }

  .price-card {
    padding: 18px 16px;
  }

  .card-header {
    margin-bottom: 16px;
    padding-bottom: 16px;
  }

  .price-card h3 {
    font-size: 18px;
  }

  .price-card .price {
    font-size: 30px;
  }

  .booking-info {
    padding: 16px;
  }
}

/* ============================================
   INSTAGRAM SECTION
   ============================================ */
#instagram {
  padding: 40px 20px;
  text-align: center;
}

#instagram h2::after {
  margin-left: auto;
  margin-right: auto;
}

#instagram p {
  font-weight: 300;
  color: var(--color-text-dark);
  max-width: 600px;
  margin: 0 auto 24px;
}

.instagram-link {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #e4405f;
  transition: all 0.3s ease;
}

.instagram-link:hover {
  opacity: 0.8;
  transform: scale(1.05);
}

.instagram-icon {
  margin-bottom: 8px;
}

.instagram-icon i {
  font-size: 50px;
}

.instagram-link span {
  font-size: 1.1em;
  font-weight: 500;
}

/* ============================================
   FAQ SECTION
   ============================================ */

#faq {
  color: var(--text);
}

#faq .faq-header {
  margin-bottom: 14px;
}

#faq h2 {
  text-align: center;
}

#faq .sub {
  opacity: .75;
  margin: 0 0 8px;
  text-align: left;
}

#faq .faq-list {
  display: grid;
  gap: 10px;
}

#faq details {
  background: var(--color-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

#faq summary {
  list-style: none;
  cursor: pointer;
  padding: 14px 16px;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-text-darker);
}

#faq summary::marker {
  display: none;
}

#faq summary:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

#faq summary::after {
  content: '+';
  margin-left: auto;
  border: 1px solid var(--border-strong);
  width: 24px;
  height: 24px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

#faq details[open] summary::after {
  content: '–';
}

#faq .answer {
  padding: 0 16px 14px;
  line-height: 1.5em;
  color: var(--color-text-dark);
  font-weight: 300;
}

@media (max-width: 768px) {
  #faq summary {
    padding: 12px 14px;
    font-size: 1.18em;
  }

  #faq .answer {
    padding: 0 14px 12px;
    font-size: 1.18em;
  }
}

/* ============================================
   RESPONSIVE DESIGN - MOBILE HEADER
   ============================================ */

@media (max-width: 768px) {
  header {
    background: url('../../media/gallery/photoshoot/photoshoot-header.webp') center 50% / cover;
  }
}

/* Reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  .contact-cta-btn,
  .instagram-link,
  .book-btn,
  .placeholder-image {
    transition: none;
  }
}
