/* Global Styles */

.pink-underline {
  color: #000000;
  border-bottom: 2px solid #5e1b44;
  padding-bottom: 1px;
}

.pink-underline:hover {
  border-bottom: 3px solid #9d3a76; /* Darker/thicker on hover */
}

/* Keep your existing .expand-invite style */
.expand-invite {
  text-align: center;
  font-style: italic;
  margin-top: 2rem;
}

/* Vertical Stack Layout */
.resume-stack {
  max-width: 800px; /* Controls total width */
  margin: 2rem auto; /* Centers the block */
  padding: 1rem;
  text-align: center;
}

.resume-images {
  display: flex;
  flex-direction: column; /* Stacks vertically */
  gap: 1.5rem; /* Space between images */
  align-items: center;
}

.resume-images img {
  width: 100%; /* Full container width */
  max-width: 600px; /* Limits image width */
  height: auto;
  border: 1px solid #e0a8c6;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(186, 76, 142, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #ffd1ed;
    color: #000000;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: #000000;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #ba4c8e;
}

/* Header Styles */
header {
    background-color: #ba4c8e;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

nav ul {
    display: flex;
    justify-content: space-around;
    list-style-type: none;
    max-width: 1200px;
    margin: 0 auto;
}

nav ul li a {
    color: white;
    font-weight: 400;
    font-size: 1.1rem;
    padding: 0.5rem 1rem;
    border-radius: 4px;
}

nav ul li a:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

/* Main Content Styles */
main {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 2rem;
}

/* Home Page Styles */
.welcome-section {
    text-align: center;
    margin-bottom: 3rem;
}

.welcome-section h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.welcome-section p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

.image-section {
    text-align: center;
    margin-top: 2rem;
}

.profile-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Portfolio Page Styles */
.portfolio-section {
    padding: 2rem 0;
}

.project {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: center;
}

.project img {
    flex: 1;
    min-width: 300px;
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.project-description {
    flex: 2;
    min-width: 300px;
}

.expand-invite {
    text-align: center;
    font-style: italic;
    margin-top: 2rem;
}

/* About Page Styles */
.about-section {
    padding: 2rem 0;
}

.bio-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
    align-items: center;
}

.bio-text {
    flex: 2;
    min-width: 300px;
}

.profile-photo {
    flex: 1;
    min-width: 250px;
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contact-info {
    background-color: rgba(255, 255, 255, 0.3);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.resume-embed {
    width: 100%;
    height: 600px;
    border: none;
    margin: 1rem 0;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.pricing-section {
    margin: 2rem 0;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
}

table, th, td {
    border: 1px solid #ba4c8e;
}

th, td {
    padding: 0.75rem;
    text-align: left;
}

th {
    background-color: #ba4c8e;
    color: white;
}

tr:nth-child(even) {
    background-color: rgba(255, 255, 255, 0.3);
}

.pricing-note {
    font-style: italic;
    font-size: 0.9rem;
}

/* Apps Page Styles */
.apps-section {
    text-align: center;
    padding: 4rem 0;
}

.coming-soon {
    font-size: 2rem;
    color: #ba4c8e;
    margin-top: 2rem;
}

/* Footer Styles */
footer {
    text-align: center;
    padding: 1.5rem;
    margin-top: 2rem;
    background-color: rgba(186, 76, 142, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        align-items: center;
    }
    
    nav ul li {
        margin: 0.5rem 0;
    }
    
    .welcome-section h1 {
        font-size: 2.2rem;
    }
    
    .project, .bio-container {
        flex-direction: column;
    }
    
    .project img, .profile-photo {
        width: 100%;
    }
}