/* Yahweh's Delight - Main Stylesheet */

/* CSS Variables (Color Palette) */
:root {
  --nude: #e4c9b6;
  --dusty-rose: #d7a49a;
  --sage: #b8d4c8;
  --cream: #faf8f3;
  --charcoal: #2d2d2d;

  --background: var(--cream);
  --foreground: var(--charcoal);
  --primary: var(--dusty-rose);
  --secondary: var(--sage);
  --accent: var(--nude);
  --border: #e8e0d5;
  --radius: 0.625rem;
}

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Playfair+Display:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bodoni+Moda:ital,opsz,wght@0,6..96,400..900;1,6..96,400..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bodoni+Moda:ital,opsz,wght@0,6..96,400..900;1,6..96,400..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');


@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');


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

html {
  background: linear-gradient(135deg, #faf8f3 0%, #fcf6f0 50%, #f5ede4 100%);
  min-height: 100vh;
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--foreground);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  letter-spacing: 0.025em;
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 2rem;
}

p {
  line-height: 1.75;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Utility Classes */
.container-custom {
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 1rem;
}

.section-padding {
  padding: 5rem 1rem;
}

/* Header Styles */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--background);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
  --logo-bg: #faf8f3;
}

header.scrolled {
  background: rgba(184, 212, 200, 0.8);
  backdrop-filter: blur(12px);
  padding: 0rem 0;
  --logo-bg: #b8d4c8;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0rem 1rem;
  transition: all 0.3s ease;
}

header.scrolled .header-content {
  padding: 0rem 1rem;
}

.logo {
  transition: all 0.3s ease;
}

.logo-svg {
  width: 120px;
  height: 120px;
  transition: all 0.3s ease;
  display: block;
}

nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

nav a {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  color: #3d3d3d;
  transition: color 0.3s;
}

nav a:hover {
  color: var(--primary);
}

.btn-primary {
  padding: 1rem 2rem;
  background: var(--primary);
  color: var(--background);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1.125rem;
  border-radius: 9999px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  transition: background 0.3s;
  text-align: center;
}

.btn-primary:hover {
  background: rgba(215, 164, 154, 0.9);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-nav {
  display: none;
  padding: 2rem 1rem 1rem;
  border-top: 1px solid var(--border);
}

.mobile-nav.active {
  display: block;
}

.mobile-nav a {
  display: block;
  padding: 0.5rem 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--foreground);
  transition: color 0.3s;
}

.mobile-nav a:hover {
  color: var(--primary);
}

/* Hero Section */
.hero-section {
  position: relative;
  padding: 3rem 1rem;
  overflow: hidden;
  background: linear-gradient(135deg, #f8f4ef 0%, #f4ebe3 50%, #f0e3d8 100%);
}

.hero-gradient-1 {
  position: absolute;
  top: 0;
  right: 0;
  width: 24rem;
  height: 24rem;
  background: rgba(184, 212, 200, 0.15);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
}

.hero-gradient-2 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24rem;
  height: 24rem;
  background: rgba(215, 164, 154, 0.15);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
}

.hero-gradient-3 {
  position: absolute;
  top: 33%;
  left: 25%;
  width: 16rem;
  height: 16rem;
  background: rgba(215, 164, 154, 0.08);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
}

.hero-dots {
  position: absolute;
  width: 0.75rem;
  height: 0.75rem;
  background: var(--sage);
  border-radius: 50%;
  opacity: 0.5;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 48rem;
}

.hero-content h2 {
  font-family: 'Bodoni Moda', serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  letter-spacing: -0.025em;
}

.hero-content h2 .text-primary {
  color: var(--primary);
}

.hero-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.125rem;
  color: rgba(45, 45, 45, 0.8);
  line-height: 1.625;
  margin-bottom: 1rem;
}

.hero-scripture {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.875rem;
  color: rgba(45, 45, 45, 0.6);
  font-style: italic;
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
  transition: background-color 150ms ease-in-out,
  transform 150ms ease-in-out;
}

.hero-buttons a:hover{
  transform: scale(1.05);
}

.hero-buttons a:active {
  transform: scale(0.95);
}

.btn-secondary {
  padding: 1rem 2rem;
  border: 2px solid var(--sage);
  color: var(--sage);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1.125rem;
  border-radius: 9999px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
  text-align: center;
}

.btn-secondary:hover {
  background: rgba(215, 164, 154, 0.1);
}

.hero-image-container {
  position: relative;
  height: 24rem;
  min-height: 24rem;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  animation: floatImage 4s ease-in-out infinite;
}

