/* === Reset and Base Styles === */
body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #e8d4d1;
    overflow-x: hidden;
    position: relative;
}

/* === Sunbeam Background Effect 
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: -25%;
    width: 150%;
    height: 150%;
    background: radial-gradient(
        circle at 30% 20%,
        rgba(66, 66, 66, 0.279) 0%,
        rgba(0, 0, 0, 0.463) 70%
    );
    pointer-events: none;
    z-index: 0;
    transform: rotate(-10deg);
    animation: sunbeamMove 60s ease-in-out infinite;
}
=== */
@keyframes sunbeamMove {
    0%, 100% {
        transform: rotate(-10deg) translateY(0);
    }
    50% {
        transform: rotate(-5deg) translateY(-20px);
    }
}

/* === Dust Particle Effect === */
#dust-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.dust {
    position: absolute;
    width: 4px;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    filter: blur(2px);
    opacity: 0;
    animation: float 10s infinite ease-in-out;
}

@keyframes float {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }
    50% {
        transform: translateY(-50px) translateX(30px);
        opacity: 0.6;
    }
    100% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }
}

/* === Main Containers === */
.container{
    width: 100%;
    margin: auto;
    margin-top: 10px;
    text-align: center;
    overflow: hidden;
    align-items: center;
}
.container2 {
    width: 80%;
    margin: auto;
    padding-top: 40px;
    margin-top: 10px;
    text-align: center;
    overflow: hidden;
    align-items: center;
}

/* === Header Styles === */
header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 90%;
    padding: 0 20px;
    background: rgba(255, 255, 255, 0);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 15px;
    position: fixed;
    z-index: 1000;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
}

/* === Ticker === */
.ticker-wrapper {
    width: 100%;
    overflow: hidden;
    background: #e3e3e340;
    border-radius: 10px;
    padding: 0.5rem;
}

.ticker {
    display: inline-block;
    white-space: nowrap;
    animation: scroll-text 15s linear infinite;
}

@keyframes scroll-text {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* === Branding and Nav === */
#branding {
    flex-shrink: 0;
}

nav {
    margin-top: 10px;
    display: flex;
    align-items: center;
}

nav .navbar {
    display: flex;
    gap: 15px;
    list-style: none;
    padding: 0;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
}

nav ul li,
.navbar li {
    display: inline-block;
    margin-right: 20px;
}

nav ul li a,
.navbar a {
    text-decoration: none;
    color: #e3e3e3;
    text-transform: uppercase;
    font-size: 1.5vw;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.navbar a:hover,
.navbar .current a {
    color: #ffffff;
    border-bottom-color: #000000;
}

/* === Typography === */
h1 {
    color: #515151;
    font-weight: 100;
    text-align: center;
    font-size: xxx-large;
}

h2, h3 {
    color: #515151;
    font-weight: 200;
}
.spire2 h2 {
    font-weight: 200;
    color:#515151;
}

.spire2 h3 {
    font-weight: 300;
}
u, a {
    color: #515151;
    font-weight: 200;
    /*font-size: 1.125em;*/
}

p, li {
    text-align: center;
    font-weight: 200;
    color: #515151;
    /*font-size: 1.125em;  ~18px */
    line-height: 1.6;
    max-width: 70ch;
    /*margin: 0 auto 1.5em;*/
}
hr {
    width: 77.5%;
}
/* === Profile & Cards === */
#showcase {
    margin-top: 20px;
}

.card {
    color: #e3e3e3;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2.5%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 75%;
    margin: 20px auto;
    text-align: center;
    z-index: 2;
}

.card2 {
    color: #e3e3e3;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2.5%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 90%;
    margin: 10px auto;
    text-align: center;
    z-index: 2;
}


/* === Button Styles === */
.button-group {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.button, .expand-link {
    border: 2px solid #515151;
    color: #515151;
    padding: 10px 20px;
    border-radius: 25px;
    font-family: 'Inter', sans-serif;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.4s ease;
    margin: 5px;
    background-color: transparent;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.button img {
    max-width: 20px;
    max-height: 18px;
    vertical-align: middle;
}

.button:hover, .expand-link:hover {
    background-color: #ffffff;
    color: #000000;
    border-color: #ffffff;
}

/* === Responsive Columns === */
.row, .row2 {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.spire {
    flex: 0 0 calc(50% - 0.5rem);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 15px;
}

.spire2 {
    flex: 1 1 calc(33.333% - 0.67rem);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 15px;
    min-width: 200px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* === Footer === */
footer p {
    color: #dfdfdf;
}

/* === Expandable Content === */
#hiddenContent {
    visibility: hidden;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.5s ease, max-height 0.5s ease;
}

.show {
    display: block !important;
    opacity: 1 !important;
    max-height: 1000px;
}

/* === Media Queries === */
@media (max-width: 768px) {
    .circle-pfp {
        width: 180px;
        height: 180px;
    }

    .spire2 {
        flex: 1 1 100%;
    }

    .card h2{
        font-size: 4vw;
    }
    /*== h1 {
        font-size: 6vw;
    } ==*/

    nav ul li a {
        font-size: 3.5vw;
    }
}

@media (min-width: 769px) {
    h1 {
        font-size: 6vw;
    }
}
