/* MAIN CSS FILE FOR POSTNUPTIAL LEGAL WORKSHOPS TEMPLATE */

:root {
  /* Color Palette - Pastel */
  --primary-color-1: #e4c1c1; /* Soft pink */
  --primary-color-2: #d0c9e3; /* Lavender */
  --primary-color-3: #c8e6df; /* Mint */
  --primary-color-4: #f0e4cc; /* Cream */
  --primary-color-5: #d8e1e9; /* Pale blue */

  /* Color variations */
  --primary-color-1-dark: #c8a3a3;
  --primary-color-2-dark: #b5adc9;
  --primary-color-3-dark: #a9c9be;
  --primary-color-4-dark: #d5c9ad;
  --primary-color-5-dark: #b8c2cc;
  
  --primary-color-1-light: #f5e5e5;
  --primary-color-2-light: #e9e5f5;
  --primary-color-3-light: #e6f5f0;
  --primary-color-4-light: #f9f5ec;
  --primary-color-5-light: #eef2f7;

  /* Text colors */
  --text-dark: #333333;
  --text-medium: #666666;
  --text-light: #999999;
  
  /* Common values */
  --border-radius: 8px;
  --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  --transition: all 0.3s ease;
}

/* Base styles */
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Merriweather', serif;
  color: var(--text-dark);
  line-height: 1.6;
  background-color: #ffffff;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 1rem;
  font-weight: 700;
  color: var(--text-dark);
}

p {
  margin-bottom: 1rem;
}

/* Utility classes */
.section-padding {
  padding: 100px 0;
}

.section-title {
  position: relative;
  margin-bottom: 3rem;
  text-align: center;
}

.section-subtitle {
  font-family: 'Lato', sans-serif;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-medium);
  margin-bottom: 0.5rem;
}

.text-primary-1 { color: var(--primary-color-1); }
.text-primary-2 { color: var(--primary-color-2); }
.text-primary-3 { color: var(--primary-color-3); }
.text-primary-4 { color: var(--primary-color-4); }
.text-primary-5 { color: var(--primary-color-5); }

.bg-primary-1 { background-color: var(--primary-color-1); }
.bg-primary-2 { background-color: var(--primary-color-2); }
.bg-primary-3 { background-color: var(--primary-color-3); }
.bg-primary-4 { background-color: var(--primary-color-4); }
.bg-primary-5 { background-color: var(--primary-color-5); }

.bg-primary-1-light { background-color: var(--primary-color-1-light); }
.bg-primary-2-light { background-color: var(--primary-color-2-light); }
.bg-primary-3-light { background-color: var(--primary-color-3-light); }
.bg-primary-4-light { background-color: var(--primary-color-4-light); }
.bg-primary-5-light { background-color: var(--primary-color-5-light); }

/* Header styles */
.site-header {
  background-color: #fff;
  padding: 20px 0;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.site-header.scrolled {
  padding: 12px 0;
}

.site-logo {
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
  text-decoration: none;
}

.site-nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav li {
  margin-left: 2rem;
}

.site-nav a {
  font-family: 'Lato', sans-serif;
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  transition: var(--transition);
  position: relative;
}

.site-nav a:hover {
  color: var(--primary-color-1-dark);
}

.site-nav a:after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color-1-dark);
  transition: var(--transition);
}

.site-nav a:hover:after {
  width: 100%;
}

/* Hero section */
.hero-section {
  height: 100vh;
  min-height: 700px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-color-5-light);
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 800px;
  padding: 30px;
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  color: #fff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
  font-size: 1rem;
  color: #fff;
  margin-bottom: 2rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-desc {
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 2rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

/* About section */
.about-section {
  background-color: #fff;
  position: relative;
}

.about-content {
  padding: 50px 0;
}

.about-features {
  margin-top: 60px;
}

.about-feature-item {
  text-align: center;
  margin-bottom: 30px;
  padding: 30px 20px;
  border-radius: var(--border-radius);
  transition: var(--transition);
  background-color: #fff;
  border: 1px solid #eee;
}

.about-feature-item:hover {
  transform: translateY(-10px);
  box-shadow: var(--box-shadow);
  border-color: transparent;
}

.about-feature-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--primary-color-2-dark);
}

.about-feature-name {
  font-size: 1rem;
  margin-bottom: 15px;
}

.about-feature-desc {
  color: var(--text-medium);
}

