/*
}

.movie-card {
    background: #181818;
    border-radius: 15px;
    overflow: hidden;
    transition: 0.3s;
}

.movie-card:hover {
    transform: translateY(-8px);
}

.movie-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.movie-info {
    padding: 15px;
}

.movie-title {
    font-size: 18px;
    font-weight: bold;
}

.rating {
    color: gold;
    margin-top: 5px;
}

.hero {
    height: 550px;
    position: relative;
    overflow: hidden;
}

.hero img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    filter: brightness(0.4);
}

.hero-content {
    position: absolute;
    bottom: 80px;
    left: 50px;
}

.hero-title {
    font-size: 52px;
    font-weight: bold;
}

.watch-btn {
    display: inline-block;
    background: #ff2e63;
    color: white;
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    margin-top: 20px;
}

/* Archive Hero */

.archive-hero {
    position: relative;
    height: 300px;
    background: linear-gradient(to right,#111,#1c1c1c);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.archive-hero .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 52px;
    margin-bottom: 10px;
}

.hero-content p {
    color: #ccc;
    font-size: 18px;
}

/* Toolbar */

.movie-toolbar {
    margin: 40px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.movie-search-form {
    display: flex;
    gap: 10px;
}

.movie-search-form input {
    width: 280px;
    padding: 12px 15px;
    border-radius: 8px;
    border: none;
    background: #1f1f1f;
    color: #fff;
}

.movie-search-form button {
    background: #ff2e63;
    border: none;
    color: white;
    padding: 12px 18px;
    border-radius: 8px;
    cursor: pointer;
}

/* Movie Grid */

.movie-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(220px,1fr));
    gap: 25px;
}

.movie-card {
    background: #181818;
    border-radius: 16px;
    overflow: hidden;
    transition: 0.3s ease;
    position: relative;
}

.movie-card:hover {
    transform: translateY(-8px);
}

.movie-thumb {
    position: relative;
    display: block;
}

.movie-thumb img {
    width: 100%;
    height: 330px;
    object-fit: cover;
}

.movie-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.65);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: 0.3s;
}

.movie-card:hover .movie-overlay {
    opacity: 1;
}

.movie-overlay span {
    background: #ff2e63;
    padding: 10px 18px;
    border-radius: 30px;
    color: white;
    font-weight: bold;
}

.movie-content {
    padding: 15px;
}

.movie-title {
    font-size: 18px;
    margin-bottom: 10px;
}

.movie-title a {
    color: white;
    text-decoration: none;
}

.movie-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    color: #bbb;
    font-size: 14px;
}

