/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Update color scheme and base styles */
:root {
    --primary: #2D3436;
    --accent: #00B894;
    --text: #2D3436;
    --light: #F5F6FA;
    --gradient: linear-gradient(135deg, #00B894, #00CEC9);
    --shadow: 0 10px 30px rgba(0,0,0,0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    /* Typography */
    --heading-font: 'Montserrat', sans-serif;
    --body-font: 'Plus Jakarta Sans', sans-serif;
}

body {
    font-family: var(--body-font);
    line-height: 1.6;
    color: var(--text);
    background: var(--light);
    transition: opacity 0.3s ease;
    letter-spacing: -0.01em;
    padding-top: 70px;
}

body.transitioning {
    cursor: wait;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 40px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    height: auto;
    min-height: 70px;
}

.logo {
    font-family: var(--heading-font);
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.nav-links {
    display: flex;
    align-items: center;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.nav-links a {
    margin-left: 30px;
    text-decoration: none;
    color: #333;
    transition: color 0.3s ease, transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    font-weight: 500;
    transform-origin: center;
    font-family: var(--heading-font);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    opacity: 0.7;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.nav-links a.active {
    opacity: 1;
    color: var(--accent);
}

.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover {
    opacity: 1;
    color: var(--accent);
}

/* Hide creative nav by default (acting page) */
.creative-nav {
    display: none;
}

.switch-mode {
    padding: 8px 16px;
    background: var(--gradient);
    color: white;
    border-radius: 20px;
    margin-left: 30px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                background 0.3s ease;
}

.switch-mode:hover {
    transform: scale(1.05);
}

/* Mobile navigation adjustments */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        padding: 20px;
        box-shadow: var(--shadow);
    }
}

/* Hero Section */
.hero {
    height: 100vh;
    background: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
}

.hero-content {
    max-width: 600px;
    z-index: 2;
}

.hero-content h1 {
    font-family: var(--heading-font);
    font-size: 5rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    margin-bottom: 30px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
}

.hero-content h2 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: var(--text);
    opacity: 0.8;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.hero-image {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transform: perspective(1000px) rotateY(-5deg);
    transition: var(--transition);
    height: 600px;
    width: 100%;
    z-index: 1;
}

.hero-image:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.hero-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient);
    opacity: 0.2;
    z-index: 1;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cta-button {
    display: inline-block;
    padding: 18px 40px;
    background: var(--gradient);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    box-shadow: 0 10px 20px rgba(0,184,148,0.3);
    transition: transform 0.3s ease, background 0.3s ease;
    font-family: var(--heading-font);
}

.cta-button:hover {
    transform: translateY(-3px);
    background: #0056b3;
}

/* About Section */
.about {
    padding: 100px 0;
    background: #f9f9f9;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.bio {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text);
}

.bio p {
    margin-bottom: 20px;
    opacity: 0.9;
}

.bio p:first-child {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--primary);
    opacity: 1;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.stat {
    text-align: center;
}

.number {
    font-family: var(--heading-font);
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}

/* Portfolio Section */
.portfolio {
    padding: 100px 0;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    background: white;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.9);
    transition: var(--transition);
}

.portfolio-item:hover img {
    filter: brightness(1.1);
    transform: scale(1.05);
}

.overlay {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    padding: 20px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    transition: bottom 0.3s ease;
}

.portfolio-item:hover .overlay {
    bottom: 0;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: #f9f9f9;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: grid;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 20px;
    border: 2px solid transparent;
    border-radius: 10px;
    font-size: 16px;
    background: white;
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--accent);
    outline: none;
    box-shadow: 0 0 0 4px rgba(0,184,148,0.1);
}

.submit-button {
    background: var(--gradient);
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 30px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s ease;
    font-family: var(--heading-font);
}

.submit-button:hover {
    background: #0056b3;
}

/* Footer */
footer {
    padding: 40px 0;
    background: #333;
    color: white;
    text-align: center;
}

.social-links {
    margin-bottom: 20px;
}

.social-links a {
    color: white;
    font-size: 24px;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #007bff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        padding: 15px 20px;
    }

    .nav-links {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .stats {
        grid-template-columns: 1fr;
    }

    .hero-image {
        max-width: 300px;
        height: 300px;
    }

    .bio {
        font-size: 1rem;
        text-align: left;
    }

    .bio p:first-child {
        font-size: 1.1rem;
    }
}

/* Media Gallery Styles */
.media {
    padding: 100px 0;
    background: #fff;
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 20px;
}

.photo-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 3/4;
    box-shadow: var(--shadow);
    transition: var(--transition);
    cursor: pointer;
}

.photo-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.photo-item:hover img {
    transform: scale(1.1);
}

/* Responsive adjustments for photo grid */
@media (max-width: 768px) {
    .photo-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
        padding: 10px;
    }
}

.media-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.tab-button {
    padding: 10px 30px;
    border: none;
    background: none;
    font-size: 18px;
    cursor: pointer;
    position: relative;
    color: #333;
    transition: color 0.3s ease;
}

