:root {
/* =========================================
   GLOBAL TEXT STYLES 
   ========================================= */

/* 1. Standard Importance (The 'Strong' tag) */
strong {
    font-weight: 700;
    color: #ffffff; /* Brighter than the faded text to make it 'pop' */
}

/* 2. Artistic Highlights (Pink) */
.text-highlight-pink {
    font-weight: 600;
    color: var(--vibrant-hot-pink);
    text-shadow: 0 0 8px rgba(255, 105, 180, 0.3); /* Subtle glow */
}

/* 3. Professional Highlights (Red/SAK2 Style) */
.text-highlight-red {
    font-weight: 600;
    color: #ff4d4d;
    text-shadow: 0 0 8px rgba(255, 77, 77, 0.3);
}

/* 4. The 'Faded' Professional Look */
.text-faded {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

/* 5. Gradient Text (For big impact moments) */
.text-gradient {
    background: linear-gradient(45deg, var(--vibrant-pink), var(--rose-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

/* 6. Pronoun Styling */
.pronoun-tag {
    font-size: 0.85rem;
    font-style: italic;
    letter-spacing: 1px;
    color: var(--rose-pink);
    opacity: 0.9;
}

    --bg-color: #ffffff; /* Or a very light off-white #fafafa */
    --vibrant-pink: #ff007f; /* Magenta/Hot Pink for highlights/glowing */
    --vibrant-hot-pink: #ff69b4;
    --main-accent: #ff4081; /* Deep pink */
    --glass-white: rgba(0, 0, 0, 0.7);
    --glass-heavy: rgba(0, 0, 0, 0.7);
    --text-color: rgba(255, 255, 255, 0.9); /* Slightly faded white for readability */
}


::selection {
    background: var(--vibrant-pink);
    color: white;
}



body, html {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    color: var(--text-color);
    background-color: var(--bg-color);
    overflow-x: hidden; /* Prevent horizontal scroll on mobile */
}

h1 { font-family: 'Playfair Display', serif; font-size: 3.5rem; margin-bottom: 0.5rem; color: white;}

/* =========================================
   Hero & Background
   ========================================= */
.site-bg {
    background: url('images/nature-bokeh.jpg') no-repeat center center fixed; /* Default background if hero is missing */
    background-size: cover;
}

.hero-image-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh; /* Full screen height */
    z-index: -10; /* Sent to back */
    
    /* Swap your image here. It should be tall for mobile. */
    background: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.2)),
                url('images/sara-hero.jpg') no-repeat center center;
    background-size: cover;
}

/* =========================================
   Navbar & The "Menu" Button
   ========================================= */
.vibrant-nav {
    display: flex;
    justify-content: space-between; /* This pushes logo to left and menu to right */
    align-items: center;
    padding: 15px 25px; /* Increased the side padding to 25px to keep it off the glass edge */
    background: var(--glass-heavy);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    box-sizing: border-box; /* CRITICAL: This ensures padding doesn't push the bar off-screen */
    top: 0;
    z-index: 1000;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

#menu-toggle { display: none; } /* Hide the actual checkbox */

/* Glass Menu Button Styling */
.glass-menu-button {
    cursor: pointer;
    font-weight: bold;
    color: white;
    padding: 10px 22px; /* Slightly wider for a better look */
    border-radius: 50px;
    background: var(--glass-white);
    backdrop-filter: blur(5px);
    transition: 0.3s ease;
    
    /* This ensures it stays on the right and is fully visible */
    margin-left: auto; 
    white-space: nowrap; /* Prevents the word "Menu" from ever splitting */
    display: inline-block;
}

/* Glowing Border Effect */
.glow-pink {
    border: 1px solid rgba(255, 0, 127, 0.3);
    box-shadow: 0 0 10px rgba(255, 0, 127, 0.5);
}

.glow-pink:hover {
    box-shadow: 0 0 20px rgba(255, 0, 127, 0.8);
    background: rgba(255, 0, 127, 0.1);
}

/* Menu Dropdown on Mobile */
.main-menu-links {
    display: none; /* Hidden by default */
    list-style: none;
    position: absolute;
    top: 65px;
    right: 0;
    background: var(--glass-heavy);
    backdrop-filter: blur(15px);
    width: 100%;
    text-align: center;
    padding: 0;
    margin: 0;
}

#menu-toggle:checked ~ .main-menu-links { display: block; }

.main-menu-links li a {
    display: block;
    padding: 20px;
    color: white;
    font-size: 1.1rem;
    text-decoration: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.7);
}

.main-menu-links li a:hover {
    background: var(--vibrant-pink);
    color: white;
}

/* =========================================
   Content Containers
   ========================================= */
.page-container {
    padding: 120px 20px 50px; /* Space for fixed nav */
    max-width: 600px; /* Typical mobile content width */
    margin: 0 auto;
}

.home-intro-section { text-align: center; }

.intro-glass-header {
    background: var(--glass-white);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 20px;
    margin-bottom: 30px;
}

/* =========================================
   Artistic Rainbow Containers
   ========================================= */
.artistic-container {
    position: relative;
    border-radius: 30px;
    overflow: hidden; /* Keeps the glass panel inside the container shape */
    box-shadow: 0 10px 30px rgba(0,0,0,0.1); /* Floating effect */
    margin-bottom: 30px;
}

/* This is the rainbow background itself */
.rainbow-aurora-bg {
    /* Using CSS for a soft, blending, sophisticated rainbow */
    background: linear-gradient(-45deg, #ff4081, #ff69b4, #00d2ff, #2affd1);
    background-size: 400% 400%; /* For animation later if desired */
}

/* The glass panel sitting inside the artistic container */
.artistic-container .glass-panel {
    background: var(--glass-heavy);
    backdrop-filter: blur(20px);
    padding: 40px;
    color: var(--text-color);
    text-align: left;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* 1. Ensure the nav has a smooth transition effect */
.vibrant-nav {
    /* ... keep your existing code ... */
    transition: background-color 0.4s ease, backdrop-filter 0.4s ease;
}

/* 2. The Magic: Darken the nav background when the checkbox is checked */
#menu-toggle:checked ~ .vibrant-nav {
    background: rgba(0, 0, 0, 0.7); /* Deep dark glass */
    backdrop-filter: blur(20px);    /* Optional: increase blur for a more premium look */
}

/* 3. Also darken the Menu Button itself when active to show it's "On" */
#menu-toggle:checked ~ .vibrant-nav .glass-menu-button {
    background: rgba(0, 0, 0, 0.7);
    border-color: var(--vibrant-pink);
    box-shadow: 0 0 15px var(--vibrant-pink);
}

/* =========================================
   Footer Styling
   ========================================= */
.site-footer {
    padding: 40px 20px;
    margin-top: 50px;
}

.footer-glass {
    background: var(--glass-heavy);
    backdrop-filter: blur(15px);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px 30px 0 0; /* Rounded top corners only */
    padding: 40px 20px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: bold;
    color: white;
    margin-bottom: 10px;
}

.footer-tagline {
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--rose-pink); /* Using your softer pink here */
    margin-bottom: 30px;
}

