/* ===== VARIABLES ===== */
:root {
  /* Neo-Brutalism Colors - Complementary Scheme */
  --primary-color: #FF5757;       /* Red */
  --primary-dark: #D13030;
  --secondary-color: #57C5FF;     /* Blue */
  --secondary-dark: #30A3D1;
  --accent-color: #FFD157;        /* Yellow */
  --accent-dark: #D1A830;
  --neutral-dark: #333333;
  --neutral-mid: #777777;
  --neutral-light: #F0F0F0;
  --white: #FFFFFF;
  --black: #111111;
  
  /* Fonts */
  --heading-font: 'Manrope', sans-serif;
  --body-font: 'Rubik', sans-serif;
  
  /* Sizes */
  --container-width: 1200px;
  --border-radius: 8px;
  --big-border-radius: 16px;
  --button-border-radius: 4px;
  
  /* Neo-Brutalism Shadows */
  --neo-shadow: 5px 5px 0px rgba(0, 0, 0, 0.8);
  --neo-shadow-hover: 8px 8px 0px rgba(0, 0, 0, 0.8);
  --card-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* ===== BASE STYLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--body-font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--neutral-dark);
  background-color: var(--neutral-light);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--neutral-dark);
}

h1 {
  font-size: 3.5rem;
}

h2 {
  font-size: 2.8rem;
}

h3 {
  font-size: 2rem;
}

h4 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1.5rem;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 15px;
}

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

.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--primary-color);
}

/* ===== BUTTONS ===== */
.btn, 
button,
input[type="submit"] {
  display: inline-block;
  padding: 12px 28px;
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 1rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  border: 3px solid transparent;
  border-radius: var(--button-border-radius);
  transition: all 0.3s ease;
  box-shadow: var(--neo-shadow);
  position: relative;
  overflow: hidden;
}

.btn:hover, 
button:hover,
input[type="submit"]:hover {
  transform: translate(-2px, -2px);
  box-shadow: var(--neo-shadow-hover);
  text-decoration: none;
}

.btn:active, 
button:active,
input[type="submit"]:active {
  transform: translate(0, 0);
  box-shadow: 2px 2px 0px rgba(0, 0, 0, 0.8);
}

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

.btn-primary:hover {
  background-color: var(--primary-dark);
  color: var(--white);
}

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

.btn-secondary:hover {
  background-color: var(--secondary-dark);
  color: var(--white);
}

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

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

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--white);
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.logo {
  font-family: var(--heading-font);
  font-weight: 800;
  font-size: 1.8rem;
}

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

.main-nav .nav-list {
  display: flex;
}

.main-nav .nav-list li {
  margin-left: 30px;
}

.main-nav .nav-list a {
  color: var(--neutral-dark);
  font-weight: 500;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
  position: relative;
}

.main-nav .nav-list a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}

.main-nav .nav-list a:hover::after {
  width: 100%;
}

.burger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
}

.burger-menu span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--neutral-dark);
  transition: all 0.3s ease;
}

/* ===== HERO SECTION ===== */
.hero {
  padding: 180px 0 100px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  margin-bottom: 80px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.7), rgba(0,0,0,0.4));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.hero-content h1 {
  color: var(--white);
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
  animation: fadeInDown 1.2s;
}

.hero-content p {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 2.5rem;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
  animation: fadeInUp 1.2s;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  animation: fadeIn 1.5s;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* ===== MISSION SECTION ===== */
.mission {
  padding: 80px 0;
  background-color: var(--white);
}

.mission-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}

.mission-image {
  flex: 1;
  min-width: 300px;
  border: 5px solid var(--neutral-dark);
  box-shadow: var(--neo-shadow);
  transform: rotate(-2deg);
  overflow: hidden;
}

.mission-image img {
  width: 100%;
  transition: transform 0.5s ease;
}

.mission-image:hover img {
  transform: scale(1.05);
}

.mission-text {
  flex: 1;
  min-width: 300px;
}

.mission-text h3 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

.stats-widget {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 2rem;
  gap: 20px;
}

