
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;700&family=Source+Sans+3:wght@300;400;600&display=swap');


:root {
  --primary: #7B2CBF;
  --secondary: #F72585;
  --tertiary: #4CC9F0;
  --background-light: #F8F9FA;
  --background-dark: #212529;
  --text-primary: #212529;
  --text-secondary: #6C757D;
  --success: #38B000;
  --warning: #FFDD00;
  --card-bg: #FFFFFF;
  --gradient-accent: #7B2CBF;
  --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
  --border-radius: 8px;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Source Sans 3', sans-serif;
}

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background-color: var(--background-light);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.bg-tertiary {
  background-color: var(--gradient-accent);
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}

a:hover, a:focus {
  color: var(--secondary);
  text-decoration: none;
}

.btn {
  font-weight: 600;
  padding: 0.6rem 1.5rem;
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.btn-primary {
  background-color: var(--primary);
  border-color: var(--primary);
}

.btn-primary:hover, .btn-primary:focus {
  background-color: darken(var(--primary), 10%);
  border-color: darken(var(--primary), 10%);
}

.btn-secondary {
  background-color: var(--secondary);
  border-color: var(--secondary);
}

.btn-gradient {
  background: var(--gradient-accent);
  border: none;
  color: white;
}

.btn-gradient:hover, .btn-gradient:focus {
  opacity: 0.9;
  color: white;
}

.text-primary {
  color: var(--primary) !important;
}

.text-secondary {
  color: var(--secondary) !important;
}

.bg-primary {
  background-color: var(--primary) !important;
}

.bg-secondary {
  background-color: var(--secondary) !important;
}

.bg-gradient {
  background: var(--gradient-accent);
}

.card {
  border: none;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
  overflow: hidden;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.card-img-top {
  height: 200px;
  object-fit: cover;
}


.navbar {
  background-color: white;
  box-shadow: var(--shadow);
  padding: 1rem 0;
}

.navbar-brand img {
  height: 40px;
}

.navbar .nav-link {
  font-weight: 600;
  padding: 0.5rem 1rem !important;
  color: var(--text-primary);
}

.navbar .nav-link:hover, .navbar .nav-link:focus {
  color: var(--primary);
}

.navbar .nav-link.active {
  color: var(--primary);
  border-bottom: 2px solid var(--primary);
}

.navbar-toggler {
  border: none;
  outline: none;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.dropdown-menu {
  border: none;
  box-shadow: var(--shadow);
  border-radius: var(--border-radius);
}

.dropdown-item:hover, .dropdown-item:focus {
  background-color: var(--background-light);
  color: var(--primary);
}


.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/hero-banner.jpg');
  background-size: cover;
  background-position: center;
  color: white;
  padding: 8rem 0;
  position: relative;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: white;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}


.card-grid {
  margin: 4rem 0;
}

.card-grid .card {
  margin-bottom: 2rem;
}

.card-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: var(--primary);
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.card-badge.beginner {
  background-color: var(--success);
}

.card-badge.intermediate {
  background-color: var(--warning);
  color: var(--text-primary);
}

.card-badge.advanced {
  background-color: var(--secondary);
}

.card-meta {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.card-meta i {
  margin-right: 0.3rem;
}

.card-meta span {
  margin-right: 1rem;
}


.featured-section {
  padding: 4rem 0;
  background-color: white;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.section-title:after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background: var(--gradient-accent);
  margin: 1rem auto 0;
}


.spotlight {
  background-color: white;
  padding: 4rem 0;
}

.spotlight-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.spotlight-card img {
  height: 300px;
  object-fit: cover;
}


.quick-start {
  background-color: var(--background-light);
  padding: 4rem 0;
}

.step-card {
  text-align: center;
  padding: 2rem;
}

.step-card i {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: var(--primary);
}


.meta-updates {
  padding: 4rem 0;
  background-color: white;
}


.contact-form {
  padding: 4rem 0;
  background-color: var(--background-light);
}

.form-control {
  border-radius: var(--border-radius);
  padding: 0.8rem 1rem;
  border: 1px solid #ced4da;
}

.form-control:focus {
  box-shadow: 0 0 0 0.25rem rgba(123, 44, 191, 0.25);
  border-color: var(--primary);
}

.form-label {
  font-weight: 600;
  margin-bottom: 0.5rem;
}


.footer {
  background-color: var(--background-dark);
  color: white;
  padding: 3rem 0 2rem;
}

.footer h5 {
  color: white;
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

.footer-links {
  list-style: none;
  padding-left: 0;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.footer-links a:hover {
  color: white;
  text-decoration: none;
}

.footer-bottom {
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}


.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(33, 37, 41, 0.95);
  color: white;
  padding: 1rem;
  z-index: 1000;
  display: none;
}

.cookie-settings-btn {
  color: var(--tertiary);
  text-decoration: underline;
  cursor: pointer;
}

.cookie-settings-modal .modal-content {
  border-radius: var(--border-radius);
}

.cookie-settings-modal .modal-header {
  background: var(--gradient-accent);
  color: white;
  border-bottom: none;
}

.cookie-settings-modal .modal-footer {
  border-top: none;
}

.cookie-settings-modal .form-check {
  padding: 1rem;
  background-color: var(--background-light);
  border-radius: var(--border-radius);
  margin-bottom: 1rem;
}

.cookie-type {
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.cookie-description {
  font-size: 0.9rem;
  color: var(--text-secondary);
}


.article-header {
  padding: 3rem 0;
  background-color: var(--background-dark);
  color: white;
  margin-bottom: 3rem;
}

.article-header h1 {
  color: white;
}

.article-meta {
  margin-bottom: 2rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.article-meta span {
  margin-right: 1.5rem;
}

.article-meta i {
  margin-right: 0.5rem;
}

.article-content {
  padding: 0 0 4rem;
}

.article-content p, .article-content ul, .article-content ol {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.article-content h2 {
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
}

.article-content h3 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.article-content img {
  max-width: 100%;
  border-radius: var(--border-radius);
  margin: 2rem 0;
}

.article-content .callout {
  background-color: var(--background-light);
  padding: 2rem;
  border-radius: var(--border-radius);
  margin: 2rem 0;
}

.article-content .callout.tip {
  border-left: 4px solid var(--primary);
}

.article-content .callout.warning {
  border-left: 4px solid var(--warning);
}


.contact-info {
  background-color: white;
  padding: 4rem 0;
}

.contact-card {
  text-align: center;
  padding: 2rem;
}

.contact-card i {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.map-container {
  height: 400px;
  margin: 3rem 0;
}


.thank-you {
  padding: 8rem 0;
  text-align: center;
}

.thank-you i {
  font-size: 5rem;
  color: var(--success);
  margin-bottom: 2rem;
}


@media (max-width: 991.98px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .card-img-top {
    height: 180px;
  }
  
  .spotlight-card img {
    height: 250px;
  }
}

@media (max-width: 767.98px) {
  .hero {
    padding: 6rem 0;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .section-title {
    margin-bottom: 2rem;
  }
  
  .card-grid {
    margin: 2rem 0;
  }
  
  .spotlight-card img {
    height: 220px;
  }
  
  .featured-section, .spotlight, .quick-start, .meta-updates, .contact-form {
    padding: 3rem 0;
  }
  
  .contact-card {
    margin-bottom: 2rem;
  }
}

@media (max-width: 575.98px) {
  .hero h1 {
    font-size: 1.8rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .card-img-top {
    height: 160px;
  }
  
  .spotlight-card img {
    height: 200px;
  }
}


.iti {
  width: 100%;
}