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

/* Global Styles */
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  overflow: hidden;
}


/* Old Header
/* Header Styles 
header {
  background: #fff;
  padding: 20px 0;
  border-bottom: 1px solid #eee;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 24px;
  font-weight: bold;
  text-decoration: none;
  color: #333;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

nav ul li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.cta {
  background: #ff6b6b;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
}
*/

/* Sticky Header */
#main-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: #fff;
  transition: all 0.3s ease;
  padding: 20px 0;
  border-bottom: 1px solid #eee;
}

/* Header container default styling */
.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo and Navigation styling */
.logo {
  font-size: 24px;
  font-weight: bold;
  text-decoration: none;
  color: #333;
}

/* Navigation items remain unchanged */
nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

nav ul li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.cta {
  background: #ff6b6b;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
}

/* Shrink header when scrolled */
#main-header.scrolled {
  padding: 10px 0;
  border-bottom: 1px solid #ddd;
}

#main-header.scrolled .logo {
  font-size: 20px;
}

#main-header.scrolled nav ul li a {
  font-size: 14px;
}








/* Hero Section Styles */

.hero {
  position: relative;
  height: 70vh;
  overflow: hidden;
  color: #fff;
}

.slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-top: 20vh;
  padding-left: 10px;
  padding-right: 10px;
  background: rgba(0, 0, 0, 0.4); /* Optional overlay for better text readability */
}

.hero-content h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 20px;
  margin-bottom: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}



/* Info Sections */
/* How It Works Section - Lively Styles */
#how-it-works {
  background: #f8f9fa;
  padding: 60px 0;
}

#how-it-works h2 {
  color: #333;
  font-size: 36px;
  margin-bottom: 40px;
}

.steps {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.step {
  background: #fff;
  padding: 30px;
  margin: 15px;
  border-radius: 8px;
  flex: 1;
  min-width: 250px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step:hover {
  transform: translateY(-10px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.step .icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
}

.step .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.step h3 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #ff6b6b;
}

.step p {
  font-size: 16px;
  color: #555;
}


/* Steps, Plans, and Testimonials */
/* Suspected old code
.steps, .plans, .testimonials, .gallery-grid {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.step, .plan, .testimonial, .gallery-item {
  background: #f9f9f9;
  padding: 20px;
  margin: 10px;
  flex: 1;
  min-width: 250px;
  border-radius: 5px;
}
*/
/* Modern Subscription Plans Section - Bold Red Accents */
.subscription-plans {
  background: #fff;
  padding: 60px 0;
}

.subscription-plans h2 {
  font-size: 36px;
  text-align: center;
  color: #d32f2f; /* Bold red for heading */
  font-weight: bold;
  margin-bottom: 40px;
}

.subscription-plans .plans {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.subscription-plans .plan {
  background: #f8f8f8;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 300px;
  text-align: center;
}

.subscription-plans .plan:hover {
  transform: translateY(-10px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.subscription-plans .plan h3 {
  font-size: 28px;
  color: #d32f2f; /* Bold red for plan title */
  margin-bottom: 15px;
  font-weight: bold;
}

.subscription-plans .plan p {
  font-size: 16px;
  color: #555;
  margin-bottom: 20px;
}

.subscription-plans .plan button.btn {
  background: #d32f2f;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  transition: background 0.3s ease;
}

.subscription-plans .plan button.btn:hover {
  background: #b71c1c;
}

/* Suspected old cpde
/* Gallery Images 
.gallery-item img {
  width: 100%;
  border-radius: 5px;
}
*/

/* ---------- Gift Gallery Carousel ---------- */
.gallery-carousel {
  overflow: hidden;
  position: relative;
  margin-top: 20px;
}

.gallery-track {
  display: flex;
  transition: transform 0.5s ease;
}

.gallery-item {
  flex: 0 0 calc(100% / 3);
  padding: 10px;
  box-sizing: border-box;
  text-align: center;
}

.gallery-item img {
  width: 100%;
  border-radius: 5px;
}

.gallery-item .caption {
  margin-top: 8px;
  font-size: 14px;
  color: #ff9800; /* Orange colour theme */
}

/* ---------- Testimonials Carousel ---------- */
.testimonials-section {
  background: #fff;
  padding: 60px 0;
}

.testimonial-carousel {
  overflow: hidden;
  position: relative;
  margin-top: 20px;
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial {
  flex: 0 0 calc(100% / 3);
  padding: 10px;
  box-sizing: border-box;
  text-align: center;
  background: #f9f9f9;
  border-radius: 8px;
  margin: 10px;
}

.testimonial-content p {
  font-size: 16px;
  color: #333;
}

.testimonial-content h4 {
  margin-top: 10px;
  color: #ff9800; /* Orange colour theme */
  font-weight: bold;
}

.testimonial-image {
  margin-top: 10px;
}

.testimonial-image img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-image .caption {
  font-size: 14px;
  color: #ff9800; /* Orange colour theme */
  margin-top: 5px;
}



/* Subscription Form */
.subscribe-form {
  max-width: 500px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.subscribe-form input,
.subscribe-form select {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.subscribe-form button {
  background: #ff6b6b;
  color: #fff;
  border: none;
  padding: 10px;
  border-radius: 5px;
  cursor: pointer;
}

/* Footer */
footer {
  background: #333;
  color: #fff;
  padding: 20px 0;
  text-align: center;
}

footer .social a {
  color: #ff6b6b;
  text-decoration: none;
  margin: 0 10px;
}