.movie-genres {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.movie-genres a {
    background: #242424;
    color: #ccc;
    padding: 6px 12px;
    border-radius: 30px;
    font-size: 12px;
    text-decoration: none;
}

/* Pagination */

.pagination-wrapper {
    margin: 50px 0;
    text-align: center;
}

.pagination-wrapper .page-numbers {
    display: inline-block;
    padding: 10px 16px;
    margin: 0 5px;
    background: #1f1f1f;
    color: white;
    border-radius: 8px;
    text-decoration: none;
}

.pagination-wrapper .current {
    background: #ff2e63;
}

/* Responsive */

@media(max-width:768px){

    .hero-content h1 {
        font-size: 34px;
    }

    .movie-search-form {
        width: 100%;
    }

    .movie-search-form input {
        width: 100%;
    }

    .movie-toolbar {
        flex-direction: column;
        align-items: stretch;
    }

}
/* =========================
   FOOTER
========================= */

.cinemohi-footer {
    background: #0b0b0b;
    color: #ffffff;
    margin-top: 60px;
}

.footer-top {
    padding: 70px 0 40px;
    border-top: 1px solid #1d1d1d;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(240px,1fr));
    gap: 40px;
}

.footer-widget h3 {
    margin-bottom: 20px;
    font-size: 22px;
}

.footer-logo {
    font-size: 34px;
    font-weight: bold;
    color: #ff2e63;
    margin-bottom: 20px;
}

.footer-description {
    color: #b5b5b5;
    line-height: 1.7;
}

.footer-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-widget ul li {
    margin-bottom: 12px;
}

.footer-widget ul li a {
    color: #cccccc;
    text-decoration: none;
    transition: 0.3s;
}

.footer-widget ul li a:hover {
    color: #ff2e63;
}

/* Newsletter */

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.newsletter-form input {
    padding: 14px;
    border: none;
    border-radius: 10px;
    background: #1b1b1b;
    color: white;
}

.newsletter-form button {
    padding: 14px;
    border: none;
    border-radius: 10px;
    background: #ff2e63;
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.newsletter-form button:hover {
    opacity: 0.9;
}

/* Bottom Footer */

.footer-bottom {
    border-top: 1px solid #1f1f1f;
    padding: 20px 0;
}

.footer-bottom-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.footer-bottom p {
    margin: 0;
    color: #999;
}

.footer-menu {
    display: flex;
    gap: 20px;
}

.footer-menu a {
    color: #999;
    text-decoration: none;
    transition: 0.3s;
}

.footer-menu a:hover {
    color: #ff2e63;
}

/* Responsive */

@media(max-width:768px){

    .footer-bottom-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .footer-menu {
        flex-wrap: wrap;
        justify-content: center;
    }

}
/* =========================
   FRONT PAGE
========================= */

.hero-section {
    position: relative;
}

.hero-slide {
    position: relative;
    min-height: 720px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0,0,0,0.9),
        rgba(0,0,0,0.4)
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
}

.hero-tag {
    display: inline-block;
    background: #ff2e63;
    color: white;
    padding: 8px 16px;
    border-radius: 30px;
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: bold;
}

.hero-title {
    font-size: 72px;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    color: #ddd;
    font-size: 16px;
}

.hero-description {
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 30px;
    font-size: 17px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.btn-watch,
.btn-trailer {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    transition: 0.3s;
    font-weight: bold;
}

.btn-watch {
    background: #ff2e63;
    color: white;
}

.btn-trailer {
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
}

.btn-watch:hover,
.btn-trailer:hover {
    transform: translateY(-3px);
}

/* Sections */

.movie-section {
    padding: 80px 0;
}

.dark-section {
    background: #111;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 35px;
}

.section-header h2 {
    font-size: 36px;
}

.section-header a {
    color: #ff2e63;
    text-decoration: none;
}

/* Movie Grid */

.movie-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(220px,1fr));
    gap: 25px;
}

.movie-card {
    background: #171717;
    border-radius: 18px;
    overflow: hidden;
    transition: 0.3s ease;
}

.movie-card:hover {
    transform: translateY(-8px);
}

.movie-thumb img {
    width: 100%;
    height: 330px;
    object-fit: cover;
}

.movie-info {
    padding: 16px;
}

.movie-title {
    margin-bottom: 12px;
    font-size: 18px;
}

.movie-title a {
    color: white;
    text-decoration: none;
}

.movie-meta {
    display: flex;
    justify-content: space-between;
    color: #bbb;
    font-size: 14px;
}

/* Genres */

.genre-section {
    padding: 80px 0;
}

.genre-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(180px,1fr));
    gap: 20px;
}

.genre-card {
    background: linear-gradient(135deg,#1d1d1d,#2a2a2a);
    padding: 40px 20px;
    border-radius: 18px;
    text-align: center;
    text-decoration: none;
    color: white;
    font-size: 20px;
    font-weight: bold;
    transition: 0.3s;
}

.genre-card:hover {
    background: #ff2e63;
    transform: translateY(-5px);
}

/* Responsive */

@media(max-width:768px){

    .hero-slide {
        min-height: 600px;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-buttons {
        flex-wrap: wrap;
    }

    .section-header h2 {
        font-size: 28px;
    }

}