.footer-social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.social-link {
    text-decoration: none;
    color: white;
    font-weight: bold;
    font-size: 0.8rem;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--glass-white);
    border: 1px solid rgba(255, 0, 127, 0.3); /* Pink glow border */
    transition: 0.3s ease;
}

.social-link:hover {
    box-shadow: 0 0 15px var(--vibrant-pink);
    background: var(--vibrant-pink);
    transform: translateY(-3px);
}

.footer-bottom {
    font-size: 0.8rem;
    opacity: 0.6; /* That faded white look you like */
}

.pronouns-footer {
    font-style: italic;
    margin-top: 5px;
    color: var(--vibrant-hot-pink);
}


/* =========================================
   Artistic Photo Frame
   ========================================= */
.profile-frame {
    width: 280px;         /* Perfect size for mobile */
    height: 280px;
    margin: 0 auto 40px;  /* Centers the photo and adds space below */
    padding: 5px;         /* This thickness determines how much 'rainbow' shows */
    border-radius: 50%;   /* Makes it a perfect circle */
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 25px rgba(255, 0, 127, 0.4); /* Pink outer glow */
}

.photo-inner-clip {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;     /* Ensures the image stays a circle */
    background: var(--glass-heavy); /* A glass layer behind the photo */
    display: flex;
    justify-content: center;
    align-items: center;
}

.headshot-img {
    width: 100%;
    height: 100%;
    object-fit: cover;    /* Prevents the image from stretching */
    display: block;
    transition: transform 0.5s ease;
}

/* Fun interaction: The photo zooms slightly when touched/hovered */
.profile-frame:hover .headshot-img {
    transform: scale(1.1);
}

.location-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-right: 15px; /* Space between badge and Menu button */
}

/* The Glowing Pulse Dot */
.pulse-dot {
    height: 6px;
    width: 6px;
    background-color: var(--vibrant-hot-pink);
    border-radius: 50%;
    display: inline-block;
    margin-right: 8px;
    box-shadow: 0 0 8px var(--vibrant-pink);
    animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 0, 127, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 6px rgba(255, 0, 127, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 0, 127, 0);
    }
}

/* On mobile, we make sure it doesn't crowd the logo */
@media (max-width: 400px) {
    .location-badge {
        font-size: 0.65rem;
        padding: 4px 10px;
    }
}
/* Placeholder for the other pages */
main h2 { color: white; margin-top: 50px;}
