:root {
  /* Primary color palette */
  --primary-1: #4A5D79; /* Deep blue-gray */
  --primary-2: #D8B38C; /* Sand/parchment */
  --primary-3: #8C3A3A; /* Burgundy/wax seal */
  --primary-4: #2D4F3C; /* Forest green */
  --primary-5: #BDB2A4; /* Soft taupe */
  
  /* Light and dark variants */
  --primary-1-light: #6A7D99;
  --primary-1-dark: #344259;
  --primary-2-light: #F8D3AC;
  --primary-2-dark: #B8936C;
  --primary-3-light: #AC5A5A;
  --primary-3-dark: #6C2A2A;
  --primary-4-light: #4D6F5C;
  --primary-4-dark: #1D3F2C;
  --primary-5-light: #DDD2C4;
  --primary-5-dark: #9D9284;
  
  /* Neutral tones */
  --white: #FFFFFF;
  --off-white: #F9F5F0;
  --light-gray: #EBE8E4;
  --mid-gray: #C5C1B9;
  --dark-gray: #595752;
  --black: #201F1D;
}

/* Global styles */
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Lora', serif;
  background-color: var(--off-white);
  color: var(--black);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--primary-1-dark);
}

a {
  color: var(--primary-3);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--primary-3-light);
}

.btn {
  padding: 12px 28px;
  border-radius: 0;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background-color: var(--primary-3);
  border-color: var(--primary-3);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--primary-3-dark);
  border-color: var(--primary-3-dark);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary-1);
  color: var(--primary-1);
}

.btn-outline:hover {
  background-color: var(--primary-1);
  color: var(--white);
}

/* Section styling */
section {
  padding: 80px 0;
}

.section-title {
  margin-bottom: 60px;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 0;
  height: 3px;
  width: 60px;
  background-color: var(--primary-2);
}

.text-center .section-title::after {
  left: 50%;
  transform: translateX(-50%);
}

/* Header/Navbar */
.navbar {
  padding: 15px 0;
  transition: all 0.4s ease;
  background-color: var(--white);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 28px;
  color: var(--primary-1-dark);
}

.nav-link {
  font-weight: 500;
  padding: 10px 15px !important;
  margin: 0 5px;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background-color: var(--primary-3);
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 70%;
}

/* Hero section */
.hero {
  height: 100vh;
  background: linear-gradient(rgba(42, 42, 42, 0.7), rgba(42, 42, 42, 0.7)), url('../LUX_images/hero-bg.webp');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title-1 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 20px;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.4);
}

.hero-subtitle-1 {
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--primary-2);
  margin-bottom: 30px;
}

.hero-desc-1 {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto 40px;
  color: var(--light-gray);
}

/* About section */
.about-section {
  background-color: var(--white);
  position: relative;
}

.about-image {
  box-shadow: 10px 10px 0 var(--primary-2-light);
  position: relative;
}

.about-content {
  padding: 40px;
}

.about-feature {
  padding: 30px 20px;
  margin-bottom: 30px;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}

