* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    scroll-behavior: smooth;
    font-family: "Poppins";
  }
:root {
    --bg-color: #080808;
    --second-bg-color: #101010;
    --text-color: white;
    --main-color: #ea580c;
  }
html {
    font-size: 60%;
    overflow-x: hidden;
  }
body{
    background-color: var(--bg-color);
    color: var(--text-color);
}  
.header{
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    padding: 4rem 15%;
    background: rgba(0, 0, 0, 3);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;

}
#menu-icon{
    font-size: 3.5rem;
    color: var(--main-color);
    font-weight: 800;
    cursor: pointer;
    transition: 0.3s ease-in-out;

}
.logo {
    font-size: 2.5rem; /* Adjust the size of the logo */
    font-weight: bold; /* Make it bold */
    display: inline-block;
    letter-spacing: 2px; /* Adds spacing for a stylish look */
}

.dark-orange {
    color:var(--text-color); /* Dark orange color for "Port" */
}

.logo:hover .dark-orange,
.logo:hover .white {
    transform: scale(1.1); /* Slight scaling effect on hover */
    transition: 0.3s ease-in-out; /* Smooth animation for hover */
}


span{
    background: linear-gradient(
        270deg,
        #DF8908 10%,
        #ff1d15 100%
    );
    background-clip: text;
    color: transparent;
}
.navbar a {
    font-size: 1.8rem;
    color: var(--text-color); 
    margin-left: 4rem;
    font-weight: 500;
    transition: 0.3s ease-in-out; 
    border-bottom: 3px solid transparent; 
}

.navbar a:hover {
    border-bottom-color: var(--main-color); 
}


.gradient-btn{
    font-size: 1.8rem;
    padding: 1rem 2rem;
    border-radius: 3rem;
    background: linear-gradient(
        270deg,
        #DF8908 10%,
        #ff1d15 100%
    );
    letter-spacing: 1px;
    cursor: pointer;
    transition: 0.3s ease-in-out;
    color: white;
    border: none;
    text-wrap: nowrap;

}
.gradient-btn:hover{
    transform: scale(1.0s);
}

section{
    min-height: 100vh;
    padding: 10rem 15%;

}

.home{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15rem;
}
.home-content{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
}

.home-content h1 {
    font-size: 8rem;
    font-weight: 700;
    margin-top: 1.5rem;
}

.home-content h1 .name {
    white-space: nowrap; /* Ensures "Abhinav V R" stays on one line */
}
.home-content h3 {
    font-size: 3rem; 
    white-space: nowrap; 
    font-weight: bold; 
    color: var(--text-color); 
}
.home-content p {
    font-size: 1.8rem; 
    font-weight: 300; 
    line-height: 1.5; 
    text-align: justify; 
    color: #CCCCCC; 
    margin-top: 2rem;
}
.home-img img{
    width: 32vw;
    border-radius: 50%;
    box-shadow: 0 0 25px var(--main-color) ;
    transition: 0.3s ease-in-out;
}
.home-img img:hover{
    box-shadow: 0 0 25px var(--main-color);
                0 0 50px var(--main-color);
                0 0 100px var(--main-color);
}   

.social-icons a{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 3rem;
    padding: 1rem;
    background: transparent;
    border: 2px solid var(--main-color);
    border-radius: 50%;
    color: var(--main-color);
    margin: 3rem 0.5rem;
    transition: 0.3s ease-in-out;

}

.social-icons a:hover{
    color: var(--text-color);
    background-color: var(--main-color);
    transform: scale(1.2)translateY(-5px);
    box-shadow: 0 0 25px var(--main-color);
}

.btn-group{
    display: flex;
    gap: 1.5rem;
}

.btn{
    display: inline-block;
    padding: 1rem 3rem;
    background-color: var(--main-color);
    box-shadow: 0 0 25px var(--main-color);
    border-radius: 3rem;
    font-size: 1.8rem;
    color: black;
    border: 2px solid transparent;
    font-weight: 600;
    transition: 0.3s ease-in-out;

}
.btn:hover{
    transform: scale(1.05);
    box-shadow: 0 0 25px var(--main-color);
                0 0 50px var(--main-color);
}
.btn-group a:nth-of-type(1){
    background-color: black;
    color: var(--main-color)
    border: 2px solid var(--main-color);
    box-shadow: 0 0 25px transparent;
}
.btn-group a:nth-of-type(1):hover{
    box-shadow:0 0 25px var(--main-color);
    background-color: var(--main-color);
    color: black;
}
