html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: "Helvetica Neue", Arial, sans-serif;
    background-color: #050509;
    color: #f5f5f5;
}

.view {
    min-height: 100vh;
    background-color: #050509;
}

.cinimatic-hero {
    position: relative;
    width: 100%;
    min-height: 80vh;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cinimatic-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.85));
}

.cinimatic-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 20px;
}

.cinimatic-hero-logo img {
    max-width: 220px;
    max-height: 220px;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.7);
}

.cinimatic-hero-text h1 {
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 36px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.cinimatic-hero-text p {
    margin: 0;
    font-size: 14px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #c0c0c0;
}

.cinimatic-main {
    background-color: #050509;
    padding: 40px 0 60px 0;
}

.cinimatic-contact-row {
    margin-bottom: 30px;
}

.cinimatic-contact-buttons {
    text-align: center;
}

.cinimatic-btn {
    display: inline-block;
    margin: 5px 8px;
    padding: 8px 18px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background-color: transparent;
    color: #f5f5f5;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.cinimatic-btn i {
    margin-right: 6px;
}

.cinimatic-btn:hover,
.cinimatic-btn:focus {
    color: #050509;
    background: #f5f5f5;
    text-decoration: none;
}

.cinimatic-section {
    margin-top: 30px;
}

.cinimatic-section-title {
    font-size: 20px;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    text-align: left;
    color: #f5f5f5;
}

.cinimatic-gallery ul.masonry {
    list-style: none;
    padding: 0;
    margin: 0 -5px;
}

.cinimatic-gallery .gallery-item {
    width: 25%;
    padding: 5px;
    float: left;
}

.cinimatic-gallery .img-pre-holder {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    background: #11131b;
}

.cinimatic-gallery .img-pre-holder img {
    width: 100%;
    display: block;
    transition: transform 0.6s ease, filter 0.6s ease, opacity 0.3s ease;
    transform-origin: center center;
    opacity: 0.9;
}

.cinimatic-gallery .img-pre-holder:hover img {
    transform: scale(1.06);
    filter: saturate(1.3);
    opacity: 1;
}

.cinimatic-albums {
    margin-top: 5px;
}

.cinimatic-album-list {
    list-style: none;
    padding: 0;
    margin: 0 -10px;
}

.cinimatic-album-item {
    width: 33.3333%;
    float: left;
    padding: 10px;
}

.cinimatic-album-item figure {
    margin: 0;
    border-radius: 6px;
    overflow: hidden;
    background: #11131b;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.75);
}

.cinimatic-album-item img {
    display: block;
    width: 100%;
}

.cinimatic-album-item figcaption {
    padding: 10px 12px 14px 12px;
    font-size: 14px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #f5f5f5;
}

.cinimatic-album-item a {
    color: inherit;
    text-decoration: none;
}

.cinimatic-album-item a:hover figcaption {
    color: #ffe9b0;
}

.cinimatic-album-item a:hover figure {
    transform: translateY(-3px);
    transition: transform 0.25s ease;
}

.cinimatic-album-item figure {
    transition: transform 0.25s ease;
}

.cinimatic-office .text-center {
    text-align: center;
}

@media (max-width: 991px) {
    .cinimatic-gallery .gallery-item {
        width: 33.3333%;
    }

    .cinimatic-album-item {
        width: 50%;
    }
}

@media (max-width: 767px) {
    .cinimatic-hero {
        min-height: 70vh;
    }

    .cinimatic-hero-logo img {
        max-width: 160px;
    }

    .cinimatic-hero-text h1 {
        font-size: 26px;
    }

    .cinimatic-hero-text p {
        font-size: 11px;
        letter-spacing: 0.18em;
    }

    .cinimatic-gallery .gallery-item {
        width: 50%;
    }

    .cinimatic-album-item {
        width: 100%;
    }

    .cinimatic-contact-buttons {
        padding: 0 10px;
    }
}

