:root {
    --primary-color: #FFAA00;
    --background-color: #121212;
    --text-color: #ffffff;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
}

/* Navigation */
header {
    padding: 2rem 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    background: rgba(18, 18, 18, 0.95);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    text-decoration: none;
    font-size: 1.8rem;
    font-weight: 600;
    display: flex;
    gap: 8px;
    align-items: baseline;
    position: relative;
    transition: all 0.3s ease;
}

.first-name {
    color: var(--text-color);
    letter-spacing: 1px;
    font-weight: 500;
}

.last-name {
    color: var(--primary-color);
    font-family: 'Dancing Script', cursive;
    font-size: 2.2rem;
    position: relative;
    text-shadow: 2px 2px 4px rgba(255, 170, 0, 0.2);
}

/* Hover effect */
.logo:hover {
    transform: translateY(-2px);
}

.logo::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
    opacity: 0.6;
}

.logo:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    margin-left: 3rem;
    transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding: 8rem 5% 4rem;
    align-items: center;
}

.hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
}

.hero-right {
    position: relative;
    height: 600px; /* Fixed height for the container */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Image container and image */
.image-container {
    width: 400px;
    height: 500px;
    position: relative;
    overflow: visible; /* Allows image to overflow */
    background: rgba(255, 170, 0, 0.1);
    border-radius: 30px;
}

.profile-image {
    position: absolute;
    width: 120%; /* Makes image overflow */
    height: 120%;
    top: -10%;
    right: -10%;
    background-image: url('your-image.jpg');
    background-size: cover;
    background-position: center;
    z-index: 2;
}


/* Smooth transitions */
.profile-image,
.profile-image::before,
.profile-image::after {
    transition: transform 0.3s ease;
}

.hero-content {
    max-width: 800px;
}

.intro-text h1 {
    font-size: 5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.intro-text p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
}

.primary-btn,
.secondary-btn {
    padding: 1rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    transition: var(--transition);
}

.primary-btn {
    background-color: var(--primary-color);
    color: var(--background-color);
}

.secondary-btn {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.primary-btn:hover {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.secondary-btn:hover {
    background-color: var(--primary-color);
    color: var(--background-color);
}

/* Stats */
.hero-stats {
    display: flex;
    gap: 4rem;
    margin-top: 4rem;
}

.stat {
    display: flex;
    flex-direction: column;
}

.number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

.label {
    color: rgba(255, 255, 255, 0.8);
}

/* Featured Work */
.featured-work {
    padding: 6rem 5%;
}

.featured-work h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.work-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 16/9;
}

.work-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.work-overlay {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    padding: 2rem;
    background: rgba(255, 170, 0, 0.9);
    transition: var(--transition);
}

.work-item:hover .work-overlay {
    bottom: 0;
}

.work-item:hover img {
    transform: scale(1.1);
}

/* Contact Section */
.contact {
    padding: 6rem 5%;
    text-align: center;
    background: linear-gradient(rgba(18, 18, 18, 0.9), rgba(18, 18, 18, 0.9)),
                url('contact-bg.jpg') center/cover;
}

.contact h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.contact p {
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.8);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.social-links a {
    color: var(--text-color);
    font-size: 1.5rem;
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--primary-color);
}

/* Footer */
footer {
    padding: 2rem 5%;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .image-container {
        width: 350px;
        height: 450px;
    }
}

@media (max-width: 768px) {
    header {
        padding: 1rem 5%;
    }

    nav {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links a {
        margin-left: 1.5rem;
        margin-right: 1.5rem;
    }

    .hero {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-left {
        order: 2;
    }

    .hero-right {
        order: 1;
        padding-top: 2rem;
        height: 500px;
    }

    .image-container {
        width: 300px;
        height: 400px;
    }

    .cta-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .work-grid {
        grid-template-columns: 1fr;
    }

    .logo {
        font-size: 1.5rem;
    }
    
    .last-name {
        font-size: 1.8rem;
    }
} 