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

:root {
  --primary: #1A2A1F;
  --secondary: #5C8D76;
  --accent: #D9B08C;
  --highlight: #8C3D2B;
  --background: #121212;
  --dark-surface: #1E1E1E;
  --card-bg: #242424;
  --border-color: #333333;
  --text-light: #E9E9E9;
  --text-muted: #A0A0A0;
  --shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  --transition: all 0.3s ease;
}

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

body {
  font-family: 'Roboto', sans-serif;
  background-color: var(--background);
  color: var(--text-light);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

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

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

a:hover, a:focus {
  color: var(--accent);
  text-decoration: underline;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}

h1, h2, h3, h4, h5, h6 {
  margin-bottom: 1rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-light);
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2rem;
  border-bottom: 2px solid var(--secondary);
  padding-bottom: 0.5rem;
  display: inline-block;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1.5rem;
  color: var(--secondary);
}

p {
  margin-bottom: 1.5rem;
}

ul, ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

button, .btn {
  display: inline-block;
  background-color: var(--secondary);
  color: var(--text-light);
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 500;
  transition: var(--transition);
  text-align: center;
}

button:hover, .btn:hover, button:focus, .btn:focus {
  background-color: var(--accent);
  color: var(--primary);
  transform: translateY(-2px);
  text-decoration: none;
}

section {
  margin: 4rem 0;
  margin-top: 4rem !important;
  margin-bottom: 4rem !important;
  position: relative;
}


header {
  background-color: var(--dark-surface);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

.logo {
  height: 50px;
  width: auto;
}

.logo svg {
  height: 100%;
  width: auto;
}

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

nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

nav ul li {
  margin-left: 1.5rem;
}

nav ul li a {
  color: var(--text-light);
  font-weight: 500;
  padding: 0.5rem;
  position: relative;
}

nav ul li a:hover, nav ul li a:focus, nav ul li a.active {
  color: var(--accent);
}

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

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


.hero {
  position: relative;
  height: 80vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  background-color: var(--primary);
  overflow: hidden;
  margin: 0 !important;
}

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

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

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}


.card {
  background-color: var(--card-bg);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

.card-img {
  height: 200px;
  overflow: hidden;
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

.card-content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

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

.card-text {
  margin-bottom: 1rem;
  color: var(--text-muted);
  flex: 1;
}

.card-link {
  margin-top: auto;
  align-self: flex-start;
}


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


.features-section {
  padding: 4rem 0;
}

.feature {
  text-align: center;
  padding: 2rem;
  background-color: var(--dark-surface);
  border-radius: 8px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

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

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

.feature h3 {
  margin-bottom: 1rem;
}


.form-container {
  background-color: var(--dark-surface);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

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

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

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 4px;
  color: var(--text-light);
  font-size: 1rem;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 0 2px rgba(92, 141, 118, 0.25);
}

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

.form-check {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.form-check-input {
  margin-right: 0.5rem;
  margin-top: 0.25rem;
}

.form-check-label {
  font-size: 0.9rem;
  color: var(--text-muted);
}


footer {
  background-color: var(--dark-surface);
  padding: 3rem 0;
  margin-top: auto;
}

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

.footer-section h3 {
  margin-bottom: 1.25rem;
  font-size: 1.25rem;
}

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

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

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

.footer-links a:hover, .footer-links a:focus {
  color: var(--accent);
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.cookie-settings-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  text-decoration: underline;
  cursor: pointer;
  padding: 0;
  font-size: 0.9rem;
}

.cookie-settings-btn:hover, .cookie-settings-btn:focus {
  color: var(--accent);
  background: none;
  transform: none;
}


.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1100;
  overflow-y: auto;
  padding: 20px;
}

.modal-content {
  background-color: var(--dark-surface);
  margin: 50px auto;
  padding: 2rem;
  border-radius: 8px;
  max-width: 600px;
  position: relative;
  animation: modalFadeIn 0.3s;
}

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

.close-modal {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 1.5rem;
  color: var(--text-muted);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  line-height: 1;
}

.close-modal:hover, .close-modal:focus {
  color: var(--text-light);
  background: none;
  transform: none;
}

.modal-header {
  margin-bottom: 1.5rem;
}

.modal-header h2 {
  margin-bottom: 0.5rem;
}

.modal-body {
  margin-bottom: 1.5rem;
}

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


.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--dark-surface);
  padding: 1rem;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  display: none;
}

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

.cookie-banner-text {
  flex: 1;
  min-width: 280px;
}

.cookie-banner-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-cookie-accept-all {
  background-color: var(--secondary);
}

.btn-cookie-settings {
  background-color: transparent;
  border: 1px solid var(--border-color);
}

.btn-cookie-settings:hover, .btn-cookie-settings:focus {
  background-color: var(--card-bg);
  color: var(--text-light);
}


.cookie-categories {
  margin-bottom: 1.5rem;
}

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

.cookie-category:last-child {
  border-bottom: none;
}

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

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

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

.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(--border-color);
  transition: var(--transition);
  border-radius: 24px;
}

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

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

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