@keyframes floatImage {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.hero-image-frame {
  position: absolute;
  inset: -1rem;
  border: 2px solid rgba(184, 212, 200, 0.3);
  border-radius: 1rem;
}

.hero-image-blur-br {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 6rem;
  height: 6rem;
  background: rgba(184, 212, 200, 0.3);
  border-radius: 50%;
  filter: blur(2rem);
  pointer-events: none;
}

.hero-image-blur-tl {
  position: absolute;
  top: -1.5rem;
  left: -1.5rem;
  width: 8rem;
  height: 8rem;
  background: rgba(184, 212, 200, 0.25);
  border-radius: 50%;
  filter: blur(2rem);
  pointer-events: none;
}


/* About Section */
.about-section {
  background: var(--background);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  padding: 2.5rem 0;
}

.about-image-container {
  position: relative;
}

.about-image {
  width: 100%;
  height: auto;
  border-radius: 1rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.about-image-border {
  position: absolute;
  inset: 0;
  border: 2px solid rgba(184, 212, 200, 0.4);
  border-radius: 1rem;
}

.about-content h2 {
  margin-bottom: 1rem;
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.about-content .text-primary {
  color: var(--primary);
}

.title-underline {
  width: 4rem;
  height: 0.25rem;
  background: var(--sage);
  border-radius: 9999px;
  margin-bottom: 1.5rem;
}

.about-content p {
  font-size: 1rem;
  color: rgba(45, 45, 45, 0.8);
  margin-bottom: 1rem;
}

.founder-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  padding: 3rem 0;
  margin-top: 3rem;
}

.founder-card {
  background: rgba(184, 212, 200, 0.15);
  border: 2px solid rgba(184, 212, 200, 0.3);
  border-radius: 1rem;
  padding: 2rem 2.5rem;
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

}

.founder-card h3 {
  font-size: 1.875rem;
  margin-bottom: 1.5rem;
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}


.founder-title {
  font-size: 1.25rem;
  color: rgba(45, 45, 45, 0.8);
  margin-bottom: 1.5rem;
}

.founder-quote {
  margin-top: 1.5rem;
  padding: 1rem;
  background: rgba(184, 212, 200, 0.3);
  border-radius: 0.5rem;
  border-left: 4px solid var(--secondary);
}

.founder-quote p {
  font-size: 0.875rem;
  font-weight: 500;
  font-style: italic;
  font-size: 14px;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
}

/* Products Section */
.products-section {
  background: rgba(184, 212, 200, 0.1);
}

.section-header {
  text-align: center;
  margin-bottom: 2rem;
}

.section-header h2 {
  margin-bottom: 0rem;
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

}

.section-header h2 .text-primary {
  color: var(--primary);
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

}

.section-header p {
  font-size: 1.125rem;
  color: rgba(45, 45, 45, 0.7);
  max-width: 48rem;
  margin: 0 auto;
}

.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 4rem;
}

.product-card {
  background: var(--background);
  border-radius: 0.75rem;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.3s;
}

.product-card:hover {
  border-color: var(--sage);
  box-shadow: 0 10px 25px rgba(184, 212, 200, 0.2);
}

.product-image {
  width: 100%;
  height: 18rem;
  object-fit: cover;
}

.product-content {
  height: 14rem;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  padding: 1.5rem;
}

.product-icon {
  color: var(--primary);
  margin-bottom: 1rem;
}

.product-content h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.product-content p {
  color: rgba(45, 45, 45, 0.7);
  font-size: 0.875rem;
}

.products-footer {
  background: linear-gradient(to right, rgba(184, 212, 200, 0.15), rgba(184, 212, 200, 0.25));
  border-radius: 1rem;
  padding: 3rem 2rem;
  text-align: center;
  border: 2px solid rgba(184, 212, 200, 0.4);
  margin-top: 4rem;
}

.products-footer h3 {
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

}

/* Flavours Section */
.flavours-section {
  background: rgba(184, 212, 200, 0.1);
}


.flavour-category {
  margin-bottom: 3rem;
}

.category-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
  font-weight: 600;
}

.category-badge.nude {
  background: rgba(228, 201, 182, 0.4);
}

.category-badge.primary {
  background: rgba(215, 164, 154, 0.3);
}

.category-badge.sage {
  background: rgba(184, 212, 200, 0.4);
}

.flavours-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.flavour-card {
  background: var(--background);
  border-radius: 0.75rem;
  padding: 1.5rem;
  border: 2px solid rgba(184, 212, 200, 0.3);
  transition: all 0.3s;
  height: 100%;
}

