html,body{
	overflow-x: hidden;
}
/* Reset */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

/* Body & Typography */
body {
	font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
	background-color: #f9f9f9;
	color: #333;
	line-height: 1.6;
}

/* NAVBAR */
.bg-navbar {
  background-color: #000000 !important;
}

/* Show dropdown on hover for desktop only */
@media (min-width: 992px) { 
  .navbar .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0; 
    animation: fadeIn 0.3s ease-in-out; 
  }
}

/* Optional: fade-in animation */
@keyframes fadeIn {
  0% { opacity: 0; transform: translateY(5px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Dropdown Menu Styling */
.dropdown-menu {
  background-color: #000 !important; /* black background */
  border: none; /* optional: remove border for a cleaner look */
}

.dropdown-menu .dropdown-item {
  color: #fff !important; /* white text */
}

.dropdown-menu .dropdown-item:hover {
  background-color: #111 !important; /* slightly lighter black on hover */
  color: #fff !important;
}

/* Hero Section */
.hero-section img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: cover;
}

/* Home page*/
/* About Lori Section Styling */
.about-lori-section {
  background-color: #f8f9fa; /* light background for readability */
}

.lori-photo-wrapper {
  position: relative;
  display: inline-block; 
}

.lori-photo {
  max-height: 400px;
  border-radius: 1rem;
	position: relative;  
  z-index: 2;
}

.photo-overlay {
  position: absolute;
  top: 10px;          
  left: 10px;         
  width: 100%;        
  height: 100%;       
  background: rgba(74, 74, 239, 0.15);
  border-radius: 1rem;
  z-index: 1;
  pointer-events: none; 
}

/* Introduction Section */
.introduction-section {
  background: linear-gradient(to bottom, #ffffff, #f8f9fa, #eeeeee);
	font-family: 'Merriweather', serif;
}

.introduction-section .highlight {
  background-color: #4d60ca;
  color: #fff; 
  padding: 0 4px; 
  border-radius: 4px; 
}

.introduction-section .intro-text {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.05rem; 
  font-weight: 400;
  color: #333;
  line-height: 1.7;
  margin-top: 1.5rem;
}

/* Benefits Section */
#benefits {
  background: linear-gradient(180deg, #f0f4ff 0%, #e2dbff 100%);
}

.benefit-card {
  border-radius: 1rem;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  background: #ffffff; 
  padding: 2rem 1.5rem;
  text-align: center;
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.12);
}

.benefit-card i {
  font-size: 2.2rem;
  color: #4a4aef;
  background: rgba(74,74,239,0.1);
  border-radius: 50%;
  padding: 0.75rem;
  display: inline-block;
  margin-bottom: 1rem;
}

.benefit-card h5 {
  color: #3b3bd9;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.benefit-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Lunar Series Books Section */
.book-card {
  background: linear-gradient(135deg, #ffffff 0%, #f5f5ff 100%);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.book-card:hover {
  transform: translateY(-8px) scale(1.04);
  box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}

.book-card h5 {
  color: #4a4aef !important;
}

.book-card p {
  font-size: 0.95rem;
  color: #555555;
}

/* Text Styling */
.lori-intro {
  color: #212529; 
}

.lori-description {
  color: #6c757d; 
}

/* CTA Button */
.lori-cta {
  background-color: #4a4aef;
  border-color: #4a4aef;
  color: #fff;
  transition: all 0.3s ease;
}

.lori-cta:hover {
  background-color: #3838d0; 
  border-color: #3838d0;
  color: #fff;
}

/* Section Title */
.section-title {
	position: relative;
	display: inline-block;
	padding-bottom: 1rem;
	font-weight: 700;
}

.section-title::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 2px;
	background-color: #4a4aef;
}

/* Purchase Options Section */
.purchase-options {
	background-color: #fff;
	padding: 4rem 1rem;
	text-align: center;
}

/* Heading and lead text */
.purchase-options h2 {
	font-size: 2rem;
	margin-bottom: 1rem;
	font-weight: 700;
}

.purchase-options p.lead {
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 3rem;
	font-size: 1.1rem;
	color: #555;
}

/* Purchase Boxes */
.purchase-box {
	background: linear-gradient(135deg,
			#ffffff,
			#f2f4ff);
	/* Subtle gradient background */
	padding: 2rem;
	border-radius: 16px;
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	height: 100%;
	display: flex;
	flex-direction: column;
	border: none;
	/* remove default border */
	position: relative;
	overflow: hidden;
}

/* Slight lift effect on hover */
.purchase-box:hover {
	transform: translateY(-6px);
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
}

/* Add a colored bar on top for visual identity */
.purchase-box::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	height: 6px;
	width: 100%;
	background: #4a4aef;
	border-top-left-radius: 16px;
	border-top-right-radius: 16px;
}

/* Card Title */
.purchase-box h3 {
	font-size: 1.4rem;
	font-weight: 700;
	color: #222;
	margin-bottom: 1rem;
}

/* Description */
.purchase-box p {
	font-size: 1rem;
	color: #555;
	flex-grow: 1;
}

/* Ensure consistent button alignment */
.purchase-box .btn {
	align-self: center;
	width: 100%;
}

/* Buttons */
.btn-primary {
	background-color: #4a4aef;
	border: none;
	border-radius: 30px;
	padding: 0.75rem 1.8rem;
	/* slightly wider */
	font-weight: 600;
	color: #fff;
	text-decoration: none;
	cursor: pointer;
	transition: background-color 0.3s ease, box-shadow 0.3s ease,
		transform 0.15s ease;
	box-shadow: 0 4px 8px rgba(74, 74, 239, 0.4);
	/* subtle glow */
}

.btn-primary:hover,
.btn-primary:focus {
	background-color: #3a3adb;
	box-shadow: 0 6px 12px rgba(58, 58, 219, 0.6);
	transform: translateY(-2px);
	outline: none;
	text-decoration: none;
}

/* Pressed effect on click */
.btn-primary:active {
	transform: translateY(1px);
	box-shadow: 0 3px 6px rgba(58, 58, 219, 0.3);
}

/* Responsive utilities */
@media (max-width: 576px) {
	.purchase-options {
		padding: 3rem 1rem;
	}
}

/* Footer Section Styling */
.footer-bg {
	background: url('../images/lunar-footer-background.jpg') no-repeat center center;
	background-size: cover;
	min-height: 300px;
	transition: background-image 0.3s ease-in-out;
}

@media (max-width: 576px) {
	.footer-bg {
		background-image: url('../images/lunar-footer-banner-mobile.jpg');
		background-position: center center;
		background-size: cover;
		transition: background-image 0.3s ease-in-out;
	}
}

.footer-logo {
	height: auto;
	max-height: 10rem;
	/* Adjust as needed */
	margin-right: 1rem;
	/* Space between logo and columns */
}

.footer-logo-container {
	padding-right: 1rem;
	/* Adds space between the logo and the next column */
}

footer .text-center {
	background-color: #022647;
	/* No background color */
	color: #ffffff;
	/* White text */
	font-size: 0.9rem;
	/* Adjust as needed */
	text-align: center;
	/* Center the text */
	margin-top: 10px;
	/* Optional: Add some spacing */
	margin-bottom: 10px;
	/* Optional: Add some spacing */
}

.moon-phase-viewer img {
	width: 100px;
	height: auto;
	transition: opacity 1s ease-in-out;
	filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.3));
}

/* Footer Links*/
.footer-bg a.text-white {
	font-family: "Merriweather", serif;
	text-decoration: none;
	position: relative;
	transition: color 0.3s ease;
}

.footer-bg a.text-white::after {
	content: "";
	position: absolute;
	bottom: -2px;
	left: 50%;
	width: 0;
	height: 2px;
	background-color: #fff;
	transform: translateX(-50%);
	transition: width 0.3s ease;
}

.footer-bg a.text-white:hover::after {
	width: 100%;
}


@media (max-width: 576px) {
	.moon-phase-viewer img {
		width: 70px;
	}
}

/* Mobile footer layout */
@media (max-width: 767.98px) {
  #footer .row {
    text-align: center;
  }

  #footer .col-md-4 {
    margin-bottom: 1.5rem;
  }

  #footer h5 {
    margin-bottom: 0.75rem;
  }

  #footer ul {
    padding: 0;
  }
}

