/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body Styling */
body {
  font-family: 'Arial', sans-serif;
  background: linear-gradient(135deg, #202c3b, #5c2e5a, #9e5078); /* Matches dark hues in the image */
  color: #f4e7ed; /* Soft light pink/white */
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Main Container */
.container {
  text-align: center;
  background: rgba(255, 255, 255, 0.1); /* Transparent white for a frosted look */
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
}

/* Title Styling */
.container h1 {
  font-size: 3rem;
  color: #e06592; /* Bright pink inspired by the hair */
}

/* Subheading Styling */
.container p {
  font-size: 1.2rem;
  margin: 1rem 0;
  color: #d7a2bc; /* Muted pastel tones matching the makeup highlights */
}

/* Buttons Container */
.buttons {
  margin-top: 1.5rem;
}

/* Button Styling */
.container a {
  display: inline-block;
  text-decoration: none;
  padding: 0.8rem 1.5rem;
  margin: 0.5rem;
  background: #e06592; /* Bright pink */
  color: #202c3b; /* Dark blue/purple for contrast */
  border-radius: 25px;
  font-size: 1rem;
  font-weight: bold;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s, box-shadow 0.3s;
}

.container a:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.5);
}

/* Image Styling */
.container img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 3px solid #e06592;
  margin-bottom: 1rem;
}

/* Navbar Styles */
.navbar {
    position: fixed; /* Fixes the navbar at the top */
    top: 0;
    left: 0;
    width: 100%; /* Ensures it spans the full width of the page */
    background-color: #1f1f2e; /* Dark background */
    padding: 0.5rem 0;
    border-bottom: 3px solid #e06592; /* Matches the main color scheme */
    z-index: 1000; /* Ensures the navbar stays above other elements */
    display: flex;
    justify-content: center;
  }
  
  .navbar a {
    color: #f4e7ed; /* Light pastel white */
    text-decoration: none;
    padding: 0.5rem 1rem;
    font-size: 1.2rem;
    transition: color 0.3s ease;
  }
  
  .navbar a:hover {
    color: #e06592; /* Bright pink hover effect */
  }
  
  .navbar a.active {
    color: #e06592; /* Highlight active page */
    font-weight: bold;
  }
  
  /* Adjust container spacing for fixed navbar */
  .container {
    margin-top: 4rem; /* Ensures content is below the fixed navbar */
  }