/* --- RESET --- */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', -apple-system, sans-serif; background: #ffffff; color: #111; }

/* --- EDITORIAL HERO LAYOUT --- */
.hero-editorial {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 100vh;
    position: relative;
}

/* --- LEFT SIDE CONTENT --- */
.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 100px;
}

.nav-logo { font-weight: 800; letter-spacing: 2px; margin-bottom: 50px; font-size: 1.2rem; }
.eyebrow { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 3px; color: #666; margin-bottom: 20px; }
.hero-content h1 { font-size: 4rem; line-height: 1.1; margin-bottom: 30px; }
.hero-content p { font-size: 1.2rem; color: #666; margin-bottom: 40px; max-width: 400px; }

/* --- RIGHT SIDE VISUALS --- */
.hero-visual {
    position: relative;
    background: #000;
    overflow: hidden;
}

.visual-placeholder {
    width: 100%;
    height: 100%;
    background-image: url('main_banner.png');
    background-size: cover;
    background-position: center;
    background-blend-mode: multiply; /* Darkens image for better text readability */
    background-color: #999; 
}

/* --- RIGHT SIDE NAV LINKS (BOXED STYLE) --- */
.nav-links-right {
    position: absolute;
    top: 40px; 
    right: 40px; 
    z-index: 50;
    display: flex; /* Ensures they align horizontally */
    gap: 15px;      /* Space between the two boxes */
}

.nav-links-right a {
    text-decoration: none;
    color: #000000;           /* Black text */
    background-color: #ffffff; /* White box */
    padding: 10px 20px;       /* Spacing inside the box */
    border-radius: 0px;       /* Subtle rounded corners */
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15); /* Adds a professional lift */
}

/* Optional: Add a hover effect to make it feel interactive */
.nav-links-right a:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}
/* --- BUTTONS --- */
.btn-primary { 
    background: #111; color: #fff; padding: 15px 30px; text-decoration: none; font-weight: 600; display: inline-block; 
}
.btn-text { 
    margin-left: 20px; color: #666; text-decoration: none; font-weight: 500; border-bottom: 1px solid #666; 
}

/* --- WORK SECTION --- */
.work-section {
    padding: 100px 0;
    background: #ffffff;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 60px;
    padding: 0 100px; /* Aligns with hero padding */
    letter-spacing: -1px;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 350px;
    gap: 20px;
    padding: 0 100px;
}

/* Interlocking Logic */
.bento-item.large { grid-column: span 2; grid-row: span 2; }
.bento-item.tall { grid-row: span 2; }
.bento-item.wide { grid-column: span 2; }

/* Styling for the items */
.bento-item { position: relative; border-radius: 0px; overflow: hidden; background: #f0f0f0; }
.bento-item img { width: 100%; height: 100%; object-fit: cover; transition: 0.6s; }
.bento-item:hover img { transform: scale(1.05); }

/* Overlay style */
.bento-overlay {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 30px;
    color: white;
    opacity: 0;
    transition: 0.4s;
}
.bento-item:hover .bento-overlay { opacity: 1; }