/* Fonts */
@font-face {
    font-family: 'Gotham Narrow Black';
    src: url('media/Fonts/GothamNarrow-Black.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Afacad Flux';
    src: url('media/Fonts/AfacadFlux.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Antaris CF';
    src: url('media/Fonts/Antaris_CF.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(29, 29, 29, 0.9);
    height: 80px;
    display: flex;
    align-items: center;
    font-family: 'Antaris CF', sans-serif;
    justify-content: space-between;
    z-index: 1000;
}

header:after {
    content: "";
    position: absolute;
    top: 80px;
    left: 0;
    height: 60px;
    width: 100%;
    background-image: url("data:image/svg+xml,%3Csvg data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 63' preserveAspectRatio='none' style='width: 100%25; height: 30px; fill: rgba(29, 29, 29, 0.9)'%3E%3Cpath d='M390,0H0V63C132.73,38.18,256.36,25.76,390,25.76S667.27,38.18,800,63V0Z'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    z-index: -1;
}

header .inner {
    width: 1500px;
    height: 100%;
    display: block;
    margin: 0 auto;
}

/* Body */
html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
}

html {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: rgb(31, 14, 21);
}

.gradient-section {
    background: linear-gradient(to bottom, #ff002b, #66115f);
    padding: 20px;
}

.gradient-section:before {
    content: "";
    position: absolute;
    top: 80px;
    left: 0;
    height: 60px;
    width: 100%;
    background-image: url("data:image/svg+xml,%3Csvg data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 63' preserveAspectRatio='none' style='width: 100%25; height: 30px; fill: rgb(31, 14, 21)'%3E%3Cpath d='M390,0H0V63C132.73,38.18,256.36,25.76,390,25.76S667.27,38.18,800,63V0Z'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

main {
    margin-top: 100px; 
}

/* Logo */
header .logo {
    display: table;
    height: 100%;
    float: left;
    user-select: none;
    margin-left: 10px;
}

header .logo div {
    height: 100%;
    display: table-cell;
    vertical-align: middle;
}

header .logo img {
    height: 100px;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.logo img:hover {
    filter: drop-shadow(0 0 10px rgba(255, 68, 68, 0.363));
    transform: scale(1.1);
}

/* Navigation */
nav.primary-nav {
    margin-right: 40px;
    float: right;
}

nav.primary-nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

nav.primary-nav ul li {
    position: relative;
    padding-right: 20px;
}

nav.primary-nav ul li::after {
    content: "•";
    position: absolute;
    right: 0;
    color: rgb(255, 255, 255);
    font-family: 'Gotham Narrow Black', sans-serif;
    font-size: 20px;
    top: 50%;
    transform: translateY(-50%);
}

nav.primary-nav ul li:last-child::after {
    content: "";
}

nav.primary-nav ul li a {
    text-decoration: none;
    color: rgb(255, 255, 255);
    font-size: 20px;
    transition: padding 0.3s ease, letter-spacing 0.3s ease, text-shadow 0.3s ease, color 0.3s ease;
    display: table;
    padding: 0 25px;
    height: 100%;
    line-height: 40px;
    background-color: transparent;
    position: relative;
    user-select: none;
}

nav.primary-nav ul li a:hover {
    color: #ff3243;
    letter-spacing: 2px;
    margin-left: -1px;
    text-shadow: 0 0 10px rgba(255, 68, 68, 0.568);
}

nav.primary-nav ul li a span {
    transition: transform 0.3s ease;
    display: table-cell;
    vertical-align: middle;
}

nav.primary-nav ul li a:hover span {
    transform: scale(1.1);
}

nav.primary-nav ul .dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: rgba(29, 29, 29, 0.85);
    padding: 10px;
    z-index: 1;
    text-align: center;
    width: auto;
    min-width: 170px;
    box-sizing: border-box;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0s 0.3s;
}

nav.primary-nav ul li:hover .dropdown {
    visibility: visible;
    opacity: 1;
    transition: opacity 0.3s ease;
}

nav.primary-nav ul .dropdown li {
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

nav.primary-nav ul li:hover .dropdown li {
    opacity: 1;
    transform: translateY(0);
}

.secondary-nav {
    margin-right: 80px;
    justify-content: right;
    margin-top: 17px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.secondary-nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.secondary-nav li {
    margin: 0 10px;
}

.secondary-nav img {
    width: 22px;
    transition: transform 0.3s ease, filter 0.3s ease;
    filter: brightness(5);
}

.secondary-nav img:hover {
    transform: scale(1.2);
    filter: brightness(1) drop-shadow(0 0 10px rgba(255, 68, 68, 0.568));
}

/* Section Text */
.section-text {
    font-family: 'Gotham Narrow Black', sans-serif;
    font-size: 48px;
    color: rgb(255, 255, 255);
    position: relative;
    text-align: center;
    z-index: 10;
}

/* Footer */
footer {
    font-family: 'Afacad Flux', sans-serif;
    font-size: 24px;
    background-color: rgb(31, 14, 21);
    color: white;
    text-align: center;
    padding: 10px 0;
    margin-top: auto;
}

/* Section Headings */
section h1 {
    font-family: 'Antaris CF', sans-serif;
    color: rgb(255, 255, 255);
    font-size: 36px;
    padding: 0 25px;
    position: relative;
}

section p {
    font-family: 'Afacad Flux', sans-serif;
    color: rgb(255, 255, 255);
    font-size: 24px;
    padding: 0 25px;
    position: relative;
}