@import url('https://fonts.googleapis.com/css2?family=Ambit:wght@100..900&display=swap');

body {
    margin: 0;
    padding: 0;
    font-family:  "Ambit", sans-serif;
    background-color: black;
    color: white;
}

.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.logo {
    color: white;
    font-size: 24px;
    font-weight: bold;
}

.menu {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.menu li {
    margin-left: 20px;
}

.menu li a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.menu li a:hover {
    color: blue;
}

/* Hamburger Menu Styles */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger .line {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 3px 0;
    transition: transform 0.3s ease;
}

.hamburger.active .line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active .line:nth-child(2) {
    opacity: 0;
}

.hamburger.active .line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

@media only screen and (max-width: 768px) {
    .menu {
        display: none;
        flex-direction: column;
        align-items: center;
        position: fixed;
        top: 0;
        left: 0;
        height: 100vh;
        width: 100%;
        background-color: black;
        padding-top: 80px;
        animation: slideIn 0.3s forwards;
    }

    .menu.active {
        display: flex;
    }

    .menu li {
        margin-left: 0;
        padding: 15px 0;
        border-bottom: 1px solid white;
        width: 100%;
        text-align: center;
    }

    .menu li:last-child {
        border-bottom: none;
    }

    .hamburger {
        display: flex;
    }
}

@keyframes slideIn {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

/* Hero Section Styles */
.hero {
    display: flex;
    flex-direction: column;
    justify-content: center; /* Align content vertically */
    align-items: center; /* Align content horizontally */
    text-align: center;
    padding:60px 20px;
}

.profile-pic {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-image: url('Photos/Lokesh.R.M.jpeg'); /* Replace 'path_to_your_profile_pic.jpg' with the path to your profile picture */
    background-size: cover;
    background-position: center;
    margin-bottom: 30px;
}


.text {
    font-family: Ambit, sans-serif;
    color: rgb(255, 255, 255); /* Light gray color */
}

.big-text {
    font-size: 60px; /* Increase font size as desired */
    margin-bottom: 20px;
    margin-top: 20px;
}

.description {
    margin-bottom: 20px;
    font-size: 25px;
    width: 60%;
    margin: 0 auto; /* This centers the element horizontally */
    text-align: center; /* This centers the text inside the element */
    font-weight: lighter; /* This makes the font lighter */
    line-height: 1.5;
}
.bold {
    font-weight: bold; /* This makes the selected part bold */
}

.hashtag {
    color: #777;
    margin-bottom: 25px;
}

.connect-btn {
    font-family: 'Ambit', sans-serif; 
    background-color: #ffffff; 
    color: rgb(0, 0, 0); 
    padding: 15px 40px; /* Larger padding */
    border-radius: 30px; /* Rounded corners */
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-size: 18px; /* Larger font size */
}

.connect-btn:hover {
    font-weight: bold; /* Make the text bold on hover */
}



/* Responsive adjustments for mobile screens */
@media (max-width: 768px) {
    .hero {
        padding: 40px 20px; /* Adjust padding for smaller screens */
    }

    .big-text {
        font-size: 40px; /* Decrease font size for smaller screens */
    }

    .description {
        font-size: 20px; /* Decrease font size for smaller screens */
        width: 80%; /* Adjust width for smaller screens */
    }

    .connect-btn {
        padding: 12px 30px; /* Adjust padding for smaller screens */
        font-size: 16px; /* Decrease font size for smaller screens */
    }
}