/* Tablet layout (2 columns per row instead of 3) */
@media (min-width: 768px) and (max-width: 991.98px) {
  #footer .col-md-4 {
    flex: 0 0 50%;
    max-width: 50%;
    margin-bottom: 1.5rem;
  }
}

/* ABOUT ME*/
.about-me-section {
  background: linear-gradient(to bottom right, #ffffff, #f4f7fa);
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  font-family: 'Open Sans', sans-serif;
  position: relative;
  overflow: visible;
  padding-top: 5rem;
  padding-bottom: 5rem;
}

/* Title */
.about-me-section .section-title {
  font-family: 'Merriweather', serif;
  font-size: 2.75rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Underline decoration */
.about-me-section .section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background-color: #adb5bd;
  margin: 12px auto 0;
  border-radius: 3px;
}

/* Image glow frame */
.glow-frame {
  display: inline-block;
  padding: 8px;
  border-radius: 24px;
  box-shadow:
    0 0 15px 5px rgba(156, 168, 182, 0.3),
    0 12px 30px rgba(0, 0, 0, 0.12);
  background: #ffffffcc;
}

/* Paragraphs */
.about-me-section p {
  font-size: 1.1rem;
  line-height: 1.85;
  color: #333;
  margin-bottom: 1.2rem;
}

/* Intro text slightly bolder */
.intro-text p {
  font-weight: 600;
  font-size: 1.18rem;
  line-height: 1.9;
  color: #2e3d4f;
}

/* Main text normal weight */
.main-text p {
  font-weight: 400;
  font-size: 1.13rem;
  line-height: 1.9;
  color: #444;
}

/* Highlight quote block */
.highlight-quote {
  font-family: 'Merriweather', serif;
  font-size: 1.5rem;
  font-style: italic;
  font-weight: 600;
  color: #4a5a70;
  border-left: 5px solid #9ca8b6;
  padding-left: 1.5rem;
  margin: 0 auto;
  max-width: 720px;
  line-height: 1.6;
  background: #f0f4fa;
  border-radius: 12px;
  box-shadow: 0 8px 15px rgb(156 168 182 / 0.15);
}

/* Image styles */
.about-image img {
  max-width: 400px;
  height: auto;
  border: 6px solid #fff;
  object-fit: cover;
  border-radius: 1rem;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .about-me-section .section-title {
    font-size: 2.25rem;
  }

  .about-image img {
    max-width: 100%;
  }

  .glow-frame {
    box-shadow:
      0 0 10px 4px rgba(156, 168, 182, 0.3),
      0 8px 20px rgba(0, 0, 0, 0.1);
  }
}

@media (max-width: 576px) {
  .highlight-quote {
    font-size: 1.25rem;
    padding-left: 1rem;
  }
}

