:root {
    --brand-primary: #008991;
    --brand-gold: #a3752e;
    --brand-black: #000000;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-blur: blur(20px);
    --glass-border: rgba(255, 255, 255, 0.5);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --footer-bg: #1f2937;
    --text-secondary: #9ca3af;
    --brand-primary: #008991;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
    -webkit-tap-highlight-color: transparent;
}

body {
    background-color: #f0f2f5;
    min-height: 120vh;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 6%;
    height: 60px;  
    border-bottom: 1px solid var(--glass-border);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255,255,255,0.55);
    backdrop-filter: blur(10px);
        box-shadow: 8px 4px 18px 4px rgba(0, 0, 0, .1);
}

.logo-container {
    display: flex;
    align-items: center;
    height: 100%;
    text-decoration: none;
}

.logo-container img {
    height: 50px;
    width: auto;
    display: block;
    object-fit: contain;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    height: 100%;
    align-items: center;
}

.nav-item {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
}

.nav-link {
    text-decoration: none;
    color: var(--brand-black);
    font-size: 13px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
    line-height: 1;
}

.nav-item:hover .nav-link {
    color: var(--brand-primary);
    font-weight: 400;
}

.dropdown-content {
    position: absolute;
    top: 60px;
    left: 50%;
    transform: translateX(-50%) translateY(10px);  
    border-radius: 12px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--glass-border);
    border-top: 4px solid var(--brand-gold); 
     background: rgb(255 255 255 / 93%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.nav-item:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.mega-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    width: 790px;
    gap: 12px;
    align-items: stretch;  
    padding: 20px;
}


.mega-item { 
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between; 
    text-align: center;
    padding: 20px 15px;
    background: #ffffffbd; 
    border-radius: 8px;
    text-decoration: none;
    transition: var(--transition);
    height: 100%;  
}

.mega-item:hover {
    background: #fff;
    transform: translateY(-3px); 
}

.mega-icon {
    font-size: 24px;
    color: var(--brand-primary);
    margin-bottom: 12px;
    flex-shrink: 0; 
}

.mega-title {
    font-size: 11px;
    font-weight: 400;
    color: var(--brand-black);
    text-transform: uppercase;
    display: block;
    margin-top: auto; 
    line-height: 1.2;
}
.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    height: 100%;
}

.btn-connect {
    background: var(--brand-primary);
    color: #fff !important;
    padding: 0 25px;
    height: 44px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 400;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-connect:hover {
    background: var(--brand-black);
    color: var(--brand-gold) !important;
}

.mobile-toggle {
    display: none;
    font-size: 26px;
    color: var(--brand-black);
    cursor: pointer;
    z-index: 2001;
    line-height: 1;
}

.mobile-sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 320px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(35px);
    -webkit-backdrop-filter: blur(35px);
    z-index: 2100;
    transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    padding: 20px 25px 40px;
    display: flex;
    flex-direction: column;
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
    border-left: 1px solid var(--glass-border);
}

.mobile-sidebar.active {
    right: 0;
}

.mobile-close-btn {
    align-self: flex-end;
    font-size: 30px;
    color: var(--brand-black);
    cursor: pointer;
    margin-bottom: 30px;
    transition: var(--transition);
}

.mobile-close-btn:hover {
    color: var(--brand-primary);
}

.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
    z-index: 2050;
    display: none;
    opacity: 0;
    transition: opacity 0.3s;
}

.sidebar-overlay.active {
    display: block;
    opacity: 1;
}

.mobile-nav-list {
    list-style: none;
    overflow-y: auto;
    flex-grow: 1;
}

.mobile-nav-item {
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.mobile-nav-item a{
    text-decoration: none;
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 5px;
    color: var(--brand-black);
    font-size: 15px;
    font-weight: 400;
    text-transform: uppercase;
    cursor: pointer;
}

.mobile-nav-header i {
    font-size: 12px;
    transition: transform 0.3s;
}

.mobile-nav-item.open .mobile-nav-header {
    color: var(--brand-primary);
    font-weight: 700;
}

.mobile-nav-item.open .mobile-nav-header i {
    transform: rotate(180deg);
}

.mobile-dropdown {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(0, 0, 0, 0.02);
    border-radius: 8px;
}

.mobile-nav-item.open .mobile-dropdown {
    max-height: 600px;
    margin-bottom: 15px;
}

.mobile-dropdown-link {
    display: block;
    padding: 12px 20px;
    text-decoration: none;
    color: var(--brand-black);
    font-size: 14px;
    font-weight: 300;
}

@media (max-width: 1150px) {
    .nav-links, .nav-actions .btn-connect { display: none; }
    .mobile-toggle { display: block; }
    .navbar { height: 75px; }
}

.hero {
    padding-top: 150px;
    text-align: center;
    padding-inline: 20px;
}
 