/* ----------------------------- */
/* General Reset & Global Styles */
/* ----------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Lusitana', serif;
  text-align: center;
  background-image: url("images/banner.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  overflow-x: hidden;
  overflow-y: auto;
}

html {
  scroll-behavior: smooth;
}

/* ----------------------------- */
/* Navigation Bar */
/* ----------------------------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: rgba(255, 233, 243, 0.9);
  padding: 1em 2em;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(8px);
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

.navbar-left {
  margin-left: 0;
}

.logo-button {
  font-size: 16px;
  font-weight: bold;
  color: #333;  /* Match other navbar links */
  text-decoration: none;
  transition: color 0.3s ease;
}

.logo-button:hover {
  color: #d63384;
}


.navbar-links {
  list-style: none;
  display: flex;
  gap: 17px; /* Tighter spacing */
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

.navbar-links li {
  margin: 0;
}

.navbar-links a {
  color: #333;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
}

.navbar-links a:hover {
  color: #d63384;
}

.icon-button {
  color: #333;
  font-size: 28px;
  padding: 8px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.icon-button:hover {
  color: #d63384; /* or any hover color you want */
}

/* ----------------------------- */
/* Hero Section */
/* ----------------------------- */
.hero-text {
  color: #b186ce;
  text-align: center;
  padding: 90px;
  z-index: 10;
  width: auto;
  background: none;
  margin-top: 0;
}

.hero-text h1 {
  font-size: 40px;
  margin: 0;
  font-weight: 700;
}

.hero-text p {
  font-size: 20px;
  margin: 10px 0 20px;
}

.hero-text button {
  font-family: 'Lusitana', serif;
  font-size: 18px;
  padding: 12px 28px;
  background-color: #d98ce0;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.hero-text button:hover {
  background-color: #b86dc8;
  transform: scale(1.05);
}

/* ----------------------------- */
/* Sections */
/* ----------------------------- */
.section {
  padding: 80px 20px;
  margin: 0 auto;
  max-width: 1000px;
  text-align: center;
  background: none;
  color: #66244e;
}

h2 {
  font-size: 32px;
  color: #d63384;
  margin-bottom: 20px;
}

/* ----------------------------- */
/* Projects */
/* ----------------------------- */
.project-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 600px;
  margin: 0 auto;
}

.project {
  background-color: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.project h3 a {
  text-decoration: none;
  color: #ed4d83;
}

.project h3 a:hover {
  color: #b86dc8;
}

/* ----------------------------- */
/* Contact Section */
/* ----------------------------- */
#contact {
  background-color: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  max-width: 600px;
  margin: 60px auto;
}

/* ----------------------------- */
/* Section Spacing */
/* ----------------------------- */
#projects {
  margin-top: 285px; /* Adjust as needed */
}
