﻿@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
  --primary-color: #2D1B69;
  --secondary-color: #E8E9FF;
  --accent-color: #FFD700;
  --text-color: #FFFFFF;
  --text-dark: #2D1B69;
  --bg-color: #2D1B69;
  --bg-secondary: #E8E9FF;
  --bg-light: #F8F9FA;
  --border-color: #E0E7FF;
}

* {
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-dark);
  background-color: var(--bg-light);
  margin: 0;
  padding: 0;
  line-height: 1.6;
  font-size: 16px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.col-12, .col-md-6, .col-lg-4, .col-lg-6, .col-lg-8, .col-xl-6 {
  padding: 0 15px;
  width: 100%;
}

.col-md-6 {
  width: 50%;
}

.col-lg-4 {
  width: 33.333%;
}

.col-lg-6 {
  width: 50%;
}

.col-lg-8 {
  width: 66.666%;
}

.navbar {
  background-color: var(--primary-color) !important;
  padding: 1rem 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-brand {
  color: var(--accent-color) !important;
  font-weight: 700;
  font-size: 1.5rem;
  text-decoration: none;
}

.navbar-nav {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2rem;
}

.nav-link {
  color: var(--text-color) !important;
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.nav-link:hover, .nav-link.active {
  color: var(--accent-color) !important;
  background-color: rgba(255, 215, 0, 0.1);
}

.hero-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, #1a0d4a 100%);
  color: var(--text-color);
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: url('lemon/yo5b1.webp') center/cover;
  opacity: 0.3;
  z-index: 1;
}

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

.display-3 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.fs-1 {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.btn {
  padding: 12px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
}

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

.btn-primary:hover {
  background-color: #E6C200;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.btn-outline-light {
  background-color: transparent;
  color: var(--text-color);
  border-color: var(--text-color);
}

.btn-outline-light:hover {
  background-color: var(--text-color);
  color: var(--primary-color);
}

.btn-lg {
  padding: 15px 40px;
  font-size: 1.1rem;
}

.py-11 {
  padding: 80px 0;
}

.py-lg-21 {
  padding: 120px 0;
}

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

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

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

.text-center {
  text-align: center;
}

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

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

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

.display-5 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.fs-2 {
  font-size: 1.25rem;
  line-height: 1.6;
}

.fs-3 {
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.mb-7 {
  margin-bottom: 2rem;
}

.mb-16 {
  margin-bottom: 4rem;
}

.mb-9 {
  margin-bottom: 2.5rem;
}

.mb-5 {
  margin-bottom: 1.5rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-3 {
  margin-bottom: 0.75rem;
}

.mb-0 {
  margin-bottom: 0;
}

.d-flex {
  display: flex;
}

.justify-content-center {
  justify-content: center;
}

.align-items-center {
  align-items: center;
}

.flex-wrap {
  flex-wrap: wrap;
}

.gap-3 {
  gap: 1rem;
}

.gradient-overlay {
  background: linear-gradient(45deg, var(--accent-color) 0%, #FFE55C 100%);
  padding: 3px;
  border-radius: 15px;
  margin-bottom: 2rem;
}

.gradient-overlay .inner {
  background: var(--bg-light);
  border-radius: 12px;
  padding: 2rem;
  height: 100%;
}

.icon-box {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--accent-color) 0%, #FFE55C 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--primary-color);
  font-size: 2rem;
}

.decorated-number {
  background: var(--accent-color);
  color: var(--primary-color);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  margin: 0 auto 1.5rem;
}

.custom-shadow {
  box-shadow: 0 10px 30px rgba(45, 27, 105, 0.1);
}

.rounded {
  border-radius: 10px;
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

.w-100 {
  width: 100%;
}

.h-100 {
  height: 100%;
}

.p-4 {
  padding: 1.5rem;
}

.p-5 {
  padding: 2rem;
}

.py-16 {
  padding: 4rem 0;
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--text-dark);
}

.footer-bg {
  background: linear-gradient(135deg, var(--primary-color) 0%, #1a0d4a 100%);
  color: var(--text-color);
  padding: 2rem 0;
}

.footer-bg a {
  color: var(--text-color);
  text-decoration: none;
}

.footer-bg a:hover {
  color: var(--accent-color);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--primary-color);
  color: var(--text-color);
  padding: 1rem 0;
  z-index: 1050;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-banner .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.cookie-banner .btn {
  white-space: nowrap;
  padding: 8px 20px;
  font-size: 0.9rem;
}

@media (max-width: 992px) {
  .col-lg-4, .col-lg-6, .col-lg-8 {
    width: 100%;
    margin-bottom: 2rem;
  }
  
  .navbar-nav {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .display-3 {
    font-size: 2.5rem;
  }
  
  .display-5 {
    font-size: 2rem;
  }
  
  .py-lg-21 {
    padding: 60px 0;
  }
}

@media (max-width: 768px) {
  .col-md-6 {
    width: 100%;
    margin-bottom: 1.5rem;
  }
  
  .hero-section {
    padding: 100px 0 60px;
    text-align: center;
  }
  
  .hero-section::before {
    width: 100%;
    opacity: 0.2;
  }
  
  .display-3 {
    font-size: 2rem;
  }
  
  .fs-1 {
    font-size: 1.2rem;
  }
  
  .py-11 {
    padding: 60px 0;
  }
  
  .cookie-banner .container {
    flex-direction: column;
    text-align: center;
  }
}