/*
 * Legacy styles for arismejias.com
 * Recreated from Wayback Machine snapshots of original Wix portfolio site
 * Original site used: dark backgrounds, elegant serif/sans-serif fonts, portfolio layout
 * Fonts used on original: Playfair Display, Raleway, Roboto, Open Sans, Cormorant Garamond
 */

/* Reset and Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Raleway', 'Open Sans', Arial, sans-serif;
    background-color: #1a1a1a;
    color: #e0e0e0;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header */
.site-header {
    text-align: center;
    padding: 35px 20px;
    background-color: #111111;
    border-bottom: 1px solid #333;
}

.site-header h1 {
    font-family: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
    font-size: 2.4em;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: lowercase;
    color: #ffffff;
    margin: 0;
}

.site-header h1 span {
    font-style: italic;
}

/* Navigation - Vertical menu matching original Wix layout */
.site-nav {
    position: fixed;
    right: 30px;
    top: 150px;
    z-index: 100;
    text-align: right;
}

.site-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.site-nav li {
    margin-bottom: 4px;
}

.site-nav a {
    font-family: 'Raleway', sans-serif;
    font-size: 13px;
    color: #4A4A4A;
    text-decoration: none;
    text-transform: capitalize;
    transition: color 0.3s ease;
    letter-spacing: 0.05em;
}

.site-nav a:hover {
    color: #ffffff;
}

.site-nav a.active {
    color: #ffffff;
}

/* Main Content Area */
.main-content {
    flex: 1;
    max-width: 980px;
    margin: 0 auto;
    padding: 40px 20px;
    padding-right: 180px; /* Space for fixed nav */
    width: 100%;
}

/* Page Title */
.page-title {
    font-family: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
    font-size: 2em;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: lowercase;
    color: #ffffff;
    margin-bottom: 30px;
    text-align: center;
}

.page-subtitle {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.2em;
    font-weight: 300;
    color: #999;
    margin-bottom: 20px;
    text-align: center;
    font-style: italic;
}

/* Bio / Text Content */
.bio-content {
    max-width: 700px;
    margin: 0 auto;
    padding: 20px 0;
}

.bio-content p {
    font-family: 'Raleway', 'Open Sans', sans-serif;
    font-size: 14px;
    line-height: 1.8;
    color: #cccccc;
    margin-bottom: 16px;
}

.bio-content em,
.bio-content .film-title {
    font-style: italic;
    color: #ffffff;
}

.bio-content strong {
    color: #ffffff;
    font-weight: 600;
}

/* Photo Gallery Grid */
.gallery-section {
    margin-bottom: 40px;
}

.gallery-section h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.4em;
    font-weight: 400;
    color: #999;
    text-transform: lowercase;
    letter-spacing: 0.08em;
    margin-bottom: 20px;
    text-align: center;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
}

.gallery-grid .placeholder {
    aspect-ratio: 3/4;
    background-color: #2a2a2a;
    border: 1px solid #333;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
    font-size: 12px;
    font-family: 'Raleway', sans-serif;
}

/* Resume Table */
.resume-section {
    margin-bottom: 35px;
}

.resume-section h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.3em;
    font-weight: 400;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 15px;
    border-bottom: 1px solid #333;
    padding-bottom: 8px;
}

.resume-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Raleway', sans-serif;
    font-size: 13px;
}

.resume-table td {
    padding: 4px 8px;
    color: #cccccc;
    vertical-align: top;
}

.resume-table td:first-child {
    color: #ffffff;
    font-weight: 500;
    width: 35%;
}

.resume-table td:nth-child(2) {
    color: #999;
    width: 30%;
}

.resume-table td:nth-child(3) {
    color: #777;
    width: 35%;
    font-style: italic;
}

.resume-table .award-note {
    font-style: italic;
    color: #999;
    font-size: 11px;
    padding-left: 15px;
}

/* Awards */
.awards-table td:first-child {
    width: 15%;
    color: #999;
}
.awards-table td:nth-child(2) {
    width: 10%;
    color: #cccccc;
}
.awards-table td:nth-child(3) {
    width: 30%;
    color: #ffffff;
}
.awards-table td:nth-child(4) {
    color: #999;
    font-style: italic;
}

/* Media Subcategory Links */
.media-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

.media-category {
    width: 200px;
    text-align: center;
}

.media-category a {
    display: block;
    color: #cccccc;
    text-decoration: none;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.1em;
    text-transform: lowercase;
    letter-spacing: 0.05em;
    padding: 15px;
    border: 1px solid #333;
    background: #222;
    transition: all 0.3s ease;
}

.media-category a:hover {
    background: #2a2a2a;
    border-color: #555;
    color: #ffffff;
}

/* Video placeholder */
.video-placeholder {
    background: #222;
    border: 1px solid #333;
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
    font-size: 14px;
    margin-bottom: 20px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

/* Contact Form */
.contact-section {
    max-width: 500px;
    margin: 0 auto;
}

.contact-info {
    text-align: center;
    margin-bottom: 30px;
}

.contact-info h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.3em;
    font-weight: 400;
    color: #ffffff;
    text-transform: lowercase;
    letter-spacing: 0.08em;
    margin-bottom: 10px;
}

.contact-info p {
    font-size: 14px;
    color: #999;
    margin-bottom: 5px;
}

.contact-form label {
    display: block;
    font-size: 13px;
    color: #999;
    margin-bottom: 5px;
    font-family: 'Raleway', sans-serif;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    background: #222;
    border: 1px solid #444;
    color: #e0e0e0;
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
}

.contact-form textarea {
    min-height: 120px;
    resize: vertical;
}

.contact-form button {
    background: #444;
    color: #ffffff;
    border: none;
    padding: 10px 30px;
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: background 0.3s ease;
}

.contact-form button:hover {
    background: #555;
}

/* Footer */
.site-footer {
    text-align: center;
    padding: 20px;
    border-top: 1px solid #333;
    background: #111;
    margin-top: auto;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 10px;
}

.footer-links img {
    width: 40px;
    height: 40px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.footer-links img:hover {
    opacity: 1;
}

.site-footer .copyright {
    font-size: 11px;
    color: #555;
}

/* Quote / Review */
.review-quote {
    max-width: 600px;
    margin: 30px auto;
    padding: 20px;
    border-left: 2px solid #444;
    font-style: italic;
    color: #aaa;
    font-size: 14px;
    line-height: 1.7;
}

.review-quote .attribution {
    display: block;
    margin-top: 10px;
    font-size: 12px;
    color: #777;
    font-style: normal;
}

/* SAG-AFTRA badge */
.union-badge {
    text-align: center;
    font-size: 13px;
    color: #999;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .site-nav {
        position: static;
        text-align: center;
        padding: 15px 0;
        background: #111;
        border-bottom: 1px solid #333;
    }

    .site-nav ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px 15px;
    }

    .main-content {
        padding-right: 20px;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    }
}