.stat-item {
  flex: 1;
  min-width: 150px;
  text-align: center;
  padding: 20px;
  background-color: var(--neutral-light);
  border: 3px solid var(--neutral-dark);
  border-radius: var(--border-radius);
  box-shadow: var(--neo-shadow);
}

.stat-item h4 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.stat-item p {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0;
}

/* ===== SERVICES SECTION ===== */
.services {
  padding: 80px 0;
  background-color: var(--neutral-light);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  border: 3px solid var(--neutral-dark);
  box-shadow: var(--neo-shadow);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.card:hover {
  transform: translateY(-10px);
}

.card-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.card:hover .card-image img {
  transform: scale(1.1);
}

.card-content {
  padding: 25px;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-content h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.card-content p {
  margin-bottom: 1.5rem;
}

/* ===== PROJECTS SECTION ===== */
.projects {
  padding: 80px 0;
  background-color: var(--white);
}

.timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background-color: var(--primary-color);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  margin-bottom: 60px;
}

.timeline-dot {
  position: absolute;
  top: 15px;
  left: 50%;
  width: 20px;
  height: 20px;
  background-color: var(--primary-color);
  border-radius: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.timeline-content {
  position: relative;
  width: calc(50% - 40px);
  margin-left: auto;
  padding: 30px;
  background-color: var(--neutral-light);
  border: 3px solid var(--neutral-dark);
  border-radius: var(--border-radius);
  box-shadow: var(--neo-shadow);
}

.timeline-item:nth-child(even) .timeline-content {
  margin-left: 0;
  margin-right: auto;
}

.timeline-content h3 {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.timeline-content .image-container {
  margin-top: 20px;
  width: 100%;
  height: 250px;
  overflow: hidden;
  border-radius: var(--border-radius);
}

.timeline-content .image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.timeline-content:hover .image-container img {
  transform: scale(1.05);
}

/* ===== INSIGHTS SECTION ===== */
.insights {
  padding: 80px 0;
  background-color: var(--neutral-light);
}

.insights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.insights .card-content a.btn-outline {
  margin-top: auto;
  align-self: center;
}

/* ===== RESOURCES SECTION ===== */
.resources {
  padding: 80px 0;
  background-color: var(--white);
  position: relative;
  overflow: hidden;
}

.resources::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('./image/pattern-bg.jpg') center/cover repeat;
  opacity: 0.05;
  z-index: 0;
}

.resources-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  font-size: 1.2rem;
  position: relative;
  z-index: 1;
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  position: relative;
  z-index: 1;
}

.resource-card {
  background-color: var(--neutral-light);
  padding: 30px;
  border-radius: var(--border-radius);
  border: 3px solid var(--neutral-dark);
  box-shadow: var(--neo-shadow);
  transition: transform 0.3s ease;
}

.resource-card:hover {
  transform: translateY(-10px);
}

.resource-card h3 {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  text-align: center;
}

.resource-card ul {
  padding-left: 0;
}

.resource-card ul li {
  margin-bottom: 15px;
  border-bottom: 1px dashed var(--neutral-mid);
  padding-bottom: 15px;
}

.resource-card ul li:last-child {
  margin-bottom: 0;
  border-bottom: none;
  padding-bottom: 0;
}

.resource-card ul li a {
  display: block;
  font-weight: 500;
  transition: all 0.3s ease;
}

.resource-card ul li a:hover {
  padding-left: 10px;
  color: var(--primary-dark);
}

/* ===== WORKSHOPS SECTION ===== */
.workshops {
  padding: 80px 0;
  background-color: var(--neutral-light);
}

.workshops-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  font-size: 1.2rem;
}

.workshops-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
}