input:disabled + .toggle-slider {
  opacity: 0.5;
  cursor: not-allowed;
}


.search-filters {
  background-color: var(--dark-surface);
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 2rem;
}

.search-bar {
  display: flex;
  margin-bottom: 1.5rem;
}

.search-input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: 4px 0 0 4px;
  background-color: var(--card-bg);
  color: var(--text-light);
}

.search-btn {
  background-color: var(--secondary);
  border: none;
  border-radius: 0 4px 4px 0;
  padding: 0 1.5rem;
  color: var(--text-light);
  cursor: pointer;
}

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

.filter-group {
  margin-bottom: 1rem;
}

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

.filter-select {
  width: 100%;
  padding: 0.5rem;
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 4px;
  color: var(--text-light);
}

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

.reference-card {
  background-color: var(--dark-surface);
  border-radius: 8px;
  overflow: hidden;
  transition: var(--transition);
}

.reference-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.reference-card-header {
  padding: 1rem;
  background-color: var(--primary);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.reference-card-title {
  margin: 0;
  font-size: 1.1rem;
}

.reference-card-body {
  padding: 1.5rem;
}

.reference-card-content {
  margin-bottom: 1rem;
}

.reference-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.reference-tag {
  background-color: var(--secondary);
  color: var(--text-light);
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.8rem;
}

.accordion {
  margin-bottom: 1rem;
}

.accordion-header {
  padding: 1rem;
  background-color: var(--dark-surface);
  cursor: pointer;
  border-radius: 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

.accordion-header:hover {
  background-color: var(--card-bg);
}

.accordion-body {
  padding: 1.5rem;
  background-color: var(--card-bg);
  border-radius: 0 0 4px 4px;
  display: none;
}

.accordion-icon {
  transition: var(--transition);
}

.accordion.active .accordion-icon {
  transform: rotate(180deg);
}


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

.club-card {
  background-color: var(--dark-surface);
  border-radius: 8px;
  overflow: hidden;
  transition: var(--transition);
}

.club-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.club-card-img {
  height: 200px;
}

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

.club-card-content {
  padding: 1.5rem;
}

.club-card-title {
  margin-bottom: 0.5rem;
}

.club-card-info {
  margin-bottom: 1rem;
  color: var(--text-muted);
}

.club-card-info p {
  margin-bottom: 0.5rem;
}

.club-details {
  margin-top: 2rem;
}

.club-header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

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

.club-description {
  margin-bottom: 2rem;
}

.club-gallery {
  margin-top: 2rem;
}

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

.gallery-item {
  height: 200px;
  border-radius: 4px;
  overflow: hidden;
}

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

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


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

.contact-info {
  background-color: var(--dark-surface);
  padding: 2rem;
  border-radius: 8px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.contact-info-icon {
  font-size: 1.5rem;
  color: var(--accent);
  margin-right: 1rem;
  min-width: 1.5rem;
  text-align: center;
}

.map-container {
  height: 400px;
  border-radius: 8px;
  overflow: hidden;
  margin-top: 2rem;
}

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


.mistakes-list {
  background-color: var(--dark-surface);
  padding: 2rem;
  border-radius: 8px;
}

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

.mistake-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.mistake-title {
  color: var(--highlight);
  margin-bottom: 1rem;
}

.mistake-description {
  margin-bottom: 1rem;
}

.solution-title {
  color: var(--secondary);
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}


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

.thank-you-icon {
  font-size: 4rem;
  color: var(--secondary);
  margin-bottom: 2rem;
}

.thank-you-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.thank-you-message {
  max-width: 600px;
  margin: 0 auto 2rem;
  font-size: 1.2rem;
}


.legal-content {
  background-color: var(--dark-surface);
  padding: 2rem;
  border-radius: 8px;
}

.legal-content h2 {
  margin-top: 2rem;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-date {
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 2rem;
}


.radial-container {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 2rem;
  margin: 4rem 0;
}

.center-node {
  grid-column: 1 / -1;
  text-align: center;
  margin-bottom: 2rem;
}

.center-node-inner {
  background-color: var(--primary);
  border-radius: 50%;
  width: 200px;
  height: 200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  position: relative;
  z-index: 2;
}

.center-node-icon {
  font-size: 3rem;
  color: var(--accent);
}

.radial-item {
  position: relative;
  background-color: var(--dark-surface);
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

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

.radial-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 30px;
  background-color: var(--secondary);
  transform: translateY(-100%);
}

.radial-item:nth-child(odd)::before {
  left: 75%;
}

.radial-item:nth-child(even)::before {
  left: 25%;
}

.radial-item-icon {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 1rem;
}


.carousel {
  margin-bottom: 2rem;
}

.carousel-cell {
  width: 100%;
  height: 300px;
  margin-right: 20px;
  border-radius: 8px;
  overflow: hidden;
}

.carousel-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (min-width: 768px) {
  .carousel-cell {
    width: 33.33%;
  }
}


.iti {
  width: 100%;
}

.iti__flag-container {
  height: 100%;
}

.iti__selected-flag {
  background-color: var(--card-bg) !important;
  border-radius: 4px 0 0 4px;
}

.iti__country-list {
  background-color: var(--dark-surface) !important;
  color: var(--text-light) !important;
  border-color: var(--border-color) !important;
}

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

.iti__country {
  padding: 8px 10px !important;
}

.iti__country:hover {
  background-color: var(--card-bg) !important;
}


@media screen and (max-width: 991px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .radial-container {
    grid-template-columns: 1fr;
  }
  
  .radial-item::before {
    left: 50% !important;
  }
}

.close-nav {
  display: none;
}

@media screen and (max-width: 768px) {
  .nav-toggle {
    display: block;
  }
  
  nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: var(--dark-surface);
    padding: 5rem 1.5rem 2rem;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    z-index: 999;
  }
  
  nav.active {
    right: 0;
  }
  
  nav ul {
    flex-direction: column;
  }
  
  nav ul li {
    margin: 0 0 1.5rem 0;
  }
  
  .close-nav {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
  }
  
  .hero {
    height: 60vh;
  }
  
  .grid {
    grid-template-columns: 1fr;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
  }
  
  .cookie-banner-content {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .cookie-banner-actions {
    width: 100%;
    justify-content: space-between;
  }
}

@media screen and (max-width: 576px) {
  h1 {
    font-size: 1.75rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .hero-content p {
    font-size: 1rem;
  }
  
  section {
    margin: 2rem 0;
  }
  
  .modal-content {
    padding: 1.5rem;
  }
  
  .contact-section {
    grid-template-columns: 1fr;
  }
  
  .reference-cards {
    grid-template-columns: 1fr;
  }
}