/* GLOBAL ----------------------------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #0b0b0d;
    color: #ddd;
    font-family: "Roboto", sans-serif;
}

img {
    width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

.gh-btn {
    background: #b30000;
    border: none;
    padding: 12px 26px;
    color: #fff;
    font-size: 15px;
    cursor: pointer;
    border-radius: 4px;
    transition: 0.2s ease;
}
.gh-btn:hover {
    background: #e60000;
}


/* HEADER ----------------------------------------- */
.gh-header {
    width: 100%;
    padding: 15px 40px;
    background: rgba(0,0,0,0.7);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.gh-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.gh-logo img {
    height: auto;
}

.gh-logo span {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1px;
}

.gh-nav a {
    margin-left: 25px;
    font-size: 14px;
    opacity: 0.8;
    transition: 0.2s;
}
.gh-nav a:hover {
    opacity: 1;
}


/* HERO ------------------------------------------- */
.gh-hero {
    position: relative;
    height: 70vh;
    background: url("images/mainhero.webp") center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gh-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
}

.gh-hero-content {
    position: relative;
    text-align: center;
    max-width: 700px;
    z-index: 2;
}

.gh-hero-content h1 {
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
}

.gh-hero-content p {
    font-size: 18px;
    opacity: 0.85;
    margin-bottom: 25px;
}


/* SECTIONS --------------------------------------- */
.gh-section {
    padding: 70px 40px;
}

.gh-section-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #fff;
}


/* FILM GRID -------------------------------------- */
.gh-film-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.gh-film-card {
    background: #141418;
    border-radius: 6px;
    overflow: hidden;
    transition: 0.3s ease;
}
.gh-film-card:hover {
    transform: translateY(-5px);
}

.gh-film-info {
    padding: 18px;
}

.gh-film-info h3 {
    color: #fff;
    margin-bottom: 8px;
}

.gh-film-info p {
    font-size: 14px;
    opacity: 0.75;
}


/* NEWS ------------------------------------------- */
.gh-news-list {
    display: grid;
    gap: 25px;
}

.gh-news-item {
    background: #131316;
    padding: 22px;
    border-left: 4px solid #b30000;
    border-radius: 4px;
}

.gh-news-item h3 {
    margin-bottom: 8px;
    color: #fff;
}

.gh-news-date {
    margin-top: 10px;
    font-size: 12px;
    opacity: 0.5;
}


/* FOOTER ----------------------------------------- */
.gh-footer {
    background: #050507;
    text-align: center;
    padding: 25px;
    font-size: 13px;
    opacity: 0.6;
}


/* ------------------------------------------
   SUBPAGE HERO  
------------------------------------------- */

.gh-subpage-hero {
    position: relative;
    height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gh-subpage-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.7);
}

.gh-subpage-title {
    position: relative;
    text-align: center;
    z-index: 2;
    padding: 0 20px;
}

.gh-subpage-title h1 {
    font-size: 42px;
    color: #fff;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.gh-subpage-tagline {
    font-size: 16px;
    opacity: 0.75;
}



/* ------------------------------------------
   MAIN TEXT AREA  
------------------------------------------- */

.gh-text-container {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 30px;
}

.gh-article h2 {
    font-size: 30px;
    margin-bottom: 20px;
    color: #fff;
}

.gh-article h3 {
    margin-top: 40px;
    margin-bottom: 15px;
    font-size: 22px;
    color: #e3e3e3;
}

.gh-article p {
    margin-bottom: 22px;
    line-height: 1.7;
    font-size: 16px;
    color: #cfcfcf;
}



/* QUOTES ----------------------------------- */

.gh-quote {
    margin: 30px 0;
    padding: 20px 25px;
    background: #16161a;
    border-left: 4px solid #b30000;
    font-style: italic;
    color: #f0f0f0;
    border-radius: 4px;
}



/* IMAGES INSIDE TEXT ------------------------ */

.gh-text-image {
    margin: 30px 0;
    text-align: center;
}

.gh-text-image img {
    max-width: 100%;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

.gh-caption {
    display: block;
    margin-top: 8px;
    font-size: 13px;
    opacity: 0.6;
}



/* LISTS ------------------------------------ */

.gh-article ul {
    margin: 20px 0 30px 20px;
    padding-left: 20px;
}

.gh-article ul li {
    margin-bottom: 10px;
    line-height: 1.6;
}



/* RESPONSIVE -------------------------------- */

@media (max-width: 768px) {
    .gh-subpage-title h1 {
        font-size: 32px;
    }

    .gh-text-container {
        margin: 40px auto;
    }
}



/* FORM INTRO ---------------------------------- */
.gh-form-intro {
    margin-bottom: 20px;
    opacity: 0.8;
}

/* DECADE BLOCK -------------------------------- */
.gh-decade-title {
    font-size: 22px;
    margin-top: 50px;
    margin-bottom: 15px;
    color: #fff;
}

.gh-decade-block {
    background: #111;
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 30px;
}

/* FILM ROW ----------------------------------- */
.gh-film-row {
    margin-bottom: 18px;
}

.gh-film-label {
    font-weight: 600;
    display: block;
    margin-bottom: 6px;
    color: #ddd;
}

.gh-radios {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.gh-radio input {
    display: none;
}

.gh-radio span {
    padding: 6px 10px;
    background: #222;
    border-radius: 4px;
    cursor: pointer;
    transition: 0.2s;
    font-size: 13px;
}

.gh-radio input:checked + span {
    background: #b30000;
    color: #fff;
}

/* MODAL ---------------------------------------- */
.gh-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.gh-modal-content {
    background: #181818;
    padding: 40px;
    border-radius: 6px;
    text-align: center;
    width: 300px;
    color: #fff;
    box-shadow: 0 0 20px rgba(0,0,0,0.6);
}

.gh-modal-content h2 {
    margin-bottom: 15px;
}
