/* Purvis Photo - Custom Styles */
/* Using Tailwind CSS via CDN for the base, this file contains custom brand styles */

:root {
  --color-cream: #F9F7F3;
  --color-charcoal: #1A1A1A;
  --color-warm-gray: #4A4A4A;
  --color-light-gray: #E8E6E3;
  --color-gold: #C9A962;
  --color-gold-light: #D4BA7A;
  --color-rose: #D4A5A5;
}

/* Typography */
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Cormorant Garamond', Georgia, serif;
  background-color: var(--color-cream);
  color: var(--color-charcoal);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.font-sans {
  font-family: 'Lato', 'Helvetica Neue', sans-serif;
}

/* Navigation */
.nav-link {
  position: relative;
  font-size: 0.875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-warm-gray);
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--color-gold);
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 1px;
  bottom: -4px;
  left: 0;
  background-color: var(--color-gold);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(26, 26, 26, 0.3), rgba(26, 26, 26, 0.5));
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: white;
  max-width: 800px;
  padding: 2rem;
}

/* Buttons */
.btn-primary {
  display: inline-block;
  padding: 14px 36px;
  background-color: var(--color-gold);
  color: white;
  font-family: 'Lato', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--color-gold-light);
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-block;
  padding: 12px 32px;
  border: 1px solid var(--color-charcoal);
  color: var(--color-charcoal);
  font-family: 'Lato', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background-color: var(--color-charcoal);
  color: white;
}

/* Section Styles */
.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--color-charcoal);
}

.section-subtitle {
  font-family: 'Lato', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 0.5rem;
}

.section-divider {
  width: 60px;
  height: 1px;
  background-color: var(--color-gold);
  margin: 1.5rem auto;
}

/* Cards */
.service-card {
  background: white;
  padding: 2.5rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.service-card-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--color-charcoal);
}

.service-card-text {
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--color-warm-gray);
}

/* Image Gallery */
.gallery-item {
  overflow: hidden;
  position: relative;
}

.gallery-item img {
  transition: transform 0.5s ease;
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 26, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  background: rgba(26, 26, 26, 0.3);
}

/* Testimonial */
.testimonial-quote {
  font-size: 1.5rem;
  font-style: italic;
  line-height: 1.8;
  color: var(--color-charcoal);
  max-width: 800px;
  margin: 0 auto;
}

.testimonial-quote::before {
  content: '"';
  font-size: 4rem;
  color: var(--color-gold);
  display: block;
  line-height: 1;
  margin-bottom: -1rem;
}

/* Footer */
.footer {
  background-color: var(--color-charcoal);
  color: white;
}

.footer-link {
  color: rgba(255, 255, 255, 0.7);
  font-family: 'Lato', sans-serif;
  font-size: 0.85rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--color-gold);
}

/* Page Content */
.content-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.content-wrapper p {
  font-family: 'Lato', sans-serif;
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--color-warm-gray);
  margin-bottom: 1.5rem;
}

.content-wrapper h2 {
  font-size: 1.75rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: var(--color-charcoal);
}

.content-wrapper h3 {
  font-size: 1.3rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  color: var(--color-charcoal);
}

.content-wrapper a {
  color: var(--color-gold);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.3s ease;
}

.content-wrapper a:hover {
  color: var(--color-charcoal);
}

.content-wrapper ul, .content-wrapper ol {
  font-family: 'Lato', sans-serif;
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.content-wrapper li {
  margin-bottom: 0.5rem;
  line-height: 1.8;
  color: var(--color-warm-gray);
}

.content-wrapper blockquote {
  border-left: 3px solid var(--color-gold);
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-style: italic;
}

/* FAQ Styles */
.faq-item {
  border-bottom: 1px solid var(--color-light-gray);
  padding: 1.5rem 0;
}

.faq-question {
  font-weight: 600;
  color: var(--color-charcoal);
  margin-bottom: 0.75rem;
}

/* Mobile Navigation */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-cream);
  z-index: 100;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

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

.mobile-menu-toggle {
  display: none;
  cursor: pointer;
  z-index: 101;
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }

  .desktop-nav {
    display: none;
  }

  .hero-section {
    min-height: 60vh;
  }

  .section-title {
    font-size: 2rem;
  }

  .testimonial-quote {
    font-size: 1.2rem;
  }
}

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

.animate-fade-in {
  animation: fadeIn 0.8s ease forwards;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}
