/**
 * portfolio.css
 * Stylesheet for individual portfolio pages
 *
 * Table of Contents:
 * 1. Base / Reset
 * 2. Typography
 * 3. Links
 * 4. Navigation
 * 5. Content Sections (General)
 * 6. Page Themes
 * 7. Section Titles
 * 8. Audio Player
 * 9. Footer
 * 10. Portfolio Cards
 */

/* ==========================================================================
   1. Base / Reset
   ========================================================================== */

body {
  font-family: 'Lora', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  position: relative;
  width: 100%;
  height: 100%;
  color: #2c3e50;
  background-color: #ffffff;
}

html {
  width: 100%;
  height: 100%;
}

/* ==========================================================================
   2. Typography
   ========================================================================== */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Cabin', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 700;
  margin: 0 0 35px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

p {
  font-size: 16px;
  line-height: 1.5;
  margin: 0 0 25px;
}

@media (min-width: 768px) {
  p {
    font-size: 18px;
    line-height: 1.6;
    margin: 0 0 35px;
  }
}

/* ==========================================================================
   3. Links
   ========================================================================== */

a {
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  color: #fff;
}

a:focus,
a:hover {
  text-decoration: none;
  color: #cf5ece;
}

/* ==========================================================================
   4. Navigation
   ========================================================================== */

#logo:hover {
  opacity: 0.65;
  filter: alpha(opacity=65);
}

/* -- Default navbar state ------------------------------------------------- */

#mainNav {
  font-family: 'Cabin', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  margin-bottom: 0;
  padding-top: 10px;
  padding-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  background-color: #8ed6ec;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

/* -- Navbar toggler (mobile) ---------------------------------------------- */

#mainNav .navbar-toggler {
  font-size: 14px;
  padding: 11px;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

#mainNav .navbar-toggler:hover,
#mainNav .navbar-toggler:focus {
  border-color: rgba(255, 255, 255, 0.8);
  outline: none;
}

/* -- Navbar brand --------------------------------------------------------- */

#mainNav .navbar-brand {
  font-weight: 700;
}

#mainNav a {
  color: white;
}

/* -- Nav items ------------------------------------------------------------ */

#mainNav .navbar-nav .nav-item {
  -webkit-transition: background 0.3s ease-in-out;
  -moz-transition: background 0.3s ease-in-out;
  -o-transition: background 0.3s ease-in-out;
  transition: background 0.3s ease-in-out;
}

#mainNav .navbar-nav .nav-item:hover {
  color: rgba(255, 255, 255, 0.8);
  outline: none;
  background-color: transparent;
}

#mainNav .navbar-nav .nav-item:active,
#mainNav .navbar-nav .nav-item:focus {
  outline: none;
  background-color: transparent;
}

#mainNav .nav-link.active {
  outline: none;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
}

#mainNav .nav-link.active:hover {
  color: white;
}

/* ==========================================================================
   5. Content Sections (General)
   ========================================================================== */

.content-section {
  min-height: 100vh;
  padding: 100px 0 25px;
}

@media (max-width: 767px) {
  .content-section {
    padding: 90px 0 25px;
  }
}

/* ==========================================================================
   6. Content Theme
   ========================================================================== */

.content-section {
  background: #ffffff;
  color: #2c3e50;
}

.content-section h1,
.content-section h2,
.content-section h3,
.content-section h4,
.content-section h5,
.content-section h6 {
  color: #1a252f;
}

.content-section .title-page .title {
  color: #cf5ece;
}

.content-section a {
  color: #000080;
}

.content-section a:hover,
.content-section a:focus {
  color: #00bfff;
}

/* ==========================================================================
   7. Section Titles
   ========================================================================== */

.title-page {
  text-align: center;
  margin-bottom: 50px;
}

.title-page .title {
  font-size: 48px;
  margin: 0 0 10px 0;
  color: #cf5ece;
}

@media (max-width: 767px) {
  .title-page {
    margin-bottom: 25px;
  }

  .title-page .title {
    font-size: 36px;
  }
}

/* ==========================================================================
   8. Audio Player
   ========================================================================== */

.audioPlayer {
  width: 100%;
  padding: 20px;
  color: #fff;
}

.audio {
  width: 100%;
}

/* ==========================================================================
   9. Footer
   ========================================================================== */

footer {
  background: #8ed6ec;
}

footer .credits {
  font-size: 14px;
  margin-bottom: 0;
  padding: 20px 0;
  text-transform: uppercase;
}

@media (max-width: 767px) {
  footer .credits {
    font-size: 10px;
  }
}

/* ==========================================================================
   10. Portfolio Cards
   ========================================================================== */

.card {
  position: relative;
}
