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

:root {
  --color-primary: #121212;
  --color-secondary: #1E1E1E;
  --color-accent-1: #E6C068;
  --color-accent-2: #8C52FF;
  --color-text-primary: #F5F5F5;
  --color-text-secondary: #B0B0B0;
  --color-highlight: #FF7066;
  --color-section-bg: #181818;
  --color-border: #333333;
  --transition: all 0.3s ease;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  --radius: 8px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Manrope', sans-serif;
  background-color: var(--color-primary);
  color: var(--color-text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}


h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
}

h4 {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
}

p {
  margin-bottom: 1.5rem;
  font-size: clamp(1rem, 1.5vw, 1.125rem);
}

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

a:hover {
  color: var(--color-highlight);
}


.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

section {
  padding: 5rem 0;
  border-bottom: 1px solid var(--color-border);
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: -1rem;
}

.col {
  padding: 1rem;
  flex: 1;
  min-width: 300px;
}


header {
  background-color: var(--color-secondary);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow);
}

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

.logo {
  height: 40px;
}

.logo img {
  height: 100%;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--color-text-primary);
  font-size: 1.5rem;
  cursor: pointer;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}

nav a {
  color: var(--color-text-primary);
  font-weight: 600;
  position: relative;
  padding: 0.5rem 0;
}

nav a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--color-accent-1);
  transition: var(--transition);
}

nav a:hover::after, 
nav a.active::after {
  width: 100%;
}


.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  background-color: var(--color-secondary);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(18, 18, 18, 0.9) 0%, rgba(18, 18, 18, 0.7) 100%);
  z-index: 1;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero h1 {
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero p {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  margin-bottom: 2rem;
}


.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}

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

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

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

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

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

.btn-accent:hover {
  background-color: transparent;
  border-color: var(--color-accent-2);
  color: var(--color-accent-2);
}


.card {
  background-color: var(--color-secondary);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
}

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

.card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-content {
  padding: 1.5rem;
}

.card-title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}


.feature-card {
  background-color: var(--color-section-bg);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
}

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

.feature-icon {
  font-size: 2.5rem;
  color: var(--color-accent-1);
  margin-bottom: 1.5rem;
}

.feature-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}


.stats-section {
  background-color: var(--color-section-bg);
  text-align: center;
}

.stat-item {
  padding: 2rem;
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--color-accent-1);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1.125rem;
  color: var(--color-text-secondary);
}


.testimonial {
  background-color: var(--color-secondary);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  position: relative;
}

.testimonial::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 20px;
  font-size: 4rem;
  color: var(--color-accent-1);
  opacity: 0.2;
  line-height: 1;
}

.testimonial-content {
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.author-name {
  font-weight: 600;
}

.author-title {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
}


.form-group {
  margin-bottom: 1.5rem;
}

label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

input, textarea, select {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  background-color: var(--color-secondary);
  border: 1px solid var(--color-border);
  color: var(--color-text-primary);
  font-family: 'Manrope', sans-serif;
  transition: var(--transition);
}

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--color-accent-1);
}

textarea {
  min-height: 150px;
  resize: vertical;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.checkbox-group input {
  width: auto;
  margin-top: 0.25rem;
}


.contact-form-wrapper {
  background-color: var(--color-section-bg);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.form-header {
  margin-bottom: 2rem;
  text-align: center;
}

.form-footer {
  margin-top: 2rem;
  text-align: center;
}


.map-container {
  height: 400px;
  width: 100%;
  overflow: hidden;
  border-radius: var(--radius);
  margin-bottom: 2rem;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}


footer {
  background-color: var(--color-secondary);
  padding: 4rem 0 2rem;
}

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

.footer-logo {
  margin-bottom: 1.5rem;
}

.footer-logo img {
  height: 40px;
}

.footer-links h4 {
  margin-bottom: 1.5rem;
  color: var(--color-accent-1);
}

.footer-links ul {
  list-style: none;
}

.footer-links li:not(:last-child) {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--color-text-secondary);
}

.footer-links a:hover {
  color: var(--color-text-primary);
}

.contact-info li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.contact-info i {
  color: var(--color-accent-1);
  font-size: 1.25rem;
  margin-top: 0.25rem;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
  text-align: center;
  color: var(--color-text-secondary);
  font-size: 0.875rem;
}


.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--color-secondary);
  padding: 1.5rem;
  box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  display: none;
}

.cookie-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1280px;
  margin: 0 auto;
}

.cookie-text {
  flex: 1;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
}

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

.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  display: none;
}

.cookie-modal-content {
  background-color: var(--color-secondary);
  border-radius: var(--radius);
  max-width: 600px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2rem;
}

.cookie-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.cookie-close {
  background: none;
  border: none;
  color: var(--color-text-primary);
  font-size: 1.5rem;
  cursor: pointer;
}

.cookie-category {
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 1.5rem;
}

.cookie-category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.toggle-switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 30px;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--color-border);
  transition: var(--transition);
  border-radius: 34px;
}

