:root {
  /* Primary Colors */
  --primary-color-1: #6c4675; /* Deep Purple */
  --primary-color-2: #c17f46; /* Terracotta Orange */
  --primary-color-3: #4a7c59; /* Forest Green */
  --primary-color-4: #d9c589; /* Soft Gold */
  --primary-color-5: #7a6c5d; /* Warm Taupe */

  /* Shades */
  --primary-color-1-light: #8d68a0;
  --primary-color-1-dark: #4b3150;
  --primary-color-2-light: #e09e64;
  --primary-color-2-dark: #9c632f;
  --primary-color-3-light: #6a9e79;
  --primary-color-3-dark: #355a41;
  --primary-color-4-light: #f0dfb7;
  --primary-color-4-dark: #b6a361;
  --primary-color-5-light: #9b8a79;
  --primary-color-5-dark: #59504a;

  /* Neutrals */
  --light-bg: #f8f6f2;
  --dark-bg: #333333;
  --text-color: #444444;
  --text-light: #ffffff;
}

/* General Styles */
body {
  font-family: 'Montserrat', sans-serif;
  color: var(--text-color);
  background-color: var(--light-bg);
  overflow-x: hidden;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--primary-color-1);
}

.container {
  max-width: 1200px;
}

.btn-primary {
  background-color: var(--primary-color-1);
  border-color: var(--primary-color-1);
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--primary-color-1-dark);
  border-color: var(--primary-color-1-dark);
}

.btn-secondary {
  background-color: var(--primary-color-2);
  border-color: var(--primary-color-2);
  color: var(--text-light);
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background-color: var(--primary-color-2-dark);
  border-color: var(--primary-color-2-dark);
}

section {
  padding: 5rem 0;
}

/* Header Styles */
header {
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
}

header.scrolled {
  padding: 0.5rem 0;
}

.navbar-brand {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--primary-color-1);
}

.navbar-nav .nav-link {
  color: var(--primary-color-5);
  font-weight: 500;
  padding: 0.5rem 1rem;
  margin: 0 0.25rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary-color-1);
}

/* Hero Section */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(rgba(107, 70, 117, 0.8), rgba(107, 70, 117, 0.6)), url('../PEN_images/hero-bg.webp');
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

#hero .container {
  position: relative;
  z-index: 2;
}

#hero h1 {
  color: white;
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

#hero p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
  max-width: 600px;
  margin-bottom: 2rem;
}

.hero-shape {
  position: absolute;
  bottom: -5%;
  right: -5%;
  width: 40%;
  height: 40%;
  background-color: var(--primary-color-4-light);
  opacity: 0.3;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  z-index: 1;
}

/* About Section */
#about {
  background-color: white;
  position: relative;
}

.about-img-container {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-feature {
  padding: 1.5rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  background-color: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 1.5rem;
  border-left: 4px solid var(--primary-color-1);
}

.about-feature h4 {
  color: var(--primary-color-1);
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}

.about-feature p {
  margin-bottom: 0;
  color: var(--text-color);
}

/* Services Section */
#services {
  background-color: var(--light-bg);
  position: relative;
}

.services-blob {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background-color: var(--primary-color-3-light);
  opacity: 0.1;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  z-index: 0;
}

.service-card {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-image {
  height: 200px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.1);
}

.service-content {
  padding: 1.5rem;
}

.service-content h3 {
  color: var(--primary-color-1);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.service-price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-color-2);
  margin-bottom: 1rem;
}

.service-features {
  list-style-type: none;
  padding-left: 0;
}

.service-features li {
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1.5rem;
}

.service-features li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-color-3);
}

/* Features Section */
#features {
  background-color: white;
}

.feature-card {
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: 10px;
  background-color: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  margin-bottom: 30px;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--primary-color-1);
  background-color: var(--light-bg);
  border-radius: 50%;
}

.feature-card h3 {
  color: var(--primary-color-1);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

/* Price Plans Section */
#priceplan {
  background-color: var(--light-bg);
  position: relative;
}

.price-card {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
  text-align: center;
  padding-bottom: 2rem;
}

.price-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.price-header {
  background-color: var(--primary-color-1);
  color: white;
  padding: 2rem 1rem;
}

.price-header h3 {
  color: white;
  margin-bottom: 0.5rem;
}

.price-value {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 1rem 0;
}

.price-features {
  list-style-type: none;
  padding: 1.5rem;
  text-align: left;
}

.price-features li {
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1.5rem;
}

.price-features li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-color-3);
}

/* Team Section */
#team {
  background-color: white;
}

.team-member {
  text-align: center;
  margin-bottom: 30px;
}

.team-img {
  width: 200px;
  height: 200px;
  overflow: hidden;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  position: relative;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-member h4 {
  margin-bottom: 0.5rem;
}

.team-member p {
  color: var(--primary-color-2);
  font-weight: 500;
}

/* Reviews Section */
#reviews {
  background-color: var(--light-bg);
  position: relative;
}

.reviews-shape {
  position: absolute;
  top: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background-color: var(--primary-color-4);
  opacity: 0.2;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  z-index: 0;
}

