* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

body {
    background-color: #DB0251;
    color: #FFFFFF;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.navbar {
    background-color: rgba(219, 2, 81, 0.95);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 70px;
}

.contact-link {
    color: #DB0251;
    background-color: #FFFFFF;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 12px 24px;
    border-radius: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.contact-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    background-color: #F0F0F0;
}

.hero {
    text-align: center;
    margin: 100px auto 120px;
    max-width: 900px;
}

.hero h1 {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.1;
    letter-spacing: -1px;
}

.hero p {
    font-size: 20px;
    font-weight: 300;
    opacity: 0.9;
    line-height: 1.8;
}

.work-category {
    margin-bottom: 120px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.category-header {
    margin-bottom: 50px;
    max-width: 700px;
}

.category-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-block;
}

.category-desc {
    font-size: 16px;
    opacity: 0.8;
    font-weight: 300;
}

.gallery {
    display: grid;
    gap: 40px;
}

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

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

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

.iframe-container {
    position: relative;
    width: 100%;
    background-color: #FFFFFF;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.5s ease;
}

.iframe-container:hover {
    transform: scale(1.03) translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    z-index: 10;
}

.iframe-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.portrait {
    padding-bottom: 177.77%;
}

.landscape {
    padding-bottom: 56.25%;
}

.insta {
    padding-bottom: 120%;
}

footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    padding: 40px 0;
    margin-top: 80px;
}

.footer-content p {
    font-size: 14px;
    opacity: 0.6;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-load {
    animation: fadeInUp 1s ease-out forwards;
}

.animate-on-load-delay-1 {
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.3s forwards;
}

.animate-on-load-delay-2 {
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.6s forwards;
}

.animate-on-load-delay-3 {
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.9s forwards;
}

.animate-on-load-delay-4 {
    opacity: 0;
    animation: fadeInUp 1s ease-out 1.2s forwards;
}

@media (max-width: 768px) {
    .grid-landscape {
        grid-template-columns: 1fr;
    }
    
    .hero h1 {
        font-size: 38px;
    }
    
    .hero {
        margin: 60px auto 80px;
    }
    
    .contact-link {
        padding: 8px 16px;
        font-size: 12px;
    }
}