.toggle-slider:before {
  position: absolute;
  content: "";
  height: 22px;
  width: 22px;
  left: 4px;
  bottom: 4px;
  background-color: var(--color-text-primary);
  transition: var(--transition);
  border-radius: 50%;
}

.toggle-switch input:checked + .toggle-slider {
  background-color: var(--color-accent-1);
}

.toggle-switch input:checked + .toggle-slider:before {
  transform: translateX(30px);
}

.cookie-modal-footer {
  margin-top: 2rem;
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
}


.news-section {
  background-color: var(--color-section-bg);
}

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

.news-card {
  background-color: var(--color-secondary);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

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

.news-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.news-content {
  padding: 1.5rem;
}

.news-date {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  margin-bottom: 0.5rem;
}

.news-title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.news-excerpt {
  margin-bottom: 1.5rem;
}


.gallery-container {
  margin: 0 -0.5rem;
}

.gallery-item {
  padding: 0.5rem;
  width: 33.333%;
  float: left;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: var(--radius);
  transition: var(--transition);
}

.gallery-item img:hover {
  transform: scale(1.02);
}


.map-section {
  background-color: var(--color-section-bg);
  padding: 5rem 0;
  position: relative;
}

.map-container {
  height: 500px;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.map-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(18, 18, 18, 0.3);
  pointer-events: none;
}

.map-stats {
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: var(--color-secondary);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  max-width: 300px;
}

.map-stat-item {
  margin-bottom: 1rem;
}

.map-stat-label {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.map-stat-value {
  color: var(--color-accent-1);
  font-weight: 700;
  font-size: 1.25rem;
}


.faq-section {
  background-color: var(--color-primary);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 1.5rem;
}

.faq-question {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question i {
  font-size: 1.5rem;
  color: var(--color-accent-1);
  transition: var(--transition);
}

.faq-answer {
  display: none;
  padding-top: 1rem;
}

.faq-item.active .faq-question i {
  transform: rotate(45deg);
}

.faq-item.active .faq-answer {
  display: block;
}


.discussion-section {
  background-color: var(--color-section-bg);
}

.discussion-container {
  max-width: 900px;
  margin: 0 auto;
}

.discussion-header {
  margin-bottom: 3rem;
  text-align: center;
}

.discussion-topic {
  background-color: var(--color-secondary);
  border-radius: var(--radius);
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow);
}

.topic-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.topic-info h3 {
  margin-bottom: 0.5rem;
}

.topic-meta {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
}

.topic-stats {
  display: flex;
  gap: 1.5rem;
}

.topic-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.topic-stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-accent-1);
}

.topic-stat-label {
  font-size: 0.75rem;
  color: var(--color-text-secondary);
}

.topic-content {
  margin-bottom: 1.5rem;
}

.topic-actions {
  display: flex;
  gap: 1rem;
}

.create-topic {
  margin-top: 3rem;
  text-align: center;
}


.newsletter-section {
  background-color: var(--color-section-bg);
  text-align: center;
}

.newsletter-container {
  max-width: 600px;
  margin: 0 auto;
}

.newsletter-form {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.newsletter-form input {
  flex: 1;
}


.thank-you-section {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.thank-you-content {
  max-width: 600px;
}

.thank-you-icon {
  font-size: 5rem;
  color: var(--color-accent-1);
  margin-bottom: 2rem;
}


.policy-container {
  max-width: 800px;
  margin: 0 auto;
}

.policy-header {
  margin-bottom: 3rem;
  text-align: center;
}

.policy-section {
  margin-bottom: 3rem;
}

.policy-section h3 {
  margin-bottom: 1.5rem;
  color: var(--color-accent-1);
}

.policy-list {
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.policy-list li {
  margin-bottom: 0.5rem;
}

.policy-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
}

.policy-table th, .policy-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
}

.policy-table th {
  background-color: var(--color-section-bg);
  font-weight: 600;
}


@media (max-width: 992px) {
  .gallery-item {
    width: 50%;
  }
}

.close-nav {
  display: none;
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }
  
  nav {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100%;
    background-color: var(--color-secondary);
    box-shadow: var(--shadow);
    transition: var(--transition);
    padding: 2rem;
  }
  
  nav.active {
    right: 0;
  }
  
  nav ul {
    flex-direction: column;
    gap: 1rem;
    margin-top: 3rem;
  }
  
  .close-nav {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: var(--color-text-primary);
    font-size: 1.5rem;
    cursor: pointer;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .gallery-item {
    width: 100%;
  }
  
  .map-stats {
    position: relative;
    top: auto;
    left: auto;
    max-width: none;
    margin-top: 1rem;
  }
}


.iti {
  width: 100%;
}

.iti__flag-container {
  z-index: 3;
}

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

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

.iti__country.iti__highlight {
  background-color: var(--color-section-bg);
}

.iti__selected-flag {
  background-color: rgba(255, 255, 255, 0.05);
}


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

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

.fade-in {
  animation: fadeIn 0.5s ease forwards;
}

.slide-up {
  animation: slideUp 0.5s ease forwards;
}


.current-date {
  color: var(--color-accent-1);
  font-weight: 500;
}