.review-card {
  background-color: white;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin: 1rem;
}

.review-text {
  font-style: italic;
  margin-bottom: 1.5rem;
  position: relative;
  padding-left: 1.5rem;
  border-left: 3px solid var(--primary-color-1);
}

.review-author {
  display: flex;
  align-items: center;
}

.review-author-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 1rem;
  border: 2px solid var(--primary-color-1);
}

.review-author-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-author-info h5 {
  margin-bottom: 0.25rem;
}

.review-author-info p {
  margin-bottom: 0;
  color: var(--primary-color-5);
  font-size: 0.9rem;
}

/* Core Info Section */
#coreinfo {
  background-color: white;
}

.coreinfo-card {
  text-align: center;
  margin-bottom: 30px;
}

.coreinfo-icon {
  font-size: 2.5rem;
  color: var(--primary-color-1);
  margin-bottom: 1rem;
}

.coreinfo-card h4 {
  margin-bottom: 1rem;
}

/* Contact Section */
#contact {
  background: linear-gradient(135deg, var(--primary-color-1), var(--primary-color-1-dark));
  color: white;
}

#contact h2, #contact h3, #contact p {
  color: white;
}

.contact-form {
  background-color: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form .form-control {
  border: 1px solid #e1e1e1;
  border-radius: 5px;
  padding: 0.75rem 1rem;
  margin-bottom: 1.5rem;
}

.contact-form .form-control:focus {
  border-color: var(--primary-color-1);
  box-shadow: 0 0 0 0.25rem rgba(108, 70, 117, 0.25);
}

.contact-form .form-check {
  margin-bottom: 1.5rem;
}

.contact-form .btn-submit {
  background-color: var(--primary-color-2);
  border-color: var(--primary-color-2);
  color: white;
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.contact-form .btn-submit:hover {
  background-color: var(--primary-color-2-dark);
  border-color: var(--primary-color-2-dark);
}

.contact-info {
  padding: 2rem;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  margin-bottom: 1.5rem;
}

.contact-info-item {
  display: flex;
  margin-bottom: 1.5rem;
}

.contact-info-icon {
  font-size: 1.5rem;
  margin-right: 1rem;
  color: var(--primary-color-4);
}

.contact-info-text h5 {
  color: var(--primary-color-4);
  margin-bottom: 0.5rem;
}

.contact-info-text p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.9);
}

/* Blog Section */
#blog {
  background-color: var(--light-bg);
}

.blog-card {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.blog-img {
  height: 200px;
  overflow: hidden;
}

.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-img img {
  transform: scale(1.1);
}

.blog-content {
  padding: 1.5rem;
}

.blog-content h4 {
  margin-bottom: 1rem;
}

.blog-content p {
  margin-bottom: 1rem;
}

.blog-link {
  color: var(--primary-color-1);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-link:hover {
  color: var(--primary-color-1-dark);
}

/* FAQ Section */
#faq {
  background-color: white;
}

.accordion-item {
  margin-bottom: 1rem;
  border-radius: 5px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.accordion-button {
  font-weight: 600;
  padding: 1.25rem 1.5rem;
  background-color: white;
  color: var(--primary-color-1);
}

.accordion-button:not(.collapsed) {
  background-color: rgba(108, 70, 117, 0.05);
  color: var(--primary-color-1);
}

.accordion-button:focus {
  box-shadow: none;
  border-color: rgba(108, 70, 117, 0.1);
}

.accordion-body {
  padding: 1.5rem;
  background-color: white;
}

/* Gallery Section */
#gallery {
  background-color: var(--light-bg);
  padding-bottom: 3rem;
}

.gallery-item {
  margin-bottom: 2rem;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* Footer */
footer {
  background-color: var(--dark-bg);
  color: white;
  padding: 4rem 0 2rem;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 2rem;
  color: white;
  margin-bottom: 1rem;
}

.footer-desc {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2rem;
}

.footer-heading {
  color: white;
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
  position: relative;
}

.footer-heading:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 40px;
  height: 2px;
  background-color: var(--primary-color-2);
}

.footer-links {
  list-style: none;
  padding-left: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: white;
}

.footer-contact p {
  margin-bottom: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
}

.footer-contact i {
  margin-right: 1rem;
  color: var(--primary-color-2);
}

.footer-bottom {
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  margin-bottom: 0;
}

/* Additional Page Styles */
.page-header {
  padding: 8rem 0 5rem;
  background: linear-gradient(rgba(107, 70, 117, 0.8), rgba(107, 70, 117, 0.6)), url('../PEN_images/page-header.webp');
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
}

.page-header h1 {
  color: white;
  font-size: 3rem;
}

.page-header p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto;
}

.breadcrumb {
  justify-content: center;
  background: transparent;
  margin-bottom: 0;
}

.breadcrumb-item a {
  color: var(--primary-color-4);
  text-decoration: none;
}

.breadcrumb-item.active {
  color: white;
}

/* Animations */
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0px);
  }
}

.float-animation {
  animation: float 6s ease-in-out infinite;
} 