/* CustoDrop Landing Page Styles */

:root {
  /* Brand Colors */
  --custodrop-white: #f4f2f1;
  --custodrop-black: #2b2b2b;
  --custodrop-grey: #686868;
  --custodrop-orange: #e6560c;
  --custodrop-green: #8ec29b;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Lato', sans-serif;
  line-height: 1.6;
  color: var(--custodrop-black);
  background-color: var(--custodrop-white);
  font-size: 16px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  color: var(--custodrop-black);
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
}

h2 {
  font-size: 2rem;
  font-weight: 700;
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
}

p {
  margin-bottom: 1rem;
  font-family: 'Lato', sans-serif;
}

a {
  color: var(--custodrop-black);
  text-decoration: none;
}

/* Container and Layout */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.container-narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.header {
  padding: 1.5rem 0;
  background-color: var(--custodrop-white);
  border-bottom: 1px solid rgba(43, 43, 43, 0.1);
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--custodrop-black);
}

/* Hero Section */
.hero {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 0;
  text-align: center;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero-subheadline {
  font-size: 1.25rem;
  color: var(--custodrop-black);
  opacity: 0.8;
  margin: 4.5rem 0;
  line-height: 1.6;
}

.cta-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.cta-container p {
  margin-bottom: 0;
}

.btn-primary {
  display: inline-block;
  background-color: var(--custodrop-green);
  color: var(--custodrop-black);
  padding: 1rem 2.5rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1.125rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-family: 'Lato', sans-serif;
}

.btn-primary:hover {
  background-color: #7ab089;
  transform: translateY(-2px);
}

.cta-note {
  font-size: 0.875rem;
  color: var(--custodrop-grey);
}

/* Section Base Styles */
section {
  padding: 4rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-alt {
  background-color: rgba(43, 43, 43, 0.03);
}

/* Problem Section */
.problem-list {
  list-style: none;
  margin: 2rem 0;
}

.problem-list li {
  padding: 1rem 0;
  font-size: 1.125rem;
  position: relative;
  padding-left: 2rem;
  display: flex;
  align-items: center;
}

.problem-list strong {
  margin-right: 0.5rem;
}

.problem-list li:before {
  content: "×";
  position: absolute;
  left: 0;
  color: var(--custodrop-orange);
  font-size: 1.5rem;
  font-weight: 700;
}

.problem-list li.good-path:before {
  content: "✓";
  color: var(--custodrop-green);
}

.problem-list li.has-sublist {
  display: block;
}

.problem-sublist {
  list-style: none;
  margin: 0.75rem 0 0;
  padding-left: 0.25rem;
}

.problem-sublist li {
  font-size: 1rem;
  color: var(--custodrop-grey);
  padding: 0.4rem 0 0.4rem 1rem;
  align-items: flex-start;
}

.problem-sublist li:before {
  content: "-";
  color: var(--custodrop-grey);
  font-size: 1rem;
  left: 0;
  top: 0.4rem;
}

.problem-quote {
  background-color: rgba(142, 194, 155, 0.1);
  border-left: 4px solid var(--custodrop-green);
  padding: 1.5rem;
  margin: 2rem 0;
  font-style: italic;
  font-size: 1.125rem;
}

.problem-aftermath {
  text-align: center;
  margin-top: 2rem;
}

.problem-aftermath p {
  font-size: 1.125rem;
  font-weight: 600;
}

/* Solution Section */
.solution-intro {
  text-align: center;
  font-size: 1.125rem;
  margin-bottom: 2rem;
  color: var(--custodrop-grey);
}

.solution-list {
  list-style: none;
  margin: 2rem 0;
}

.solution-list li {
  padding: 1rem 0;
  font-size: 1.125rem;
  position: relative;
  padding-left: 2rem;
}

.solution-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--custodrop-green);
  font-size: 1.5rem;
  font-weight: 700;
}

.solution-conclusion {
  text-align: center;
  margin-top: 2rem;
  font-size: 1.25rem;
  font-weight: 600;
}

.solution-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    align-items: center;
}

.solution-grid .ui-hint-window {
  height: 520px;
}

.center-content {
    display: flex;
    justify-content: center;
    margin: 2rem 0;
}

/* Benefits Section */
.benefits {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-top: 3rem;
  text-align: center;
}

.benefit h3 {
  margin-bottom: 1rem;
}

.benefit ul {
  list-style: none;
  margin: 1rem 0;
}

.benefit ul li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--custodrop-grey);
  font-style: italic;
}

.benefit ul li:before {
  content: "";
  position: absolute;
  left: 0;
  color: var(--custodrop-grey);
}

