
 :root {
  --primary-color: #f1f1f1;
  --secondary-color: #9ecbff;
  --bg-dark: #862bcb;
  --bg-card: #0fd8c473;
  --border-light: #333;
  --font-family-title: 'Playfair Display', serif;
  --font-family-body: 'Roboto', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-dark);
  color: var(--primary-color);
  font-family: var(--font-family-body);
  line-height: 1.6;
}

h1, h2 {
  font-weight: 700;
  color: var(--primary-color);
  font-family: var(--font-family-title);
}

a {
  color: var(--secondary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #c9e2ff;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--secondary-color);
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: background-color 0.3s ease, color 0.3s ease;
  border-radius: 50px;
}

.btn:hover {
  background-color: var(--secondary-color);
  color: var(--bg-dark);
}




/*==================================================
  INDEX PAGE
==================================================*/
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.intro-overlay {
  position: relative;
  z-index: 2;
  padding: 20px;
  max-width: 800px;
  animation: fadeIn 2s ease-in-out;
}

.profile-cards {
  position: relative;
  width: 300px;
  height: 200px;
  margin: 0 auto 30px;
}

.profile-card {
  position: absolute;
  width: 150px;
  height: 150px;
  overflow: hidden;
  border: 3px solid var(--secondary-color);
  transition: transform 0.3s ease, z-index 0.3s ease;
}

.profile-card:hover {
  transform: scale(1.1) rotate(0deg) !important;
  z-index: 10;
}

.profile-card--1 {
  left: 0;
  top: 0;
  transform: rotate(-10deg);
  z-index: 2;
}

.profile-card--2 {
  left: 50%;
  top: 20px;
  transform: translateX(-50%) rotate(5deg);
  z-index: 3;
}

.profile-card--3 {
  right: 0;
  top: 0;
  transform: rotate(10deg);
  z-index: 1;
}

.profile-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.intro-name {
  font-size: 4rem;
  margin-bottom: 10px;
  font-style: italic;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  animation: slideInFromTop 1s ease-out;
}

.intro-bio {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 30px;
  animation: slideInFromLeft 1s ease-out;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideInFromTop {
  from { transform: translateY(-50px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes slideInFromLeft {
  from { transform: translateX(-50px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}


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

body {
  background: #0f172a;
  color: #fff;
}

/* Navbar */
.navbar {
  padding: 15px;
  background: #1e293b;
  text-align: center;
}

.nav__link {
  color: #38bdf8;
  text-decoration: none;
  font-weight: bold;
}

/* Container */
.container {
  max-width: 900px;
  margin: auto;
  padding: 20px;
}



.title {
  text-align: center;
  margin-bottom: 30px;
}

/* Section */
.section {
  margin-bottom: 25px;
}

.section h2 {
  margin-bottom: 10px;
  color: #38bdf8;
}

/* Card */
.card {
  background: #1e293b;
  padding: 15px;
  border-radius: 12px;
  transition: 0.3s;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px rgba(56,189,248,0.5);
}

/* Lists */
ul {
  list-style: none;
}

ul li {
  margin-bottom: 8px;
}

/* Social Links */
.social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social a {
  display: inline-block;
  margin: 5px;
  padding: 10px 15px;
  background: #38bdf8;
  border-radius: 8px;
  color: black;
  transition: 0.3s;
}

.social a:hover {
  transform: scale(1.1);
}


/* Email */
a {
  color: #38bdf8;
}