.tab-button::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #007bff;
    transition: width 0.3s ease;
}

.tab-button.active::after {
    width: 100%;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* Skills Section Styles */
.skills {
    padding: 100px 0;
    background: #f9f9f9;
}

.cv-download {
    text-align: center;
    margin-bottom: 40px;
}

.cv-button {
    display: inline-flex;
    align-items: center;
    padding: 15px 30px;
    background: var(--gradient);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    font-family: var(--heading-font);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.cv-button i {
    margin-right: 10px;
    font-size: 1.2em;
}

.cv-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.cv-button:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.skill-category {
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.skill-category:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.skill-category h3 {
    margin-bottom: 20px;
    color: #007bff;
}

.skill-list {
    list-style: none;
}

.skill-list li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

/* Vitals Section */
.vitals {
    padding: 100px 0;
    background: #fff;
}

.vitals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.vitals-card {
    padding: 30px;
    background: #f9f9f9;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.vitals-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.vitals-card h3 {
    color: #007bff;
    margin-bottom: 20px;
    font-size: 1.5rem;
    font-family: var(--heading-font);
    font-weight: 600;
    letter-spacing: -0.01em;
}

.vitals-card ul {
    list-style: none;
    padding: 0;
}

.vitals-card ul li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.vitals-card ul li span {
    font-weight: bold;
    margin-right: 10px;
    color: #333;
}

.agent-info {
    margin-bottom: 30px;
}

.agent-info h4 {
    color: #333;
    margin-bottom: 10px;
}

.agent-info p {
    margin: 5px 0;
    color: #666;
}

/* Add responsive styles */
@media (max-width: 768px) {
    .vitals-grid {
        grid-template-columns: 1fr;
    }
}

/* Newsletter Section */
.newsletter {
    padding: 80px 0;
    background: var(--gradient);
    position: relative;
    overflow: hidden;
}

.newsletter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/pattern.svg');
    opacity: 0.1;
}

.newsletter p {
    margin: 20px 0;
    font-size: 1.1rem;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 15px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
}

.newsletter-form button {
    padding: 15px 30px;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.newsletter-form button:hover {
    background: #0056b3;
}

@media (max-width: 768px) {
    .newsletter-form {
        flex-direction: column;
    }
}

/* Update sections styling */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    font-family: var(--heading-font);
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--accent);
}

/* Add animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

.hero-content img {
    animation: float 6s ease-in-out infinite;
}

/* Add responsive styles for hero section */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-content {
        margin: 0 auto;
        padding: 0 20px;
    }

    .hero-image {
        max-width: 400px;
        height: 400px;
        margin: 0 auto;
    }

    .hero-content h1 {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-image {
        max-width: 300px;
        height: 300px;
    }
}

/* Add styles for new sections */
.acting {
    padding: 100px 0;
    background: var(--light);
}

.portfolio-categories {
    display: grid;
    gap: 60px;
}

.category h3 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--primary);
    position: relative;
}

.category h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--accent);
}

/* Services Section */
.services {
    padding: 100px 0;
    background: #fff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.service-card {
    padding: 40px;
    background: var(--light);
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    opacity: 0;
    transition: var(--transition);
    z-index: 0;
}

.service-card:hover::before {
    opacity: 0.05;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.service-card h3 {
    margin-bottom: 15px;
    color: var(--primary);
    font-size: 1.5rem;
    font-family: var(--heading-font);
    font-weight: 600;
    letter-spacing: -0.01em;
}

.service-card p {
    margin-bottom: 20px;
    color: var(--text);
    opacity: 0.8;
}

.service-link {
    display: inline-block;
    padding: 10px 20px;
    background: var(--gradient);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: var(--transition);
}

.service-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,184,148,0.2);
}

/* Update navigation for services */
.services-link {
    position: relative;
}

.services-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition);
}

.services-link:hover::after {
    width: 100%;
}

/* Add Page Transition Styles */
.page-transition {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    z-index: 9999;
    pointer-events: none;
    transition: transform 0.6s cubic-bezier(0.76, 0, 0.24, 1);
}

.page-transition.active {
    transform: translateX(100%);
}

/* Add transition classes for content */
.fade-out {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.fade-in {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.3s ease 0.3s, transform 0.3s ease 0.3s;
}

/* Add transition states for page content */
.nav-links.switching {
    opacity: 0;
    transform: translateY(-10px);
}

/* Showreel Section */
.showreel {
    padding: 120px 0;
    background: #000;
    color: white;
}

.showreel h2 {
    text-align: center;
    margin-bottom: 50px;
    color: white;
}

.showreel-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.showreel-info {
    text-align: center;
    margin-top: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.showreel-info h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--accent);
}

.showreel-info p {
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Responsive adjustments for showreel */
@media (max-width: 768px) {
    .showreel {
        padding: 80px 0;
    }

    .showreel-container {
        padding: 0 15px;
    }

    .showreel-info h3 {
        font-size: 1.3rem;
    }

    .showreel-info p {
        font-size: 1rem;
    }
}

/* Update section padding */
section {
    scroll-margin-top: 70px;
} 