@font-face {
    font-family: "Avenir";
    src: url("../fonts/Avenir-Light.ttf") format("truetype");
    font-weight: 200;
    font-style: normal;
}
@font-face {
    font-family: "Avenir";
    src: url("../fonts/Avenir-Roman.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: "Avenir";
    src: url("../fonts/Avenir-Medium.ttf") format("truetype");
    font-weight: 600;
    font-style: normal;
}
@font-face {
    font-family: "Avenir";
    src: url("../fonts/Avenir-Heavy.ttf") format("truetype");
    font-weight: 800;
    font-style: normal;
}
body,
html,
* {
    padding: 0;
    margin: 0;
    border-collapse: collapse;
    color: white;
}
body,
html {
    background-color: #000000;
    width: 100%;
}
a {
    text-decoration: none;
}
p {
    font-family: "Avenir";
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    text-align: left;
    color: #fff;
}
h1 {
    font-family: "Times New Roman";
    font-weight: normal;
    font-size: 25px;
    text-align: left;
    color: #fff;
    text-shadow: 0px 0px 10px #000;
}
h2 {
    font-family: "Avenir";
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 0.4em;
    text-align: right;
    color: #fff;
    text-transform: uppercase;
}
h6 {
    font-family: "Avenir";
    font-weight: 500;
    font-size: 12px;
    text-align: center;
    color: #909090;
}
.nav {
    height: 100px;
    position: relative;
}
.hamburger {
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
    right: 30px;
    opacity: 1;
    z-index: 101;
    cursor: pointer;
}

.hamburger .line1,
.hamburger .line2,
.hamburger .line3 {
    width: 30px;
    height: 3px;
    background-color: #fff;
    margin: 6px 0;
    transition: all 0.3s ease;
}

.hamburger.open .line1 {
    transform: translateY(9px) rotate(45deg);
}

.hamburger.open .line2 {
    opacity: 0;
}

.hamburger.open .line3 {
    transform: translateY(-9px) rotate(-45deg);
}

.mobile_nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
}

.mobile_nav.open {
    transform: translateX(0);
}

.mobile_nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.mobile_nav ul li {
    margin: 30px 0;
}

.mobile_nav ul li a {
    color: #fff;
    text-decoration: none;
    font-family: "Avenir";
    font-weight: 500;
    font-size: 24px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: color 0.3s;
}

.mobile_nav ul li a:hover {
    color: #e3bb01;
}

.nav_text {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding: 0 20px;
}
.nav_links {
    display: none;
}
.social_icons,
.about_content ul {
    display: none;
}
.wrapper {
    width: calc(100% - 40px);
    margin: 0 auto;
}
.listen_now {
    display: none;
}
.new_single {
    display: block;
    height: 300px;
    width: 100%;
    background-size: cover;
    background-image: url(../pictures/frontcover.jpg);
    position: relative;
    margin-top: 20px;
}
.new_single h2 {
    font-family: "Avenir";
    font-weight: 500;
    font-size: 10px;
    letter-spacing: 0.4em;
    text-align: left;
    color: #fff;
    text-shadow: 0px 0px 10px #000;
}
.single_name {
    position: absolute;
    top: 30px;
    left: 20px;
}
.out_now {
    position: absolute;
    bottom: 30px;
    left: 20px;
}
.button,
.subscribe {
    background-color: #ffffff;
    height: 60px;
    position: relative;
    margin-top: 20px;
}
.button h2,
.subscribe h2 {
    color: #000000;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}
.button img,
.subscribe img {
    color: #000000;
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 26px;
}
.video,
.youtube_wrapper,
.youtube {
    width: 100%;
}
.video .youtube_wrapper .youtube {
    position: relative;
    padding-bottom: 56.25%;
}
.video .youtube_wrapper .youtube iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.about_content {
    margin-top: 40px;
}
.about_content h2 {
    text-align: left;
    margin-bottom: 20px;
}
#press {
    text-align: left !important;
    margin-top: 40px;
}
.reviews {
    margin-top: 40px;
}
.article {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.11);
    margin-bottom: 20px;
}
.copyright {
    font-family: "Avenir";
    font-weight: 500;
    font-size: 12px;
    text-align: center;
    color: #909090;
    margin-bottom: 30px;
}
.article img {
    width: 100%;
    display: none;
}
.article_text {
    padding: 20px;
}
.article_text h3 {
    font-family: "Avenir";
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.3em;
    line-height: 12px;
    text-align: left;
    color: #e3bb01;
    margin-bottom: 10px;
    text-transform: uppercase !important;
}
.article_text h4 {
    font-family: "Times New Roman";
    font-weight: normal;
    font-size: 24px;
    line-height: 32px;
    text-align: left;
    color: #fff;
    text-transform: capitalize;
    margin-bottom: 10px;
}
.article_text h5 {
    font-family: "Avenir";
    font-weight: 400;
    font-size: 14px;
    text-align: left;
    color: #fff;
    opacity: 0.5;
}
.contact {
    background-color: rgba(255, 255, 255, 0.07);
    position: relative;
    margin-top: 40px;
    text-align: center !important;
}
.contact h6 {
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-top: 14px;
}
.contact a {
    text-decoration: none;
    color: white;
}
.contact a:hover > h2 {
    transform: scale(1.03);
}
.contact h2 {
    letter-spacing: 0;
    text-transform: none;
    transition: all 0.4s;
    text-align: center !important;
    margin-top: 4px;
}

