/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #000000;
    color: #ffffff;
    line-height: 1.6;
}

/* Rework Banner (Ticker) - EXACT #FF3300 */
.rework-banner {
    background-color: #FF3300 !important;
    color: #ffffff;
    padding: 12px 14px;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    font-size: 13px;
    font-weight: 500;
}

/* Main container centered with fixed max width for stable layout */
.portfolio-container {
    padding: 16px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Logos viewport: clickable cursor */
.logo-viewport {
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
    background: #000;
    box-shadow: 0 4px 20px rgba(255, 51, 0, 0.15);
    cursor: pointer;
    transition: transform 0.2s ease;
}

.logo-viewport:hover {
    transform: scale(1.01);
}

.logo-image {
    display: block;
    width: 100%;
    height: auto;
}

/* Social media image full width within container */
.social-wrap { 
    width: 100%; 
}

.social-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(255, 51, 0, 0.15);
}

/* Zoom Overlay */
.zoom-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.zoom-overlay.active {
    opacity: 1;
    visibility: visible;
}

.zoom-content {
    max-width: 95vw;
    max-height: 95vh;
    padding: 20px;
}

.zoom-image {
    width: 100%;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

/* Work Notice Section */
.work-notice {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border: 1px solid #333;
    border-radius: 12px;
    margin: 40px auto;
    max-width: 1200px;
    padding: 0;
    box-shadow: 0 8px 32px rgba(255, 51, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.work-notice::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #FF3300, #ff6600, #FF3300);
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { background-position: 200% 0; }
    50% { background-position: -200% 0; }
}

.work-notice-content {
    padding: 32px 24px;
    text-align: center;
}

.work-notice h3 {
    color: #FF3300;
    font-family: 'Inter', sans-serif;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.work-notice p {
    color: #e0e0e0;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.8;
    max-width: 750px;
    margin: 0 auto;
    letter-spacing: 0.3px;
}

/* Footer with elegant design */
.site-footer {
    padding: 40px 20px 60px;
    text-align: center;
    border-top: 1px solid #333;
    margin-top: 40px;
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
}

.footer-content p {
    color: #888;
    font-size: 14px;
    line-height: 1.6;
    font-style: italic;
    letter-spacing: 0.3px;
}

/* Responsive tweaks */
@media (max-width: 768px) {
    .portfolio-container { padding: 12px; gap: 12px; }
    .work-notice { margin: 30px 16px; }
    .work-notice-content { padding: 24px 20px; }
    .work-notice h3 { font-size: 20px; font-weight: 700; }
    .work-notice p { font-size: 15px; font-weight: 500; }
    .site-footer { padding: 30px 16px 40px; margin-top: 30px; }
    .footer-content p { font-size: 13px; }
}

@media (max-width: 480px) {
    .work-notice { margin: 24px 12px; }
    .work-notice-content { padding: 20px 16px; }
    .work-notice h3 { font-size: 18px; font-weight: 700; }
    .work-notice p { font-size: 14px; font-weight: 500; }
    .site-footer { padding: 24px 12px 32px; margin-top: 24px; }
    .footer-content p { font-size: 12px; }
}