.about-feature:hover {
  transform: translateY(-5px);
  border-left: 3px solid var(--primary-3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-feature-icon {
  font-size: 2.5rem;
  color: var(--primary-3);
  margin-bottom: 20px;
}

/* Services section */
.services-section {
  background-color: var(--light-gray);
  position: relative;
}

.service-card {
  padding: 30px;
  background-color: var(--white);
  border-radius: 10px;
  margin-bottom: 30px;
  transition: all 0.4s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 5px;
  width: 100%;
  background-color: var(--primary-3);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.service-icon {
  font-size: 3rem;
  color: var(--primary-3);
  margin-bottom: 20px;
}

.service-title {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.service-price {
  display: inline-block;
  padding: 5px 15px;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  background-color: var(--primary-1);
  border-radius: 30px;
  margin: 15px 0;
}

.service-features {
  list-style: none;
  padding-left: 0;
  margin-top: 20px;
}

.service-features li {
  padding: 5px 0;
  position: relative;
}

.service-features li::before {
  content: '\f14a';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  color: var(--primary-3);
  margin-right: 10px;
}

/* Features section */
.features-section {
  background-color: var(--white);
}

.feature-card {
  text-align: center;
  padding: 40px 20px;
  margin-bottom: 30px;
  transition: all 0.3s ease;
  border-radius: 10px;
  background-color: var(--off-white);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  font-size: 3rem;
  color: var(--primary-4);
  margin-bottom: 25px;
}

/* Price plan section */
.priceplan-section {
  background-color: var(--light-gray);
  position: relative;
}

.price-card {
  background-color: var(--white);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 30px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.07);
  transition: all 0.4s ease;
  height: 100%;
}

.price-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.price-header {
  padding: 30px;
  background-color: var(--primary-1);
  color: var(--white);
  text-align: center;
}

.price-body {
  padding: 30px;
}

.price-amount {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--primary-3);
}

.price-features {
  list-style: none;
  padding-left: 0;
  margin-bottom: 30px;
}

.price-features li {
  padding: 10px 0;
  border-bottom: 1px solid var(--light-gray);
}

.price-features li::before {
  content: '\f00c';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  color: var(--primary-4);
  margin-right: 10px;
}

/* Team section */
.team-section {
  background-color: var(--white);
  position: relative;
}

.team-card {
  margin-bottom: 30px;
  background-color: var(--off-white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.team-image {
  position: relative;
  overflow: hidden;
}

.team-image img {
  transition: all 0.5s ease;
  width: 100%;
}

.team-card:hover .team-image img {
  transform: scale(1.05);
}

.team-details {
  padding: 20px;
  text-align: center;
}

.team-name {
  font-size: 1.3rem;
  margin-bottom: 5px;
}

.team-role {
  color: var(--primary-3);
  font-style: italic;
}

/* Reviews section */
.reviews-section {
  background-color: var(--light-gray);
  padding: 100px 0;
  position: relative;
}

.review-card {
  background-color: var(--white);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin: 15px;
  height: 100%;
}

.review-text {
  position: relative;
  padding: 20px 0;
  font-style: italic;
}

.review-text::before {
  content: '\f10d';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  font-size: 2rem;
  color: var(--primary-2);
  position: absolute;
  top: -10px;
  left: -10px;
  opacity: 0.2;
}

.review-author {
  display: flex;
  align-items: center;
  margin-top: 20px;
}

.review-author-info {
  margin-left: 15px;
}

.review-author-name {
  font-weight: 700;
  color: var(--primary-1-dark);
}

/* Core info section */
.coreinfo-section {
  background-color: var(--white);
  position: relative;
}

.coreinfo-item {
  text-align: center;
  padding: 30px 20px;
  margin-bottom: 30px;
  transition: all 0.3s ease;
  border-radius: 10px;
  background-color: var(--off-white);
}

.coreinfo-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.coreinfo-icon {
  font-size: 3rem;
  color: var(--primary-4);
  margin-bottom: 20px;
}

/* Contact section */
.contact-section {
  background-color: var(--light-gray);
  position: relative;
}

.contact-form-container {
  background-color: var(--white);
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-control {
  border-radius: 0;
  border: 1px solid var(--mid-gray);
  padding: 12px 15px;
  margin-bottom: 20px;
}

.form-control:focus {
  box-shadow: none;
  border-color: var(--primary-3);
}

.form-check-input:checked {
  background-color: var(--primary-3);
  border-color: var(--primary-3);
}

/* Blog section */
.blog-section {
  background-color: var(--white);
  position: relative;
}

.blog-card {
  margin-bottom: 30px;
  background-color: var(--off-white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.blog-image {
  position: relative;
  overflow: hidden;
}

.blog-image img {
  transition: all 0.5s ease;
  width: 100%;
}

.blog-card:hover .blog-image img {
  transform: scale(1.05);
}

.blog-content {
  padding: 20px;
}

.blog-title {
  font-size: 1.3rem;
  margin-bottom: 10px;
  transition: all 0.3s ease;
}

.blog-title:hover {
  color: var(--primary-3);
}

.blog-excerpt {
  margin-bottom: 20px;
}

.blog-link {
  font-weight: 600;
  color: var(--primary-3);
  position: relative;
  padding-right: 20px;
}

.blog-link::after {
  content: '\f061';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease;
}

.blog-link:hover::after {
  right: -5px;
}

/* FAQ section */
.faq-section {
  background-color: var(--light-gray);
  position: relative;
}

.accordion-item {
  border: none;
  background-color: transparent;
  margin-bottom: 15px;
}

.accordion-button {
  background-color: var(--white);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  border-radius: 5px !important;
  font-weight: 600;
  padding: 15px 20px;
  color: var(--primary-1-dark);
}

.accordion-button:not(.collapsed) {
  color: var(--primary-3);
  background-color: var(--white);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.accordion-button:focus {
  box-shadow: none;
  border-color: var(--primary-3);
}

.accordion-body {
  padding: 20px;
  background-color: var(--white);
  border-radius: 0 0 5px 5px;
}

/* Gallery section */
.gallery-section {
  background-color: var(--white);
  padding: 80px 0;
}

.gallery-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  grid-gap: 15px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  height: 250px;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: all 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-icon {
  color: var(--white);
  font-size: 2rem;
}

/* Footer */
footer {
  background-color: var(--primary-1-dark);
  color: var(--light-gray);
  padding: 70px 0 0;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  display: inline-block;
}

.footer-desc {
  margin-bottom: 30px;
}

.footer-heading {
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 25px;
  position: relative;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  height: 2px;
  width: 40px;
  background-color: var(--primary-2);
}

.footer-links {
  list-style: none;
  padding-left: 0;
}

.footer-links li {
  margin-bottom: 15px;
}

.footer-links a {
  color: var(--light-gray);
  transition: all 0.3s ease;
  position: relative;
  padding-left: 15px;
}

.footer-links a::before {
  content: '\f105';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--primary-2);
}

.footer-links a:hover {
  color: var(--primary-2);
  padding-left: 20px;
}

.footer-contact li {
  margin-bottom: 20px;
  display: flex;
}

.footer-contact-icon {
  color: var(--primary-2);
  font-size: 1.3rem;
  margin-right: 15px;
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  margin-top: 40px;
}

/* Space page */
.space-container {
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Additional pages */
.page-header {
  height: 40vh;
  background: linear-gradient(rgba(42, 42, 42, 0.7), rgba(42, 42, 42, 0.7)), url('../LUX_images/page-header.webp');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
}

.page-title {
  font-size: 3rem;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

.breadcrumb {
  background: transparent;
  margin-bottom: 0;
}

.breadcrumb-item a {
  color: var(--primary-2);
}

.breadcrumb-item.active {
  color: var(--white);
}

/* Decorative elements */
.shape {
  position: absolute;
  z-index: 1;
}

.shape-1 {
  top: -50px;
  right: 0;
  width: 300px;
  height: 300px;
  background-color: var(--primary-2-light);
  opacity: 0.3;
  border-radius: 50%;
}

.shape-2 {
  bottom: -100px;
  left: -100px;
  width: 200px;
  height: 200px;
  background-color: var(--primary-3-light);
  opacity: 0.2;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

/* Animations */
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0px);
  }
}

.float {
  animation: float 5s ease-in-out infinite;
}

/* Media queries */
@media (max-width: 1200px) {
  .hero-title-1 {
    font-size: 3.5rem;
  }
}

@media (max-width: 992px) {
  section {
    padding: 60px 0;
  }
  
  .hero-title-1 {
    font-size: 3rem;
  }
  
  .hero-subtitle-1 {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .hero-title-1 {
    font-size: 2.5rem;
  }
  
  .about-content {
    padding: 20px 0;
  }
  
  .contact-form-container {
    padding: 30px 20px;
  }
}

@media (max-width: 576px) {
  section {
    padding: 50px 0;
  }
  
  .section-title {
    margin-bottom: 40px;
  }
  
  .hero-title-1 {
    font-size: 2rem;
  }
  
  .hero-subtitle-1 {
    font-size: 1.2rem;
  }
}

/* Prefers reduced motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
} 