.contact_content h6 + h2 {
    font-size: 23px;
}
.contact_content {
    padding: 30px 0;
}
.contact_content:nth-child(-n + 2) {
    border-bottom: 2px solid rgba(255, 255, 255, 0.03);
}
.contact .contact_content h6:nth-child(-n + 1) {
    color: #e3bb01;
    letter-spacing: 2px;
}
.proof_of_life_section {
    height: auto;
    margin-top: 30px;
}
.pol_image {
    width: 100%;
    float: none;
    height: auto;
    margin-bottom: 20px;
    display: block;
}
.pol_image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}
.pol_content {
    width: 100%;
    float: none;
    margin: 0;
    padding: 20px 20px 20px 20px;
    height: auto;
    box-sizing: border-box;
    clear: both;
    background-color: white;
}
.pol_content h2 {
    font-family: "Avenir", sans-serif;
    font-weight: 600;
    font-size: 20px;
    text-align: left;
    letter-spacing: 0.2em;
    margin-bottom: 8px;
    color: #000000 !important;
}
.pol_content h3 {
    font-family: "Avenir", sans-serif;
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 0.15em;
    text-align: left;
    margin-bottom: 15px;
    color: #e3bb01 !important;
}
.pol_text {
    height: auto;
    overflow-y: visible;
    margin-top: 0;
    padding-right: 0;
}
.pol_text p {
    color: #000000 !important;
    font-family: "Avenir", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5em;
    margin-bottom: 10px;
}
.award-banner {
    position: fixed;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 8px 20px 8px 8px;
    z-index: 10;
    width: 90%;
    border-radius: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    gap: 12px;
}

.award-icon-container {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0;
    box-shadow:
        0 0 15px rgba(255, 255, 255, 0.4),
        inset 0 0 1px rgba(255, 255, 255, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.award-banner .award-icon {
    width: 24px;
    height: 24px;
    filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.6));
}

.award-banner p {
    color: #fff;
    font-family: "Avenir", sans-serif;
    margin: 0;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.4;
    text-align: left;
}

.award-banner .award-title {
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.03em;
}

