/* General Reset */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

body {
    background-color: #f0f0f0;
}

/* Main Layout Grid */
.container {
    display: grid;
    grid-template-columns: 80px 1fr; /* Sidebar width and flexible main content */
    min-height: 100vh;
}

/* Sidebar Styles */
.sidebar {
    background-color: #f7a000; /* The signature orange */
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 20px;
    gap: 20px;
}

.nav-item {
    text-align: center;
    font-size: 10px;
    font-weight: bold;
}

.icon-box {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4px;
    border: 1px solid #333;
    font-size: 18px;
}

/* Content Area */
.content {
    background-color: white;
    display: flex;
    flex-direction: column;
}

/* Hero Banner */
.hero-banner {
    padding: 0 0 10px 0;
}

.hero-image {
    height: 400px;
    background: url("../img/home/hero_img.png");
	background-size: cover  ;
    background-color: #4a4a4a; 
    position: relative;
    border-bottom: 8px solid #5a5a66;
}

.user-name {
    position: absolute;
    right: 20px;
    bottom: 10px;
    font-size: 32px;
}

/* Portfolio Grid using CSS Grid */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 columns */
    gap: 30px;
    padding: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

/* Card Styles */
.card {
    background-color: #555561; /* Dark grey card background */
    padding: 15px;
    border-radius: 8px;
}

.card-image {
    height: 240px;
	width: 380px ;
    background-color: #e0e0e0;
    border-radius: 4px;
    margin-bottom: 10px;
}

.card-title {
    background-color: #c4821a; /* Ochre/Dark orange title bar */
    padding: 8px;
    color: black;
    font-size: 13px;
    font-weight: bold;
    border-radius: 4px;
    margin-bottom: 10px;
    min-height: 35px;
}

.card-tags {
    display: flex;
    gap: 10px;
}

.tag {
    background-color: #f7a000;
    padding: 2px 10px;
    border-radius: 4px;
    font-size: 10px;
    color: black;
}

/* Footer Placeholder */
.footer-bar {
    background-color: #5a5a66;
    height: 80px;
    margin-top: auto;
}