body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Arial', sans-serif;
    overflow-x: hidden;
    background-color: #2e2e2e;
    transition: transform 1s ease-in-out, background-color 1s ease-in-out;
}
.quote {
    text-align: center;
    font-style: italic;
    font-size: 20px;
    color: #ffffff;
    background-color: #2e2e2e;
    padding: 20px;
    border-bottom: 1px solid #444;
    margin-bottom: 20px;
}


body.slide-out {
    transform: translateX(-100%);
    background-color: #2e2e2e;
}
/* Custom Cursor */
.custom-cursor {
    width: 15px;
    height: 15px;
    background-color: rgb(156, 153, 153);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 3000;
    transition: transform 0.1s ease-in-out, background-color 0.2s ease;
    will-change: transform;
}

/* Bubble Around the Cursor */
.cursor-bubble {
    width: 40px;
    height: 40px;
    border: 2px solid rgba(249, 238, 238, 0.2);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 2999;
    transition: width 0.3s ease-in-out, height 0.3s ease-in-out;
}

/* Bubble Effect on Hover */
.custom-cursor.hover {
    background-color:#3790bd; /* Light blue on hover */
    width: 20px;
    height: 20px;
}

.cursor-bubble.hover {
    width: 60px;
    height: 60px;
    border-color: #3790bd;
}

/* Bubble Effect on Click */
.custom-cursor.click {
    background-color: rgba(104, 102, 102, 0.8); /* Red on click */
    width: 25px;
    height: 25px;
}

.cursor-bubble.click {
    border-color: #3790bd; /* Change border color on click */
    width: 70px;
    height: 70px;
}

/* Smooth Movement Animation */
@keyframes cursor-trail {
    0% {
        transform: translate(-50%, -50%) scale(1);
    }
    100% {
        transform: translate(-50%, -50%) scale(1.05);
    }
}

.hero {
    background-image: url('coding.jpg');
    background-size: cover;
    background-position: center;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 20px;
}

.content {
    max-width: 90%;
    text-align: center;
    color: white;
}

.circular-image {
    width: 300px; /* Set a fixed width */
    height: 350px; /* Set a fixed height to match the width */
    border-radius: 20%; /* This makes the image circular */
    margin: 20px auto;
    border: 4px solid white;
}

@media (max-width: 414px) {
    .circular-image {
        width: 300px; /* Set a fixed width */
        height: 300px; /* Set a fixed height to match the width */
        border-radius: 20%; /* This makes the image circular */
        margin: 20px auto;
        border: 4px solid white;
    }
}


h1 {
    font-size: 48px;
    margin: 10px 0;
}

p {
    font-size: 18px;
    margin: 10px 0;
}

@media (max-width: 768px) {
    .content {
        padding: 10px;
    }
    h1 {
        font-size: 36px;
    }
    .circular-image {
        width: 100px; /* Reduce size for smaller screens */
        height: 100px; /* Maintain aspect ratio */
        margin: 10px auto;
    }
    .social-links a {
        font-size: 16px;
    }
}

.social-links a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
    font-size: 18px;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #3790bd;
    text-decoration: underline;
}

.portfolio-button {
    display: inline-block;
    margin-top: 20px;
    padding: 15px 30px;
    background-color: #3790bd;
    color: #333;
    text-decoration: none;
    font-size: 20px;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
}

.portfolio-button:hover {
    background-color: #333;
    color: #9d9d9c;
}

#intro-text::after, #job-title::after {
    content: '|';
    animation: blink 1s infinite;
    opacity: 1;
    margin-left: 5px;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}
#intro-text, #job-title, #call-to-action {
    color: grey; /* Set the text color to grey */
    font-family:'Castellar';
}
.footer {
    text-align: center;
    background-color: #2e2e2e;
    color: #ffffff;
    padding: 15px;
    border-top: 1px solid #444;
    margin-top: auto; /* Pushes the footer to the bottom of the content */
    width: 100%;
}
