@import url(fontawesome-all.min.css);
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100&family=Open+Sans:wght@300&display=swap");

/* General */
body, input, select, textarea {
    color: #ffffff;
    font-family: 'Roboto', sans-serif;    
    font-weight: 100;
    user-select: none; /* Non-standard syntax, supported by some browsers */
    -webkit-user-select: none; /* Safari */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
}

/* Color for ALL bullets (inactive) */
#pp-nav span {
    background: #777 !important; /* Example: Grey */
}

/* Color for the SELECTED bullet only */
#pp-nav li .active span {
    background: #d7407a !important; /* Example: Red */
}

*, *:before, *:after {
    box-sizing: inherit;
}

.layer{
    position: absolute;
    z-index: 5;
    width: 100%;
    left: 0;
    top: 30%;
    height: 100%;
}

.overlay {
    position: absolute; /* Position overlay on top */
    top: 0;
    left: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    background: #000; /* Background color on hover */
    filter: opacity(70%);
    z-index: 1; /* Ensure it's above the background image but below content */
}

header {
    position: fixed; /* Keep it at the top */
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(53, 56, 57, 0.95);
    transition: background-color 0.2s ease-in-out;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Shadow for depth */
    z-index: 1000; 
    padding: 0 1.25em; /* Padding for the header */
    display: flex; /* Use flexbox for layout */
    justify-content: space-between; /* Space out items */
    align-items: center; /* Center vertically */
    opacity: 75%;
}

footer {
    position: fixed; /* Fixed at the bottom */
    left: 0; 
    bottom: 0; /* Stick to the bottom */
    width: 100%; /* Full width */
    background-color: rgba(53, 56, 57, 0.95);
    transition: background-color 0.2s ease-in-out;
    color: white; /* White text */
    text-align: center; 
    padding: 15px; /* Padding for footer */
    z-index: 1000; /* Ensure above other content */
    display: none; /* Start hidden */
    opacity: 75%;
}

footer p {
    margin: 0; /* Remove default margin */
}

footer a {
    color: white; /* Default link color */
    text-decoration: none; /* Remove underline from links */
    margin: 0 8px; /* Add horizontal margin for spacing */
}

footer a:hover {
    color: #d7407a; /* Hover color */
}

.logo-mf{
    margin: 0;
    padding: 0;
    border: 0;
}

.section{
    text-align:center;
    overflow: hidden;
    z-index: 1; /* Set lower z-index than the menu */
}

video{
    z-index: 2; /* Set lower z-index than the menu */
}

#infoMenu li a{
    color: #fff;
}

.pink {
    background-color: #d7407a;
    color: #fff;
}

.button-container {
	margin-top: 3rem; /* Add space between the paragraphs */
	display: flex; /* Use flexbox for aligning buttons */
	justify-content: center; /* Center the buttons horizontally */
	gap: 10px; /* Add space between the buttons */
}

.square-background {
	padding: 10px 20px; /* Adjust padding for smaller size */
	font-size: 0.9rem; /* Smaller font size */
	border: none; /* Remove default border */
	cursor: pointer; /* Change cursor to pointer */
    font-weight: inherit;
    text-decoration: none;
}

.square-background:hover {
	opacity: 0.7; /* Slightly reduce opacity on hover */
    background-color: #d7407a;
}

/* Nav Icon */
nav {
    margin: 0;
    padding: 0;
    border: 0;
    vertical-align: baseline;
}

header nav {
  font-weight: 300;
  height: 3em;
  letter-spacing: 0.1em;
  line-height: 3em;
  text-transform: uppercase;
}

header nav a {
    border: 0;
    display: inline-block;
    padding: 0 1em;
}

header nav a:before {
    float: right;
    margin-left: 0.75em;
}

header nav a[href="#menu"] {
    color: #ffffff;
    text-decoration: none;
    -moz-transition: background-color 0.2s ease-in-out;
    -webkit-transition: background-color 0.2s ease-in-out;
    -ms-transition: background-color 0.2s ease-in-out;
    transition: background-color 0.2s ease-in-out;
    border-radius: 5px;
    padding: 0 3.35em;
}

header nav a[href="#menu"]:before {
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    text-transform: none !important;
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    content: '\f0c9';
    line-height: inherit;
}

