
:root {
  --color-primary: #000000;
  --color-secondary: #FFFFFF;
  --color-accent: #B8860B;
  --color-background: #F5F5F5;
  --color-text: #333333;
  --color-error: #D32F2F;
  --color-success: #388E3C;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Space Grotesk', sans-serif;
  color: var(--color-text);
  line-height: 1.6;
}


.bg-texture {
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.iti {
  width: 100%;
}


#header {
  background-color: transparent;
  transition: background-color 0.3s ease;
}

#header.scrolled {
  background-color: rgba(0, 0, 0, 0.9);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}


#hero, #services-hero, #programmes-hero, #contact-hero {
  background-color: var(--color-primary);
  position: relative;
}


.btn-primary {
  background-color: var(--color-accent);
  color: var(--color-secondary);
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #9E7400;
}

.btn-outline {
  border: 2px solid var(--color-secondary);
  color: var(--color-secondary);
  transition: all 0.3s ease;
}

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


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


.reveal-section {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-section.revealed {
  opacity: 1;
  transform: translateY(0);
}


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


::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: var(--color-accent);
}

::-webkit-scrollbar-thumb:hover {
  background: #9E7400;
}


#cookie-consent-banner,
#cookie-settings-modal {
  font-family: 'Space Grotesk', sans-serif;
}


.relative input[type="checkbox"] + div + div {
  transition: transform 0.3s ease-in-out;
}

input[type="checkbox"]:checked + div + div {
  transform: translateX(1.25rem);
}


a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}


#mobile-menu {
  transition: all 0.3s ease;
}


.transition-all {
  transition: all 0.3s ease;
}


@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
}


@media print {
  body {
    color: #000;
    background: #fff;
  }
  
  #header,
  #footer,
  #cookie-consent-banner,
  form button {
    display: none;
  }
}


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

.animate-fadeIn {
  animation: fadeIn 0.5s ease-in-out;
}


.text-shadow {
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.hidden {
  display: none;
}