* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: #000;
    color: #fff;
    overflow-x: hidden;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 2rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

nav.scrolled {
    padding: 1rem 4rem;
    background: rgba(0, 0, 0, 0.9);
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -1px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    transition: opacity 0.3s ease;
}

.nav-links a:hover {
    opacity: 0.6;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: #fff;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    line-height: 150px;
}

.hero-title {
    font-size: clamp(4rem, 15vw, 10rem);
    font-weight: 700;
    letter-spacing: -0.05em;
    position: relative;
    z-index: 10;
}

.hero-image {
    position: absolute;
    width: 300px;
    height: 200px;
    background-image: url(images/hero.webp);
    background-size: cover;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    transition: transform 0.1s ease-out;
}

.hero-image-2 {
    position: absolute;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #9395fb 0%, #57f5e5 100%);
    top: 30%;
    right: 15%;
    border-radius: 50%;
    z-index: 1;
    transition: transform 0.1s ease-out;
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 3rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
    animation: bounce 2s infinite;
}

.scroll-circle {
    width: 30px;
    height: 30px;
    border: 2px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-arrow {
    width: 8px;
    height: 8px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(45deg);
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* About Section */
.about {
    padding-left: 5%;
    padding-right: 5%;
    position: relative;
}

.about-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.about-image {
    width: 100%;
    height: 500px;
    background-image: url(images/about.webp);
    background-size: cover;
    position: relative;
    transition: transform 0.1s ease-out;
}

.about-text {
    margin-top: 2rem;
    font-size: 1rem;
    line-height: 1.8;
    opacity: 0.8;
    max-width: 600px;
}

/* Gallery Section */
.gallery {
    padding: 4rem;
    position: relative;
}

.gallery-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.gallery-item {
    height: 600px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-size: cover;
    
    position: relative;
    overflow: hidden;
}

.gallery-item:nth-child(1) {
    background-image: url(images/fasion.jpg);
}

.gallery-item:nth-child(2) {
    background-image: url(images/wedding.jpg);
}

.gallery-item:nth-child(3) {
    background-image: url(images/industry.jpg);
}

.gallery-item:nth-child(4) {
    background-image: url(images/entertainment.jpg);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-text {
    font-size: 2rem;
    font-weight: 700;
}

/* Brands Section */
.brands {
    padding: 8rem 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.6);
    border-bottom: 1px solid rgba(255, 255, 255, 0.6);
}

.brands-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: center;
}

.brand-item {
    height: 60px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 600;
    opacity: 0.6;
    transition: all 0.3s ease;
    text-align: center;
    padding: 8px 16px;
}

.brand-item:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.1);
}

/* Services Section */
.services {
    padding: 8rem 4rem;
}

.services-content {
    max-width: 1400px;
    margin: 0 auto;
}

.services-title {
    font-size: 1rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 3rem;
    opacity: 0.6;
}

.services-list {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.service-item {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 300;
    opacity: 0.4;
    transition: all 0.3s ease;
    cursor: pointer;
}

.service-item:hover {
    opacity: 1;
}

/* Portfolio Section */
.portfolio {
    padding: 4rem;
}

.portfolio-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.portfolio-item {
    height: 400px;
    position: relative;
    overflow: hidden;
    background-size: cover;
}

.portfolio-item:nth-child(1) {
    background-image: url(images/bilboard.jpg);
}

.portfolio-item:nth-child(2) {
    background-image: url(images/shirt.jpg);
}

.portfolio-item:nth-child(3) {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.portfolio-caption {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    font-size: 1.2rem;
    font-weight: 600;
}

/* Contact Section */
.contact {
    padding: 12rem 4rem;
    position: relative;
    overflow: hidden;
}

.contact-content {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.contact-title {
    font-size: clamp(4rem, 10vw, 8rem);
    font-weight: 700;
    margin-bottom: 2rem;
}

.contact-subtitle {
    font-size: 1.2rem;
    opacity: 0.6;
    margin-bottom: 3rem;
}

.contact-button {
    display: inline-block;
    padding: 1.5rem 3rem;
    background: #fff;
    color: #000;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.contact-button:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 40px rgba(255, 255, 255, 0.3);
}

.contact-bg {
    position: absolute;
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    opacity: 0.3;
    transition: transform 0.1s ease-out;
}

/* Footer */
footer {
    padding: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-links a {
    color: #fff;
    text-decoration: none;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.social-links a:hover {
    opacity: 1;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    nav {
        padding: 1.5rem 2rem;
    }

    nav.scrolled {
        padding: 1rem 2rem;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: #000;
        flex-direction: column;
        padding: 6rem 2rem;
        transition: right 0.3s ease;
    }

    .nav-links.active {
        right: 0;
    }

    .menu-toggle {
        display: flex;
        z-index: 1001;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .hero-title {
        font-size: clamp(3rem, 12vw, 6rem);
        z-index: 10;
        line-height: 50px;
    }

    .hero-image {
        width: 200px;
        height: 150px;
        z-index: 1;
    }

    .hero-image-2 {
        width: 100px;
        height: 100px;
        z-index: 1;
    }

    .about {
        padding: 4rem 2rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-image {
        height: 500px;
    }

    .gallery {
        padding: 2rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .gallery-item {
        height: 400px;
    }

    .brands {
        padding: 4rem 2rem;
    }

    .brands-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }

    .services {
        padding: 4rem 2rem;
    }

    .services-list {
        flex-direction: column;
        gap: 1rem;
    }

    .portfolio {
        padding: 2rem;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .portfolio-item {
        height: 300px;
    }

    .contact {
        padding: 6rem 2rem;
    }

    .contact-bg {
        width: 300px;
        height: 300px;
    }

    footer {
        padding: 3rem 2rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 770px) {
    .about-image {
        margin-top: 20em;
    }
}