:root {
    --primary: #38bdf8;
    --dark: #020617;
    --light-dark: #0f172a;
    --text: #f8fafc;
    --gray: #94a3b8;
    --gold: #fbbf24;
}

* { margin: 0; padding: 0; box-sizing: border-box; scroll-behavior: smooth; }
body { background: var(--dark); color: var(--text); font-family: 'Inter', sans-serif; }

nav { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    padding: 15px 8%; 
    background: rgba(2,6,23,0.95); 
    position: fixed; 
    width: 100%; 
    top:0; 
    z-index: 1000; 
    backdrop-filter: blur(8px); 
    border-bottom: 1px solid #1e293b; 
}

/* This section fixes the large logo size */
.logo { 
    display: flex; 
    align-items: center; 
}

.logo-img { 
    height: 45px !important;  /* Forces the height */
    width: auto !important;    /* Maintains aspect ratio */
    max-width: 150px;         /* Caps the max width */
    transition: all 0.3s ease; 
}

.logo-img:hover { 
    transform: scale(1.05); 
}

header { height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; background: radial-gradient(circle at top right, #1e1b4b, #020617); padding: 0 5%; }
h1 { font-size: clamp(2.5rem, 8vw, 4rem); font-weight: 900; line-height: 1.1; }
.highlight { color: var(--primary); }

.portfolio-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 15px; padding: 0 8% 100px; }
.asset-card { background: var(--light-dark); padding: 25px; border-radius: 12px; border: 1px solid #1e293b; display: flex; justify-content: space-between; align-items: center; transition: 0.3s; }
.asset-card:hover { border-color: var(--primary); transform: scale(1.02); }
.asset-card span { font-weight: 600; font-size: 1rem; }

.tag { font-size: 0.6rem; padding: 4px 10px; border-radius: 20px; background: #1e293b; border: 1px solid #334155; text-transform: uppercase; }
.tag.blue { border-color: var(--primary); color: var(--primary); }
.tag.gold { border-color: var(--gold); color: var(--gold); }

#contact-info { padding: 100px 8%; background: #020617; text-align: center; }
.contact-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; margin-top: 40px; }
.c-box { background: var(--light-dark); padding: 30px; border-radius: 15px; text-decoration: none; color: white; border: 1px solid #1e293b; transition: 0.3s; }
.c-box:hover { border-color: var(--primary); background: #1e293b; }
.c-box i { font-size: 2rem; color: var(--primary); margin-bottom: 15px; }
.c-box span { display: block; font-weight: bold; margin-bottom: 5px; }
.c-box p { color: var(--gray); font-size: 0.9rem; }

footer { padding: 40px; text-align: center; border-top: 1px solid #1e293b; background: #020617; }
.legal-links { margin-top: 15px; display: flex; justify-content: center; gap: 20px; }
.legal-links a { color: #94a3b8; text-decoration: none; font-size: 0.8rem; transition: 0.3s; }
.legal-links a:hover { color: #38bdf8; }
@media (max-width: 768px) {
    nav ul { display: none; }
    .btn-secondary { margin-left: 0; margin-top: 15px; }
}
