/* Bioethics Consultation Office - Main Stylesheet */

:root {
  /* Color Palette - Pastel Theme */
  --primary-1: #a8d5e2; /* Soft sky blue */
  --primary-1-light: #c9e6ef;
  --primary-1-dark: #86c4d8;
  
  --primary-2: #d8e2dc; /* Pale sage */
  --primary-2-light: #ebf0ec;
  --primary-2-dark: #b9c6bf;
  
  --primary-3: #ffcad4; /* Soft pink */
  --primary-3-light: #ffe2e7;
  --primary-3-dark: #f9a8b9;
  
  --primary-4: #f0efeb; /* Off white */
  --primary-4-light: #fbfbf9;
  --primary-4-dark: #e1e0d8;
  
  --primary-5: #9d8189; /* Dusty mauve */
  --primary-5-light: #b9a3aa;
  --primary-5-dark: #7a656c;
  
  --white: #ffffff;
  --black: #333333;
  --gray: #7d7d7d;
  --light-gray: #f5f5f5;
}

/* Base Styles */
html, body {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--black);
  background-color: var(--white);
  overflow-x: hidden;
  scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--primary-5-dark);
}

p {
  margin-bottom: 1.5rem;
}

a {
  color: var(--primary-5);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--primary-5-dark);
}

.section-padding {
  padding: 100px 0;
}

.section-title {
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-title h2:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 60px;
  height: 3px;
  background: var(--primary-3);
}

.section-title p {
  font-size: 1.1rem;
  color: var(--gray);
}

/* Button Styles */
.btn-primary {
  background-color: var(--primary-5);
  border-color: var(--primary-5);
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--primary-5-dark);
  border-color: var(--primary-5-dark);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--primary-5);
  color: var(--primary-5);
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background-color: var(--primary-5);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.header .navbar {
  padding: 15px 0;
}

.header .navbar-brand {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-5-dark);
}

.header .nav-link {
  font-weight: 500;
  padding: 10px 15px !important;
  position: relative;
}

.header .nav-link:after {
  content: "";
  position: absolute;
  left: 15px;
  bottom: 5px;
  width: 0;
  height: 2px;
  background: var(--primary-3);
  transition: all 0.3s ease;
}

