@font-face {
  font-family: "Robecha-Daniera-Regular";
  src: url("path-to-font.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
}

:root {
  --black: #050405;
  --yellow: #d9b771;
  --white: #ffffff;
  --gray-light: #f8f9fa;
  --gray-medium: #6c757d;
  --green-dark: #2d3e2f;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
  line-height: 1.6;
  color: var(--black);
  background-color: var(--white);
}

/* Hero Section */
.hero {
  min-height: 280px;

  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  position: relative;
}

.hero-content {
  font-family: "Montserrat", sans-serif;
  max-width: 695px;
  padding: 0 20px;
  animation: fadeInUp 1s ease-out;
  position: absolute;
  right: 11%;
}

.hero h1 {
  margin-top: 20px;
  font-family: "Robecha-Daniera-Regular", "Montserrat", sans-serif;
  font-size: clamp(2.2rem, 4.5vw, 49px);
  font-weight: 300;
}

.hero h1 .highlight {
  color: var(--yellow);
}

.hero .subtitle {
  font-size: clamp(12px, 2.8vw, 16px);
  opacity: 0.6;
  margin-bottom: 2rem;
  font-weight: 300;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
  line-height: 1.4;
}

.hero .subtitle strong {
  font-weight: 700;
}

/* Main Container */
.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 60px 20px;
}

.main-content {
}

/* Left Column */
.left-column {
  animation: fadeInLeft 0.8s ease-out;
}

/* Product Promotion Section */
.product-promotion {
  margin-bottom: 60px;
  text-align: center;
  margin-top: 50px;
}

.promotion-title {
  font-family: "Robecha-Daniera-Regular", "Montserrat", sans-serif;
  font-size: 40px;
  color: var(--black);
  margin-bottom: 40px;
  font-weight: 200;
}

.product-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  margin-bottom: 40px;
  margin: auto;
  width: 77%;
}

