/*
Theme Name: Megalink25
Author: DIF
Version: 1.25
Description: A super simple WordPress theme with Gutenberg support.
*/

/********************************************************/
:root {
    /* Brand colors */
    --brand-beige: #E7E0D6;
    --brand-black: #000000;
    --brand-white: #FFFFFF;
    --brand-signal-green: #16D900;
    /* Neutral colors */
    --neutral-grey-20: #D2D2D2;
    --neutral-grey-60: #A5A5A5;
    --neutral-grey-100: #696969;

    /* Sizes */
    /* --large-screen: 900px; */
    
}

.bg-white { background-color: var(--brand-white) !important; }
.bg-black { background-color: var(--brand-black) !important; }
.bg-beige { background-color: var(--brand-beige) !important; }
.bg-signal-green { background-color: var(--brand-signal-green) !important; }
.bg-grey-20 { background-color: var(--neutral-grey-20) !important; }
.bg-grey-60 { background-color: var(--neutral-grey-60) !important; }
.bg-grey-100 { background-color: var(--neutral-grey-100) !important; }

.color-white { color: var(--brand-white) !important; }
.color-black { color: var(--brand-black) !important; }
.color-beige { color: var(--brand-beige) !important; } 
.color-signal-green { color: var(--brand-signal-green) !important; }
.color-grey-20 { color: var(--neutral-grey-20) !important; }
.color-grey-60 { color: var(--neutral-grey-60) !important; }
.color-grey-100 { color: var(--neutral-grey-100) !important; }


/********************************************************/

/* li {
    color: red;
} */

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    background-color: var(--brand-white);
    /* background-color: var(--neutral-grey-20);     */
    scroll-behavior: smooth; /* Optional: smooth scrolling */
}

a {
    color: inherit;
}
.no-underline {
    text-decoration: none;
}

h1, .ml-h1 {
    font-family: 'Figtree', sans-serif;
    font-weight: 600;
    font-size: 55px;
    padding-bottom: 16px;
}
h2, .ml-h2 {
    font-family: 'Figtree', sans-serif;
    font-weight: 500;
    font-size: 40px;
    padding-bottom: 16px;
}

.ml-h2-bold {
    font-family: 'Figtree', sans-serif;
    font-weight: 700; /* Changed to bold */
    font-size: 40px;
    padding-bottom: 16px;
}
h3, .ml-h3 {
    font-family: 'Figtree', sans-serif;
    font-weight: 400;
    font-size: 30px;
    padding-bottom: 16px;
}
/* Body large */
.p1 {
    font-family: 'Figtree', sans-serif;
    font-weight: 400;
    font-size: 20px;
    padding-bottom: 16px;
}
/* Body medium */
p {
    font-family: 'Figtree', sans-serif;
    font-weight: 400;
    font-size: 16px;
    margin-bottom: 16px;
}
.p2 {
    font-family: 'Figtree', sans-serif;
    font-weight: 400;
    font-size: 16px;
    margin-bottom: 16px;
}
/* Body small */
.p3 {
    font-family: 'Figtree', sans-serif;
    font-weight: 400;
    font-size: 12px;
    padding-bottom: 8px;
}
/* Bodo utility */
.p4 {
    font-family: 'Roboto Mono', monospace;
    font-weight: 400;
    font-size: 14px;
    padding-bottom: 8px;
}

.p-underline {
  margin: 8px 0px;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
}

.uppercase {
    text-transform: uppercase;
}

/********************************************************/
/* Grid */



/********************************************************/


.main-container {
    margin-right: auto;
    margin-left: auto;
    max-width: 1200px;

    padding-left: 16px;
    padding-right: 16px;
    
}
.container {
    margin-right: auto;
    margin-left: auto;
    max-width: 1200px;

    padding-bottom: 64px;
    padding-left: 16px;
    padding-right: 16px;
    padding-top: 32px;
}
.container-lg {
    margin-right: auto;
    margin-left: auto;
    max-width: 1400px;

    padding-bottom: 64px;
    padding-left: 16px;
    padding-right: 16px;
    padding-top: 16px;
}

.container .nopadding {
    padding: 0;
    border: none;
}

/* Hide on mobile */
.hide-mobile {
    display: block !important;
}
/* Show on mobile */
.show-mobile {
    display: none !important;
}
@media (max-width: 600px) {
    .hide-mobile {
        display: none !important;
    }
    .show-mobile {
        display: block !important;
    }
}

/********************************************************/
/* Header */

header {
    background-color: var(--brand-white);
}
.header-bg {
    position: sticky;
    top: 0;
    transition: transform 0.3s ease-in-out;
    z-index: 1000;
}
.header {
    margin-right: auto;
    margin-left: auto;
    /* max-width: 1140px; */
    max-width: 1800px;
}
.header-bg.hidden {
  transform: translateY(-100%);
}

.header-bg.visible {
  transform: translateY(0);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 16px 16px 16px;
}

.header-logo img {
    height: 32px;
}
@media (max-width: 900px) {
    .header-logo img {
        /* max-width: 50%;
        height: auto; */
        max-height: 32px;
        width: auto;
    }
}

.main-nav {
    display: flex;
}

.menu {
    list-style: none;
    display: flex;
    gap: 16px;
    margin: 0;
    padding: 0 16px 0 0;
}

