/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; }

html, body {
    height: 100%;
    overflow-x: hidden;
}

body {
    font-family: "Open Sans Condensed", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 21px;
    font-weight: 400;
    letter-spacing: 2px;
    line-height: 1.5;
    color: #ffffff;
    background-color: #121213;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Raleway", Georgia, "Times New Roman", Times, serif;
    font-weight: 900;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    line-height: 1.3;
    color: #ffffff;
    margin-top: 0;
    margin-bottom: 0;
}

h1 { font-size: 60px; }
h2 { font-size: 44px; }

a {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}
a:focus, a:hover { color: #ffffff; text-decoration: none; }

p { margin-bottom: 0; line-height: 1.6; }

/* ===== Background ===== */
#bg {
    position: fixed;
    left: 0; right: 0; top: 0; bottom: 0;
    z-index: -2;
    background-image: url('../img/bg.jpg');
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: cover;
}

#overlay {
    position: fixed;
    left: 0; right: 0; top: 0; bottom: 0;
    z-index: -1;
    background-color: rgba(0, 0, 0, 0.6);
}

/* ===== Preloader ===== */
#preloader {
    background-color: #121213;
    position: fixed;
    left: 0; top: 0;
    width: 100%; height: 100%;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

#preloader-img {
    position: absolute;
    transform: translate(-50%, -50%);
    left: 50%; top: 50%;
    width: 64px; height: 64px;
}

/* ===== Header ===== */
#site-header {
    position: fixed;
    left: 0; top: 0;
    width: 100%;
    z-index: 1000;
}

.navbar {
    padding: 15px 0;
    border: 0;
    background: transparent;
    margin-bottom: 0;
}

.logo {
    display: block;
    height: 50px;
    width: auto;
    float: left;
}

.menu-toggle {
    cursor: pointer;
    width: 50px; height: 50px;
    line-height: 50px;
    font-size: 18px;
    color: #ffffff;
    text-align: center;
    float: right;
    user-select: none;
}

/* ===== Fullscreen Menu ===== */
#menu-wrap {
    display: table;
    table-layout: fixed;
    width: 100%; height: 100%;
    position: fixed;
    left: 100%; top: 0;
    z-index: 950;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.93);
    transition: left 0.4s ease-in-out;
}

#menu-wrap.open { left: 0; }

#menu {
    list-style: none;
    padding: 0; margin: 0;
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}

#menu li {
    margin: 20px 0;
    display: block;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

#menu-wrap.open #menu li {
    opacity: 1;
    transform: translateY(0);
}

#menu-wrap.open #menu li:nth-child(1) { transition-delay: 0.15s; }
#menu-wrap.open #menu li:nth-child(2) { transition-delay: 0.25s; }
#menu-wrap.open #menu li:nth-child(3) { transition-delay: 0.35s; }

#menu a {
    position: relative;
    font-family: "Raleway", Georgia, "Times New Roman", Times, serif;
    font-size: 28px;
    font-weight: 900;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    padding: 5px 15px;
}

/* ===== Sections ===== */
section {
    height: 100vh;
    position: relative;
}

.tb {
    display: table;
    table-layout: fixed;
    width: 100%; height: 100%;
}

.tb-cell {
    display: table-cell;
    vertical-align: middle;
}

.tc { text-align: center; }

.section-title { position: relative; margin-bottom: 0; }

.sub-title {
    font-family: "Libre Baskerville", Georgia, "Times New Roman", Times, serif;
    font-size: 18px;
    letter-spacing: 3.5px;
    font-weight: 400;
    margin-top: 25px;
}

.section-content { margin-top: 40px; }
.section-footer { margin-top: 40px; }

/* ===== Buttons ===== */
.btn {
    font-family: "Open Sans Condensed", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    height: 34px;
    line-height: 32px;
    padding: 0 35px;
    border-radius: 0;
    transition: all 0.3s ease-in-out;
}

.btn-lg {
    height: 46px;
    line-height: 44px;
    padding: 0 35px;
}

.btn-theme.border {
    color: #ffffff;
    background-color: transparent;
    border: 1px solid #ffffff;
}

.btn-theme.border:hover {
    color: #333333;
    background-color: #ffffff;
    border-color: #ffffff;
}

/* ===== About Section ===== */
#about .section-content { margin-top: 30px; }

/* ===== Contact Section ===== */
.col-contact {
    text-align: center;
    margin-top: 20px;
    padding: 20px;
}

.col-contact .fa {
    display: block;
    margin-bottom: 15px;
    color: #ffffff;
}

/* ===== Social List ===== */
.social-list {
    list-style: none;
    padding: 0; margin: 30px 0 0;
}

.social-list li { display: inline-block; padding: 10px 5px; }

.social-list a {
    display: inline-block;
    width: 44px; height: 44px;
    line-height: 44px;
    text-align: center;
    border-radius: 50%;
    color: #333333;
    background-color: #ffffff;
}

.social-list a:hover {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

/* ===== Responsive ===== */
@media (max-width: 991px) {
    #menu a { font-size: 18px; }
    section { text-align: center; }
    h1, h2 { font-size: 50px; }
    .col-contact { margin-top: 0; }
}

@media (max-width: 767px) {
    h1, h2 { font-size: 36px; }
    .sub-title { font-size: 14px; letter-spacing: 2px; }
}
