/* NAVBAR */
.navbar{
    height:60px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:0 20px;
    background: var(--color-bg);
    color: var(--color-text);
    position:fixed;
    top:0;
    left:0;
    right:0;
    z-index:1000;
}
/* the following stops weird inconsistent link colors */
.navbar a, 
.navbar a i {
    color: var(--text-color) !important;
} 
.brand{
    text-decoration:none;
    color:var(--color-text);
}
.nav-right{
    display:flex;
    gap:10px;
    color:var(--color-text);
    text-decoration:none;
}
.nav-link{
    color:var(--color-text);
    text-decoration:none;
    padding:6px 10px;
    border-radius:6px;
    font-weight:600;
}
.nav-link:hover{
    background:var(--color-bg);
}
.btn{
    display:inline-flex;
    align-items:center;
    padding:8px 12px;
    border:2px solid var(--color-accent);
    color:var(--color-accent);
    text-decoration:none;
    border-radius:8px;
    font-weight:700;
}
.btn:hover{
    background:var(--color-accent);
    color:var(--color-bg);}
.site-footer{
    position:fixed;
    text-align:left;
    padding:20px;
    margin-top:40px;
    bottom:0;
    left:0;
    width:100%;
    background:var(--color-bg);
    color:var(--color-muted);
    z-index: 900;
}
.placeholder-headshot{
    width:200px;
    height:200px;
    background:#eee;
    border-radius:12px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#999;
    font-weight:700;
}
/* BLOCK BUTTON */
.big-block-btn {
    display:flex;
    align-items:center;
    justify-content:center;
    gap:15px;
    width:100%;
    padding:10px;
    margin:10px 0;
    border-radius:10px;
    background-color:var(--color-accent);
    color:white;
    text-decoration:none;
    font-size:18px;
    font-weight:700;
    box-shadow:0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.big-block-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(0,0,0,0.15);
    background-color: #b01246; /* slightly darker accent */
}
.big-block-btn i {
    font-size: 24px;
}
/* GLASS BUTTON */
.glass-btn {
    display:flex;
    align-items:center;
    justify-content:center;
    gap:12px;
    width:100%;
    padding:20px;
    border-radius: 14px;
    margin:10px 0;
    /* glass effect */
    background:rgba(255, 255, 255, 0.15);
    backdrop-filter:blur(10px);
    -webkit-backdrop-filter:blur(10px);
    border:1.5px solid rgba(255, 255, 255, 0.3);
    /* text & icon */
    color:var(--color-text);
    text-decoration: none;
    font-size:18px;
    font-weight:400;
    /* effects */
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    position:relative;
    overflow:hidden;
    transition:transform 0.2s ease, box-shadow 0.2s ease, background 0.3s ease;
}
.glass-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 28px rgba(0,0,0,0.25);
    background: rgba(255, 255, 255, 0.25);
}
.glass-btn i {
    font-size: 24px;
}
/* shiny highlight streak */
.glass-btn::after {
    content:"";
    position:absolute;
    top:-50%;
    left:-20%;
    width:40%;
    height:200%;
    /* angled white gradient streak */
    background:linear-gradient(
        120deg,
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,0.6) 50%,
        rgba(255,255,255,0) 100%
    );
    transform:translateX(-150%) rotate(25deg);
    transition: transform 0.6s ease;
}
.glass-btn:hover::after {
    transform:translateX(300%) rotate(25deg);
}
/* Yellow tint (Academia) */
.glass-yellow {
    background:rgba(255, 245, 157, 0.22); /* light pastel yellow */
    border-color:rgba(255, 245, 157, 0.45);
}
.glass-yellow:hover {
    background:rgba(255, 245, 157, 0.32);
}
/* Red tint (SclptCycle) */
.glass-red{
    background:rgba(255, 200, 200, 0.22); /* soft pinkish red */
    border-color:rgba(255, 150, 150, 0.45);
}
.glass-red:hover{
    background:rgba(255, 200, 200, 0.32);
}
/* Teal tint (Skills maybe) */
.glass-teal{
    background:rgba(150, 230, 230, 0.22); /* soft aqua */
    border-color:rgba(150, 230, 230, 0.45);
}
.glass-teal:hover{
    background:rgba(150, 230, 230, 0.32);
}
/* NAVIGATION BUTTONS */
/* Buttons that link to sections within the academic page */
.section-nav {
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin:16px 0 24px;
}
.section-link {
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:10px 14px;
    border-radius:9px;
    background:rgba(255, 255, 255, 0.7);
    color:var(--color-text);
    text-decoration:none;
    font-size:14px;
    font-weight:600;
    box-shadow:0 2px 6px rgba(0,0,0,0.08);
    transition:background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}
.section-link i {
    font-size: 16px;
}
.section-link:hover {
    background:rgba(255, 255, 255, 0.95);
    transform:translateY(-1px);
    box-shadow:0 4px 10px rgba(0,0,0,0.12);
}
/* SCLPTCYCLE FORM */
.feedback-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 20px;
}

.feedback-form label {
    display: flex;
    flex-direction: column;
    font-weight: 600;
    color: var(--text);
}

.feedback-form input,
.feedback-form select,
.feedback-form textarea {
    margin-top: 6px;
    padding: 10px;
    border-radius: 8px;
    border: 1.5px solid #ddd;
    font-size: 15px;
    font-family: inherit;
    background: rgba(255,255,255,0.8);
}

.feedback-form textarea {
    min-height: 100px;
}

.feedback-form button {
    margin-top: 10px;
    align-self: flex-start;
}

