/* Base Reset + Typography */
body {
  margin: 0;
  padding: 0;
  background-color: #fef6e4; /* warm, soft cream */
  font-family: 'Inter', sans-serif;
  line-height: 1.7;
  color: #222;
}

/* Layout */
.container {
  max-width: 800px;
  margin: auto;
  padding: 2rem 1rem;
}
/* Video Container for responsiveness */
.video-wrapper {
  max-width: 100%;
  margin: 2rem auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.instagram-media {
  background-color: #fef6e4 !important; /* cream background */
  border: none !important;
  border-radius: 12px !important;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1) !important;
  max-width: 400px !important;   /* smaller max width */
  min-width: 280px !important;   /* smaller min width */
  margin: 1.5rem auto !important; /* less margin */
  padding: 0 !important;
  width: 100% !important;
  display: block !important;
  font-family: 'Inter', sans-serif !important;
}

.instagram-media > div {
  padding: 12px !important;  /* less padding */
}

@media (max-width: 600px) {
  .instagram-media {
    min-width: 260px !important;
    max-width: 350px !important;
    margin: 1rem auto !important;
  }
}
/* Make video responsive */
.video-wrapper video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

/* Optional: style controls on some browsers */
.video-wrapper video::-webkit-media-controls {
  border-radius: 12px;
}

/* Responsive adjustments */
@media (max-width: 600px) {
  .video-wrapper {
    margin: 1.5rem 0;
  }
}


/* Logo */
.logo {
  width: 100px;
  display: block;
  margin: 0 auto 1.5rem auto;
}

/* Headings + Tagline */
h1 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.tagline {
  text-align: center;
  font-size: 1.25rem;
  color: #444;
  margin-bottom: 2.5rem;
}

h2 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: #111;
}

/* Sections */
.section {
  margin: 3rem 0;
}

ul {
  padding-left: 1.2rem;
}

ul li {
  margin-bottom: 0.75rem;
}

/* Slideshow Container */
.slideshow-container {
  position: relative;
  max-width: 100%;
  margin: 0 auto 2rem auto;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  background: #fff;
}

/* Slides */
.mySlides {
  display: none;
  width: 100%;
  border-radius: 12px;
  animation: fade 1s ease forwards;
}

.mySlides img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
}

/* Fade Animation */
@keyframes fade {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Arrows */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: 3rem;
  height: 3rem;
  margin-top: -1.5rem;
  background: #FDF5E6;
  color: #000000;
  font-weight: 800;
  font-size: 2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  transition: background 0.3s ease, color 0.3s ease;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
  z-index: 10;
}

.prev:hover, .next:hover {
  background: #f0e9d2;
  color: #333;
}

.prev {
  left: 1rem;
}

.next {
  right: 1rem;
}

/* Dots Container */
.dots-container {
  text-align: center;
  padding: 1rem 0;
  user-select: none;
}

/* Dots */
.dot {
  cursor: pointer;
  height: 14px;
  width: 14px;
  margin: 0 6px;
  background-color: #ccc;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.dot:hover {
  background-color: #999;
}

.dot.active {
  background-color: #111;
}
.stripe-button-wrapper {
  text-align: center;
  margin: 2.5rem 0;
}


/* Button */
.btn {
  display: block;
  width: fit-content;
  background: #111;
  color: #fff;
  padding: 0.9rem 2rem;
  text-align: center;
  text-decoration: none;
  border-radius: 10px;
  margin: 2.5rem auto;
  font-weight: 600;
  font-size: 1.1rem;
  transition: background 0.3s ease;
}

.btn:hover {
  background: #00adef;
}

/* Social Links */
.links {
  text-align: center;
  margin-top: 2rem;
}

.links a {
  margin: 0 1rem;
  color: #555;
  font-weight: 600;
  text-decoration: none;
}

.links a:hover {
  color: #00adef;
}

/* Footer */
footer {
  text-align: center;
  font-size: 0.9rem;
  color: #777;
  margin-top: 4rem;
}

/* Responsive */
@media (max-width: 600px) {
  h1 {
    font-size: 2rem;
  }

  .btn {
    font-size: 1rem;
    padding: 0.8rem 1.5rem;
  }

  .prev, .next {
    width: 2.4rem;
    height: 2.4rem;
    font-size: 1.5rem;
    margin-top: -1.2rem;
  }

  .dot {
    height: 12px;
    width: 12px;
    margin: 0 4px;
  }
}
