/* 1. Basic Reset & Font Setup */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    background-image: url('../images/bg1.JPEG');
    background-size: cover;
    background-attachment: fixed;
    background-position: bottom;
    font-family: 'Poppins', sans-serif;
    color: #3F2F0F;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    /* Center the content vertically on the screen */
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 1rem;
}

.pfp {
    width: 200px;
    height: 200px;
    float: right;
    border-radius: 100px;
    margin-right: 20px;
    object-fit: cover;
}

h1 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #DAAC5B; /* Dark Blue/Grey */
    text-align: center;
    font-size: 45px;
}

p.bio {
    text-align: center;
    font-size: 0.95rem;
    color: #3F2F0F;
    margin-bottom: 2rem;
    max-width: 400px;
    line-height: 1.5;
}

/* 4. Links Container */
.links {
    width: 80%;
    max-width: 600px; /* Limits width so it's not too wide on desktop */
    display: flex;
    flex-direction: column;
    gap: 1rem; /* Space between buttons */
    /* This ensures content doesn't go off bottom of screen on mobile */
    margin-bottom: 2rem;
}

ul.links li {
    list-style: none;
}

/* 5. The Link Buttons */
ul.links li a.link-btn {
    display: block;
    text-decoration: none;

    background: #221a08b5;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    
    color: #d7c19b;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 1rem 2rem;
    border-radius: 30px;
    border: 1px solid #3F2F0F; /* Subtle border */
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1); /* Soft shadow */
    
    /* Flexbox for icon/text alignment */
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    
    /* Add transition for smooth hover */
    transition: all 0.3s ease;
}

/* Hover effect to make the glass more opaque */
ul.links li a.link-btn:hover {
    background: #90A54F;
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.8);
    color: #000000;
}

/* .book-me {
    border-color: #90A54F !important;
}

.book-me:hover {
    border-color: #90A54F !important;
    background: #90A54F !important;
} */
/* 
ul.links li a.link-btn[href*="instagram"] {
    background-color: #E1306C;
    color: white;
}

ul.links li a.link-btn[href*="youtube"] {
    background-color: #FF0000;
    color: white;
}

ul.links li a.link-btn[href*="twitter"] {
    background-color: #1DA1F2;
    color: white;
} */

/* Corner Back Home Button */
.home-arrow {
    position: fixed;
    top: 1.5rem;
    left: 1.5rem;
    width: 45px;
    height: 45px;

    background: rgba(77, 77, 77, 0.293);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #d2d2d2;
    font-size: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    z-index: 1000; /* Ensure it stays on top */
}

/* Hover Effect */
.home-arrow:hover {
    background: rgba(255, 255, 255, 0.874);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.8);
    color: #000000;
    transform: scale(1.1);
}


/* Mobile responsive - adjust position on small screens */
@media (max-width: 480px) {
    .home-arrow {
        top: 1rem;
        right: 1rem;
        width: 40px;
        height: 40px;
    }
}

/* Optional: Hide button when scrolling down for 500px, show when at top */
.home-arrow {
    transition: opacity 0.3s ease;
}

/* This is optional - uncomment if you want to hide it when scrolling down */
/*
.home-arrow {
    opacity: 1;
}

.home-arrow.scrolled-out {
    opacity: 0;
    pointer-events: none;
}
*/