
* {
  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;
}
strong {
    font-family: "Metropolis-Regular";
}

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 {
  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);
}

/* --- 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;
    /*background: #000;*/
    /*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%;
    width:  100%;
    align-items: flex-end;
}

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

h4.section-sub-heading {
    font-family: "Metropolis-Regular";
    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; 
}
.first{
    background: url('https://betheoneofficial.com/assets/images/hormone-banner1.webp');
}
.second{
    background: url('https://betheoneofficial.com/assets/images/hormone1-banner.webp');
}
.third{
    background: url('https://betheoneofficial.com/assets/images/hormone33.webp');
} 
.four{
    background: url('https://betheoneofficial.com/assets/images/hormone4.webp');
} 
.five{
    background: url('https://betheoneofficial.com/assets/images/hormone5.webp');
} 
.six{
    background: url('https://betheoneofficial.com/assets/images/hormone6.webp');
} 
.col.left.img img {
    display: none;
}
.col.right.img img {
    display: none;
}
/* --- NEW GRID CARD STYLES --- */
.grid-section {
    padding: 5% 0;
    background: black;
    opacity: 0; /* For GSAP */
    transform: translateY(50px);
}

.grid-card {
    background: rgba(20, 20, 20, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px;
    height: 100%;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

/* Gradient overlay effect on hover */
.grid-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: linear-gradient(180deg, rgba(213, 149, 118, 0.05) 0%, transparent 100%);
    transition: height 0.4s ease;
    z-index: 0;
}

.grid-card:hover {
    border-color: #d59576; /* Gold border on hover */
    transform: translateY(-10px);
    background: rgba(15, 15, 15, 0.9);
    box-shadow: 0 15px 40px rgba(0,0,0,0.6);
}

.grid-card:hover::before {
    height: 100%;
}

.card-content {
    position: relative;
    z-index: 1;
}

.grid-card h3.section-heading {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: white;
    transition: color 0.3s ease;
}

.grid-card:hover h3.section-heading {
    color: #d59576;
}

/* Specific styling for the list inside the card */
.grid-card ul.section-copy {
    padding-left: 20px;
    list-style: none;
}

.grid-card ul.section-copy li {
    margin-bottom: 10px;
    position: relative;
}

.grid-card ul.section-copy li::before {
    content: "•";
    color: #d59576;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}
.mobile-vid{
    display: none;
}
@media (max-width: 480px) {
    section.bsection.why-rna .col {flex: 1 100%; padding-top: 10px;}
.mobile-vid{
    display: block;
}
.responsive-video{
     display: none;
 }
    .why-rna.right {
        height: unset;
    }
    .banner-text {
        padding-bottom: 40px;
    }
    
    .why-rna.left {
        height: unset;
    }
}
@media (max-width: 768px) {
    h3.section-heading {
        font-size: 25px;
    }
    .col.left.img img {
        display: block;
    }
    .col.right.img img {
        display: block;
    }
    h4.section-sub-heading {
        font-size: 20px;
    }
    .col.left.img {
        display: block;
        padding: 20px !important;
    }
    .col.right.img {
        display: block;
        padding: 0 20px !important;
    }
    .first{
        background: #000;
    }
    .second{
        background: #000;
    }
    .third{
        background: #000;
    }
    .four{
        background: #000;
    }
    .five{
        background: #000;
    }
    .six{
        background: #000;
    }
    .seven{
        background: #000;
    }
    img.header-logo {
        width: 70px;
        margin-left: 0; 
        margin-top: 5px;
    }
    img.footer-logo {
        width: 80px;
        margin-left: calc(50% - 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;
    }
    h3.section-heading {
        font-size: 25px;
    }
    
    h4.section-sub-heading {
        font-size: 20px;
    }
} 