.product-card {
  background: var(--yellow);
  padding: 16px 30px;
  padding-bottom: 25px;
  border-radius: 10px;
  text-align: center;

  box-shadow: 0 8px 25px rgba(253, 230, 138, 0.3);
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-card h3 {
  font-family: "Robecha-Daniera-Regular", "Montserrat", sans-serif;
  font-size: 28px;
  color: var(--black);
  margin-bottom: 20px;
  font-weight: 400;
}

.shop-btn {
  background: transparent;
  color: var(--black);
  border: 2px solid var(--black);
  padding: 12px 25px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.shop-btn:hover {
  background: var(--black);
  color: var(--white);
}

/* Disclaimer Section */
.disclaimer-section {
  background: var(--green-dark);
  color: var(--white);
  text-align: center;
  padding: 0 20px; /* add padding to prevent edge overflow on small screens */
}

.disclaimer-title {
  font-family: "Robecha-Daniera-Regular", "Montserrat", sans-serif;
  font-size: 40px;
  color: var(--yellow);
  margin-bottom: 20px;
  font-weight: 200;
  padding-top: 25px;
}

.disclaimer-text {
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  letter-spacing: 1px;
  line-height: 1.5;
  opacity: 0.9;
  font-style: italic;
  width: 55%;
  margin: auto;
  margin-bottom: 30px;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .disclaimer-title {
    font-size: 32px;
  }

  .disclaimer-text {
    width: 70%;
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .disclaimer-title {
    font-size: 26px;
  }

  .disclaimer-text {
    width: 85%;
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .disclaimer-title {
    font-size: 22px;
  }

  .disclaimer-text {
    width: 100%;
    font-size: 12.5px;
  }
}

/* Testimonial Section */
.testimonial-section {
  margin-bottom: 60px;
}

.testimonial-title {
  font-family: "Robecha-Daniera-Regular", "Montserrat", sans-serif;
  font-size: 46px;
  color: var(--black);
  margin-bottom: 40px;
  letter-spacing: 0.5px;
  font-weight: 300;
  text-align: center;
}

.testimonial-card {
  background: var(--gray-light);
  padding: 20px 35px;
  border-radius: 15px;
  position: relative;
  max-width: 95%;
  margin: auto;
  padding-right: 62px;
}

.stars {
  display: flex;
  gap: 3px;
  margin-bottom: 30px;
}

.star {
  color: var(--yellow);
  font-size: 18px;
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
  font-family: "Montserrat", sans-serif;
}

.testimonial-avatar {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  background: var(--gray-medium);
}

.testimonial-author {
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--black);
}

.testimonial-date {
  font-size: 0.9rem;
  color: var(--gray-medium);
  margin-left: auto;
}

.testimonial-text {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  letter-spacing: 0.3px;
  line-height: 1.6;
  opacity: 0.6;
  color: var(--black);
}

/* Timeline Section */

.inner-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 30px 0;
}

@media (max-width: 767px) {
  .inner-container {
    padding: 30px 10px;
  }
}
.timeline-section {
  margin-top: 15px;
  background-position: center;
  background-size: cover;
}

.timeline-title {
  font-family: "Robecha-Daniera-Regular", "Montserrat", sans-serif;
  font-size: 46px;
  color: var(--black);
  margin-bottom: 10px;
  font-weight: 200;
  text-align: center;
}

.timeline-subtitle {
  font-size: 18px;
  color: #a27d4f;
  text-align: center;
  margin-bottom: 50px;
  letter-spacing: 0.2px;
  font-weight: 500;
}

.timeline-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 25px;
  margin: auto;
  width: 94%;
  margin-bottom: 30px;
}

.timeline-card {
  background: var(--green-dark);
  padding: 26px 25px;
  border-radius: 15px;
  padding-bottom: 25px;
  padding-right: 13px;
  color: var(--white);
}

.timeline-period {
  font-family: "Robecha-Daniera-Regular", "Montserrat", sans-serif;
  font-size: 27px;
  color: var(--yellow);
  /* margin-bottom: 15px; */
  font-weight: 200;
  letter-spacing: 1px;
}

.timeline-description {
  font-size: 1rem;
  line-height: 1.3;
  opacity: 0.9;
  width: 95%;
}

.timeline-note {
  font-size: 16px;
  color: var(--black);
  text-align: center;
  font-style: italic;
  margin-top: 20px;
  max-width: 800px;
  margin: auto;
  margin-top: 40px;
  line-height: 24px;
  margin-bottom: 10px;
}

/* Gallery Section */
.gallery-section {
  margin-bottom: 60px;
}

.gallery-title {
  font-family: "Robecha-Daniera-Regular", "Montserrat", sans-serif;
  font-size: 40px;
  color: var(--black);
  margin-bottom: 40px;
  font-weight: 200;
  text-align: center;
  margin-top: 15px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-bottom: 30px;
  margin: 0px 27px;
}

.gallery-item {
  text-align: center;
  width: 100%;
  max-width: 400px;
  height: 340px;
  background-size: cover;
  background-position: center;
  border-radius: 15px;
  margin-bottom: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in;
  overflow: hidden;
  margin: auto;
}

.gallery-image {
  width: 100%;
  height: 100%;

  transition: all 0.3s ease-in;
}

.gallery-image {
  object-fit: cover;
  border-radius: 15px;
}

.gallery-item:hover .gallery-image {
  transform: scale(1.1);
}

.gallery-caption {
  font-size: 0.95rem;
  color: var(--black);
  font-weight: 500;
}

.gallery-benefits {
  font-family: "Montserrat", sans-serif;

  display: flex;
  justify-content: center;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  margin-top: 16px;
  font-weight: 350;
  letter-spacing: 0.3px;
  font-size: 17px;
  color: var(--black);
}

.benefit-separator {
  color: var(--gray-medium);
  font-weight: bold;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive Design */
@media (max-width: 1044px) {
  .main-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .right-column {
    position: static;
    order: -1;
  }

  .container {
    padding: 40px 20px;
  }

  .product-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .timeline-cards {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  }
  .gallery-image {
    height: 88%;
  }
  .gallery-item {
    box-shadow: none;
  }
}

@media (max-width: 1100px) {
  .hero-content {
    right: 2%;
  }
}

@media (max-width: 991px) {
  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  }
  .hero-content {
    right: 0%;
    max-width: 600px;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: 300px;
    background-position: right;
  }

  .gallery-grid {
    margin: 0;
  }

  .hero-content {
    position: relative;
  }
  .hero h1 {
    font-size: 1.8rem;
  }

  .hero .subtitle {
    font-size: 14px;
  }

  .promotion-title,
  .testimonial-title,
  .timeline-title,
  .gallery-title {
    font-size: 1.8rem;
  }

  .disclaimer-title {
    font-size: 1.8rem;
  }
  .product-promotion {
    margin-top: 0;
  }
  .testimonial-section {
    margin-bottom: 0;
  }

  .product-card {
    padding: 30px 20px;
  }

  .disclaimer-section {
    padding: 30px 20px;
  }

  .testimonial-card {
    padding: 30px 20px;
  }

  .timeline-card {
    padding: 25px 20px;
  }

  .timeline-cards {
    grid-template-columns: 1fr;
  }

  .gallery-benefits {
    flex-direction: column;
    gap: 10px;
  }

  .benefit-separator {
    display: none;
  }

  .testimonial-header {
    align-items: center;
    gap: 10px;
  }

  .testimonial-date {
    margin-left: 0;
  }
  .testimonial-text {
    font-size: 14px;
  }
  .product-card h3 {
    font-size: 1.6rem;
  }
  .timeline-subtitle {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 20px 15px;
  }

  .product-card h3 {
    font-size: 1.2rem;
  }

  .timeline-period {
    font-size: 1.1rem;
  }
}

.hide-on-mobile {
  display: flex;
}
@media (max-width: 1044px) {
  .hide-on-mobile {
    display: none;
  }
}