/* Expiry Section */
.expiry-content,
.expiry-title {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.expiry-features {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.expiry-feature {
  background-color: rgba(142, 194, 155, 0.15);
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-size: 0.875rem;
}

/* Comparison Section */
.comparison-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.comparison-content h2 {
  margin-bottom: 1.5rem;
}

.comparison-answer {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 1.5rem 0;
}

/* Social Proof Section */
.testimonial {
  background-color: rgba(142, 194, 155, 0.1);
  border-left: 4px solid var(--custodrop-green);
  padding: 2rem;
  margin: 2rem auto;
  max-width: 700px;
  font-style: italic;
  font-size: 1.125rem;
}

.testimonial-author {
  margin-top: 1rem;
  font-style: normal;
  font-weight: 600;
  color: var(--custodrop-grey);
  font-size: 0.875rem;
}

/* Final CTA Section */
.final-cta {
  text-align: center;
  padding: 5rem 0;
}

.final-cta h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.final-cta p {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  opacity: 0.8;
}

.final-cta-note {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: var(--custodrop-grey);
}

/* Footer */
.footer {
  background-color: rgba(43, 43, 43, 0.05);
  padding: 2rem 0;
  text-align: center;
  font-size: 0.875rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--custodrop-black);
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.footer-links a:hover {
  opacity: 1;
}

.footer-contact {
  color: var(--custodrop-grey);
  margin-top: 1rem;
}

.footer-contact a {
  color: var(--custodrop-black);
  font-weight: 600;
}

/* Responsive Design */
@media (min-width: 768px) {
  .hero h1 {
    font-size: 3.5rem;
  }

  .solution-grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

  /* Reset margin for grid item */
  .solution-grid .ui-hint-wrapper {
        margin: 0 auto; /* Center in the column */
  }

  .steps-list .ui-hint-wrapper {
        margin: 0;
        margin-left: auto;
  }

  .how-it-works-grid {
    grid-template-columns: 1.2fr 0.8fr; /* More space for text */
  }

  .benefits {
    grid-template-columns: repeat(3, 1fr);
  }

  .cta-container {
    flex-direction: row;
    justify-content: center;
  }
}

@media (max-width: 767px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .hero h1 {
    font-size: 2.25rem;
  }

  .hero-subheadline {
    font-size: 1.125rem;
  }

  section {
    padding: 3rem 0;
  }

  .final-cta {
    padding: 3rem 0;
  }

  .final-cta h2 {
    font-size: 2rem;
  }
}

/* UI Hints / Visual Peeks */
.ui-hint-wrapper {
  margin: 2rem auto;
  text-align: center;
  max-width: 320px;
}

.ui-hint-wrapper.small {
  margin: 1rem 0;
  max-width: 280px;
}

.ui-hint-window {
  width: 100%;
  height: 200px; /* Peek height */
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  border: 4px solid #fff;
  background-color: #e5e5e5;
  position: relative;
}

.ui-hint-window img {
  width: 100%;
  height: 100%;
  object-fit: cover; 
  transition: transform 0.3s ease;
}

.ui-hint-caption {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  color: var(--custodrop-grey);
  font-style: italic;
}

/* Specific Crops - Adjust percentages to focus on right parts */
.crop-save-button img {
  object-position: center 62%;
}

.crop-saving img {
  object-position: center bottom;
}

.crop-expiry img {
  object-position: center 58%;
}

/* Header layout */
.header .container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

/* Photographer Workflow Section */
.workflow-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3rem;
  text-align: center;
}

.workflow-step h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.workflow-step p {
  opacity: 0.9;
}

.step-badge {
    display: inline-block;
    background: var(--custodrop-black);
    color: #fff;
    padding: 0.2rem 0.8rem;
    border-radius: 99px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .workflow-steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Pricing Card */
.pricing-card {
  max-width: 400px;
  margin: 0 auto;
  background: var(--custodrop-white);
  border: 2px solid rgba(43, 43, 43, 0.1);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.pricing-free {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--custodrop-black);
  margin-bottom: 1.5rem;
}

.pricing-divider {
  width: 40px;
  height: 2px;
  background: rgba(43, 43, 43, 0.15);
  margin: 0 auto 1rem;
}

.pricing-then {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--custodrop-grey);
  margin-bottom: 0.25rem;
}

.pricing-amount {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--custodrop-black);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.pricing-period {
  font-family: 'Lato', sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--custodrop-grey);
}

.pricing-features {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
}

.pricing-features li {
  padding: 0.5rem 0;
  font-size: 1rem;
  color: var(--custodrop-black);
  position: relative;
  padding-left: 1.75rem;
  text-align: left;
}

.pricing-features li:before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--custodrop-green);
  font-weight: 700;
  font-size: 1.125rem;
}

.pricing-card .btn-primary {
  width: 100%;
}

/* Founding Members Section */
.founding-section {
  text-align: center;
  padding: 1rem 0;
}

.founding-icon {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.founding-text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--custodrop-black);
  opacity: 0.85;
}

.founding-cta {
  margin-top: 0.5rem;
  font-size: 0.95rem;
  color: var(--custodrop-grey);
}

.founding-cta a {
  color: var(--custodrop-black);
  font-weight: 600;
  border-bottom: 1px solid rgba(43, 43, 43, 0.3);
  transition: border-color 0.3s ease;
}

.founding-cta a:hover {
  border-color: var(--custodrop-black);
}

/* Blog Links Section */
.blog-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.blog-links li {
  border-bottom: 1px solid rgba(43, 43, 43, 0.08);
}

.blog-links li:last-child {
  border-bottom: none;
}

.blog-links a {
  display: block;
  padding: 1.25rem 0;
  transition: opacity 0.2s ease;
}

.blog-links a:hover {
  opacity: 0.7;
}

.blog-link-title {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--custodrop-black);
}

.blog-link-desc {
  display: block;
  font-size: 0.9375rem;
  color: var(--custodrop-grey);
  line-height: 1.5;
}
