* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Quicksand', sans-serif;
    background-color: #F5E6E8;
    color: #2a2a2a;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

header {
    text-align: center;
    margin-bottom: 20px;
}

h1 {
    color: #9B1E2E;
    font-size: 2.5em;
    margin-bottom: 10px;
}

/* Navigation */
nav {
    background-color: #FFFFFF;
    border-radius: 15px;
    padding: 10px;
    margin-bottom: 20px;
}

nav ul {
    list-style-type: none;
    display: flex;
    justify-content: space-around;
}

nav ul li {
    position: relative;
}

nav ul li a {
    color: #9B1E2E;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

nav ul li a:hover {
    background-color: #9B1E2E;
    color: #fff;
}

/* Dropdown */
nav ul li ul.dropdown {
    display: none;
    position: absolute;
    background-color: #9B1E2E;
    border-radius: 10px;
    padding: 10px;
    top: 100%;
    left: 0;
    width: 150px;
}

nav ul li:hover > ul.dropdown {
    display: block;
}

nav ul li ul.dropdown li {
    margin-bottom: 5px;
}

/* Content Sections */
.content-section {
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 20px;
    padding: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.content-section:hover {
    transform: translateY(-5px);
}

/* Floating Bubbles */
@keyframes float {
    0% { transform: translate(0, 0); }
    50% { transform: translate(15px, -15px); }
    100% { transform: translate(0, 0); }
}

.bubble {
    position: fixed;
    background-color: rgba(155, 30, 46, 0.15);
    border-radius: 50%;
    animation: float 4s ease-in-out infinite;
}

footer {
    text-align: center;
    margin-top: 20px;
    color: #2a2a2a;
}

.trail {
    position: fixed;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #9B1E2E;
    pointer-events: none;
    opacity: 0.7;
    transition: all 1s ease;
}

.profile-section {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: auto;
    max-width: fit-content;
    margin: 20px;
    gap: 15px;
}

.banner {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background-image: url('IMG_9845_VSCO.JPG');
    background-size: cover;
    background-position: center;
    overflow: hidden;
    display: flex;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin: 0;
}

.profile-name {
    font-size: 1.8rem;
    color: #9B1E2E;
    margin-left: 10px;
    margin: 0;
}

#home p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.social-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #9B1E2E;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.social-button:hover {
    background-color: #7a1623;
}

.email-link {
    color: #9B1E2E;
}

.email-link:hover {
    color: #7a1623;
}

.profile-layout {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
}

.profile-photo-col {
    flex-shrink: 0;
    position: sticky;
    top: 20px;
}

.profile-photo {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.profile-content-col {
    flex: 1;
    max-width: 650px;
}

@media (max-width: 650px) {
    .profile-layout {
        flex-direction: column;
        align-items: center;
    }
    .profile-content-col {
        max-width: 100%;
    }
}

.banner-spacer {
    flex-shrink: 0;
    width: 180px; /* matches photo column width */
}