 
* {
  box-sizing: border-box;
  user-select: none;
}
@font-face {
    font-family: Metropolis-ExtraLight;
    src: url("https://betheoneofficial.com/assets/fonts/Metropolis-ExtraLight.otf") format("opentype");
}
@font-face {
    font-family: Metropolis-Medium;
    src: url("https://betheoneofficial.com/assets/fonts/Metropolis-Medium.otf") format("opentype");
}
@font-face {
    font-family: Metropolis-Regular;
    src: url("https://betheoneofficial.com/assets/fonts/Metropolis-Regular.otf") format("opentype");
}
body {
    margin: 0;
    padding: 0;
    background: black;
    height: auto;
    color: white;
    font-family: "Metropolis-ExtraLight";
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

h2 {
  font-size: clamp(1rem, 5vw, 5rem);
  font-weight: 400;
  text-align: center;
  letter-spacing: 0.5em;
  margin-right: -0.5em;
  color: #cccccc;
  width: 90vw;
  max-width: 1200px;
  display: none; 
}

header {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  width: 100%;
  z-index: 50; 
  height: 7em;
  font-family: "Metropolis-Regular"";
  font-size: clamp(0.66rem, 2vw, 1rem);
  letter-spacing: 0.5em;
  transition: all 0.3s ease;
}

/* --- Burger Menu Icon Styles --- */
.burger-menu {
  cursor: pointer;
  width: 45px;
  height: 15px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 55; 
}

.bar {
  width: 100%;
  height: 2px;
  background-color: white;
  transition: all 0.3s ease-in-out;
  transform-origin: left;
}
img.header-logo {
    margin-top: 8px;
    width: 120px;
    /*margin-left: calc(50% - 60px);*/
    margin-left: 0;
}
img.footer-logo {
    margin-top: 8px;
    width: 80px;
    margin-left: calc(50% - 40px);
}

.burger-menu.is-open .bar-top {
  transform: rotate(45deg) translate(0, -13px);
}

.burger-menu.is-open .bar-bottom {
  transform: rotate(-45deg) translate(0, 13px);
}
/* --- New Styles for Read More Toggle --- */
.content-block {
    position: relative; /* Useful for button positioning if needed */
}

.extra-content {
    /* Initially hide the extra content */
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.7s ease-in-out, opacity 0.4s;
    opacity: 0;
}

.extra-content.is-open {
    /* Set a height large enough to contain all content */
    max-height: 500px; /* Adjust if content is very long */
    opacity: 1;
    margin-bottom: 15px; /* Add space below the revealed text */
}

.toggle-content-btn {
    background: none;
    border: none;
    color: #d59576; /* Gold color from your existing links */
    cursor: pointer;
    padding: 0;
    margin-top: 5px;
    font-family: "Metropolis-ExtraLight";
    font-size: 1.05rem;
    letter-spacing: 0.05em; 
    transition: color 0.3s;
}

.toggle-content-btn:hover {
    color: #ffffff;
}

/* --- Sliding Sidebar/Slider Styles --- */
.slider-header {
    position: fixed;
    top: 0;
    right: -90px;
    width: min(90vw, 350px);
    height: 100vh;
    background: rgba(17, 17, 17, 0.98); 
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5); 
    z-index: 51;
    transform: translateX(100%) skewX(10deg);
    transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1);
    padding: 7em 2em 2em 2em;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    font-family: "Metropolis-Regular"";
    letter-spacing: 0.2em;
    overflow-y: auto; 
} 

.slider-header.is-open {
    transform: translateX(0) skewX(0); 
}

.slider-header nav {
    margin-top: 2em;
}

/* Hover Animation: Slide-in Underline */
.slider-header nav a {
    color: white;
    text-decoration: none;
    font-size: 15px;
    display: block;
    margin-bottom: 0.8em;
    transition: color 0.3s;
    font-family: 'Metropolis-ExtraLight';
    text-transform: uppercase;
    
    /* New: Setup for underline effect */
    position: relative; 
    overflow: hidden; /* Hide the sliding line */
    padding-bottom: 5px; /* Add space for the line */
}
.slider-header nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px; /* Line thickness */
    background-color: #d59576; /* Gold color */
    transform: translateX(-100%); /* Start off-screen to the left */
    transition: transform 0.3s ease-out;
}
.slider-header nav a:hover::after {
    transform: translateX(0); /* Slide in */
}
.slider-header nav a:hover {
    color: #d59576; 
}

/* Submenu Styling */
.nav-item-with-submenu {
    position: relative;
    /* Ensure the wrapper respects the same padding/margin as a regular link */
    /*margin-bottom: 0.8em; */
}

.nav-item-with-submenu .main-nav-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-right: 5px; /* Adjust if needed */
}

.submenu-toggle-icon {
    font-size: 14px;
    margin-left: 10px;
    transition: transform 0.3s ease;
}
.nav-item-with-submenu.submenu-open .submenu-toggle-icon {
    transform: rotate(90deg); /* Rotate arrow when submenu is open */
}

.submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out, opacity 0.3s ease;
    opacity: 0;
    padding-left: 20px; /* Indent submenu links */
    margin-top: 5px;
}

