@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap');

:root {
--bg: #0f2027;
--bg2: #203a43;
--bg3: #2c5364;
--text: #ffffff;
--accent: #00eaff;
--card: rgba(255,255,255,0.05);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
  }

body {
min-height: 100vh;
background: linear-gradient(135deg, var(--bg), var(--bg2), var(--bg3));
color: var(--text);
}

/* NAVBAR */
.navbar {
display: flex;
justify-content: space-between;
padding: 20px;
}

.logo {
font-weight: bold;
font-size: 20px;
}

.menu-btn {
cursor: pointer;
}

/* MENU */
.menu {
position: fixed;
top: 70px;
right: 20px;
background: var(--card);
backdrop-filter: blur(12px);
border-radius: 12px;
padding: 15px;
opacity: 0;
visibility: hidden;
transform: translateY(-10px);
transition: 0.3s;
}

.menu.show {
opacity: 1;
visibility: visible;
transform: translateY(0);
}

.menu a {
display: block;
margin: 10px 0;
text-decoration: none;
color: white;
}

/* HERO */
.hero {
text-align: center;
padding: 80px 20px;
}

.profile {
width: 120px;
border-radius: 50%;
transition: 0.3s;
}

.profile:hover {
transform: scale(1.1);
box-shadow: 0 0 30px var(--accent);
}

.hero h1 {
margin-top: 15px;
font-size: 28px;
}

.hero p {
margin-top: 10px;
opacity: 0.8;
}

/* BUTTON */
.contact-box {
margin-top: 20px;
}

.contact-box a {
display: inline-block;
margin: 5px;
padding: 10px 15px;
border-radius: 8px;
text-decoration: none;
background: var(--card);
backdrop-filter: blur(10px);
color: white;
transition: 0.3s;
}

.contact-box a:hover {
background: var(--accent);
color: black;
}

/* FOOTER */
footer {
text-align: center;
padding: 20px;
opacity: 0.5;
}