.flavour-card:hover {
  border-color: var(--sage);
  box-shadow: 0 10px 25px rgba(184, 212, 200, 0.2);
}

.flavour-card h4 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

}

.flavour-card p {
  font-size: 0.875rem;
  color: rgba(45, 45, 45, 0.7);
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

}

.flavours-footer {
  margin-top: 2rem;
  text-align: center;
}

.flavours-footer p {
  color: rgba(45, 45, 45, 0.6);
  font-size: 0.875rem;
  font-style: italic;
}


/* Order Form Section */
.order-section {
  background: var(--background);
}

.order-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.contact-info-card {
  background: rgba(184, 212, 200, 0.15);
  border-radius: 0.75rem;
  padding: 1.5rem;
  border: 2px solid rgba(184, 212, 200, 0.4);
  margin-bottom: 1.5rem;
}

.contact-info-card h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.contact-item {
  margin-bottom: 1rem;
}

.contact-label {
  font-size: 0.875rem;
  color: rgba(45, 45, 45, 0.6);
  margin-bottom: 0.25rem;
}

.contact-value {
  color: var(--primary);
  font-weight: 600;
}

.contact-value:hover {
  text-decoration: underline;
}

.response-time-card {
  background: rgba(184, 212, 200, 0.25);
  border-radius: 0.75rem;
  padding: 1.5rem;
  border: 2px solid rgba(184, 212, 200, 0.5);
}

.response-time-card h3 {
  margin-bottom: 0.75rem;
}

.response-time-card p {
  font-size: 0.875rem;
  color: rgba(45, 45, 45, 0.8);
}

.order-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 1rem;
  margin-bottom: 0.25rem;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem 1rem;
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s;
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(45, 45, 45, 0.4);
}

.radio-group {
  display: flex;
  gap: 2.5rem;
  margin-top: 0.5rem;
}

.radio-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.form-submit {
  width: 100%;
  padding: 1rem 2rem;
  background: var(--primary);
  color: var(--background);
  font-weight: 600;
  border-radius: 0.75rem;
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: background 0.3s;
  font-size: 1rem;
}

.form-submit:hover {
  background: rgba(215, 164, 154, 0.9);
}

.form-success {
  padding: 1rem;
  background: rgba(184, 212, 200, 0.25);
  border: 2px solid var(--sage);
  border-radius: 0.5rem;
  text-align: center;
}


.flex-col {
    display: flex;
    flex-direction: column;
}

.label {
    font-size: 1rem;
    padding-bottom: 0.25rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    color: var(--foreground);
}

.description {
    font-size: 0.875rem;
    color: var(--foreground-60);
    margin-bottom: 0.5rem;
    font-family: 'Montserrat', sans-serif;
}

.hidden {
    display: none !important;
}

/* Image Preview Styles */
.image-preview-container {
    position: relative;
    display: inline-block;
}

.preview-image {
    width: 100%;
    max-width: 320px;
    height: 192px;
    object-fit: cover;
    border-radius: 0.5rem;
    border: 2px solid var(--sage-light);
}

.remove-btn {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background-color: var(--red);
    color: white;
    border: none;
    border-radius: 9999px;
    padding: 0.5rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.remove-btn:hover {
    background-color: var(--red-hover);
}

.icon {
    width: 1.25rem;
    height: 1.25rem;
}

/* Upload Label Styles */
.upload-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 192px;
    border: 2px dashed var(--sage-border);
    border-radius: 0.5rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border: 2px #b8d4c8 dotted;
}

.upload-label:hover {
    background-color: var(--sage-lighter);
}

.upload-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 1.25rem;
    padding-bottom: 1.5rem;
}

.upload-icon {
    width: 2.5rem;
    height: 2.5rem;
    margin-bottom: 0.75rem;
    color: var(--sage);
}

.upload-text {
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    font-family: 'Montserrat', sans-serif;
    color: var(--foreground-70);
}

.font-semibold {
    font-weight: 600;
}

.upload-hint {
    font-size: 0.75rem;
    font-family: 'Montserrat', sans-serif;
    color: var(--foreground-50);
}



input[type="file"].hidden {
    display: none;
}

/* Responsive adjustments */
@media (max-width: 640px) {
    .preview-image {
        max-width: 100%;
    }
}



/* Gallery Section */
.gallery-section {
  background: #f3f4ee;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 0.75rem;
  background: var(--background);
  border: 2px solid rgba(184, 212, 200, 0.3);
  transition: all 0.3s;
  height: 20rem;
  cursor: pointer;
}

