* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Roboto Flex", sans-serif;
  line-height: 1.6;
  background: #f9f9f9;
  color: #333;
  transition: background 0.3s, color 0.3s;
}

header {
  background: transparent;
  color: #fff;
  padding: 15px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
  width: 100%;
}

header a {
  text-decoration: none;
}

header .logo img {
  width: 60px;
  height: auto;
  
}

nav {
  display: flex;
  justify-content: flex-end;
  flex: 1;
}

nav ul {
  display: flex;
  gap: 50px;
  list-style: none;
  margin: 0;
  padding: 0;
}

nav a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}

nav a:hover {
  color: #007bff;
}

.hero-wrapper {
  width: 100vw;
  min-height: 100vh; 
  background-image: url('imgs/image.jpeg');
  background-size: cover;      
  background-position: center; 
  background-repeat: no-repeat;
  position: relative;          
  display: flex;
  flex-direction: column;
}


.hero-wrapper::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.3); 
  z-index: 0; 
}


header {
  background: transparent;  
  color: #fff;
  padding: 15px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;  
  z-index: 1;
}


nav {
  display: flex;
  flex: 1;
  justify-content: flex-end;
}

nav ul {
  display: flex;
  gap: 50px;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* nav a {
  color: #000;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

nav a:hover {
  color: #00bfff;
} */


.hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  padding: 0 50px;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 5rem;
  margin-bottom: 1rem;
  color: #000000;
  font-family: "Cinzel Decorative", serif;
  font-weight: 600;
  font-style: normal;
}

.hero p {
  font-size: 1.5rem;
  color: #fff;
  max-width: 800px;
  font-weight: 600;

}

section:not(.hero) {
  max-width: 900px;
  margin: auto;
  padding: 50px 20px;
}

.projects {
  display: grid;
  
  gap: 1.5rem;
}

.project-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  
  background: #fff;
  padding: 1.5rem 2rem;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  
  margin-bottom: 1.5rem; 
}
.project-content {
  max-width: 75%;
}

.project-content h3 {
  margin-bottom: 0.5rem;
}

.project-content p {
  margin-bottom: 0.75rem;
  color: #555;
}

.project-link {
  text-decoration: none;
  font-weight: 600;
  color: #007bff;
}

.project-logo {
  width: 80px;
  height: 80px;
  object-fit: contain;

}

.contact-links li {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  padding: 0;
}

.contact-links a {
  text-decoration: none;
}

.contact-links svg {
  width: 32px;
  height: 32px;
  cursor: pointer;
  transition: transform 0.2s;
}

.contact-links svg:hover {
  transform: scale(1.2);
}

li .project-card {

opacity: 100%;
}

form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

input, textarea, button {
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

button {
  background: #007BFF;
  color: white;
  border: none;
  cursor: pointer;
}

button:hover {
  background: #0056b3;
}
footer {
  text-align: center;
  padding: 20px;
  /* background: #222; */
  color: white;
  margin-top: 30px;
}
.contact-links {
  display: flex;
  justify-content: center;
}

.contact-links li {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

.skills-card {
  background: #fff;
  padding: 1.5rem 2rem;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  margin-bottom: 1.5rem; 
}

.skills-card h2 {
  margin-bottom: 1rem;
}

.skills-list {
  list-style: none;
  padding: 0;
}

.skills-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #eee;
}

.skills-list li:last-child {
  border-bottom: none;
}


@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .hero p {
    font-size: 1.2rem;
  }

  nav ul {
    gap: 12px;
  }
}
