/* ==========================================================================
   1. BASE STYLES
   ========================================================================== */

html, body {
    height: 100%;
    font-size: 1.1rem;
    font-weight: 200;
}

p {
    line-height: 2;
}

a, a:link, a:visited, a:hover, a:active {
    color: #FCA428;
    text-decoration: none;
}

.text-italic {
    font-style: italic;
}

.color-orange {
    color: #FCA428;
}

.bg-theme-color {
    background-color: #000000;
}

#myBtn {
    background-color:#FCA428;
    color:#000;
    text-transform: uppercase;
    font-family: 'Sofia Sans Extra Condensed', sans-serif;
    padding:15px;
    font-size:1.4rem;
}

/* ==========================================================================
   2. HEADING STYLES
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
    font-weight: 100;
    text-transform: uppercase;
    font-family: 'Sofia Sans Extra Condensed', sans-serif;
    color: #FCA428 !important;
}

h1 img {
    margin-bottom: 15px;
}

h1.alt {
    font-size: 3rem !important;
}

h2 {
    font-size: 2.8rem;
    letter-spacing: -0.04em;
    color: #FCA428 !important;
}

/* ==========================================================================
   3. ELEMENT STYLES
   ========================================================================== */

blockquote {
    font-weight: 100;
    font-size: 1.8rem;
    line-height: 1.4;
    position: relative;
    margin: 0;
    padding: .5rem;
}

blockquote:before, 
blockquote:after {
    position: absolute;
    color: #f1efe6;
    font-size: 8rem;
    width: 4rem;
    height: 4rem;
}

blockquote:before {
    content: '“';
    left: -2rem;
    top: -2rem;
}

blockquote:after {
    content: '”';
    right: -2rem;
    bottom: 2rem;
}

cite {
    font-size: 1.2rem;
    line-height: 3;
    text-align: left;
}

/* ==========================================================================
   4. NAVIGATION STYLES
   ========================================================================== */

.navbar-fixed-top {
    top: -100px;
    opacity: 0;
}

a.nav-link {
    color: #ffffff;
}

.nav-link:focus, 
.nav-link:hover {
    color: #FCA428;
}

.navbar-nav a.active {
    color: #FCA428 !important;
}

.navbar-toggler {
    background-color: #FCA428;
}

.navbar-toggler-icon {
    color: #ffffff;
}

.social-media-button {
    max-width: 90px;
    padding: 10px;
}

/* ==========================================================================
   5. SECTION STYLES
   ========================================================================== */

/* --- Home Section --- */
#home {
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-position: center center;
    min-height: 300px;
}

#home-gradient {
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    position: absolute;
    background-image: linear-gradient(180deg, rgba(12, 12, 12, 0) 56%, #000000 94%);
}

#home h1 {
    width: 100%;
    text-align: center;
    font-size: 2em;
}

#home h1 img {
    width: 25% !important;
}

/* --- Shows Section --- */
#shows {
    background-image: url(/img/bg-black-cracks.jpg);
    background-size: cover;
    background-color: #000;
}

#shows a, 
#shows a:link, 
#shows a:visited, 
#shows a:hover, 
#shows a:active {
    color: #333333;
    text-decoration: none;
}

.bit-widget .bit-offers {
    color: #058D29;
    background-color: #058D29;
}

#shows a.bit-button:link, 
#shows a.bit-button:visited, 
#shows a.bit-button:hover, 
#shows a.bit-button:active {
    color: #ffffff;
    text-decoration: none;
}

/* --- About Section --- */
#about {
    background-size: cover;
    position: relative;
    overflow: hidden;
    color: #ffffff;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
}

#about::before {
    content: "";
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    z-index: -1;
    opacity: 0.3;
    background: url(img/pexels-lumn-285437-grey.jpg) 0 0 repeat;
    transform: rotate(-5deg);
}

#about strong {
    color: #FCA428 !important;
}

/* --- Booking & Utility --- */
#booking {
    position: relative;
    overflow: hidden;
    color: #ffffff;
}

#booking h2 {
    color: #FCA428 !important;
}

#booking h3 {
    color: #ffffff !important;
}

#booking::before {
    content: "";
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    z-index: -1;
    background-color: #000000;
}

#video h2 {
    display: none;
}

#photocredit {
    color: #666;
    font-style: italic;
    font-size: 0.9rem;
}

#photocredit a:link, 
#photocredit a:visited, 
#photocredit a:hover, 
#photocredit a:active {
    color: #666 !important;
}

#romer-logo {
    max-width: 200px;
}

/* --- Containers --- */
.video-container {
    position: relative;
    padding-bottom: 56.25%;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* ==========================================================================
   6. ANIMATIONS
   ========================================================================== */

.slide-left {
    animation: slide-left 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

@keyframes slide-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100px); }
}

.scale-up-center {
    animation: scale-up-center 0.8s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
    max-width: 400px;
}

@keyframes scale-up-center {
    0% { transform: scale(0.5); }
    100% { transform: scale(1); }
}

/* ==========================================================================
   7. MEDIA QUERIES
   ========================================================================== */

/* --- Mobile / Tablet (up to 992px) --- */
@media only screen and (max-width: 992px) {
    #video, #about, #booking {
        padding: 60px 0;
    }
    
    #shows {
        padding: 0 !important;
    }

    #photos {
        padding: 60px 20px;
    }
    
    .scale-up-center {
        max-width: 250px;
    }
}

/* --- Mobile / Tablet Specific Fixes (up to 900px) --- */
@media only screen and (max-width: 900px) {
    h2 { font-size: 2rem; }
    h1.alt { font-size: 2.2rem !important; }
    #home h1 img { width: 90% !important; }
}

/* --- Desktop (992px and up) --- */
@media only screen and (min-width: 992px) {
    .section {
        padding: 100px;
    }

    #video, #show, #about, #booking {
        min-height: 100vh;
    }

    .fullheight {
        min-height: 78vh;
    }
}