/* Styles moved from previous inline CSS */
:root {
  --accent: #4c6fff;
  --dark: #111;
  --light: #f7f7f7;
  --text: #222;
  --radius: 12px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}

body { background: var(--light); color: var(--text); }



header {
  width: 100%;
  padding: 0px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: white;
  border-bottom: 1px solid #ddd;
  position: sticky;
  top: 0;
  z-index: 10;
  
}

header nav a {
  margin-left: 20px;
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  
}


Canvas {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    overflow: hidden;
    z-index: -10;
}
.connecting-dots {
    height: 100%;
    width: 100%;
}
.hero {
  padding: 120px 40px;
  text-align: center;
 /* background: white;  */
}

.imgb {
    height:64px;
    width:64px;
 
} 
.imgp { 
 height: 180px; object-fit: cover;
}

.hero h1 { font-size: 2.7rem; margin-bottom: 10px; }
.hero p { font-size: 1.2rem; margin-bottom: 30px; }

.hero button {
  padding: 14px 32px;
  border: none;
  background: var(--accent);
  color: white;
  font-size: 1rem;
  border-radius: var(--radius);
  cursor: pointer;
}

.section {
  padding: 30px 30px;
  max-width: 1100px;
  margin: auto;
  
}

.drop {  
  box-shadow: 0px 4px 8px #aaa;  
  }

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.project-card {
  background: white;
  padding: 20px;
  border-radius: var(--radius);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.2s ease;
}

.project-card:hover { transform: translateY(-5px); }

.project-card img {
  width: 100%;
  border-radius: var(--radius);
  margin-bottom: 15px;
}

.about {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}

.about img {
  width: 220px;
  border-radius: var(--radius);
}

form {
  display: grid;
  gap: 15px;
  max-width: 500px;
}

input, textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: var(--radius);
}

button.submit-btn {
  background: var(--accent);
  color: white;
  border: none;
  padding: 12px;
  border-radius: var(--radius);
  cursor: pointer;
}

footer {
  text-align: center;
  padding: 30px;
  color: white;
  margin-top: 20px;
  background-image: url('../images/black-linen-2.png'); 
  background-repeat: repeat; 
}

/* --- Responsive Navigation --- */
.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  background: white;
  position: absolute;
  top: 70px;
  right: 20px;
  padding: 20px;
  border-radius: var(--radius);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  gap: 15px;
}

.mobile-nav a {
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
}

@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }

  .hamburger {
    display: block;
  }
}

#linkedin:hover {
  cursor: pointer;
  transform: translateY(-2px); 
  opacity: 0.8;
}