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

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family:
    'Roboto',
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #000000;
  background-color: #ffffff;
}

/* Utilities */
.text-yellow {
  color: #fcd116 !important;
}

.font-bold {
  font-weight: 700;
}

/* Header / Navigation */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 18px 24px;
  color: #000;
}

.site-header-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.site-brand {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
}

.site-brand a {
  color: inherit;
  text-decoration: none;
}

.site-brand-logo {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1;
}

.site-brand-tagline {
  font-size: 14px;
  line-height: 1.2;
  font-weight: 600;
}

.site-nav {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 12px;
}

.site-nav a {
  color: inherit;
  text-decoration: none;
  opacity: 0.8;
  position: relative;
  padding-right: 10px;
}

.site-nav a::after {
  content: '/';
  position: absolute;
  right: 0;
  opacity: 0.6;
}

.site-nav a:last-child {
  padding-right: 0;
}

.site-nav a:last-child::after {
  content: '';
}

.site-nav a:hover {
  opacity: 1;
}

/* Footer */
.site-footer {
  background: #111;
  color: rgba(255, 255, 255, 0.8);
  padding: 22px 20px;
  text-align: center;
  font-size: 12px;
}

.site-footer a {
  color: inherit;
  opacity: 0.9;
}

.site-footer a:hover {
  opacity: 1;
}

/* Hero Section */
.hero-section {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
}

.hero-background {
  position: relative;
  width: 100%;
}

.hero-background img {
  width: 100%;
  height: auto;
  display: block;
}

.media-arrow {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  border: 3px solid #000;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
}

.media-arrow::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 15px;
  height: 15px;
  border-bottom: 3px solid #000;
  border-right: 3px solid #000;
}

.media-arrow:hover {
  background-color: rgba(0, 0, 0, 0.1);
}

/* Section Styles */
.section {
  position: relative;
  padding: 60px 0;
}

.section-white {
  background-color: #ffffff;
}

.section-dark-bg,
.section-light-bg {
  position: relative;
  overflow: hidden;
}

.section-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.section-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-dark-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 2;
}

.section-light-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 2;
}

.section-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-dark-bg .section-content,
.section-light-bg .section-content {
  color: #ffffff;
}

/* Typography */
h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #000000;
}

h2 {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 15px;
  line-height: 1.3;
  color: #000000;
}

h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: #000000;
}

p {
  font-size: 1rem;
  margin-bottom: 12px;
  color: #000000;
}

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

/* Topics */
.topics-heading {
  font-size: 1.8rem;
  margin: 40px 0 30px;
}

.topic-large {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.cta-heading {
  font-size: 2rem;
  margin-top: 60px;
}

/* Icon Grid */
.icon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin: 40px 0;
}

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

.icon-svg {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  color: #ffffff;
}

.icon-svg svg {
  width: 100%;
  height: 100%;
}

.icon-item p {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
}

/* Contact Page Styles */
.contact-section {
  padding: 80px 0;
}

.contact-intro {
  text-align: center;
  font-size: 1.2rem;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.contact-heading {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 40px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.contact-map {
  width: 100%;
  height: 500px;
  border: 0;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.contact-icon {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 100%;
  height: 100%;
  stroke: #666;
}

.contact-text h3 {
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.contact-text p {
  font-size: 1rem;
  color: #666;
  margin: 0;
}

.closing-section {
  background-color: #f5f5f5;
  padding: 60px 20px;
  text-align: center;
}

.closing-section h1 {
  font-size: 2rem;
  max-width: 900px;
  margin: 0 auto;
  color: #2c3e50;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #2b2b2b;
  color: rgba(255, 255, 255, 0.9);
  z-index: 9999;
}

.cookie-bar {
  max-width: 1400px;
  margin: 0 auto;
  padding: 18px 28px;
  position: relative;
}

.cookie-bar-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cookie-text {
  font-size: 13px;
  line-height: 1.35;
  max-width: 740px;
}

.cookie-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
}

.cookie-btn {
  background: #ffffff;
  border: 0;
  color: #2b2b2b;
  padding: 10px 18px;
  border-radius: 4px;
  font-size: 13px;
  cursor: pointer;
}

.cookie-btn:hover {
  filter: brightness(0.95);
}

.cookie-close {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.65);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.cookie-close:hover {
  color: rgba(255, 255, 255, 0.9);
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-section {
    min-height: 500px;
  }

  .site-header {
    padding: 14px 16px;
  }

  .site-nav {
    font-size: 11px;
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  h1 {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 1.3rem;
  }

  .topic-large {
    font-size: 1.8rem;
  }

  .icon-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-map {
    height: 400px;
  }

  .cookie-bar {
    padding: 16px 16px;
  }

  .cookie-bar-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-buttons {
    width: 100%;
    justify-content: flex-start;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.5rem;
  }

  .topic-large {
    font-size: 1.5rem;
  }

  .section {
    padding: 60px 0;
  }
}
