/* Overall */
body {
    margin: 0;
    font-family: 'Chakra Petch', sans-serif;
    background: radial-gradient(circle at top, #0d0d0d, #000000);
    color: #ffffff;
    line-height: 1.6;
}

a {
    color: #8d7dff;
    text-decoration: none;
    transition: color 0.3s ease;
}
a:hover {
    color: #00e5ff;
}

/* Nav & Header*/
header {
    position: sticky;
    top: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    padding: 1rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-bottom: 1px solid rgba(138, 43, 226, 0.4);
    box-shadow: 0 0 20px rgba(138, 43, 226, 0.3);
}

header .page-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #a084ff;
    margin-bottom: 0.5rem;
    text-align: center;
    text-shadow: 0 0 10px #5a3fff;
}

header nav {
    display: flex;
    gap: 1.5rem;
}

header nav a {
    color: #b8b8ff;
    padding: 0.5rem 0.8rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
}
header nav a:hover {
    color: #fff;
    background: rgba(138, 43, 226, 0.2);
    box-shadow: 0 0 15px #6f42ff, 0 0 30px #00e5ff;
}

/* Main Stuff */
.main-content {
    max-width: 900px;
    margin: 3rem auto;
    padding: 0 1rem;
}

section {
    margin-bottom: 4rem;
    background: rgba(20, 20, 30, 0.7);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
section:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 30px rgba(138, 43, 226, 0.25);
}

section h1, section h2, section h3 {
    color: #a084ff;
    text-shadow: 0 0 8px #5a3fff;
}

ul {
    padding-left: 1.5rem;
}

img {
    border-radius: 10px;
    margin-bottom: 1rem;
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.2);
    transition: transform 0.3s ease;
}
img:hover {
    transform: scale(1.05);
}

/* Links */
section a {
    color: #00e5ff;
    font-weight: 600;
}
section a:hover {
    color: #a084ff;
}

/* Resume and Contact Me Stuff */
.resume a {
    display: inline-block;
    margin-top: 0.5rem;
    padding: 0.5rem 1rem;
    border: 1px solid #5a3fff;
    border-radius: 8px;
    transition: all 0.3s ease;
}
.resume a:hover {
    background: #5a3fff;
    color: #fff;
    box-shadow: 0 0 15px #00e5ff;
}

/* Responsive Design */
@media (max-width: 768px) {
    header nav {
        flex-wrap: wrap;
        justify-content: center;
    }
    .main-content {
        margin: 2rem auto;
        padding: 0 0.5rem;
    }
}


/* Wina photo styling */
.love-photo {
    text-align: center;
    margin: 60px auto;
    max-width: 600px;
}

.photo-frame {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    box-shadow: 0 0 25px rgba(255, 0, 150, 0.5);
    margin-bottom: 20px;
}

.tall-photo {
    max-height: 70vh; /* Keeps it tall but not overwhelming */
    width: auto;       /* Maintains original aspect ratio */
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(255, 0, 150, 0.3);
}