/* Services section */
.services-section {
  background-color: var(--primary-color-4-light);
  position: relative;
}

.services-container {
  position: relative;
}

.service-item {
  margin-bottom: 30px;
  border-radius: var(--border-radius);
  overflow: hidden;
  background-color: #fff;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-item-img {
  height: 200px;
  width: 100%;
  object-fit: cover;
}

.service-item-content {
  padding: 25px;
}

.service-item-name {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.service-item-desc {
  margin-bottom: 15px;
  color: var(--text-medium);
}

.service-price {
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-color-1-dark);
  margin-bottom: 15px;
}

.service-features {
  padding-left: 0;
  list-style: none;
}

.service-features li {
  padding: 8px 0;
  font-size: 0.95rem;
  color: var(--text-medium);
  border-bottom: 1px solid #eee;
}

.service-features li:last-child {
  border-bottom: none;
}

.service-features li:before {
  content: '✓';
  margin-right: 10px;
  color: var(--primary-color-3);
}

/* Features section */
.features-section {
  background-color: #fff;
}

.feature-item {
  text-align: center;
  padding: 40px 30px;
  margin-bottom: 30px;
  border-radius: var(--border-radius);
  transition: var(--transition);
  border: 2px solid var(--primary-color-5-light);
}

.feature-item:hover {
  background-color: var(--primary-color-5-light);
}

.feature-icon {
  font-size: 3rem;
  color: var(--primary-color-5-dark);
  margin-bottom: 20px;
}

.feature-item-name {
  font-size: 1rem;
  margin-bottom: 15px;
}

.feature-item-desc {
  color: var(--text-medium);
}

/* Price plan section */
.priceplan-section {
  background-color: var(--primary-color-2-light);
}

.price-plan-item {
  background-color: #fff;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  margin-bottom: 30px;
  position: relative;
  transition: var(--transition);
}

.price-plan-item:hover {
  transform: translateY(-10px);
}

.price-plan-header {
  background-color: var(--primary-color-2);
  padding: 30px 20px;
  text-align: center;
}

.price-plan-name {
  font-size: 1rem;
  color: #fff;
  margin-bottom: 10px;
}

.price-plan-price {
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0;
}

.price-plan-content {
  padding: 30px;
}

.price-plan-desc {
  margin-bottom: 20px;
  color: var(--text-medium);
}

.price-plan-features {
  padding-left: 0;
  list-style: none;
}

.price-plan-features li {
  padding: 10px 0;
  border-bottom: 1px dashed #eee;
}

.price-plan-features li:last-child {
  border-bottom: none;
}

.price-plan-features li:before {
  content: '✓';
  margin-right: 10px;
  color: var(--primary-color-2);
}

/* Team section */
.team-section {
  background-color: #fff;
}

.team-member {
  margin-bottom: 30px;
  text-align: center;
}

.team-member-img {
  width: 100%;
  height: auto;
  border-radius: 50%;
  margin-bottom: 20px;
  border: 5px solid var(--primary-color-3-light);
  transition: var(--transition);
}

.team-member:hover .team-member-img {
  border-color: var(--primary-color-3);
  transform: scale(1.05);
}

.team-member-name {
  font-size: 1rem;
  margin-bottom: 5px;
}

.team-member-role {
  color: var(--text-medium);
  font-style: italic;
}

/* Reviews section */
.reviews-section {
  background-color: var(--primary-color-1-light);
  position: relative;
}

.review-item {
  background-color: #fff;
  border-radius: var(--border-radius);
  padding: 30px;
  margin: 15px;
  box-shadow: var(--box-shadow);
}

.review-text {
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
  padding: 0 20px;
}

.review-text:before,
.review-text:after {
  content: '"';
  font-size: 50px;
  color: var(--primary-color-1);
  position: absolute;
  opacity: 0.3;
}

.review-text:before {
  top: -20px;
  left: -10px;
}

.review-text:after {
  bottom: -40px;
  right: -10px;
}

.review-author {
  font-weight: 700;
  margin-bottom: 0;
  color: var(--text-dark);
}

/* Core info section */
.coreinfo-section {
  background-color: #fff;
}

