*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, Helvetica, sans-serif;
}
.logo {
    display: flex;
    align-items: center;
}

.logo img {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    object-fit: cover;
}

.logo span {
    font-weight: 700;
    font-size: 1.25rem;
}

html{
    scroll-behavior:smooth;
}

body{
    margin:0;
    overflow-x:hidden;
    background:#ffffff;
}

body::before{

    content:"";

    position:fixed;
    inset:0;

    background:
        radial-gradient(circle at 20% 30%, rgba(4, 30, 51, 0.35), transparent 35%),
        radial-gradient(circle at 80% 70%, rgba(87, 10, 100, 0.3), transparent 35%),
        radial-gradient(circle at 50% 50%, rgba(129, 212, 250, 0.25), transparent 40%);

    filter:blur(80px);

    z-index:-1;
}

/* ===========================
   NAVIGATION BAR
=========================== */

header{
    position:fixed;
    top:0;
    width:100%;
    background:#222;
    z-index:1000;
}

nav{
    display:flex;
    justify-content:center;
    padding:15px;
}

nav a{
    color:white;
    text-decoration:none;
    margin:0 20px;
    font-weight:bold;
    transition:.3s;
}

nav a:hover{
    color:skyblue;
}

/* ===========================
   SECTIONS
=========================== */

section{
    min-height:100vh;
    padding:100px 50px;
}

/* ===========================
   HOME
=========================== */

#home{

    /* Background Image Placeholder */
    background-image:url("");

    background-size:cover;
    background-position:center;

    display:flex;
    justify-content:center;
    align-items:center;
}

/* Dark overlay */
.home-container{

    background:rgba(0,0,0,.6);

    width:90%;
    max-width:1000px;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:40px;
    border-radius:15px;

    color:white;

    animation:fadeIn 1.2s;
}

/* Introduction */
.intro{
    width:60%;
}

.intro h1{
    font-size:40px;
    margin-bottom:20px;
}

.intro p{
    margin-bottom:20px;
    line-height:1.6;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

button{

    padding:12px 25px;

    border:none;
    border-radius:8px;

    background:skyblue;

    cursor:pointer;

    transition:.3s;
}

button:hover{
    transform:scale(1.05);
}

/* Photo Placeholder */

.photo{

    width:250px;
    height:250px;

    border:3px dashed white;

    display:flex;
    justify-content:center;
    align-items:center;

    border-radius:50%;

    background:#888;
    
    overflow:hidden;
}

.photo img{

    width:100%;
    height:100%;

    object-fit:cover;

    border-radius:50%;
}

/* ===========================
   ABOUT
=========================== */

#about{
    text-align:center;
}

.container-group{

    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;

    margin-top:40px;
}

.box{

    width:300px;
    background:white;

    padding:30px;

    border-radius:10px;

    box-shadow:0 5px 10px rgba(0,0,0,.1);

    transition:.3s;
}

.box:hover{
    transform:translateY(-10px);
}
.box h2{
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1.5rem;
    color: #790202;
}
.box p{
    line-height:1.6;
    font-family:Arial, Helvetica, sans-serif;
    text-autospace: inherit 0.5px;
}

/* ===========================
   PROJECTS
=========================== */

#photos {
    text-align:center;
}

.Photo{

    width:300px;

    background:white;

    padding:20px;

    border-radius:10px;

    box-shadow:0 5px 10px rgba(0,0,0,.1);

    transition:.3s;
}

.Photo:hover{
    transform:scale(1.03);
}

.Photo img{

    width:100%;
    height:180px;

    object-fit:cover;

    background:#ccc;

    margin-bottom:15px;
}

/* ===========================
   CONTACT
=========================== */

#contacts{
    text-align:center;
}

.socials{

    margin-top:30px;
}

.socials a{

    color:#222;

    font-size:35px;

    margin:15px;

    transition:.3s;
}

.socials a:hover{
    color:dodgerblue;
}

/* ===========================
   ANIMATION
=========================== */

@keyframes fadeIn{

    from{
        opacity:0;
        transform:translateY(40px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }
}
.hidden{
    opacity:0;
    transform:translateY(40px);
    transition:1s;
}

.show{
    opacity:1;
    transform:translateY(0);
}
#cursor{

    position:fixed;

    width:25px;
    height:25px;

    background: black;

    border-radius:50%;

    pointer-events:none;

    filter:blur(10px);

}

