/* Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Base */
body {
  font-family: Arial, sans-serif;
  font-size: 13px;
  color: #695A58;
  background: #fff;
}

a {
  color: #db4865;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.clear {
  clear: both;
}

/* Layout */
#wrapper {
  max-width: 940px;
  margin: 0 auto 5em auto;
  padding: 0 2%;
}

/* Header */
.header {
  margin: 1em auto 0 auto;
  text-align: center;
}

.header-link {
  display: inline-block;
  text-decoration: none;
}

.logo-container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-logo {
  width: 9em;
  height: 9em;
  min-width: 9em;
  margin-right: 1em;
}

.header-text {
  font-family: 'Fredoka One', cursive;
  font-size: 1.3em;
  letter-spacing: 0.2em;
  color: #db4865;
  text-align: left;
  white-space: nowrap;
}

.header-text h1 {
  font-family: 'Fredoka One', Verdana, sans-serif;
  font-size: 2.5em;
  text-transform: uppercase;
  color: #93c3cd;
  text-shadow: 3px 3px 0px #db4865;
  margin: 0;
  line-height: 1;
}

.header-text p {
  margin: 0.3em 0 0 0;
}

/* Description */
.desc {
  margin: 20px 0 15px 0;
  font-size: 1.4em;
}

.desc p {
  margin: 5px 0;
}

.desc h2 {
  color: #db4865;
  margin: 20px 0 10px 0;
}

/* Ads */
.ad-container {
  width: 100%;
  max-width: 900px;
  margin: 2em auto;
}

.ad-top {
  height: 90px;
  margin: 0 auto;
}

/* Accordion */
.accordion {
  margin-top: 20px;
  font-size: 1.2em;
  max-width: 900px;
}

.accordion-item {
  margin-bottom: 2px;
}

.accordion-header {
  width: 100%;
  padding: 12px 15px 12px 35px;
  background: #93c3cd url('/images/ui-bg_diagonals-small_50_93c3cd_40x40.png') 50% 50% repeat;
  border: 1px solid #93c3cd;
  border-radius: 4px;
  cursor: pointer;
  text-align: left;
  font-size: 1.1em;
  font-weight: bold;
  color: #333;
  position: relative;
}

.accordion-header:hover {
  filter: brightness(1.05);
}

.accordion-header.active {
  border-radius: 4px 4px 0 0;
  background: #db4865 url('/images/ui-bg_diagonals-small_40_db4865_40x40.png') 50% 50% repeat;
  border-color: #db4865;
  color: #fff;
}

.accordion-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid #333;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  transition: transform 0.2s;
}

.accordion-header.active .accordion-icon {
  transform: translateY(-50%) rotate(90deg);
  border-left-color: #fff;
}

.accordion-content {
  display: none;
  padding: 1em 1.5em;
  background: #fff;
  border: 1px solid #ddd;
  border-top: none;
  border-radius: 0 0 4px 4px;
}

.accordion-content.open {
  display: block;
}

/* Panel */
.panel-wrapper {
  min-height: 300px;
  overflow: hidden;
}

.info {
  width: 48.5%;
  float: left;
  min-width: 320px;
  margin-right: 2%;
}

.info p {
  margin: 8px 0;
}

.info table {
  border-collapse: collapse;
  text-align: left;
  width: 100%;
  font-size: 0.95em;
}

.info table td {
  border-top: 1px solid #FFCFDA;
  color: #666666;
  padding: 10px 1px;
}

.info table td:first-child {
  border-right: 10px solid transparent;
  color: #DB4865;
  width: 26%;
}

.info table tr:hover td {
  background: #F8EDEF;
}

.info table tr:first-child td {
  border-top: none;
}

.map {
  width: 48.5%;
  float: left;
  min-width: 320px;
  height: 300px;
  border: 1px solid #FFCFDA;
  background: #f0f0f0 url('/images/mapbg.png') no-repeat center center;
}

/* Buttons */
.btn {
  border: none;
  cursor: pointer;
  display: inline-block;
  font-size: 0.95em;
  font-family: inherit;
  color: #fff;
  padding: 10px 20px;
  border-radius: 4px;
  margin: 15px 0;
  transition: background 0.2s;
}

.btn-geo {
  background: #93c3cd;
}

.btn-geo:hover {
  background: #7ab5c0;
}

.btn-geo:disabled {
  background: #ccc;
  cursor: not-allowed;
}

/* Footer Section */
.footer-section {
  margin: 30px 0 0 0;
  text-align: center;
}

/* Footer */
.footer {
  text-align: center;
  padding: 30px 20px;
  color: #999;
  font-size: 0.9em;
}

.footer-inner {
  max-width: 900px;
  margin: 0 auto;
}

/* Responsive */
@media only screen and (max-width: 750px) {
  .header {
    font-size: 10px;
  }

  .desc {
    display: none;
  }

  .panel-wrapper {
    min-height: auto;
  }

  .info, .map {
    width: 100%;
    float: none;
  }

  .map {
    margin-top: 10px;
  }

  .accordion-content {
    padding: 1em;
  }
}