.submenu a {
    font-size: 15px; /* Smaller font for submenu links */
    margin-bottom: 0.4em;
    padding-bottom: 3px;
}

.nav-item-with-submenu.submenu-open .submenu {
    max-height: 200px; /* Sufficient height to show all links */
    opacity: 1;
}

/* Remove slide-in effect for the submenu links themselves */
.submenu a::after {
    display: none;
}
.submenu a:hover::after {
    transform: translateX(-100%);
}

/* * FIX: Restructure pointer-events CSS to enable clicking on submenu links
 */
.main-nav-link .submenu-toggle-icon {
    /* Prevents the arrow from being part of the 'a' hover effect if needed */
    pointer-events: none; 
}

.main-nav-link {
    pointer-events: auto; /* Re-enable pointer events for the main link text */
}

.submenu a {
    /* ENSURE submenu links are fully clickable */
    pointer-events: auto; 
}

/* On mobile, adjust the main-nav-link padding */
@media (max-width: 768px) {
    .slider-header nav a {
        padding-bottom: 3px;
        font-size: 15px !important;
        text-transform: uppercase;
    }
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 50;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s, visibility 0.3s;
}

.overlay.is-open {
    visibility: visible;
    opacity: 1;
} 
.footer-content {
    width: 100%;
    height: 100%;
    min-height: 50vh; 
    padding: 5% 5% 2% 5%;
    display: flex;
    flex-direction: column;
    justify-content: center; 
    align-items: center;
    text-align: center;
    font-family: "Metropolis-ExtraLight";
    font-size: 1.1rem;
    color: #cccccc;
    text-transform: none;
}
.footer-content a {
    color: #d59576;
    text-decoration: none;
    margin: 0 10px;
    text-transform: uppercase;
    font-size: 0.9em;
}
.footer-content .logo {
    font-family: "Metropolis-Regular";
    font-size: 2em;
    letter-spacing: 0.2em;
    color: white;
    margin-bottom: 20px;
    margin-top: 50px;
}
.footer-content .links a {
    letter-spacing: 0.1em;
}
.footer-content .copyright {
    margin-top: 40px;
    font-size: 0.85em;
    color: #888888;
} 
/* --- END NEW CSS: Footer Style --- */

/* =============================
Banner Video Section
==============================*/
.banner-section {
position: relative;
width: 100%;
height: 100vh;
overflow: hidden;
display: flex;
align-items: flex-end;
justify-content: flex-start;
}

.banner-section video {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: cover;
opacity: 0;
transform: scale(1.2);
}

/* Header text inside video */
.banner-text {
position: absolute;
bottom: 10%;
left: 5%;
color: white;
text-transform: uppercase;
font-size: clamp(2rem, 6vw, 4rem);
font-family: "Metropolis-ExtraLight";
letter-spacing: 0.1em;
opacity: 0;
z-index: 10; /* Ensure text is above video */
}
.why-rna.right{
    background: url('https://betheoneofficial.com/assets/svg/right1-3.svg');
    background-size: cover;
    background-repeat: no-repeat;
    height: 100vh;
    /*padding: 3% 0;*/
}
.why-rna.left{
    background: url('https://betheoneofficial.com/assets/svg/left1-3.svg');
    background-size: cover;
    background-repeat: no-repeat;
    height: 100vh;
    /*padding: 3% 0;*/
}
.row.right-content{
    align-items: flex-end;
    justify-content: flex-end;
    padding-bottom: 5%;
}
.row.left-content {
    padding-bottom: 5%;
    align-items: flex-end;
}

.section-heading {
    font-family: 'Metropolis-ExtraLight';
    font-size: 45px;
}

h4.section-sub-heading {
    font-family: 'Metropolis-ExtraLight';
    color: #d59576; 
}

.section-copy {
    font-family: 'Metropolis-ExtraLight';
    margin-bottom: 12px;
} 
section.bsection.why-rna .col {
    padding: 2em;
} 
section.bsection {
    opacity: 0; /* Hidden by default for GSAP animation */
    transform: translateY(50px); /* Start position for slide-up effect */
} 
.svg-holder svg {
    position: absolute;
}
.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  object-fit: cover; 
}


@media (max-width: 480px) {
    section.bsection.why-rna .col {flex: 1 100%;}

    .why-rna.right {
        height: unset;
    }
    
    .why-rna.left {
        height: unset;
    }
    section.bsection.why-rna .col {
        background: #00000050;
    }
    h3.section-heading {
        font-size: 30px;
    }
    .col.empty{
        display: none;
    }
}


@media (max-width: 768px) {
    img.header-logo {
        width: 70px;
        margin-left: 0; 
        margin-top: 5px;
    }
    img.footer-logo {
        width: 80px;
        margin-left: calc(50% - 40px);  
    }
     .banner-text{
        padding-bottom: 40px;
    }
    .burger-menu {width: 35px;}
    header {
        height: 4em;
        background: #0000008c;
    } 
.footer-content p {
    line-height: 25px;
}
.footer-content .links a {
    font-size: 14px;
    line-height: 1.5rem;
}   
.nav-item-with-submenu .main-nav-link { 
    padding-right: 10px;
}
}
 