* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-color: #ddd4cc;
    --text-color: #3a4a3e;
    --link-color: #3a4a3e;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-color);
    background: var(--bg-color);
    line-height: 1.6;
}

/* Header & Navigation */
header {
    background: var(--bg-color);
    padding: 1.5rem 2rem;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.nav-left {
    display: flex;
    gap: 2rem;
    flex: 1;
}

.nav-left a {
    color: var(--link-color);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 400;
    transition: opacity 0.3s ease;
}

.nav-left a:hover {
    opacity: 0.6;
}

.logo {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.logo img {
    height: 80px;
    width: auto;
}

.nav-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.nav-right a {
    color: var(--link-color);
    font-size: 1.8rem;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.nav-right a:hover {
    opacity: 0.6;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-color);
    transition: all 0.3s ease;
}

/* Main Content */
main {
    max-width: 100%;
    padding: 0;
}

/* Talent Sections */
.talent-section {
    padding: 3rem 2rem 2rem 2rem;
    border-bottom: 1px solid rgba(58, 74, 62, 0.1);
}

.talent-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.talent-header h2 {
    font-size: 3rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-color);
    font-family: 'Impact', 'Arial Black', sans-serif;
    letter-spacing: 0.02em;
    margin: 0;
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    color: var(--text-color);
    text-decoration: none;
    transition: opacity 0.3s ease;
    font-size: 1.8rem;
    border: 2px solid var(--text-color);
    border-radius: 8px;
}

.social-links a:hover {
    opacity: 0.6;
}

.talent-images {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
}

.talent-images img {
    width: 100%;
    height: auto;
    display: block;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.talent-images img:hover {
    opacity: 0.9;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 1000;
    padding: 2rem;
    overflow-y: auto;
}

.modal.active {
    display: block;
}

.modal-close {
    position: fixed;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: #fff;
    font-size: 3rem;
    cursor: pointer;
    z-index: 1001;
    line-height: 1;
    padding: 0;
    width: 50px;
    height: 50px;
}

.modal-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding-top: 2rem;
}

#modalImage {
    max-width: 100%;
    max-height: 75vh;
    object-fit: contain;
}

.modal-nav {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.1);
    border: 2px solid #fff;
    color: #fff;
    font-size: 3rem;
    cursor: pointer;
    padding: 1rem 1.5rem;
    transition: all 0.3s ease;
    line-height: 1;
}

.modal-nav:hover {
    background: rgba(255,255,255,0.2);
}

.modal-prev {
    left: 1rem;
}

.modal-next {
    right: 1rem;
}

.modal-info {
    text-align: center;
    color: #fff;
}

.modal-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-transform: uppercase;
}

.modal-info .social-links a {
    border-color: #fff;
    color: #fff;
}

.modal-thumbnails {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.modal-thumbnails img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    cursor: pointer;
    opacity: 0.5;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.modal-thumbnails img:hover,
.modal-thumbnails img.active {
    opacity: 1;
    border-color: #fff;
}

/* Contact Page */
.contact-page {
    max-width: 700px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.contact-container {
    background: rgba(255,255,255,0.3);
    padding: 3rem;
    border-radius: 0;
}

.contact-container h1 {
    font-size: 3rem;
    margin-bottom: 2rem;
    text-align: center;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--text-color);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid rgba(58, 74, 62, 0.3);
    background: rgba(255,255,255,0.5);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--text-color);
    background: rgba(255,255,255,0.8);
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background: var(--text-color);
    color: var(--bg-color);
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.submit-btn:hover {
    background: #2a3a2e;
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    text-align: center;
    display: none;
}

.form-message.success {
    display: block;
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    display: block;
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Footer */
footer {
    background: var(--text-color);
    color: var(--bg-color);
    text-align: center;
    padding: 2rem;
    margin-top: 0;
}

footer a {
    color: var(--bg-color);
    text-decoration: none;
    font-weight: 500;
}

footer a:hover {
    text-decoration: underline;
}

/* Tablet */
@media (max-width: 1024px) {
    .talent-header h2 {
        font-size: 2.5rem;
    }
    
    .talent-images {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .logo img {
        height: 60px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .nav-container {
        flex-wrap: wrap;
    }
    
    .nav-left {
        order: 3;
        width: 100%;
        display: none;
        flex-direction: column;
        padding-top: 1rem;
        gap: 1rem;
    }
    
    .nav-left.active {
        display: flex;
    }
    
    .logo {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        order: 1;
        flex: 1;
    }
    
    .logo img {
        height: 50px;
    }
    
    .nav-right {
        order: 2;
        flex: 0;
    }
    
    .mobile-menu-toggle {
        display: flex;
        order: 4;
        margin-left: 1rem;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .talent-section {
        padding: 2rem 1rem;
    }
    
    .talent-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .talent-header h2 {
        font-size: 2rem;
    }
    
    .talent-images {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .contact-container {
        padding: 2rem 1.5rem;
    }
    
    .contact-container h1 {
        font-size: 2rem;
    }
    
    .modal {
        padding: 1rem;
    }
    
    .modal-nav {
        font-size: 2rem;
        padding: 0.5rem 1rem;
    }
    
    .modal-prev {
        left: 0.5rem;
    }
    
    .modal-next {
        right: 0.5rem;
    }
    
    .modal-thumbnails img {
        width: 70px;
        height: 70px;
    }
}