header nav a[href="#menu"]:hover {
    background-color: rgba(255, 255, 255, 0.025);
}

header nav a[href="#menu"]:active {
    background-color: rgba(255, 255, 255, 0.075);
}

/* Menu List */
#menu {
    position: fixed; /* Fixed positioning */
    top: 0; /* Align at the top */
    right: 0; /* Align to the right */
    width: 250px; /* Menu width */
    height: 100%; /* Full viewport height */
    background: #36393d; /* Background color */
    color: white; /* Text color for the menu */
    padding: 20px; /* Padding inside the menu */
    z-index: 1001; /* Ensure it's on top */
    pointer-events: none; /* Disable interaction when hidden */
    opacity: 0; /* Fully transparent initially */
    visibility: hidden; /* Start as hidden */
    transition: opacity 0.35s ease, visibility 0.35s; /* Transition for show/hide */
}

body.is-menu-visible #menu {
    pointer-events: auto; /* Enable interaction */
    opacity: 1; /* Fully visible */
    visibility: visible; /* Make it visible */
}

body.is-menu-visible #menu .inner {
    opacity: 1; /* Ensure inner content is visible */
    transform: translateY(0); /* Reset transform */
}

#menu .inner {
    display: flex;
    flex-direction: column; /* Align items in a column */
    height: 100%; /* Ensure inner takes full height */
}

.close {
    align-self: flex-end; /* Align close button to the top right */
    cursor: pointer; /* Pointer cursor on hover */
    color: white; /* Color for the close button */
    font-size: 1.5em; /* Size of the close button */
    margin-bottom: 10px; /* Space below the close button */
}

#menu .links {
    list-style-type: none; /* Remove default list styles */
    padding: 0; /* Remove default padding */
    margin: 0; /* Remove default margin */
    text-align: center; /* Center the text in the menu */
}

#menu .links li a {
    border: 0;
    display: block;
    font-size: 1em; /* Update this value to make the font bigger (adjust as needed) */
    font-weight: 100; /* A lighter font weight for a slimmer appearance */
    letter-spacing: 0.1em;
    line-height: 1.85em;
    padding: 0.75em 0; /* Adjust padding as needed */
    text-transform: uppercase; /* Keep text uppercase */
    color: white; /* Text color for the links */
    text-decoration: none; /* Remove underline */
}

#menu .links li a:hover {
    background: #d7407a; /* Background color on hover */
}

/* Mix Fashion Section - #section1 */
#mixfashion{
    filter: opacity(40%);
    position: absolute;
    z-index: 4;
    right: 0;
    bottom: 0;
    top:0;
    right:0;
    width: 100%;
    height: 100%;
    background-size: 100% 100%;
    background-color: black; /* in case the video doesn't fit the whole page*/
    background-position: center center;
    background-size: contain;
    object-fit: cover; /*cover video background */
}

#section1 .logo img {
    width: 80%;
    max-width: 1024px;
    height: auto;
}

#section1 

#section1 h1{
    text-shadow: 1px 5px 20px #000;
    font-size: 1.8vw;
    color: #fff;
    margin: 1em 0 1em 0;
    padding: 0;
}

#section1 p{
    text-shadow: 1px 5px 20px #000;    
    font-size: 1.2em;
    margin: 0 auto;    
    color: #fff;
    width: 50%;
}

/* A Retail-Driven Sourcing Platform - #section2 */
#whoweare{
    filter: opacity(40%);
    position: absolute;
    z-index: 4;
    right: 0;
    bottom: 0;
    top:0;
    right:0;
    width: 100%;
    height: 100%;
    background-size: 100% 100%;
    background-color: black; /* in case the video doesn't fit the whole page*/
    background-position: center center;
    background-size: contain;
    object-fit: cover; /*cover video background */
}

#section2 h1{
    text-shadow: 1px 5px 20px #000;
    font-size: 2vw;
    color: #fff;
    margin: 1em 0 1em 0;
    padding: 0;
}

#section2 p{
    text-shadow: 1px 5px 20px #000;    
    font-size: 1.2em;
    margin: 0 auto;    
    color: #fff;
    width: 50%;
    margin-top: 2rem; /* Add space between the paragraphs */
    text-align: left;
}

