* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: sans-serif;
}

/* Main Container: Holds both sides */
.container {
    display: flex;
    height: 100vh;
   
}

/* Left Section: The Hero/Photo Area */
.hero-section {
    flex: 3;
    background-color: #102027; 
    display: flex;
    flex-direction: column;    
     justify-content: center;   
    align-items: center;      
    text-align: center;   
}

.portfolio-title {
    font-size: 3rem;
    /* Makes the text big */
    margin-bottom: 20px;
    /* Adds space between text and image */
    color: #333;
    /* Dark grey color */
    font-family: sans-serif;
    text-align: center;
}

.subtitle {
    font-size: 1.2rem;
    font-weight: normal;
    margin-top: -10px;
    margin-bottom: 30px;
    font-family: sans-serif;
    color: #bbbbbb;
}

.hero-image {
    max-width: 80%;
    max-height: 80vh;
    height: auto;
    display: block;
}

/* Right Section: The Vertical Navbar */
.nav-bar {
    flex: 1;
    background-color: #1a1a1a;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.nav-circle {
    width: 160px;
    height: 50px;
    border-radius: 30px;
    font-size: 1.1rem;
    background-color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-family: sans-serif;
    transition: transform 0.3s ease, background-color 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}
.nav-circle:hover {
    transform: scale(1.05);
    background-color: #555;
    cursor: pointer;
}