/* FFS70 Landing Page Styles */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600&family=Inter:wght@300;400;500&display=swap');

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

.landing-page {
  min-height: 100vh;
  background-color: #faf9f7;
  font-family: 'Inter', system-ui, sans-serif;
  color: #2a2520;
  line-height: 1.6;
}

/* Typography */
.font-display {
  font-family: 'Cormorant Garamond', Georgia, serif;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem;
}

@media (min-width: 768px) {
  .hero {
    padding: 3rem;
  }
}

@media (min-width: 1024px) {
  .hero {
    padding: 6rem;
  }
}

.hero-background {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(250, 249, 247, 0.8),
    rgba(250, 249, 247, 0.6),
    rgba(250, 249, 247, 1)
  );
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 56rem;
}

.hero-tag {
  color: #4a7c59;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}


.hero-title {
	display: inline-block;
	background: transparent url(../img/FFS70-logo.svg) center center / 100% auto no-repeat;
	border: none;
	width: 37.5rem;
	max-width: 100%;
	height: 10rem;
	text-indent: -1000%;
	overflow: hidden;
	filter: invert(0);
	transform: translateX(-1rem);
}


@media (min-width: 768px) {
	.hero-title {
		font-size: 4.5rem;
	}
}

@media (min-width: 1024px) {
	.hero-title {
		font-size: 6rem;
		transform: translateX(-2rem);
	}
}

.hero-subtitle {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.5rem;
  color: rgba(42, 37, 32, 0.8);
  margin-bottom: 2rem;
  line-height: 1.4;
}

@media (min-width: 768px) {
  .hero-subtitle {
    font-size: 1.875rem;
  }
}

@media (min-width: 1024px) {
  .hero-subtitle {
    font-size: 2.25rem;
  }
}

.hero-description {
  color: #6b6560;
  font-size: 1.125rem;
  margin-bottom: 3rem;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  font-weight: 500;
  letter-spacing: 0.025em;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  border-radius: 3rem;
  font-size: 1rem;
}

.btn-primary {
  background-color: #4a7c59;
  color: #faf9f7;
}

.btn-primary:hover {
  background-color: #3d6a4a;
}

.btn-secondary {
  background-color: transparent;
  color: #2a2520;
  border: 1px solid rgba(42, 37, 32, 0.2);
}

.btn-secondary:hover {
  background-color: rgba(42, 37, 32, 0.05);
}

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

.scroll-indicator svg {
  width: 1.5rem;
  height: 1.5rem;
  color: #6b6560;
}

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

/* Benefits Section */
.benefits {
  padding: 6rem 2rem;
  background-color: rgba(240, 238, 234, 0.5);
}

@media (min-width: 768px) {
  .benefits {
    padding: 6rem 3rem;
  }
}

@media (min-width: 1024px) {
  .benefits {
    padding: 6rem;
  }
}

.benefits-container {
  max-width: 72rem;
  margin: 0 auto;
}

.section-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.875rem;
  text-align: center;
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.25rem;
  }
}

.benefits-grid {
  display: grid;
  gap: 3rem;
}

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

.benefit-card {
  text-align: center;
}

.benefit-icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(74, 124, 89, 0.3);
  border-radius: 50%;
}

.benefit-icon svg {
  width: 2rem;
  height: 2rem;
  color: #4a7c59;
}

.benefit-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.benefit-description {
  color: #6b6560;
  line-height: 1.7;
}

/* Gallery Section */
.gallery {
  padding: 6rem 2rem;
}

@media (min-width: 768px) {
  .gallery {
    padding: 6rem 3rem;
  }
}

@media (min-width: 1024px) {
  .gallery {
    padding: 6rem;
  }
}

.gallery-container {
  max-width: 80rem;
  margin: 0 auto;
}

.gallery-grid {
  display: grid;
  gap: 1rem;
}

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

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

.gallery-item {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

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

@media (min-width: 768px) and (max-width: 1023px) {
  .gallery-item:last-child {
    grid-column: span 2;
  }
}

/* CTA Section */
.cta {
  padding: 6rem 2rem;
  background-color: #4a7c59;
  color: #faf9f7;
}

@media (min-width: 768px) {
  .cta {
    padding: 6rem 3rem;
  }
}

@media (min-width: 1024px) {
  .cta {
    padding: 6rem;
  }
}

.cta-container {
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
}

.cta-tag {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.875rem;
  opacity: 0.8;
  margin-bottom: 1rem;
}

.cta-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.875rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .cta-title {
    font-size: 3rem;
  }
}

.cta-description {
  font-size: 1.125rem;
  opacity: 0.8;
  margin-bottom: 3rem;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

@media (min-width: 640px) {
  .cta-buttons {
    flex-direction: row;
  }
}

.btn-cta-primary {
  background-color: #faf9f7;
  color: #4a7c59;
}

.btn-cta-primary:hover {
  background-color: rgba(250, 249, 247, 0.9);
}

.btn-cta-secondary {
  background-color: transparent;
  color: #faf9f7;
  border: 1px solid rgba(250, 249, 247, 0.3);
}

.btn-cta-secondary:hover {
  background-color: rgba(250, 249, 247, 0.1);
}

/* Footer */
.footer {
  padding: 3rem 2rem;
  border-top: 1px solid #e8e6e2;
}

@media (min-width: 768px) {
  .footer {
    padding: 3rem;
  }
}

@media (min-width: 1024px) {
  .footer {
    padding: 3rem 6rem;
  }
}

.footer-container {
  max-width: 72rem;
  margin: 0 auto;
  text-align: center;
}

.footer-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.footer-title a {
  color: inherit;
  text-decoration: none;
}

.footer-subtitle {
  color: #6b6560;
  font-size: 0.875rem;
}




.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 1.5rem;
}

.footer-links a {
  color: #6b6560;
  font-size: 0.875rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

/* Legal Pages */
.legal-page {
  max-width: 48rem;
  margin: 0 auto;
  padding: 4rem 2rem 6rem;
}

@media (min-width: 768px) {
  .legal-page {
    padding: 6rem 3rem 8rem;
  }
}

.legal-back {
  display: inline-block;
  color: #4a7c59;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 3rem;
  transition: opacity 0.3s ease;
}

.legal-back:hover {
  opacity: 0.7;
}

.legal-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .legal-title {
    font-size: 3rem;
  }
}

.legal-content {
  line-height: 1.8;
}

.legal-page section {
  margin-bottom: 2.5rem;
}

.legal-page section h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #2a2520;
}

.legal-page section h3 {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  margin-top: 1.5rem;
  color: #2a2520;
}

.legal-page section p {
  color: #6b6560;
  margin-bottom: 1rem;
}

.legal-page section a {
  color: #6b6560;
  text-decoration: none;
  transition: color 0.3s ease;
	&:hover {
	  color: #4a7c59;
	}
}

