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

html { height: 100%; }

body {
  width: 100%;
  height: 100%;
  background: #222121;
  color: #666666;
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  font-weight: normal;
  line-height: 24px;
  -webkit-font-smoothing: antialiased;
}

a {
  color: #ffc800;
  text-decoration: none;
  transition: all 500ms ease;
}
a:hover { color: #e6b400; }

ol, ul { list-style-type: none; }

h2 {
  padding-bottom: 15px;
  color: #3b3b3b;
  font-family: 'Fjalla One', sans-serif;
  font-size: 36px;
  font-weight: normal;
  line-height: 1.2em;
}

h3 {
  padding-bottom: 10px;
  color: #3b3b3b;
  font-family: 'Fjalla One', sans-serif;
  font-size: 22px;
  font-weight: normal;
  line-height: 1.3em;
}

p {
  padding-bottom: 20px;
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  font-weight: normal;
  line-height: 1.5em;
}

.container {
  width: 960px;
  padding: 40px 0;
  margin: 0 auto;
}

/* Header */
.paris-header {
  position: relative;
  top: 0;
  z-index: 12;
  width: 100%;
  background: rgba(0,0,0,0.9);
  border-top: 5px solid #ffc800;
}
.paris-header .container {
  position: relative;
  display: table;
  width: 100%;
  padding: 0 40px;
}
.paris-header .logo {
  display: table-cell;
  padding-right: 25px;
  vertical-align: middle;
  color: #ffffff;
  font-family: 'Fjalla One', sans-serif;
  font-size: 24px;
  font-weight: normal;
  line-height: normal;
}
.paris-header .logo a {
  color: #ffffff;
  letter-spacing: .05em;
  text-transform: uppercase;
  font-family: 'Fjalla One', sans-serif;
  font-size: 24px;
  font-weight: normal;
}
.paris-header .logo a:hover { color: #ffc800; }

/* Navigation */
.desktop-nav {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}
.desktop-nav > ul {
  float: right;
  display: inline-block;
  text-align: left;
}
.desktop-nav li {
  display: block;
  float: left;
  position: relative;
  transition: background 500ms ease;
}
.desktop-nav li > a {
  display: block;
  color: #ffffff;
  padding: 22px 20px;
  letter-spacing: .05em;
  text-transform: uppercase;
  font-family: 'Lato', sans-serif;
  font-size: 13px;
  font-weight: bold;
  line-height: normal;
}
.desktop-nav li > a:hover,
.desktop-nav li.active > a {
  background: #ffc800;
  color: #000;
}

/* Dropdown menus */
.desktop-nav li > .dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 100;
  min-width: 280px;
}
.desktop-nav li:hover > .dropdown {
  display: block;
}
.desktop-nav .dropdown li {
  float: none;
  display: block;
}
.desktop-nav .dropdown li > a {
  padding: 10px 5px;
  background: rgba(0,0,0,0.9);
  color: #ffffff;
  border-bottom: 1px solid #303030;
  font-size: 13px;
  font-weight: normal;
  text-transform: none;
  letter-spacing: normal;
}
.desktop-nav .dropdown li > a:hover {
  background: rgba(0,0,0,0.9);
  border-left: 5px solid #e6b400;
}

/* Nested dropdowns */
.desktop-nav .dropdown li > .dropdown {
  top: 0;
  left: 100%;
}

/* Hamburger (hidden on desktop) */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0 10px;
}
.hamburger span,
.hamburger span:before,
.hamburger span:after {
  display: block;
  width: 22px;
  height: 2px;
  background: #ffffff;
  content: '';
  position: relative;
  transition: all 200ms ease-out;
}
.hamburger span { margin: 5px 0; }
.hamburger span:before { top: -8px; }
.hamburger span:after { bottom: -6px; }

/* Main content */
.main-wrap {
  background: #fdf8e8;
}
.main-wrap .container {
  padding: 40px 0;
}

/* Two-column layout */
.two-col {
  display: flex;
  gap: 30px;
}
.col-left { flex: 1; min-width: 0; }
.col-right { width: 380px; flex-shrink: 0; }

.main-wrap ul {
  list-style-type: disc;
  margin-left: 1.5em;
  margin-bottom: 1em;
}
.main-wrap ul ul {
  list-style-type: circle;
}
.main-wrap li {
  margin-bottom: 0.4em;
  line-height: 1.5em;
}

/* Footer */
.footer-wrap {
  width: 100%;
  background: #222121;
  font-size: 13px;
  color: #ffffff;
}
.footer-wrap .container {
  width: 960px;
  margin: 0 auto;
  padding: 35px 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-wrap a { color: #ffc800; }
.footer-wrap a:hover { color: #e6b400; }
.social-links a { margin-left: 15px; }

/* Responsive */
@media screen and (max-width: 992px) {
  .container { width: 100%; padding: 0 20px; }
  .paris-header .container { padding: 10px 0; }
  .desktop-nav { display: none; }
  .hamburger { display: table-cell; vertical-align: middle; }
  .mobile-nav {
    position: fixed;
    top: 0; left: 0;
    z-index: 14;
    display: block;
    overflow-x: hidden;
    overflow-y: auto;
    width: 100%;
    height: 100%;
    max-height: 0;
    opacity: 0;
    background: rgba(0,0,0,0.9);
    transition: all 500ms cubic-bezier(0,0.995,0.99,1);
  }
  .mobile-nav.open {
    max-height: 100vh;
    opacity: 1;
    padding: 10px 0;
  }
  .mobile-nav ul { float: none; display: block; width: 100%; }
  .mobile-nav li { float: none; display: block; text-align: center; }
  .mobile-nav li a {
    padding: 10px 0;
    font-size: 1em;
    color: #ffffff;
    display: block;
  }
  .mobile-nav li a:hover { color: #ffc800; background: none; }
  .mobile-nav .dropdown { position: static; display: block; }
  .main-wrap .container { padding: 30px 20px; }
  .two-col { flex-direction: column; }
  .col-right { width: 100%; }
  .footer-wrap .container { width: 100%; padding: 40px 20px; }
}
