  
button{
   font-family: "Mulish", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;

    background: #56876D; /* Green */
    border: none;
    color: white;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    padding: 5px 5px;

    transition: background 0.5s;
}
button:hover{
    background: #385746;
}

a{
    font-family: "Mulish", sans-serif;
    color: #cb0547;
    text-decoration: none;
}

a:hover{
    transition: color 0.3s ease;
    color:#f476b5;
}

#buttons{
    display: flex;
    width: 40%;
    justify-content: space-between;
    align-items: center;
}

html, body {
    margin: 0;
    padding: 0;
}

html {
    background: linear-gradient(to bottom, #f4f1e3 0%, #dbcccc 100%);
    background-attachment: fixed;
    scroll-behavior: smooth;
}

body {
    background-color: transparent;
}

/* Scroll-to-Reveal Styles */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Bokeh Background Effect */
.bokeh {
    position: absolute;
    border-radius: 50%;
    background: rgba(240, 161, 173, 0.651);
    filter: blur(80px);
    animation: float 20s infinite ease-in-out;
}

@keyframes float {
    0% {
        opacity: 0;
    }
    20% {
        opacity: 0.35;
    }
    40% {
        opacity: 0.7;
    }
    60% {
        opacity: 0.35;
    }
    80%{
        opacity: 0.15;
    }
    100% {
        opacity: 0;
    }
}

.hero h1 {
    font-family: "Reenie Beanie", cursive;
    font-weight: 400;
    font-style: 500;
    font-size: 2rem;
    color: #720303;
    margin-bottom: 0.25rem;
    position: relative;
    z-index: 1;
}

.hero p {
    font-family: "Reenie Beanie", cursive;
    max-width: 600px;
    font-style: italic;
    line-height: 1.2rem;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    color: #720303; /*#b54a6f;*/
    position: relative;
    z-index: 1;
}

.content-section {
    min-height: 25vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 4rem 2rem;
    text-align: justify;
    background: transparent;
    color: #422113;
}

.content-section-small {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 4rem 2rem;
    text-align: justify;
    background: transparent;
    color: #422113;
}

.content-section h2 {
    font-family: "Reenie Beanie", cursive;
    font-weight: 600;
    font-style: normal;
    color: rgb(66, 33, 19);
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 2rem;
}

.content-section p {
    font-family: "Mulish", sans-serif;
    font-size: 0.9rem;
    max-width: 600px;
    line-height: 1.2rem;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.content-section-small p {
    font-family: "Mulish", sans-serif;
    font-size: 1rem;
    max-width: 600px;
    line-height: 1.2rem;
    margin-bottom: 1.5rem;
}

/* Reveal Animation */
.reveal {
    opacity: 0;
    transition: opacity 0.8s ease-out
}

.reveal.appear {
    opacity: 1;
    transform: translateY(0);
}

/* Bottom Bar */
.bottom-bar {
    position: relative;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(224, 169, 169, 0.95);
    opacity: 0.5;
    padding: 1rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
    backdrop-filter: blur(80px);
    z-index: 100;
    margin: 0;
}

.bottom-bar a {
    font-family: "Mulish", sans-serif;
    font-size: 1rem;
    color: #f4f1e3;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: bold;
}

.bottom-bar a:hover {
    color: #d94848;
}

.description {
    color: #d94848;
    margin-left: 0.5rem;
    font-style: italic;
}

/* Custom Cursor Glow */
.cursor-glow {
    position: fixed;
    width: 25px;
    height: 25px;
    border: none;
    border-radius: 50%;
    pointer-events: none;
    z-index: 1000;
    background: transparent;
    box-shadow: 
        0 0 5px rgba(255, 255, 255, 1),
        0 0 15px rgba(255, 255, 255, 0.8),
        0 0 30px rgba(255, 255, 255, 0.6);
    filter: blur(10px);
    transition: box-shadow 0.4s ease-in-out;
    transform: translate(-50%, -50%);
    opacity: 0.8;
}

.cursor-glow.near-reveal {
    box-shadow: 
        0 0 5px rgb(218, 59, 83),
        0 0 15px rgb(255, 85, 110),
        0 0 40px rgba(255, 176, 188, 0.8);
}