:root {
    --bg-color: #1e1b18; 
    --card-bg: #2a2420;
    --text-color: #d7ccc8;
    --accent-coffee: #b08968;
    --accent-amber: #dd9d44;
    --border-soft: #3e362e;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'Quicksand', sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}

.home-wrapper {
    width: 90%;
    max-width: 1000px;
    padding: 80px 20px;
}

/* --- HERO SECTION --- */
.hero-section {
    margin-bottom: 60px;
}

.hero-section h1 {
    font-size: 3.5rem;
    margin: 0;
    color: #ede0d4;
}

.highlight {
    color: var(--accent-amber);
    text-shadow: 3px 3px 0px rgba(176, 137, 104, 0.2);
}

.subtitle {
    font-size: 1.2rem;
    color: var(--accent-coffee);
    margin-top: 10px;
}

/* --- BENTO GRID --- */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 200px;
    gap: 20px;
}

.grid-card {
    background: var(--card-bg);
    border: 2px solid var(--border-soft);
    border-radius: 30px;
    padding: 25px;

    text-align: left;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;

    display: flex;
    flex-direction: column;
    justify-content: flex-start;

    overflow: hidden;
}

.grid-card:hover {
    border-color: var(--accent-amber);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

/* Card Sizing */
.large { grid-column: span 2; grid-row: span 2; }
.medium { grid-column: span 1; grid-row: span 2; }
.small { grid-column: span 1; grid-row: span 1; }

.grid-card h3 {
    margin: 0 0 10px 0;
    color: var(--accent-amber);
}

.grid-card p {
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.status-pill {
    display: inline-block;
    margin-top: 15px;
    font-size: 0.75rem;
    background: rgba(176, 137, 104, 0.15);
    padding: 5px 12px;
    border-radius: 15px;
    color: var(--accent-coffee);
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 5px;
    font-size: 0.85rem;
    color: var(--accent-coffee);
}

/* --- IMAGE HANDLING --- */
.card-image {
    width: 100%;
    height: 160px; 
    overflow: hidden;
    border-radius: 20px;
    margin-bottom: 20px;
    background: #1a1714; 
    flex-shrink: 0;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    opacity: 0.8;
    transition: transform 0.5s ease, opacity 0.3s ease;
}

.grid-card:hover .card-image img {
    transform: scale(1.05);
    opacity: 1;
}

.large.grid-card {
    flex-direction: row;
    align-items: center;
    gap: 25px;
}

.large .card-image {
    width: 45%;
    height: 100%;
    margin-bottom: 0;
}

.large .card-content {
    width: 55%;
    flex-direction: column;
    gap: 8px;
    display: flex;
}

.small .card-image {
    height: 100px;
}