.menu li a {
    font-family: 'Roboto Mono', monospace;
    font-weight: 400;
    font-size: 14px;
    text-decoration: none;
    color: var(--brand-black);
    text-transform: uppercase;
    position: relative;
    padding-left: 20px; /* space for the dot */
}

@media (max-width: 1280px) {
    .menu li a {
        font-size: 13px;
    }
}
@media (max-width: 1225px) {
    .menu li a {
        font-size: 12px;
    }
}

.menu li a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background-color: var(--brand-signal-green);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.menu li a:hover::before {
    opacity: 1;
}

/* Burger styles */
.burger {
    display: none;
    font-size: 28px;
    cursor: pointer;
    font-size: 35px;
}

.mobile-nav {
    display: none;
}

.menu-mobile {
    /* text-align: right; */
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-right: 16px;
    /* position: relative;
    right: 0; */
    /* float: right; */
}
.menu-mobile li a {
    display: none;
    text-align: right;
    font-family: 'Roboto Mono', monospace;
    font-weight: 400;
    font-size: 14px;
    text-decoration: none;
    color: var(--brand-black);
    text-transform: uppercase;
    position: relative;
    padding-left: 20px; /* space for the dot */
}

.menu-mobile li a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background-color: var(--brand-signal-green);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.menu-mobile li a:hover::before {
    opacity: 1;
}

/* Responsive menu */
@media (max-width: 1180px) {

    .main-nav {
        display: none;
    }
    .mobile-nav li a {
        display: block;
    }

    .burger {
        display: block;
    }
}

/********************************************************/
/* Main */


/********************************************************/
/* Page Products */

/********************************************************/
/* Footer */
footer {
    /* color: var(--brand-white); */
    padding-top: 32px;
    background-color: var(--brand-black);
    color: var(--brand-white);
}

.footer-content2 {
    margin-top: calc(192px);
    margin-bottom: calc(16px);
    white-space: nowrap;
}

.footer-copyright-mobile {
     padding: 10px;
}

@media (min-width: 900px) {
    .footer-content2 {
        display: flex;
        justify-content: space-between;
        align-items: flex-end; 
    }
    
    .footer-content2 .left2 {
        margin-right: auto;
    }
    
    .footer-content2 .right2 {
        margin-left: 64px;
    }

    .footer-copyright-mobile {
        display: none;
    }
    
}
    
@media (max-width: 900px) {
    .footer-content2 {
        display: flex;
        flex-wrap: wrap;
        width: 100%; 
    }
    
    .footer-content2 .item2 {
        flex: 0 0 50%;        
        box-sizing: border-box;
        /* padding: 10px; */
        padding: 10px 10px 10px 0;
        /* border: 1px solid #ccc; */
    }

    .footer-copyright {
        display: none;
    }
}

/********************************************************/
.ml25-nav-button {
    height: 64px;
    width: 64px;
    background-color: black;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 32px;
    cursor: pointer;
    font-size: 24px;
}
.ml25-nav-button.dark {
    background-color: var(--brand-black);
    color: var(--brand-white);
}
.ml25-nav-button.light {
    color: var(--brand-black);
    background-color: inherit;
    border-color: var(--brand-black);
    border-width: 2px;
    border-style: solid;
}
.ml25-nav-button.block {
    width: 100%;
}

.ml25-btn {
    height: 32px;
    /* min-width: 160px; */
    background-color: var(--brand-black);
    color : var(--brand-white);
    display: inline-flex;
    /* display: flex; */
    justify-content: space-between;
    align-items: center;
    /* justify-content: center; */
    border: none;
    border-radius: 32px;
    cursor: pointer;
    font-family: 'Figtree', sans-serif;
    font-weight: 400;
    font-size: 14px;
    text-decoration: none;
    padding: 8px 24px;
    text-transform: uppercase;
    white-space: nowrap;
    margin: 4px 0;
}
.ml25-btn i {
    margin-left: 16px;
}
.ml25-btn.dark-outline {
    color: var(--brand-black);
    background-color: inherit;
    border: 1px solid var(--brand-black);
}
.ml25-btn.light {
    color: var(--brand-black);
    background-color: var(--brand-white);
    /* border-width: 2px;
    border-style: solid; */
}
.ml25-btn.light-outline {
    color: var(--brand-white);
    background-color: inherit;
    border: 1px solid var(--brand-white);
}

@media (max-width: 600px) {
    .ml25-btn {
        font-size: 18px;
        height: 48px;
        border-radius: 48px;
    }
}

/* Tag */
.ml25-tag {
    font-family: 'Roboto Mono', monospace;
    text-transform: uppercase;
    font-size: 12px;
    height: 28px;
    border-radius: 28px;
    /* border: 1px solid #bbdefb; */
    background-color: var(--brand-white);
    color: var(--brand-black);
    display: flex;
    border: none;
    align-items: center;
    padding: 0 16px;
}
.ml25-tag-dot {
    background-color: var(--brand-signal-green);
    font-size: 3em;
    color: var(--brand-signal-green);
    height: 8px;
    width: 8px;
    border-radius: 50%;
    margin-left: 8px;
}

/********************************************************/
/* Debug */
.simple-block {
    color: blue;
    /* background-color: red; */
}

