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

body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background-color: #1a1a1a;
    color: #f5f5f5;
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

/* Social Bar */
.social-bar {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 20px;
    background-color: #0d0d0d;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.social-bar a {
    color: #888;
    text-decoration: none;
    font-size: 24px;
    transition: color 0.3s ease;
}

.social-bar a:hover {
    color: #fff;
}

/* Navigation */
.main-nav {
    display: flex;
    justify-content: center;
    padding: 20px 0;
    background-color: #0d0d0d;
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    z-index: 999;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0 20px;
    width: fit-content;
    margin: 0 auto;
}

.main-nav a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s ease;
    padding: 10px 15px;
    white-space: nowrap;
    flex-shrink: 0;
}

.main-nav a:hover {
    color: #fff;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    background-color: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 60px;
    max-width: 100%;
    overflow-x: hidden;
}

.hero-content {
    max-width: 1200px;
    width: 100%;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 4rem;
    letter-spacing: 10px;
    text-transform: uppercase;
    color: #fff;
    font-weight: 300;
    margin-bottom: 20px;
}

.subtitle {
    font-size: 1.2rem;
    color: #888;
    letter-spacing: 4px;
    text-transform: uppercase;
}

/* Actor Section */
.actor-section {
    padding: 100px 5%;
    background-color: #1a1a1a;
    max-width: 100%;
    overflow-x: hidden;
    margin-top: 100px;
}

.actor-section h2 {
    font-size: 2rem;
    margin-bottom: 60px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: #fff;
    text-align: center;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.main-photo .hero-image {
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.bio-content h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #fff;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.bio-text {
    color: #ccc;
    margin-bottom: 15px;
    font-size: 1rem;
    line-height: 1.8;
}

.roles-list, .theatre-list {
    list-style: none;
    margin-bottom: 20px;
}

.roles-list li, .theatre-list li {
    padding: 15px 0;
    border-bottom: 1px solid #333;
    color: #ccc;
    font-size: 0.95rem;
}

.roles-list li:before {
    content: "• ";
    color: #666;
}

.theatre-list li:before {
    content: "• ";
    color: #666;
}

.location-info {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #333;
}

.location-info p {
    color: #aaa;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.cv-button {
    display: inline-block;
    margin-top: 20px;
    padding: 15px 30px;
    background-color: transparent;
    border: 1px solid #fff;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.cv-button:hover {
    background-color: #fff;
    color: #1a1a1a;
}

/* Demo Reel Section */
.demo-reel-section {
    padding: 100px 5%;
    background-color: #0d0d0d;
    text-align: center;
    max-width: 100%;
    overflow-x: hidden;
    margin-top: 100px;
}

.demo-reel-section h2 {
    font-size: 2rem;
    margin-bottom: 60px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: #fff;
}

.video-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.video-item {
    flex: 1;
    min-width: 0;
    max-width: 45%;
    aspect-ratio: 16 / 9;
}

.video-thumbnail {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    transition: transform 0.3s ease;
}

.video-thumbnail:hover {
    transform: translateY(-5px);
}

.video-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    color: #fff;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.video-thumbnail:hover .play-button {
    opacity: 1;
}

/* Gallery Section */
.gallery-section {
    padding: 100px 5%;
    background-color: #1a1a1a;
    max-width: 100%;
    overflow-x: hidden;
    margin-top: 100px;
}

.gallery-section h2 {
    font-size: 2rem;
    margin-bottom: 60px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: #fff;
    text-align: center;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 4px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    cursor: pointer;
}

.gallery-img:hover {
    transform: scale(1.02);
    opacity: 0.95;
}

/* Contact Section */
.contact-section {
    padding: 100px 5%;
    background-color: #0d0d0d;
    text-align: center;
    max-width: 100%;
    overflow-x: hidden;
    margin-top: 100px;
}

.contact-section h2 {
    font-size: 2rem;
    margin-bottom: 60px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: #fff;
}

.contact-content {
    color: #aaa;
    font-size: 1.1rem;
    line-height: 2;
    max-width: 600px;
    margin: 0 auto;
}

/* Footer */
.footer {
    background-color: #0d0d0d;
    padding: 30px;
    text-align: center;
    color: #666;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .main-nav ul {
        gap: 5px;
        padding: 0 10px;
    }

    .main-nav a {
        font-size: 12px;
        padding: 8px 10px;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }

    .video-item {
        width: 100%;
        max-width: 100%;
    }

    .actor-section,
    .demo-reel-section,
    .gallery-section,
    .contact-section {
        padding: 80px 3%;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}