.workshop-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  border: 3px solid var(--neutral-dark);
  box-shadow: var(--neo-shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.workshop-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.workshop-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.workshop-card:hover .workshop-image img {
  transform: scale(1.1);
}

.workshop-content {
  padding: 25px;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.workshop-content h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.workshop-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin: 20px 0;
  font-size: 0.9rem;
}

.workshop-meta span {
  background-color: var(--neutral-light);
  padding: 8px 15px;
  border-radius: 20px;
  font-weight: 500;
}

/* ===== NEWS SECTION ===== */
.news {
  padding: 80px 0;
  background-color: var(--white);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.news-card {
  display: flex;
  background-color: var(--neutral-light);
  border-radius: var(--border-radius);
  overflow: hidden;
  border: 3px solid var(--neutral-dark);
  box-shadow: var(--neo-shadow);
  transition: transform 0.3s ease;
}

.news-card:hover {
  transform: translateY(-10px);
}

.news-date {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  background-color: var(--primary-color);
  color: var(--white);
  font-family: var(--heading-font);
  font-weight: 700;
  min-width: 100px;
}

.news-date span:first-child {
  font-size: 2rem;
  line-height: 1;
}

.news-content {
  padding: 25px;
  flex: 1;
}

.news-content h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--neutral-dark);
}

.news-content p {
  margin-bottom: 1.5rem;
}

.news-link {
  display: inline-block;
  font-weight: 600;
  color: var(--primary-color);
  transition: all 0.3s ease;
}

.news-link:hover {
  transform: translateX(10px);
  color: var(--primary-dark);
}

/* ===== MEDIA SECTION ===== */
.media {
  padding: 80px 0;
  background-color: var(--neutral-light);
}