.coreinfo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.coreinfo-item {
  padding: 30px;
  background-color: var(--primary-color-5-light);
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.coreinfo-item:hover {
  transform: translateY(-5px);
  background-color: var(--primary-color-5);
}

.coreinfo-item-title {
  font-size: 1.4rem;
  margin-bottom: 15px;
}

.coreinfo-item-desc {
  color: var(--text-medium);
}

/* Contact section */
.contact-section {
  background-color: var(--primary-color-3-light);
}

.contact-form {
  background-color: #fff;
  padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.form-group {
  margin-bottom: 25px;
}

.form-control {
  height: 50px;
  border: 1px solid #e1e1e1;
  border-radius: var(--border-radius);
  padding: 10px 15px;
  font-size: 16px;
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--primary-color-3);
  box-shadow: 0 0 0 0.2rem rgba(200, 230, 223, 0.25);
}

textarea.form-control {
  height: 150px;
  resize: none;
}

.contact-submit-btn {
  background-color: var(--primary-color-3-dark);
  border: none;
  color: #fff;
  font-weight: 700;
  padding: 12px 30px;
  border-radius: var(--border-radius);
  transition: var(--transition);
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-submit-btn:hover {
  background-color: var(--primary-color-3);
  transform: translateY(-3px);
}

.contact-info {
  margin-top: 50px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
}

.contact-info-icon {
  font-size: 1rem;
  color: var(--primary-color-3-dark);
  margin-right: 15px;
}

.contact-info-content {
  flex: 1;
}

.contact-info-content h4 {
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.contact-info-content p {
  color: var(--text-medium);
  margin-bottom: 0;
}

/* Blog section */
.blog-section {
  background-color: #fff;
}

.blog-grid {
  margin-top: 50px;
}

.blog-item {
  margin-bottom: 30px;
  border-radius: var(--border-radius);
  overflow: hidden;
  background-color: #fff;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.blog-item:hover {
  transform: translateY(-10px);
}

.blog-item-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.blog-item-content {
  padding: 25px;
}

.blog-item-title {
  font-size: 1rem;
  margin-bottom: 15px;
}

.blog-item-excerpt {
  color: var(--text-medium);
  margin-bottom: 20px;
}

.blog-item-link {
  display: inline-block;
  color: var(--primary-color-1-dark);
  font-weight: 700;
  transition: var(--transition);
  text-decoration: none;
}

.blog-item-link:hover {
  color: var(--primary-color-1);
}

/* Footer */
.site-footer {
  background-color: #2d2d2d;
  color: #fff;
  padding: 80px 0 20px;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  display: inline-block;
}

.footer-desc {
  color: #bbb;
  margin-bottom: 30px;
}

.footer-heading {
  font-size: 18px;
  margin-bottom: 25px;
  color: #fff;
  position: relative;
}

.footer-heading:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 50px;
  height: 2px;
  background-color: var(--primary-color-3);
}

.footer-links {
  list-style: none;
  padding-left: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #bbb;
  text-decoration: none;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--primary-color-3);
}

.footer-contact p {
  margin-bottom: 15px;
  color: #bbb;
}

.footer-bottom {
  margin-top: 60px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
  color: #999;
  font-size: 14px;
}

/* Additional Pages */
.page-header {
  height: 400px;
  background-color: var(--primary-color-5-light);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

.page-header-overlay {
  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;
}

.page-title {
  font-size: 3rem;
  color: #fff;
  margin-bottom: 10px;
}

.page-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
}

.section-alt {
  padding: 80px 0;
}

.section-alt:nth-child(even) {
  background-color: var(--primary-color-2-light);
}

.section-alt:nth-child(odd) {
  background-color: #fff;
}

/* Animation elements */
.shape-decoration {
  position: absolute;
  z-index: 0;
  opacity: 0.15;
}

.shape-1 {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background-color: var(--primary-color-1);
  top: -100px;
  right: 10%;
}

.shape-2 {
  width: 150px;
  height: 150px;
  background-color: var(--primary-color-2);
  bottom: -50px;
  left: 5%;
  transform: rotate(45deg);
}

.shape-3 {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 30px solid var(--primary-color-3);
  top: 20%;
  right: -150px;
}

/* Swiper styles */
.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.7);
  opacity: 0.7;
}

.swiper-pagination-bullet-active {
  background-color: #fff;
  opacity: 1;
}

.swiper-button-next,
.swiper-button-prev {
  color: #fff;
}

/* Space page */
.space-container {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-color-4-light);
}

#space {
  width: 100%;
  height: 100%;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-in {
  animation: fadeIn 1s ease forwards;
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

.float {
  animation: float 3s ease-in-out infinite;
} 