.header .nav-link:hover:after,
.header .nav-link.active:after {
  width: calc(100% - 30px);
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-slide {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.hero-slide .container {
  position: relative;
  z-index: 3;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 20px;
  animation: fadeInUp 1s ease;
}

.hero-subtitle {
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 30px;
  animation: fadeInUp 1s ease 0.3s;
  animation-fill-mode: both;
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 40px;
  max-width: 600px;
  animation: fadeInUp 1s ease 0.6s;
  animation-fill-mode: both;
}

/* About Section */
.about-section {
  position: relative;
  overflow: hidden;
}

.about-img {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about-img img {
  width: 100%;
  transition: all 0.5s ease;
}

.about-img:hover img {
  transform: scale(1.05);
}

.about-feature {
  background: var(--white);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

.about-feature:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about-feature i {
  font-size: 2rem;
  color: var(--primary-3);
  margin-bottom: 20px;
}

.about-feature h4 {
  font-size: 1.3rem;
  margin-bottom: 15px;
}

/* Services Section */
.services-section {
  background-color: var(--light-gray);
  position: relative;
}

.services-item {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.services-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: linear-gradient(135deg, var(--primary-1-light), var(--primary-3-light));
  opacity: 0.1;
  z-index: -1;
  transition: all 0.5s ease;
}

.services-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.services-item:hover::before {
  height: 100%;
}

.services-item i {
  font-size: 2.5rem;
  color: var(--primary-3);
  margin-bottom: 20px;
}

.services-item h4 {
  font-size: 1rem;
  margin-bottom: 15px;
}

.services-price {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-5);
  margin: 20px 0;
}

.services-features {
  margin: 20px 0;
  padding: 0;
  list-style-type: none;
}

.services-features li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

.services-features li::before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: var(--primary-3);
  position: absolute;
  left: 0;
  top: 2px;
}

/* Features Section */
.features-section {
  position: relative;
}

.features-item {
  text-align: center;
  margin-bottom: 40px;
}

.features-item .icon {
  width: 80px;
  height: 80px;
  line-height: 80px;
  border-radius: 50%;
  background: var(--primary-2-light);
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--primary-5);
  transition: all 0.3s ease;
}

.features-item:hover .icon {
  background: var(--primary-5);
  color: var(--white);
  transform: rotateY(180deg);
}

.features-item h4 {
  font-size: 1.3rem;
  margin-bottom: 15px;
}

/* Price Plan Section */
.priceplan-section {
  background-color: var(--light-gray);
}

.priceplan-item {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  margin-bottom: 30px;
}

.priceplan-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.priceplan-header {
  background: linear-gradient(135deg, var(--primary-1), var(--primary-3));
  padding: 30px;
  text-align: center;
  color: var(--white);
}

.priceplan-header h4 {
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 15px;
}

.priceplan-price {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0;
}

.priceplan-body {
  padding: 30px;
}

.priceplan-features {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.priceplan-features li {
  margin-bottom: 15px;
  position: relative;
  padding-left: 25px;
}

.priceplan-features li::before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: var(--primary-3);
  position: absolute;
  left: 0;
  top: 2px;
}

/* Team Section */
.team-section {
  position: relative;
}

.team-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.team-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.team-image {
  position: relative;
  overflow: hidden;
}

.team-image img {
  width: 100%;
  transition: all 0.5s ease;
}

.team-item:hover .team-image img {
  transform: scale(1.05);
}

.team-info {
  background: var(--white);
  padding: 25px;
  text-align: center;
}

.team-info h4 {
  font-size: 1.3rem;
  margin-bottom: 5px;
}

.team-info p {
  color: var(--gray);
  margin-bottom: 0;
}

/* Reviews Section */
.reviews-section {
  background-color: var(--light-gray);
  position: relative;
}

.reviews-item {
  background: var(--white);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  margin-bottom: 30px;
  position: relative;
}

.reviews-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.reviews-item::before {
  content: "\f10d";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 2rem;
  color: var(--primary-3-light);
  position: absolute;
  top: 20px;
  left: 20px;
  opacity: 0.2;
}

.reviews-text {
  font-style: italic;
  margin-bottom: 20px;
}

.reviews-author {
  font-weight: 600;
  color: var(--primary-5);
}

/* Core Info Section */
.coreinfo-section {
  position: relative;
}

.coreinfo-item {
  background: var(--white);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

.coreinfo-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.coreinfo-item i {
  font-size: 2rem;
  color: var(--primary-3);
  margin-bottom: 20px;
}

.coreinfo-item h4 {
  font-size: 1.3rem;
  margin-bottom: 15px;
}

/* Contact Section */
.contact-section {
  position: relative;
}

.contact-form {
  background: var(--white);
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.contact-form .form-control {
  height: 50px;
  padding: 10px 20px;
  border-color: var(--light-gray);
  border-radius: 5px;
  margin-bottom: 20px;
}

.contact-form textarea.form-control {
  height: 150px;
}

.contact-form .form-control:focus {
  box-shadow: none;
  border-color: var(--primary-5);
}

.contact-info {
  background: linear-gradient(135deg, var(--primary-1), var(--primary-3));
  padding: 40px;
  border-radius: 10px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-info-item {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}

.contact-info-item i {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
}

.contact-info-item h5 {
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 5px;
}

.contact-info-item p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0;
}

/* Blog Section */
.blog-section {
  position: relative;
}

.blog-item {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

.blog-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.blog-image {
  position: relative;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  transition: all 0.5s ease;
}

.blog-item:hover .blog-image img {
  transform: scale(1.05);
}

.blog-content {
  padding: 25px;
}

.blog-content h4 {
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.blog-content p {
  margin-bottom: 20px;
}

/* Footer */
.footer {
  background: var(--primary-5-dark);
  padding: 80px 0 30px;
  color: var(--white);
}

.footer-logo {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
  display: inline-block;
  color: var(--white);
}

.footer-desc {
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-title {
  font-size: 1.3rem;
  margin-bottom: 25px;
  color: var(--white);
  position: relative;
  padding-bottom: 10px;
}

.footer-title:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background: var(--primary-3);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 15px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--white);
  padding-left: 5px;
}

.footer-contact p {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.footer-contact i {
  width: 30px;
  height: 30px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  margin-top: 50px;
}

.footer-copyright {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Space Page */
#space {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Decorative Shapes */
.shape-1 {
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: var(--primary-1-light);
  border-radius: 50%;
  opacity: 0.3;
  z-index: -1;
}

.shape-2 {
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 300px;
  height: 300px;
  background: var(--primary-3-light);
  border-radius: 50%;
  opacity: 0.3;
  z-index: -1;
}

/* Additional Pages */
.page-header {
  background: linear-gradient(135deg, var(--primary-1-dark), var(--primary-5-dark));
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../RET_images/pattern.png');
  opacity: 0.1;
}

.page-title {
  font-size: 2.5rem;
  color: var(--white);
  margin-bottom: 15px;
  position: relative;
}

.page-subtitle {
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
}

.add-page-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.add-page-section:nth-child(even) {
  background-color: var(--light-gray);
}

.add-page-section .section-title {
  margin-bottom: 50px;
}

.add-page-item {
  background: var(--white);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

.add-page-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.add-page-item i {
  font-size: 2rem;
  color: var(--primary-3);
  margin-bottom: 20px;
}

.add-page-item h4 {
  font-size: 1.3rem;
  margin-bottom: 15px;
} 