.media-slider {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.media-item {
  background-color: var(--white);
  padding: 30px;
  border-radius: var(--border-radius);
  border: 3px solid var(--neutral-dark);
  box-shadow: var(--neo-shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease;
}

.media-item:hover {
  transform: translateY(-10px);
}

.media-logo {
  width: 150px;
  height: 80px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.media-logo img {
  max-width: 100%;
  max-height: 100%;
}

.media-quote {
  font-style: italic;
}

.media-quote p {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  position: relative;
}

.media-quote p::before,
.media-quote p::after {
  content: '"';
  color: var(--primary-color);
  font-size: 1.5em;
  font-weight: 700;
}

.media-source {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--neutral-mid);
}

/* ===== CONTACT SECTION ===== */
.contact {
  padding: 80px 0;
  background-color: var(--white);
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('./image/pattern-bg.jpg') center/cover repeat;
  opacity: 0.05;
  z-index: 0;
}

.contact-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.contact-info {
  flex: 1;
  min-width: 300px;
}

.contact-info h3 {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.contact-details {
  margin-top: 30px;
}

.contact-item {
  margin-bottom: 20px;
}

.contact-label {
  font-weight: 700;
  display: block;
  margin-bottom: 5px;
  color: var(--primary-color);
}

.contact-form {
  flex: 1;
  min-width: 300px;
  background-color: var(--neutral-light);
  padding: 30px;
  border-radius: var(--border-radius);
  border: 3px solid var(--neutral-dark);
  box-shadow: var(--neo-shadow);
}

.contact-form h3 {
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  text-align: center;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid var(--neutral-mid);
  border-radius: var(--button-border-radius);
  font-family: var(--body-font);
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

/* ===== FOOTER ===== */
.footer {
  background-color: var(--neutral-dark);
  color: var(--white);
  padding: 80px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer h3 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 10px;
}

.footer h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background-color: var(--primary-color);
}

.footer-about p {
  margin-bottom: 20px;
  color: #cccccc;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: #cccccc;
  transition: all 0.3s ease;
}

.footer-links ul li a:hover {
  color: var(--primary-color);
  padding-left: 10px;
}

.footer-contact p {
  margin-bottom: 10px;
  color: #cccccc;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.social-links li a {
  color: #cccccc;
  font-weight: 500;
  transition: all 0.3s ease;
}

.social-links li a:hover {
  color: var(--primary-color);
}

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

/* ===== SUCCESS PAGE ===== */
.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 50px 20px;
  background-color: var(--neutral-light);
}

.success-content {
  max-width: 600px;
  background-color: var(--white);
  padding: 50px;
  border-radius: var(--border-radius);
  border: 3px solid var(--neutral-dark);
  box-shadow: var(--neo-shadow);
}

.success-content h1 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

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

/* ===== ABOUT, PRIVACY, TERMS PAGES ===== */
.page-content {
  padding: 150px 0 80px;
}

.page-content .container {
  max-width: 800px;
}

.page-content h1 {
  text-align: center;
  margin-bottom: 2rem;
  color: var(--primary-color);
}

.page-content h2 {
  color: var(--secondary-color);
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
}

.page-content p {
  margin-bottom: 1.5rem;
}

.page-content ul {
  margin-bottom: 1.5rem;
  padding-left: 20px;
}

.page-content ul li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 15px;
}

.page-content ul li::before {
  content: '•';
  color: var(--primary-color);
  position: absolute;
  left: 0;
  top: 0;
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 1024px) {
  h1 {
    font-size: 3rem;
  }
  
  h2 {
    font-size: 2.5rem;
  }
  
  .hero-content h1 {
    font-size: 3rem;
  }
  
  .timeline::before {
    left: 30px;
  }
  
  .timeline-dot {
    left: 30px;
  }
  
  .timeline-content {
    width: calc(100% - 80px);
    margin-left: 80px;
  }
  
  .timeline-item:nth-child(even) .timeline-content {
    margin-left: 80px;
    margin-right: 0;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  h3 {
    font-size: 1.5rem;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .hero-content p {
    font-size: 1.2rem;
  }
  
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
  }
  
  .main-nav.active {
    display: block;
  }
  
  .main-nav .nav-list {
    flex-direction: column;
  }
  
  .main-nav .nav-list li {
    margin-left: 0;
    margin-bottom: 15px;
  }
  
  .burger-menu {
    display: flex;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .stats-widget {
    flex-direction: column;
  }
  
  .contact-wrapper,
  .mission-content {
    flex-direction: column;
  }
  
  .mission-image,
  .mission-text,
  .contact-info,
  .contact-form {
    width: 100%;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .card-content,
  .workshop-content,
  .contact-form {
    padding: 20px;
  }
  
  .timeline-content {
    width: calc(100% - 60px);
    margin-left: 60px;
    padding: 20px;
  }
  
  .footer {
    padding: 50px 0 20px;
  }
}

/* ===== ANIMATIONS ===== */
@keyframes floatUp {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

@keyframes drawBorder {
  0% {
    width: 0;
    height: 0;
  }
  25% {
    width: 100%;
    height: 0;
  }
  50% {
    width: 100%;
    height: 100%;
  }
  75% {
    width: 0%;
    height: 100%;
  }
  100% {
    width: 0;
    height: 0;
  }
}

.card::before {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  width: 0;
  height: 0;
  border-top: 3px solid var(--primary-color);
  border-left: 3px solid var(--primary-color);
  transition: all 0.5s ease;
  opacity: 0;
}

.card::after {
  content: '';
  position: absolute;
  bottom: -3px;
  right: -3px;
  width: 0;
  height: 0;
  border-bottom: 3px solid var(--primary-color);
  border-right: 3px solid var(--primary-color);
  transition: all 0.5s ease;
  opacity: 0;
}

.card:hover::before,
.card:hover::after {
  width: 30px;
  height: 30px;
  opacity: 1;
}

/* Animation for buttons */
.btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s ease;
  z-index: -1;
}

.btn:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Cookie Consent Styles */
#cookieConsent {
  background-color: rgba(0, 0, 0, 0.85);
  color: white;
  padding: 15px;
  text-align: center;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
}

#cookieConsent p {
  margin-bottom: 10px;
}

#cookieConsent a {
  color: var(--accent-color);
}

#acceptCookies {
  background-color: var(--accent-color);
  color: var(--neutral-dark);
  border: none;
  padding: 8px 15px;
  margin-top: 10px;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.3s ease;
}

#acceptCookies:hover {
  background-color: var(--accent-dark);
  color: var(--white);
}
.burger-menu{
  display: none;
}