/* Reset Defaults */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

/* Background */
body {
    background: linear-gradient(to right, #fceabb, #f8b500);
    color: #333;
}

/* Navbar */
header {
    width: 100%;
    padding: 15px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    z-index: 1000;
}

nav {
    display: flex;
    align-items: center;
    width: 100%;
}

.logo {
    font-size: 24px;
    font-weight: 600;
    color: #5a3e2b;
}

ul {
    list-style: none;
    display: flex;
    gap: 30px;
    margin-left: auto;
    margin-right: 50px;
}

ul li a {
    text-decoration: none;
    color: #5a3e2b;
    font-weight: 500;
    transition: 0.3s;
    cursor: pointer;
}

ul li a:hover {
    color: black;
}

/* Contact Button */
.contact-btn {
    background: #5a3e2b;
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.3s;
}

.contact-btn:hover {
    background: black;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    text-align: center;
    flex-wrap: wrap;
    margin-top: 80px;  /* Fixed navbar height issue */
}

/* Profile Image */
.profile img {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid white;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.2);
}

/* Text */
.info {
    margin-left: 50px;
    text-align: center;
}

h1 {
    font-size: 36px;
}

h2 {
    font-size: 24px;
    margin-top: 10px;
}

.highlight {
    color: #5a3e2b;
    font-weight: 600;
}

/* Icons */
.icons {
    margin-top: 20px;
}

.icons i {
    font-size: 24px;
    margin-right: 15px;
    color: #5a3e2b;
    transition: 0.3s;
}

.icons i:hover {
    color: black;
    transform: scale(1.2);
}

/* Responsive Fix */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
        height: auto;
        padding-top: 80px;
    }
    .info {
        margin-left: 0;
        margin-top: 20px;
    }
}
