<<<<<<< HEAD
/* General */
=======
>>>>>>> a406a6b552aff9c9a5c183b5ee1bf3899d8849d7
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Outfit', sans-serif;
}

body {
<<<<<<< HEAD
  background: linear-gradient(135deg, #fdfbfb, #ebedee);
  padding: 2rem;
  color: #333;
  scroll-behavior: smooth;
}

/* Header */
header {
  text-align: center;
  padding: 3rem 2rem;
  background-image: url('assets/bg-header.jpg');
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  color: white;
  position: relative;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
=======
  background: linear-gradient(145deg, #f0f0f3, #cacaca);
  padding: 2rem;
  color: #333;
  perspective: 1000px;
}

header {
  
  text-align: center;
  margin-bottom: 3rem;
  transform: rotateX(0deg) rotateY(0deg) translateZ(10px);
  padding: 3rem 2rem;
  border-radius: 20px;
  background-image: url('assets/bg-header.jpg');
  background-size: cover;
  background-position: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  color: white;
  position: relative;
  z-index: 1;
>>>>>>> a406a6b552aff9c9a5c183b5ee1bf3899d8849d7
}

header::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
<<<<<<< HEAD
  background: rgba(0, 0, 0, 0.5);
  border-radius: 20px;
  z-index: 0;
}

header * {
  position: relative;
  z-index: 1;
}

header img {
  width: 140px;
  border-radius: 50%;
  margin-bottom: 1rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Button */
.btn {
  background: #ff4d4f;
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 10px;
  text-decoration: none;
  display: inline-block;
  margin-top: 1rem;
  font-weight: bold;
  transition: background 0.3s ease;
}
.btn:hover {
  background: #d9363e;
}

/* Nav */
nav {
  margin: 2rem 0;
  text-align: center;
}
nav ul {
  list-style: none;
}
nav ul li {
  display: inline-block;
  margin: 0 15px;
}
nav ul li a {
  text-decoration: none;
  color: #ff4d4f;
  font-weight: bold;
}
nav ul li a:hover {
  color: #333;
}

/* Sections */
section {
  max-width: 800px;
  margin: 3rem auto;
  padding: 2rem;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
section h2 {
  color: #ff4d4f;
  margin-bottom: 1rem;
}

.project {
  background: #f9f9f9;
  padding: 1rem;
  margin: 1rem 0;
  border-left: 5px solid #ff4d4f;
  border-radius: 10px;
}

/* Contact */
.socials {
  margin-top: 1rem;
}
.socials a {
  margin-right: 1rem;
  color: #ff4d4f;
  text-decoration: none;
}
.socials a:hover {
  color: #333;
}

/* Footer */
footer {
  text-align: center;
  margin-top: 4rem;
  color: #888;
=======
  background: rgba(0, 0, 0, 0.4); /* slight dark overlay */
  border-radius: 20px;
  z-index: -1;
}

header img {
  width: 150px;
  border-radius: 50%;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

header img:hover {
  transform: scale(1.05) rotateY(10deg);
}

header h1 {
  font-size: 2.5rem;
  margin-top: 1rem;
  color: #222;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
}

header p {
  font-size: 1.2rem;
  color: #555;
}

.btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.75rem 1.5rem;
  background: #ff4d4f;
  color: white;
  border-radius: 12px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

section {
  margin: 2rem auto;
  max-width: 800px;
  background: #fff;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.1);
  transform: rotateX(0deg) rotateY(0deg) translateZ(10px);
}

section h2 {
  color: #ff4d4f;
  margin-bottom: 1rem;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.05);
}

ul {
  list-style-type: disc;
  padding-left: 2rem;
}

.project {
  margin-top: 1rem;
  padding: 1rem;
  border-left: 4px solid #ff4d4f;
  background: #f9f9f9;
  border-radius: 10px;
}

footer {
  text-align: center;
  margin-top: 4rem;
  color: #999;
}

.socials a {
  margin-right: 1rem;
  text-decoration: none;
  color: #ff4d4f;
  font-weight: bold;
  transition: color 0.3s ease;
}

.socials a:hover {
  color: #333;
>>>>>>> a406a6b552aff9c9a5c183b5ee1bf3899d8849d7
}
