:root {
  /* Color Palette */
  --primary-color: #eadcd1; /* Coastal sand */
  --secondary-color: #8ca9b9; /* Ocean blue */
  --accent-color: #c09f80; /* Champagne bronze */
  --neutral-color: #f9f7f5; /* Ivory white */
  --dark-color: #343a40; /* Dark charcoal */
  
  /* Shades */
  --primary-light: #f5f0eb;
  --primary-dark: #d0b9a5;
  --secondary-light: #b5c9d4;
  --secondary-dark: #6a8799;
  --accent-light: #d8c2ad;
  --accent-dark: #a37e5c;
}

/* Base Styles */
html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
overflow-x: hidden;
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--dark-color);
  background-color: var(--neutral-color);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--dark-color);
}

p {
  margin-bottom: 1.5rem;
}

/* Header */
header {
  position: fixed;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

header.scrolled {
  background: white;
}

#sitename {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--accent-dark);
}

.navbar-nav .nav-link {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 1.5rem 1rem !important;
  color: var(--dark-color);
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--accent-color);
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 600px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  color: white;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

/* Section Styles */
section {
  padding: 6rem 0;
}

.section-title {
  margin-bottom: 3.5rem;
  position: relative;
}

.section-title h2 {
  position: relative;
  display: inline-block;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.section-title h2:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 50px;
  height: 3px;
  background-color: var(--accent-color);
}

.section-title p {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 1.5rem auto 0;
}

/* About Section */
.about-section {
  background-color: var(--primary-light);
}

.about-feature {
  padding: 2rem;
  border-radius: 10px;
  background-color: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-feature:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.about-feature-icon {
  font-size: 2.5rem;
  color: var(--accent-color);
  margin-bottom: 1.5rem;
}

/* Services Section */
.services-item {
  padding: 2.5rem;
  border-radius: 10px;
  background-color: white;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
  height: 100%;
  transition: transform 0.3s ease;
}

.services-item:hover {
  transform: translateY(-10px);
}

.services-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--accent-color);
}

.services-item h3 {
  margin-top: 1.5rem;
  font-size: 1.5rem;
}

.services-item .price {
  font-size: 1.8rem;
  color: var(--accent-dark);
  font-weight: 700;
  margin: 1rem 0;
}

.services-features {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.services-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #eee;
}

.services-features li:last-child {
  border-bottom: none;
}

/* Features Section */
.features-section {
  background-color: var(--secondary-light);
  color: var(--dark-color);
}

.features-item {
  text-align: center;
  padding: 2rem;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.features-icon {
  font-size: 3rem;
  color: var(--accent-color);
  margin-bottom: 1.5rem;
}

/* Price Plan Section */
.priceplan-item {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  text-align: center;
  position: relative;
  height: 100%;
}

.priceplan-header {
  padding: 2rem;
  background-color: var(--secondary-light);
  color: var(--dark-color);
}

.priceplan-price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-dark);
}

.priceplan-body {
overflow-x: hidden;
  padding: 2rem;
}

.priceplan-features {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.priceplan-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #eee;
}

/* Team Section */
.team-section {
  background-color: var(--primary-light);
}

.team-member {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
}

.team-member-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.team-member-info {
  padding: 1.5rem;
  text-align: center;
}

.team-member-name {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.team-member-role {
  color: var(--accent-color);
  font-style: italic;
}

/* Reviews Section */
.reviews-section {
  background-color: var(--secondary-light);
}

.reviews-slider {
  padding: 2rem 0;
}

.reviews-item {
  padding: 2.5rem;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  margin: 1rem;
}

.reviews-text {
  font-style: italic;
  position: relative;
  padding-left: 2rem;
}

.reviews-text::before {
  content: '\201C';
  font-family: Georgia, serif;
  font-size: 4rem;
  position: absolute;
  left: -10px;
  top: -20px;
  color: var(--accent-light);
  opacity: 0.5;
}

.reviews-author {
  font-weight: 700;
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
}

/* Core Info Section */
.coreinfo-section {
  background-color: var(--accent-light);
}

.coreinfo-item {
  text-align: center;
  padding: 2rem;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: transform 0.3s ease;
}

.coreinfo-item:hover {
  transform: translateY(-10px);
}

.coreinfo-icon {
  font-size: 2.5rem;
  color: var(--accent-color);
  margin-bottom: 1.5rem;
}

/* Contact Section */
.contact-section {
  background-color: var(--primary-light);
}

.contact-form {
  background-color: white;
  padding: 3rem;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.form-control {
  border: 2px solid #eee;
  padding: 0.8rem 1rem;
  margin-bottom: 1.5rem;
  border-radius: 5px;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--accent-color);
  box-shadow: none;
}

.form-check-input:checked {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.btn-submit {
  background-color: var(--accent-color);
  color: white;
  border: none;
  padding: 0.8rem 2rem;
  border-radius: 5px;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.btn-submit:hover {
  background-color: var(--accent-dark);
}

/* Blog Section */
.blog-section {
  background-color: var(--neutral-color);
}

.blog-item {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: transform 0.3s ease;
}

.blog-item:hover {
  transform: translateY(-10px);
}

.blog-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.blog-content {
  padding: 1.5rem;
}

.blog-title {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.blog-excerpt {
  margin-bottom: 1.5rem;
}

.blog-link {
  color: var(--accent-color);
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  position: relative;
}

.blog-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--accent-color);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.blog-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* FAQ Section */
.faq-section {
  background-color: var(--primary-light);
}

.accordion-item {
  margin-bottom: 1rem;
  border: none;
  border-radius: 10px;
  overflow: hidden;
}

.accordion-button {
  background-color: white;
  color: var(--dark-color);
  font-weight: 600;
  padding: 1.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.accordion-button:not(.collapsed) {
  background-color: var(--accent-light);
  color: var(--dark-color);
}

.accordion-button:focus {
  box-shadow: none;
  border-color: rgba(0, 0, 0, 0.125);
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23c09f80'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
overflow-x: hidden;
  padding: 1.5rem;
  background-color: white;
}

/* Gallery Section */
.gallery-section {
  background-color: var(--secondary-light);
}

.gallery-container {
  column-count: 3;
  column-gap: 15px;
}

.gallery-item {
  margin-bottom: 15px;
  break-inside: avoid;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}

.gallery-img {
  width: 100%;
  display: block;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-img {
  transform: scale(1.05);
}

/* Footer */
footer {
  background-color: var(--dark-color);
  color: white;
  padding: 5rem 0 1rem;
}

.footer-info {
  margin-bottom: 3rem;
}

#sitename {
  color: white;
  font-size: 2rem;
  margin-bottom: 1rem;
}

#sitedesc {
  color: rgba(255, 255, 255, 0.7);
  max-width: 300px;
}

.footer-heading {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: white;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: white;
}

.contact-info p {
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

#site-copyright {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

/* Decorative Elements */
.shape-blob {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  background: var(--primary-light);
  opacity: 0.5;
}

.shape-1 {
  width: 300px;
  height: 300px;
  top: -150px;
  right: -150px;
}

.shape-2 {
  width: 200px;
  height: 200px;
  bottom: -100px;
  left: -100px;
}

/* Additional Pages */
.page-header {
  height: 50vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  position: relative;
  color: white;
}

.page-header::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.page-header-content {
  position: relative;
  z-index: 2;
}

/* Space Page */
#space {
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Breadcrumb */
.breadcrumb-container {
  padding: 1rem 0;
  background: var(--primary-light);
} 