/* Graphik Web Font */
@font-face {
    font-family: 'Graphik Web';
    src: url('../fonts/Graphik-Light-Web.eot');
    src: url('../fonts/Graphik-Light-Web.eot?#iefix') format('embedded-opentype'),
         url('../fonts/Graphik-Light-Web.woff') format('woff'),
         url('../fonts/Graphik-Light-Web.ttf') format('truetype'),
         url('../fonts/Graphik-Light-Web.svg#Graphik Web') format('svg');
    font-weight: 300;
    font-style: normal;
}

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

html {
    font-size: 62.5%; /* 1rem = 10px */
}

body {
    background: #000;
    color: #fff;
    font: 300 1.6rem/1.6 'Graphik Web', sans-serif;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 300;
    line-height: 1.2;
}

h3 {
    font-size: 3.6rem;
    margin-bottom: 1em;
    color: #e9e9e9;
}

p {
    font-size: 1.6rem;
    line-height: 1.6;
    color: #c9c9c9;
    overflow-wrap: break-word;
    margin: 0;
}

a {
    color: #D8B973;
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: #fff;
}

/* Layout */
.hero-section {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
}

#main-content {
    padding-top: 80px;
}

.content-columns {
    padding: 0 8%;
    max-width: 1800px;
    margin: 0 auto;
}

.content-column {
    padding: 0 25px;
}

.content-column-infos {
    margin-top: 1.5em;
}

.site-logo {
    position: fixed;
    z-index: 100;
    right: 5%;
    bottom: 30px;
    cursor: pointer;
    text-indent: -9999px;
    width: 300px;
    height: 30px;
    margin-bottom: 0;
    background: url('../images/logo.png') center/300px 30px no-repeat;
}

#site-footer {
    padding: 60px 0 90px;
}

.footer-credits {
    max-width: 1800px;
    padding: 0 calc(8% + 25px);
}

.footer-credits p {
    font-size: 1.4rem;
    line-height: 1.4;
}

/* Desktop (1200px+) */
@media (min-width: 1200px) {
}

/* Tablet (768px - 1199px) */
@media (max-width: 1199px) {
    h3 {
        font-size: 3.2rem;
    }

    .content-column {
        padding: 0 15px;
        margin-bottom: 45px;
    }
    
    .site-logo {
        bottom: 25px;
        width: 250px;
        height: 25px;
        background-image: url('../images/logo-m.png');
        background-size: 250px 25px;
    }
    
    .footer-credits {
        padding: 0 calc(8% + 15px);
    }
}

/* Mobile (576px - 767px) */
@media (max-width: 767px) {
    h3 {
        font-size: 3rem;
    }
    
    .content-columns {
        padding: 0;
    }
    
    .content-column {
        padding: 0 5%;
    }
    
    .content-column p,
    .content-column-infos p {
        font-size: 1.5rem;
    }
    
    .site-logo {
        bottom: 20px;
        width: 200px;
        height: 20px;
        background-image: url('../images/logo-s.png');
        background-size: 200px 20px;
    }
    
    #site-footer {
        padding-top: 50px;
    }
    
    .footer-credits {
        padding: 0 5%;
    }
    
    .footer-credits p {
        font-size: 1.3rem;
    }
}

/* Small Mobile (<576px) */
@media (max-width: 575px) {
    h3 {
        font-size: 2.4rem;
    }
    
    .content-column p,
    .content-column-infos p {
        font-size: 1.4rem;
    }
    
    .site-logo {
        bottom: 15px;
        width: 150px;
        height: 15px;
        background-image: url('../images/logo-xs.png');
        background-size: 150px 15px;
    }
    
    .footer-credits {
        padding: 0 5%;
    }
    
    .footer-credits p {
        font-size: 1.2rem;
    }
}