/* Main CSS for Collaborative Divorce Studios Template */

:root {
  --primary-sage: #9CAF88;
  --primary-lavender: #B4A6D3;
  --primary-dusty-rose: #D4A6A6;
  --primary-cream: #F4F1E8;
  --primary-soft-teal: #A8C8C8;
  
  --light-sage: #C8D4B8;
  --light-lavender: #D4C8E3;
  --light-dusty-rose: #E4C6C6;
  --light-cream: #F9F7F1;
  --light-soft-teal: #C8E0E0;
  
  --dark-sage: #6B7F58;
  --dark-lavender: #8476A3;
  --dark-dusty-rose: #A47676;
  --dark-cream: #E0DBD0;
  --dark-soft-teal: #708080;
  
  --text-primary: #4A4A4A;
  --text-secondary: #6B6B6B;
  --text-light: #8A8A8A;
  --bg-light: #FEFEFE;
  --bg-overlay: rgba(156, 175, 136, 0.9);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
overflow-x: hidden;
  font-family: 'Georgia', 'Times New Roman', serif;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--bg-light);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles */
.site-header {
  background: linear-gradient(135deg, var(--primary-cream), var(--light-sage));
  padding: 1rem 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-brand {
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--dark-sage);
  text-decoration: none;
}

.navbar-nav {
  flex-direction: row;
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--primary-lavender);
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary-cream) 0%, var(--light-soft-teal) 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../PEN_images/hero-background.webp') center/cover no-repeat;
  opacity: 0.3;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-text h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  color: var(--dark-sage);
  line-height: 1.2;
}

.hero-text h2 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: var(--primary-lavender);
  font-weight: 300;
}

.hero-text p {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.hero-image {
  text-align: center;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* Decorative Shapes */
.decorative-blob {
  position: absolute;
  border-radius: 50% 40% 60% 30%;
  opacity: 0.1;
  z-index: 1;
}

.blob-1 {
  width: 300px;
  height: 300px;
  background: var(--primary-lavender);
  top: 10%;
  right: 10%;
  animation: float 6s ease-in-out infinite;
}

.blob-2 {
  width: 200px;
  height: 200px;
  background: var(--primary-dusty-rose);
  bottom: 20%;
  left: 5%;
  animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(5deg); }
}

/* Section Styles */
.section {
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  font-size: 2.5rem;
  color: var(--dark-sage);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.4rem;
  color: var(--primary-lavender);
  margin-bottom: 1rem;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* About Section */
.about-section {
  background: linear-gradient(135deg, var(--light-cream), var(--light-sage));
}

.about-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.about-feature {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.about-feature:hover {
  transform: translateY(-5px);
}

.about-feature h4 {
  color: var(--dark-sage);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.about-feature p {
  color: var(--text-secondary);
}

/* Services Section */
.services-section {
  background: var(--bg-light);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--primary-sage), var(--primary-lavender));
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: var(--light-sage);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--dark-sage);
}

.service-name {
  font-size: 1.5rem;
  color: var(--dark-sage);
  margin-bottom: 1rem;
}

.service-desc {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.service-features {
  color: var(--text-light);
  margin-bottom: 2rem;
  font-style: italic;
}

.service-price {
  font-size: 2rem;
  font-weight: bold;
  color: var(--primary-lavender);
}

/* Team Section */
.team-section {
  background: linear-gradient(135deg, var(--light-lavender), var(--light-cream));
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.team-member {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
}

.team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-name {
  font-size: 1.3rem;
  color: var(--dark-sage);
  margin-bottom: 0.5rem;
}

.team-role {
  color: var(--primary-lavender);
  font-style: italic;
}

/* Reviews Section */
.reviews-section {
  background: var(--bg-light);
}

.reviews-slider {
  margin-top: 3rem;
}

.review-card {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  margin: 0 1rem;
}

.review-text {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  font-style: italic;
  position: relative;
}

.review-text::before {
  content: '"';
  font-size: 3rem;
  color: var(--primary-lavender);
  position: absolute;
  top: -10px;
  left: -10px;
}

.review-author {
  font-size: 1.2rem;
  color: var(--dark-sage);
  font-weight: bold;
}

/* Gallery Section */
.gallery-section {
  background: linear-gradient(135deg, var(--light-dusty-rose), var(--light-cream));
  padding: 4rem 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.gallery-item {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
}

.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* FAQ Section */
.faq-section {
  background: var(--bg-light);
}

.faq-accordion {
  max-width: 800px;
  margin: 3rem auto 0;
}

.faq-item {
  background: white;
  border-radius: 10px;
  margin-bottom: 1rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  overflow: hidden;
}

.faq-question {
  background: var(--light-sage);
  padding: 1.5rem;
  cursor: pointer;
  font-size: 1.1rem;
  color: var(--dark-sage);
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background: var(--primary-sage);
  color: white;
}

.faq-answer {
  padding: 1.5rem;
  color: var(--text-secondary);
  display: none;
}

.faq-answer.active {
  display: block;
}

/* Contact Section */
.contact-section {
  background: linear-gradient(135deg, var(--light-soft-teal), var(--light-cream));
}

.contact-form {
  max-width: 600px;
  margin: 3rem auto 0;
  background: white;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-control {
  width: 100%;
  padding: 1rem;
  border: 2px solid var(--light-sage);
  border-radius: 10px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-lavender);
}

.btn-submit {
  background: linear-gradient(135deg, var(--primary-sage), var(--primary-lavender));
  color: white;
  padding: 1rem 2rem;
  border: none;
  border-radius: 25px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: transform 0.3s ease;
  width: 100%;
}

.btn-submit:hover {
  transform: translateY(-2px);
}

/* Footer Styles */
.site-footer {
  background: linear-gradient(135deg, var(--dark-sage), var(--dark-lavender));
  color: white;
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  margin-bottom: 1rem;
  color: var(--light-cream);
}

.footer-section p {
  margin-bottom: 0.5rem;
}

.footer-policies {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.2);
}

.footer-policies a {
  color: var(--light-cream);
  text-decoration: none;
  margin-right: 1rem;
}

.footer-policies a:hover {
  color: white;
}

.copyright {
  text-align: center;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.2);
  color: var(--light-cream);
  font-size: 0.9rem;
}

/* Breadcrumb */
.breadcrumb {
  padding: 0.5rem 0;
  background: transparent;
}

.breadcrumb img {
  height: 20px;
  opacity: 0.7;
} 