html{    
    scroll-behavior: smooth;
}
body{
    background-color: #000;
    height: 100vh;
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #fff;
}

/* Greeting */
.greet{
    margin-top: 50px;
    text-align: center;
}
#greeting-text{
    font-family: "Bitcount Prop Single",system-ui;
    padding: 0 0 0 100px;
    font-size: 30px;
    font-weight: 600;
    text-shadow: 0 0 15px #fff;
}

/* Main layout */
.about{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-top: 80px;
    padding: 0 50px;
    gap: 100px;
}

/* Left side – image */
.left{
    width: 390px;
    height: 390px;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(255,255,255,0.3);
    transition: transform 0.5s ease-in-out, box-shadow 0.5s ease-in-out;
    overflow: hidden;
    margin-left: 100px;
}
.left:hover{
    transform: translateY(-10px);
    box-shadow: 0 0 40px rgba(255,255,255,0.5);
}
.left img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

/* Right side – CARD STYLE */
.right{
    background: rgba(255, 255, 255, 0.10);     
    backdrop-filter: blur(10px);                
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 40px 50px;
    width: 470px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.37);
    margin-right: 100px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.right:hover{
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.right .big-glow{
    font-family:"Playwrite NO",cursive ;
    font-size: 29px;
    font-weight: 800;
    text-shadow: 0 0 20px rgba(255,255,255,0.8);
    margin-bottom: 20px;
    display: block;
    text-align: center;
    transition: transform 0.5s ease-in-out;
}
.right .big-glow:hover{
    transform: translateY(-5px);
}

.right p{
    font-family: "Funnel Display",sans-serif ;
    font-size: 18px;
    line-height: 1.7;
    text-align: center;
    margin-top: 10px;
    transition: transform 0.3s ease-in;
}
.right p:hover{
    transform: translateY(-5px);
}

.medium-glow{
    font-size: 18px;
    font-weight: 700;
    text-shadow: 0 0 12px rgba(255,255,255,0.9);
    color: #e0e0e0;
}

.links{
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    margin-left: 0px;
}
.links a{
    text-decoration: none;
    color:white;
}
.links a i{
    font-size: 28px;
    padding-left: 10px;
    color: #fff;
    text-shadow: 0 0 5px #fff;
    transition: transform 0.5s ease-in-out, text-shadow 0.5s ease-in-out;
}

.links a:hover i{
    transform: translateY(-10px);
    text-shadow: 0 3px 10px rgba(255,255,255,1);
}

.links a:active i{
    transform: translateY(10px);
}

footer{
    margin-top: 100px;
    font-family: "Funnel Display",sans-serif;
    text-align: center;
    background-color: #000;
    color: #fff;
    padding: 15px 0;
    font-size: 15px;
}
footer p {
    text-shadow: 0 0 5px rgba(255,255,255,0.5);
}