/* Main CSS File for Cologne Book Club Template */

:root {
  /* Color Variables */
  --primary-color: #5E3B76;     /* Deep Purple */
  --secondary-color: #E8A87C;   /* Peach */
  --accent-color: #41B3A3;      /* Teal */
  --highlight-color: #C38D9E;   /* Dusty Rose */
  --neutral-color: #85DCB8;     /* Mint Green */
  
  /* Shades */
  --primary-light: #8265A7;
  --primary-dark: #432759;
  --secondary-light: #F4C8A6;
  --secondary-dark: #D08C5E;
  --accent-light: #71CFC0;
  --accent-dark: #318F80;
  --highlight-light: #D9B0BD;
  --highlight-dark: #A76F81;
  --neutral-light: #A8E7CE;
  --neutral-dark: #63C49D;
  
  /* Base Colors */
  --white: #FFFFFF;
  --light-gray: #F5F5F5;
  --mid-gray: #D9D9D9;
  --dark-gray: #555555;
  --black: #222222;
}

/* Base Styles */
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--black);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--accent-dark);
}

.btn {
  padding: 0.8rem 1.5rem;
  border-radius: 5px;
  font-weight: 500;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
}

.btn-secondary {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  color: var(--black);
}

.btn-secondary:hover {
  background-color: var(--secondary-dark);
  border-color: var(--secondary-dark);
}

.section-padding {
  padding: 100px 0;
}

.section-title {
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.section-title p {
  font-size: 1.1rem;
  color: var(--dark-gray);
}

/* Header */
.header {
  padding: 15px 0;
  background-color: var(--white);
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 999;
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color);
}

.navbar {
  padding: 0;
}

.navbar-nav .nav-link {
  padding: 0.5rem 1rem;
  color: var(--black);
  font-weight: 500;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary-color);
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  background-color: var(--light-gray);
  position: relative;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(94, 59, 118, 0.8), rgba(65, 179, 163, 0.7));
}

.hero-shape {
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background-color: var(--secondary-color);
  border-radius: 50%;
  opacity: 0.3;
}

/* About Section */
.about {
  background-color: var(--white);
}

.about-feature {
  text-align: center;
  padding: 30px 20px;
  margin-bottom: 30px;
  border-radius: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.about-feature:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about-feature i {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

/* Services Section */
.services {
  background-color: var(--light-gray);
}

.service-item {
  text-align: center;
  padding: 30px;
  margin-bottom: 30px;
  border-radius: 10px;
  background-color: var(--white);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
  font-size: 3rem;
  color: var(--accent-color);
  margin-bottom: 20px;
}

.service-price {
  display: inline-block;
  padding: 5px 15px;
  background-color: var(--primary-light);
  color: var(--white);
  border-radius: 20px;
  font-weight: 500;
  margin-top: 15px;
}

/* Features Section */
.features {
  background-color: var(--white);
}

.feature-item {
  display: flex;
  margin-bottom: 30px;
}

.feature-icon {
  min-width: 60px;
  height: 60px;
  background-color: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
}

.feature-icon i {
  color: var(--white);
  font-size: 1.5rem;
}

/* Price Plan Section */
.priceplan {
  background-color: var(--light-gray);
}

.price-card {
  background-color: var(--white);
  padding: 40px 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  margin-bottom: 30px;
}

.price-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.price-card.featured {
  background-color: var(--primary-color);
  color: var(--white);
}

.price-card.featured h3,
.price-card.featured .price {
  color: var(--white);
}

.price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin: 20px 0;
}

.price-features {
  margin: 30px 0;
  padding: 0;
  list-style: none;
}

.price-features li {
  padding: 8px 0;
  border-bottom: 1px solid var(--mid-gray);
}

.price-features li:last-child {
  border-bottom: none;
}

/* Team Section */
.team {
  background-color: var(--white);
}

.team-member {
  text-align: center;
  margin-bottom: 30px;
}

.team-img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  border: 5px solid var(--light-gray);
}

.team-name {
  font-weight: 600;
  margin-bottom: 5px;
}

.team-role {
  color: var(--dark-gray);
  font-style: italic;
}

/* Reviews Section */
.reviews {
  background-color: var(--light-gray);
  position: relative;
  overflow: hidden;
}

.review-shape {
  position: absolute;
  top: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background-color: var(--highlight-color);
  border-radius: 50%;
  opacity: 0.2;
}

.review-item {
  background-color: var(--white);
  padding: 30px;
  border-radius: 10px;
  margin: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.review-text {
  font-style: italic;
  margin-bottom: 20px;
}

.review-author {
  font-weight: 600;
  color: var(--primary-color);
}

/* Core Info Section */
.coreinfo {
  background-color: var(--white);
}

.coreinfo-item {
  text-align: center;
  margin-bottom: 30px;
}

.coreinfo-icon {
  font-size: 2.5rem;
  color: var(--highlight-color);
  margin-bottom: 15px;
}

/* Contact Section */
.contact {
  background-color: var(--light-gray);
}

.contact-form {
  background-color: var(--white);
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-group {
  margin-bottom: 20px;
}

.form-control {
  height: 50px;
  border: 1px solid var(--mid-gray);
  border-radius: 5px;
  padding: 10px 15px;
}

textarea.form-control {
  height: 150px;
}

.form-check-label {
  font-size: 0.9rem;
  color: var(--dark-gray);
}

/* Blog Section */
.blog {
  background-color: var(--white);
}

.blog-card {
  background-color: var(--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 {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 20px;
}

.blog-title {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.blog-excerpt {
  color: var(--dark-gray);
  margin-bottom: 15px;
}

.blog-link {
  color: var(--accent-color);
  font-weight: 500;
}

/* FAQ Section */
.faq {
  background-color: var(--light-gray);
}

.accordion-item {
  border: none;
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
}

.accordion-button {
  background-color: var(--white);
  color: var(--primary-color);
  font-weight: 600;
  padding: 20px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.accordion-button:not(.collapsed) {
  background-color: var(--primary-light);
  color: var(--white);
}

.accordion-body {
  padding: 20px;
  background-color: var(--white);
}

/* Gallery Section */
.gallery {
  background-color: var(--white);
}

.gallery-item {
  margin-bottom: 30px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.gallery-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: all 0.3s ease;
}

.gallery-img:hover {
  transform: scale(1.05);
}

/* Footer */
.footer {
  background-color: var(--primary-dark);
  color: var(--white);
  padding: 80px 0 30px;
}

.footer-content {
  margin-bottom: 40px;
}

.footer-title {
  color: var(--white);
  margin-bottom: 25px;
  font-size: 1.5rem;
}

.footer p {
  margin-bottom: 15px;
}

.contact-info p {
  margin-bottom: 10px;
}

.contact-info i {
  margin-right: 10px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 15px;
}

.footer-links a {
  color: var(--mid-gray);
}

.footer-links a:hover {
  color: var(--white);
}

.copyright {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

#site-copyright {
  color: var(--mid-gray);
  font-size: 0.9rem;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fadeInUp {
  animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.animate-fadeIn {
  animation: fadeIn 1s ease forwards;
}

@media (prefers-reduced-motion: reduce) {
  .animate-fadeInUp,
  .animate-fadeIn {
    animation: none;
  }
} 