.gallery-item:hover {
  border-color: var(--sage);
  box-shadow: 0 10px 25px rgba(184, 212, 200, 0.2);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.5rem;
}

.gallery-cta {
  margin-top: 3rem;
  text-align: center;
}

.gallery-cta p {
  color: rgba(45, 45, 45, 0.7);
  margin-bottom: 1rem;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 100;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  border-radius: 0.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

/* Reviews Section */
.reviews-section {
  background: var(--background);
}

.embla {
  overflow: hidden;
  cursor: grab;
  margin-bottom: 1rem;
}

.embla:active {
  cursor: grabbing;
}

.embla__container {
  display: flex;
  transition: height 0.2s;
}

.embla__slide {
  flex: 0 0 100%;
  min-width: 0;
  padding: 1.5rem 0;
  user-select: none;
}

.review-content {
  display: flex;
  flex-direction: column;
  max-width: 91.67%;
  margin: 0 auto;
}

.review-comment {
  text-align: center;
  padding-bottom: 0.5rem;
  font-weight: 400;
  font-size: 1.5rem;
  color: #115e59;
}

.review-author {
  text-align: center;
  font-size: 1.125rem;
  font-weight: 700;
}

/* Reviews Responsive */
@media (min-width: 768px) {
  .review-content {
    max-width: 58.33%;
  }
}

/* Footer */
footer {
  background: var(--foreground);
  color: var(--background);
  padding: 3.5rem 1rem;
  --logo-bg: #2d2d2d;
}

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

.footer-section img {
  margin-top: 40px;
}

@media (max-width: 768px) {
  .footer-section img {
    margin-top: 0px;
  }
}

.footer-section h4 {
  margin-bottom: 1rem;
  font-size: 1.125rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section li {
  margin-bottom: 0.5rem;
  padding-bottom: 0.5rem;
  font-size: 0.875rem;
  color: rgba(250, 248, 243, 0.8);
}

.footer-section a {
  transition: color 0.3s;
}

.footer-section a:hover {
  color: var(--primary);
}

.footer-social {
  border-top: 1px solid rgba(250, 248, 243, 0.2);
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.footer-social h4 {
  text-align: center;
  margin-bottom: 1rem;
  font-size: 1.125rem;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.social-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: rgba(250, 248, 243, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.social-icon:hover {
  background: var(--sage);
}

.social-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  fill: var(--background);
}

.social-icon:hover svg {
  fill: var(--foreground);
}

.footer-bottom {
  border-top: 1px solid rgba(250, 248, 243, 0.2);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(250, 248, 243, 0.7);
}

/* Scroll Reveal Animations */
.scroll-reveal {
  opacity: 0;
  transition: all 0.6s ease-out;
}

.scroll-reveal.reveal-up {
  transform: translateY(40px);
}

.scroll-reveal.reveal-down {
  transform: translateY(-40px);
}

.scroll-reveal.reveal-left {
  transform: translateX(40px);
}

.scroll-reveal.reveal-right {
  transform: translateX(-40px);
}

.scroll-reveal.revealed {
  opacity: 1;
  transform: translate(0, 0);
}

.scroll-reveal.delay-100 {
  transition-delay: 0.1s;
}

.scroll-reveal.delay-200 {
  transition-delay: 0.2s;
}

.scroll-reveal.delay-300 {
  transition-delay: 0.3s;
}

/* Responsive Styles */
@media (min-width: 768px) {
  .section-padding {
    padding: 6rem 1.5rem;
  }

  h1 {
    font-size: 3.75rem;
  }

  h2 {
    font-size: 3rem;
  }

  h3 {
    font-size: 2.25rem;
  }

  .hero-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-content h2 {
    font-size: 3.75rem;
  }

  .hero-subtitle {
    font-size: 1.25rem;
  }

  .hero-scripture {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: row;
  }

  .hero-image-container {
    height: 100%;
    min-height: 24rem;
  }

  .about-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 4rem 0;
  }

  .about-content p {
    font-size: 1.125rem;
  }

  .founder-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 3rem 0;
    margin-top: 5rem;
  }

  .founder-card {
    padding: 2.5rem;
  }

  .founder-card h3 {
    font-size: 1.875rem;
  }

  .founder-card p {
    font-size: 1.125rem;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .order-grid {
    grid-template-columns: 1fr 2fr;
  }

  .form-row {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }

  .mobile-menu-btn {
    display: none;
  }
}

@media (max-width: 767px) {
  nav {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }
}
