/* 
 * galaxy.css
 * Updated stylesheet for the Zoom VZW website
 * Modern design with green color scheme
 */

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #333;
  background-color: #f0f0f0;
}

/* Grid System */
.container {
  width: 100%;
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 15px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}

.col-xs-12 {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}

.col-xs-6 {
  position: relative;
  width: 50%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}

@media (min-width: 768px) {
  .col-sm-2 {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  
  .col-sm-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  
  .col-sm-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  
  .col-sm-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
}

@media (min-width: 992px) {
  .col-md-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
}

/* Layout */
.website-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container-content {
  flex: 1 0 auto;
  padding-top: 30px;
  padding-bottom: 50px;
  background-color: #fff;
  border-radius: 5px;
  margin-top: -50px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Header Styles */
.website-header {
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 100;
  padding: 10px 0;
}

.container-header {
  position: relative;
}

.bg-grey {
  display: none; /* Hide the grey background */
}

.logo {
  height: 80px;
  margin: 10px 0;
}

.logo-container {
  display: flex;
  align-items: center;
  position: relative;
}

.mobile-navigation-toggle {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 10px 0;
  z-index: 1001;
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  display: none; /* Hide by default, show only on mobile */
}

.icon-bar {
  display: block;
  width: 32px;
  height: 4px;
  background-color: #0d886a;
  margin: 7px 0;
  border-radius: 2px;
  transition: all 0.3s;
}

@media (max-width: 991px) {
  .mobile-navigation-toggle {
    display: block; /* Show only on mobile */
  }
  
  .website-header {
    padding: 5px 0;
  }
  
  .logo {
    height: 60px;
    margin: 5px 0;
  }
}

/* Main Navigation */
.main-navigation {
  background-color: #0d886a;
  padding: 0;
  position: relative;
}

@media (max-width: 991px) {
  .main-navigation {
    display: none; /* Hide the main navigation bar in mobile */
  }
}

.navigation {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  justify-content: center;
}

.navigation li {
  margin: 0;
}

.navigation li a {
  display: block;
  padding: 15px 20px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.2s;
}

.navigation li a:hover,
.navigation li.active a {
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
}

/* Mobile Menu Styles */
.mobile-menu-container {
  width: 100%;
  position: absolute;
  top: 100%; /* Position right below the header */
  left: 0;
  z-index: 1000;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
}

.navigation-mobile {
  list-style: none;
  margin: 0;
  padding: 0;
  background-color: #0d886a;
  width: 100%;
}

.navigation-mobile li {
  display: block;
  margin: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navigation-mobile li a {
  display: block;
  padding: 15px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

.navigation-mobile li a:hover,
.navigation-mobile li.active a {
  background-color: rgba(255, 255, 255, 0.1);
}

.mobile-navigation-toggle {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 10px 0;
  z-index: 1001;
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
}

.icon-bar {
  display: block;
  width: 32px;
  height: 4px;
  background-color: #0d886a;
  margin: 7px 0;
  border-radius: 2px;
  transition: all 0.3s;
}

@media (max-width: 767px) {
  .mobile-navigation-toggle {
    right: 20px;
  }
}

@media (max-width: 991px) {
  .navigation {
    display: none;
  }
  
  .mobile-navigation-toggle {
    display: block;
    position: absolute;
    top: 30px;
    right: 15px;
  }
  
  .navigation-mobile.active {
    display: block;
  }
  
  .mobile-menu-container {
    display: block;
    position: absolute;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
  }
  
  .navigation-mobile {
    width: 100%;
  }
}

/* Banner */
.col-banner {
  position: relative;
  height: 250px;
  background-color: #f5f5f5;
  margin-bottom: 50px;
  overflow: hidden;
}

.col-werking-banner {
  background-image: url('../../content/images/0009584_0007774_wheelchair-buying-guide-large.jpeg');
  background-size: cover;
  background-position: center;
}

/* Content Styles */
h2 {
  font-size: 28px;
  color: #0d886a;
  margin-bottom: 20px;
  font-weight: 600;
}

h3 {
  font-size: 22px;
  color: #333;
  margin-top: 25px;
  margin-bottom: 15px;
}

h4 {
  font-size: 18px;
  color: #444;
  margin-top: 20px;
  margin-bottom: 10px;
}

p {
  margin-bottom: 15px;
}

ul {
  margin-bottom: 20px;
  padding-left: 20px;
}

ul.check {
  list-style: none;
  padding-left: 25px;
}

ul.check li {
  position: relative;
  margin-bottom: 10px;
}

ul.check li:before {
  content: "✓";
  position: absolute;
  left: -20px;
  color: #0d886a;
  font-weight: bold;
}

a {
  color: #0d886a;
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: #076a53;
  text-decoration: underline;
}

.col-right-panel {
  background-color: #f9f9f9;
  padding: 25px;
  margin-bottom: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.col-right-panel h2 {
  font-size: 22px;
  margin-top: 0;
  position: relative;
  padding-bottom: 10px;
}

.col-right-panel h2:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 3px;
  background-color: #0d886a;
}

.col-right-panel ul {
  list-style: disc;
  padding-left: 20px;
}

.col-right-panel ul li {
  margin-bottom: 8px;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #eee;
  border: none;
  border-radius: 4px;
  color: #333;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
}

.btn:hover {
  background-color: #e0e0e0;
  text-decoration: none;
}

.btn-default {
  background-color: #0d886a;
  color: #fff;
}

.btn-default:hover {
  background-color: #076a53;
  color: #fff;
}

.btn-cookie-accept {
  background-color: #0d886a;
  color: #fff;
  padding: 8px 15px;
  border-radius: 4px;
  display: inline-block;
}

.fa-margin-right {
  margin-right: 5px;
}

/* Footer Styles */
.website-footer {
  background-color: #333;
  color: #fff;
  padding-top: 40px;
  margin-top: 40px;
}

.container-footer-navigation {
  padding-bottom: 30px;
}

.website-footer h2 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  position: relative;
}

.website-footer h2:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background-color: #0d886a;
}

.website-footer a {
  color: #ccc;
}

.website-footer a:hover {
  color: #fff;
}

.indent {
  padding: 0 15px;
}

.list-unstyled {
  list-style: none;
  padding-left: 0;
}

.list-unstyled li {
  margin-bottom: 10px;
}

.erkend-door {
  display: flex;
  flex-direction: column;
}

.erkend-door a {
  margin-bottom: 15px;
}

.erkend-door img {
  max-width: 100%;
  height: auto;
}

.container-footer-info {
  background-color: #222;
  padding: 15px 0;
  font-size: 14px;
}

.col-info {
  display: flex;
  flex-wrap: wrap;
}

.col-info span {
  margin-right: 20px;
  margin-bottom: 5px;
}

.float-right {
  margin-left: auto;
  margin-right: 0;
}

/* Cookie Warning */
.cookie-warning {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
}

.cookie-warning-triangle {
  width: 60px;
  height: 60px;
  background-color: #0d886a;
  position: absolute;
  bottom: 0;
  right: 0;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.cookie-warning-triangle:before {
  content: "!";
  color: white;
  font-size: 24px;
  font-weight: bold;
}

.cookie-warning-message {
  display: none;
  background-color: #fff;
  border: 2px solid #0d886a;
  padding: 20px;
  max-width: 300px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  color: #333;
  position: absolute;
  bottom: 70px;
  right: 0;
}

.cookie-warning-message.active {
  display: block;
}

/* Custom styles for the mission section */
.mission-section {
  background-color: #f5f5f5;
  padding: 40px 0;
  margin-bottom: 40px;
  border-radius: 8px;
}

.mission-title {
  color: #d35400;
  font-size: 32px;
  margin-bottom: 20px;
  font-weight: 700;
}

.highlight {
  color: #0d886a;
  font-weight: 600;
}

/* Utilities */
.clearfix::after {
  content: "";
  display: table;
  clear: both;
}

.visible-xs {
  display: none;
}

@media (max-width: 767px) {
  .visible-xs {
    display: block;
  }
  
  h2 {
    font-size: 24px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  h4 {
    font-size: 18px;
  }
  
  .col-banner {
    height: 200px;
  }
  
  .website-footer h2 {
    margin-top: 20px;
  }
  
  .col-info {
    flex-direction: column;
  }
  
  .col-info span {
    margin-right: 0;
    margin-bottom: 10px;
  }
  
  .float-right {
    margin-left: 0;
  }
  
  .container-content {
    margin-top: 0;
  }
}

/* Culture-specific styles */
.culture-nl-be {
  /* Dutch/Belgian specific styles if needed */
}

/* Cookie notification */
.cookie-notification {
  position: fixed;
  bottom: 0;
  right: 0;
  background-color: rgba(13, 136, 106, 0.9);
  color: white;
  padding: 15px;
  width: 300px;
  border-top-left-radius: 5px;
  z-index: 1000;
}

.cookie-buttons {
  display: flex;
  justify-content: flex-end;
  margin-top: 10px;
}

.cookie-buttons button {
  margin-left: 10px;
  padding: 5px 15px;
  border: none;
  border-radius: 3px;
  cursor: pointer;
}

.logo-container {
  display: flex;
  align-items: center;
}

.main-navigation {
  background-color: #0d886a;
}

.main-navigation .navigation {
  display: flex;
  justify-content: center;
}

.main-navigation .navigation li a {
  display: block;
  padding: 15px 20px;
  color: white;
  text-decoration: none;
}

.main-navigation .navigation li a:hover,
.main-navigation .navigation li.active a {
  background-color: rgba(255, 255, 255, 0.1);
}