.award-banner .award-publication {
    font-weight: 400;
    font-size: 12px;
    opacity: 0.8;
}
.latest_news {
    padding: 30px 20px;
    text-align: left;
    background-color: #0a0a0a;
    border: 1px solid #222;
    border-radius: 0;
    margin-top: 20px;
}
.latest_news h2 {
    font-family: "Avenir", sans-serif;
    font-size: 20px;
    text-align: left;
    margin-bottom: 25px;
    letter-spacing: 0.4em;
    font-weight: 400;
    text-transform: uppercase;
}
.latest_news ul {
    padding: 0;
    list-style: none;
}
.latest_news li {
    font-family: "Times New Roman", serif;
    font-size: 17px;
    margin-bottom: 20px;
    line-height: 1.7;
    padding-left: 25px;
    position: relative;
}
.latest_news li::before {
    content: "■";
    color: #e3bb01;
    font-size: 9px;
    position: absolute;
    left: 0;
    top: 6px;
}
.latest_news a {
    color: #e3bb01;
    text-decoration: underline;
    transition: color 0.3s;
}
.latest_news a:hover {
    color: #fff;
}

.press-list {
    list-style: none;
    padding: 0;
}

.press-list li {
    margin-bottom: 15px;
}

.press-list a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.press-list a:hover {
    color: #e3bb01;
}

.press_section {
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition:
        border-color 0.3s,
        box-shadow 0.3s;
}

.press_section:hover {
    border-color: rgba(227, 187, 1, 0.5);
    box-shadow: 0 0 15px rgba(227, 187, 1, 0.1);
}

.press_page {
    padding: 30px 0;
}
.press_page h1 {
    font-size: 38px;
    margin-bottom: 50px;
    letter-spacing: 0.1em;
    color: #e3bb01;
    text-shadow: 0 0 10px rgba(227, 187, 1, 0.3);
}
.press_section {
    margin-bottom: 40px;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}
.press_section h2 {
    font-family: "Avenir", sans-serif;
    text-align: left;
    font-size: 20px;
    letter-spacing: 0.4em;
    font-weight: 400;
    text-transform: uppercase;
    border-bottom: 2px solid #e3bb01;
    padding-bottom: 10px;
    margin-bottom: 30px;
    color: #fff;
    transition: border-color 0.3s ease-in-out;
}
.press_section h2:hover {
    border-color: #fff;
}

.section-heading {
    font-family: "Avenir", sans-serif;
    text-align: left;
    font-size: 18px;
    letter-spacing: 0.3em;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 15px;
    color: #fff;
}
.cta_button {
    display: inline-block;
    background-color: #e3bb01;
    color: #000;
    padding: 15px 30px;
    text-decoration: none;
    text-transform: uppercase;
    font-family: "Avenir";
    font-weight: 800;
    letter-spacing: 0.1em;
    border-radius: 0;
    box-shadow: 0 3px 10px rgba(227, 187, 1, 0.4);
    transition:
        background-color 0.3s ease-in-out,
        color 0.3s ease-in-out,
        transform 0.3s ease-in-out,
        box-shadow 0.3s ease-in-out;
    margin-top: 20px;
}
.cta_button:hover {
    background-color: #fff;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 5px 12px rgba(227, 187, 1, 0.6);
}

.photo_gallery_grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 20px;
    margin-bottom: 20px;
}
.photo_gallery_grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border: 1px solid #333;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease-in-out;
}
.photo_gallery_grid img:hover {
    transform: scale(1.02);
}
.reviews-inner {
    column-count: 1;
}
.reviews-inner a {
    display: block;
}

.reviews-inner a > .article > div {
    clear: both;
}
.article_text {
    background: rgba(255, 255, 255, 0.07);
    transition: all 0.3s;
    clear: both;
    padding: 20px;
    margin-bottom: 15px;
}
.article_text:hover {
    background: rgba(255, 255, 255, 0.13);
    transform: scale(1.01);
}
.reviews .article img {
    display: none;
}
.article_text h3 {
    text-transform: uppercase !important;
    margin-bottom: 8px;
    font-size: 11px;
}
.article_text h4 {
    margin-bottom: 8px;
    font-size: 20px;
    line-height: 1.3;
    text-transform: capitalize;
}
.article_text h5 {
    font-family: "Avenir";
    font-weight: 400;
    font-size: 12px;
    text-align: left;
    color: #fff;
    opacity: 0.5;
}