/* Footwear - #section3 */
#section3{
    background-image: url('../../images/home02.jpg');
    background-repeat: no-repeat; /* Prevent repeating the image */
    background-size: cover; /* Cover the entire section */
    background-position: center; /* Center the background image */
    height: 100vh; /* Ensure the section has a height, adjust as necessary */    
}

#section3 .layer{
    top: 20%;
    position: relative; /* Set positioning context if needed */
    display: flex; /* Use flexbox for centering */
    flex-direction: column; /* Stack elements vertically */
    align-items: center; /* Center content horizontally */
}

#section3 h1{
    text-shadow: 10px 5px 20px #000;
    font-size: 2vw;
    color: #fff;
    margin: 1em 0 1em 0;
    padding: 0;
}

#section3 p{
    text-shadow: 1px 5px 20px #000;    
    font-size: 1.2em;
    margin: 0 auto;    
    color: #fff;
    width: 50%;
    margin-top: 1rem; /* Add space between the paragraphs */
    text-align: left;
}

/* Pillars - #section4 */
#pillars{
    filter: opacity(40%);
    position: absolute;
    z-index: 4;
    right: 0;
    bottom: 0;
    top:0;
    right:0;
    width: 100%;
    height: 100%;
    background-size: 100% 100%;
    background-color: black; /* in case the video doesn't fit the whole page*/
    background-position: center center;
    background-size: contain;
    object-fit: cover; /*cover video background */
}

#section4 .layer{
    top: 10%;
    position: relative; /* Set positioning context if needed */
    display: flex; /* Use flexbox for centering */
    flex-direction: column; /* Stack elements vertically */
    align-items: center; /* Center content horizontally */
}

#section4 h1{
    text-shadow: 1px 5px 20px #000;
    font-size: 2vw;
    color: #fff;
    margin: 1.5em 0 1.5em 0;
    padding: 0;
}

.responsive-div {
    width: 50%; /* Set width to 50% */
    max-width: 1024px; /* Set maximum width */
    padding: 0px; /* Optional padding for aesthetics */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Optional shadow for depth */
    justify-content: center; /* Center vertically */
	text-align: center; /* Center text alignment */
    background-color: rgba(255, 255, 255, 0.5);
    z-index: 99;
}

.subheadline {
	font-size: 1.1vw; /* Responsive font size for subheadline */
    padding: 1rem; /* Add space between the paragraphs */
    margin:0px;
    font-weight: bold;
}

.accordion-container {
    overflow: hidden; /* Hide content overflow */
    width: 100%; /* Adjust width as needed */
}

.accordion-item {
    border-bottom: 1px solid #ccc; /* Divider between items */
}

.accordion-item:last-child {
    border-bottom: none; /* Remove divider from last item */
}

.accordion-content {
    display: none; /* Initially hide content */
    padding: 10px; /* Inner padding */
	background-color: rgba(151, 45, 85, 0.4);
}

.accordion-content p {
	text-align: left;
	font-size: 1vw;
	margin-top: 1rem; /* Add space between the paragraphs */
}

.subheadline.opened {
	background-color: rgba(151, 45, 85, 0.8); /* Darken background when active */
}

/* A Retail-Driven Sourcing Platform - #section5 */
#section5{
    background-image: url('../../images/theytrust.jpg');
    background-repeat: no-repeat; /* Prevent repeating the image */
    background-size: cover; /* Cover the entire section */
    background-position: center; /* Center the background image */
    height: 100vh; /* Ensure the section has a height, adjust as necessary */
}

#section5 h1{
    text-shadow: 10px 5px 20px #000;
    font-size: 2vw;
    color: #fff;
    margin: 1em 0 1em 0;
    padding: 0;
}

#section5 p{
    text-shadow: 1px 5px 20px #000;    
    font-size: 1.2em;
    margin: 0 auto;    
    color: #fff;
    width: 50%;
    margin-top: 2rem; /* Add space between the paragraphs */
    text-align: left;
}

/* Contact */
.logo-footpage img {
	width: 100%;
	max-width: 600px;
	height: auto;
}

.a-social-icon {
  display: inline-flex;
  width: 50px;
  height: 50px;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  padding: 30px;
}

.social-icon {
  width: 50px;
  height: 50px;
  object-fit: contain;
  display: block;
}



/*Contact Page*/
.icp-tag{
    text-decoration: none;
    color:#fff;
}