/*------------------------------------------------------------------
[Main Stylesheet]

Author: AtypicalThemes
Template: STRIDER 2 - Video Game Studio

-------------------------------------------------------------------
Table of contents

    -General
    -Loading Screen
    -Cookie Management
    -Header & Navigation
    -Hero Section
    -Latest Game Section
    -Games Section
    -Team Section
    -Contact Section
    -Footer
    -Careers Page
    -Policy Pages
    -404 Page

Colors used:
    var(--vr-gold)
    var(--vr-red)
    var(--vr-gold-light)

-------------------------------------------------------------------*/

/* --------------------------- /////////// GENERAL /////////// --------------------------- */
/* -Resets- */
html, body { 
    color: #FFF;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url(../images/bg.webp);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    font-size: 16px;
    font-family: 'Varela Round', sans-serif;
    overflow-x: hidden;
}

.background-blur {
    background: transparent;
    backdrop-filter: blur(5px);
}

.highlight {
    color: var(--vr-gold);
}

.hidden {
    opacity: 0;
}

.visible {
    opacity: 1;
}

.socials {
    margin-top: 0.625rem;
}

.socials li {
    display: inline;
    margin-right: 0.9375rem;
}

.socials li i {
    transition: 0.3s;
}

/* -Link Styling- */
a {
    color: var(--vr-gold);
    font-family: 'Montserrat', sans-serif;
	text-decoration: none;
    transition: 0.3s;
}

a:visited {
    color: var(--vr-gold);
    text-decoration: none;
}

a:hover:not(.nav-link, .socials li a) {
	text-decoration: underline;
}

a:active {
    color: #FFF;
    text-decoration: underline;
}

a:focus {
    color: #FFF;
    text-decoration: none;
}

a:link {
    color: var(--vr-gold);
}

a.button, .modal a.button {
    color: #222;
}

a.button:hover, .modal a.button:hover {
    color: #FFF;
}

/* -Text Styling */
h1,h2,h3,h4,h5,h6 {
	font-family: 'Montserrat', sans-serif;
    font-weight: bold;
}

h1 {
    font-size: 3rem;
} 

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.8rem;
}

h4 {
    font-size: 1.4rem;
}

p {
    font-family: 'Varela Round', sans-serif;
    font-size: 1rem; /* 16px */
    padding: 0.3125rem 0.3125rem 0.3125rem 0;
    font-weight: 400;
}

.loader-logo, #main-logo {
    font-family: 'Raleway', sans-serif;
    font-weight: 200;
    letter-spacing: 0.5rem;
}

.strong {
    font-weight: bold;
}

.uppercase {
    text-transform: uppercase;
}

.capitalized {
    text-transform: capitalize;
}

.spaced {
    letter-spacing: 0.3125rem;
}

.subtle {
	color: #999;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.text-center {
    text-align: center;
}

ul {
    margin: 0.625rem 0;
    list-style: none;
    padding: 0;
}

/* -Margins and Floats- */
.floated-left {
     float: left;
}

.floated-right {
    float: right;
}

.inline {
	display: inline;
}

.tiny-margin {
    margin-bottom: 3rem;
}

.small-margin {
	margin-bottom: 6rem; 
}

.medium-margin {
	margin-bottom: 9rem; 
}

.large-margin {
	margin-bottom: 12rem; 
}

/* -hr- */
hr {
    width: 100%;
    height: 1px;
    color: #FFF;
    margin: 1rem auto;
}

/* -General Button Styles */
button {
    outline: none !important;
}

.button {
    height: auto;
    width: auto;
    margin: 1.25rem auto;
    padding: 0.625rem 0.9375rem;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: #222;
    border: none;
    border-radius: 5px;
    background: #FFF;
	display: inline-block;
    outline: none;
	transition: all 0.3s;
    cursor: pointer;
    text-align: center;
    text-transform: uppercase;
}

.button:visited {
    color: #222;
}

.button:hover {
    text-decoration: none !important;
    color: #FFF;
    background: var(--vr-gold);
}

.button:focus {
    color: #222;
}

.help-block {
    font-size: 0.75rem;
}

/* --------------------------- /////////// LOADING SCREEN /////////// --------------------------- */
/* -Loading Screen- */
#loader-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    height: 100%;
    width: 100%;
    position: fixed;
    left: 0;
    top: 0;
    text-align: center;
    z-index: 1050;
}

#loader-wrapper .flex-wrapper {
    width: 100%;
}

.loader-logo {
    color: #FFF;
    font-size: 3rem;
}

#progress {
    width: 0;
    height: 2px;
    background: var(--vr-gold);
}

.loader-text {
    color: #FFF;
    font-size: 1.5rem;
    margin-top: 1rem;
}

/* -Loading Screen Animation- */
.content-loaded {
    transform: translate3d(0px, -100%, 0px);
    transition: all 0.5s ease;
}

input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0 1000px #FFF inset !important;
    -webkit-text-fill-color: #000 !important;
}

/* --------------------------- /////////// COOKIE MANAGEMENT /////////// --------------------------- */
#policy-message, .policy-notice-bar {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #111;
    color: #fff;
    z-index: 1060;
    border-top: 1px solid var(--vr-gold);
    transform: translateY(100%);
    visibility: hidden;
    transition:
        transform 0.35s ease,
        visibility 0s linear 0.35s;
}

#policy-message {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    min-height: 60px;
    padding: 12px;
    text-align: center;
}

.policy-notice-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    height: auto;
    max-height: calc(100vh - 1rem);
    padding: 1rem;
    overflow-y: auto;
}

.policy-notice-bar a {
    color:var(--vr-gold);
}

.policy-notice-bar a:hover {
    text-decoration: underline;
}

#policy-message.open,
.policy-notice-bar.open {
    transform: translateY(0);
    visibility: visible;
    transition-delay: 0s;
}

.policy-notice-bar p, #policy-message p {
    margin-bottom: 0;
}

.policy-notice-bar > p {
    flex: 1 1 520px;
}

.policy-notice-bar .close, #close-policy-message {
    background-color: #FFF;
    color: #000;
    float: right;
}

.policy-bar-buttons {
    display: flex;
    flex: 0 0 auto;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.policy-notice-bar button {
    min-height: 44px;
    margin: 0;
}

.policy-notice-bar button, .policy-notice-bar .close, #close-policy-message {
    padding: 5px 10px;
    transition: 0.3s;
    border: none;
    border-radius: 2px;
}

.policy-notice-bar button:hover, .policy-notice-bar .close:hover, #close-policy-message:hover {
    background-color: var(--vr-gold);
    color: #FFF;
}

.policy-notice-bar button:focus-visible,
#close-policy-message:focus-visible {
    outline: 3px solid #FFF;
    outline-offset: 3px;
}

.checkbox-wrapper {
    margin: 1rem 0;
}

.checkbox {
    font-size: 0.875rem;  
}

#policy-modal {
    color: #FFF;
}


/* --------------------------- /////////// HEADER AND NAVIGATION /////////// --------------------------- */
#main-logo {
    color: #fff;
    font-size: 1.6rem;
    margin: 0 1.25rem;
    text-decoration: none;
    max-height: 100px;
    width: auto;
}

.navbar {
    transition: 0.3s;
}

.navbar-nav .nav-item a {
    color: #FFF;
    transition: all 0.3s;
}

.navbar-nav .nav-link:hover {
    color: var(--vr-gold);
}

.navbar-nav {
    margin-top: 0;
}

.fixed-top {
    z-index: 90;
}

.scrolled {
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 90;
}

/* Dropdown Menu */
.navbar-collapse .dropdown-menu {
	margin-top: 0.625rem;
	border: none;
	border-radius: 4px;
	background-color: rgba(0, 0, 0, 0.6); 
}

.navbar-collapse .dropdown-item {
	color: #fff;
	text-decoration: none;
}

.navbar-collapse .dropdown-item:hover {
	background: none; 
}

.navbar-collapse .dropdown-item .item-text {
	font-size: 0.875rem;
    transition: all 0.3s ease;
}

.navbar-collapse .dropdown-item:hover .item-text {
	letter-spacing: 2px;
}

.navbar-collapse .dropdown-items-divide-hr {
	width: 100%;
	height: 1px;
	margin: 0.25rem auto 0.25rem auto;
	border: none;
	background-color: #b5bcc4;
	opacity: 0.2;
}

/* Menu icon for mobile */
.navbar-toggler {
    border: none;
    cursor: pointer;
}
.navbar-toggler:focus {
    box-shadow: none;
}

#hamburger .icon-bar {
    display: block;
    height: 0.125rem;
    width: 1.5625rem;
    background: #FFF;
    margin: 0.4375rem 0;
    transition: .3s ease-in-out;
}

/* - Mobile menu animation - */
#hamburger .icon-bar:nth-child(1) {
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
}

#hamburger .icon-bar:nth-child(2) {
   -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
}

#hamburger .icon-bar:nth-child(3) {
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
}

#hamburger.open .icon-bar:nth-child(1) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

#hamburger.open .icon-bar:nth-child(2) {
    width: 0%;
    opacity: 0;
}

#hamburger.open .icon-bar:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}


/* --------------------------- /////////// HERO SECTION /////////// --------------------------- */
.hero-section {
    position: relative;
    min-height: 100vh;
    height: auto;
    width: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(../images/bg.webp);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0 ,0 , 0.4);
    z-index: 1;
}

#bgvid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-caption {
    position: absolute;
    height: 100vh;
    display: flex;
    align-items: center;
    z-index: 2;
}

.hero-caption h1 {
    font-family: 'Raleway', sans-serif;
    font-weight: 200;
    font-size: 4.5rem;
}

/* --------------------------- /////////// ABOUT SECTION /////////// --------------------------- */
.about-section img {
    border-radius: 10px;
}
/* --------------------------- /////////// GAMES SECTION /////////// --------------------------- */
.game-tags button {
    background: none;
    border: none;
    color: #FFF;
    font-size: 1.4rem;
    transition: 0.3s;
}

.game-tags button:hover {
    color: var(--vr-gold);
}

.game-tags li {
    position: relative;
    display: inline-block;
}

.divider {
    font-size: 1.4rem;
}

.game-genre, .rating, .price, .purchase-button {
    display: inline-block;
}

.rating {
    float: right;
}

.rating span {
    background-color: var(--vr-red);
    padding: 5px;
    border-radius: 5px;
    margin-right: 5px;
}

.rating li {
    display: inline;
}

.rating i {
    color: var(--vr-gold-light);
}

.game-card {
    margin-left: auto;
    margin-right: auto;
}

.game-card .col-lg-6:first-of-type {
    position: relative;
}

.game-card .button {
    margin-right: 1rem;
}

.gallery-icon{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 5rem;
    color: #FFF;
    opacity: 0;
    transition: 0.3s;
    z-index: 2;
}

.game-card img {
    box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.11);
    transition: 0.3s;
    border-radius: 10px;
}

.game-card img:hover {
    box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.10);
    filter: brightness(0.4);
}

.game-card a:hover .gallery-icon {
    opacity: 1;
}

.price {
    font-size: 1.5rem;
    vertical-align: bottom;
    margin-right: 1rem;
}

.discounted {
    text-decoration: line-through;
}

.discount-rate {
    background-color: var(--vr-red);
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 1.2rem;
    vertical-align: middle;
}

/* --------------------------- /////////// TEAM SECTION /////////// --------------------------- */
.team-card img {
    box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.11);
    margin-right: 1rem;
    transition: 0.3s;
    border-radius: 10px;
}

.team-card .equipment-card-image {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

.team-card .button {
    margin-top: 0.75rem;
}

.socials.team {
    margin-top: 1.5rem;
}

.socials.team li a {
    font-size: 1.2rem;
}

.socials.team li a i {
    transition: 0.6s;
}

.socials.team li a:hover i {
    transform: rotate(360deg);
}

/* --- /// Careers /// --- */
.job-card {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 6rem 5rem;
    border: 2px solid transparent;
    border-radius: 10px;
    transition: 0.3s;
}

.job-card:hover {
    border-color: var(--vr-gold);
}

.job-card img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    object-fit: cover;
    filter: grayscale(100%) brightness(0.4);
    transition: 0.3s;
    z-index: -1;
}

.job-card:hover img {
    filter: grayscale(0) brightness(0.4);
}

.job-card h4 {
    transform: translateY(30px);
    transition: 0.3s;
}

.job-card:hover h4 {
    transform: translateY(0);
}

.job-card button {
    transform: translateY(35px);
    opacity: 0;
    transition: 0.3s;
}


.job-card:hover button {
    transform: translateY(0);
    opacity: 1;
}

.modal-content {
    background-color: #070707;
}

.skill-list, .job-requirements {
    list-style: none;
    padding: 0;
}

.skill-list li {
    display: inline-block;
    border: 1px solid var(--vr-gold);
    border-radius: 20px;
    padding: 5px 15px 7px 15px;
    margin: 5px 5px;
}

.job-requirements li:before {
    content: "\f101";
    color: var(--vr-gold);
    display: inline-block;
    width: 1rem;
    margin-left: -10px;
    font-family: fontawesome;
}

.job-requirements li {
    margin: 1rem;
}

.job-requirements li p {
    padding: 0 10px;
    display: inline;
}

.modal-header button {
    background-color: #FFF;
    color: #000;
    border: none;
    border-radius: 5px;
    padding: 5px 10px;
}

.modal-footer .button {
    margin: 0 0 0 1rem;
}

/* --- /// Media /// --- */

.gallery-box .col-lg-4{
    overflow: hidden;
    border: 1px solid transparent;
}
.gallery-box img {
    width: 100%;
    transition: 0.5s;
}

.gallery-box img:hover {
    filter: brightness(0.5);
    transform: scale(1.2);
}

.vr-gallery-intro {
    max-width: 760px;
    margin-right: auto;
    margin-left: auto;
    line-height: 1.8;
}

.vr-gallery-item {
    position: relative;
    display: block;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    background: rgba(13, 16, 29, 0.88);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

.gallery-box .vr-gallery-item img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 5 / 3;
    object-fit: cover;
    transition: filter 280ms ease, transform 420ms ease;
}

.gallery-box .vr-gallery-item:hover img,
.gallery-box .vr-gallery-item:focus-visible img {
    filter: brightness(0.55);
    transform: scale(1.045);
}

.vr-gallery-zoom {
    position: absolute;
    top: 50%;
    left: 50%;
    display: grid;
    width: 54px;
    height: 54px;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.62);
    opacity: 0;
    place-items: center;
    pointer-events: none;
    transform: translate(-50%, -42%);
    transition: opacity 220ms ease, transform 220ms ease;
}

.vr-gallery-item:hover .vr-gallery-zoom,
.vr-gallery-item:focus-visible .vr-gallery-zoom {
    opacity: 1;
    transform: translate(-50%, -50%);
}

.vr-gallery-item:focus-visible {
    outline: 3px solid var(--vr-gold);
    outline-offset: 4px;
}

@media (prefers-reduced-motion: reduce) {
    .gallery-box .vr-gallery-item img,
    .vr-gallery-zoom {
        transition: none;
    }
}

/* Lightbox caption style */
.glightbox-clean .gslide-description {
    background-color: rgba(0, 0 ,0 , 0.5);
}
.glightbox-clean .gdesc-inner {
    background-color: transparent;
    padding: 1rem;
}

.glightbox-clean .gslide-title {
    font-size: 1.2rem;
    font-family: 'Montserrat', sans-serif;
    color: #FFF;
    margin: 0;
}

/* --------------------------- /////////// CONTACT SECTION /////////// --------------------------- */
#contactForm input, #contactForm textarea {
    background: transparent;
    border: none;
    border-bottom: 2px solid var(--vr-gold);
    width: 80%;
    margin-bottom: 1.5rem;
    color: #FFF;
}

#contactForm input:focus, #contactForm textarea:focus {
    outline: none;
    border-color: #FFF;
}

#contactForm textarea {
    margin-bottom: 0;
}

#contactForm input:-webkit-autofill,
#contactForm input:-webkit-autofill:hover, 
#contactForm input:-webkit-autofill:focus,
#contactForm textarea:-webkit-autofill,
#contactForm textarea:-webkit-autofill:hover,
#contactForm textarea:-webkit-autofill:focus,
#contactForm select:-webkit-autofill,
#contactForm select:-webkit-autofill:hover,
#contactForm select:-webkit-autofill:focus {
    box-shadow: none !important;
    transition: background-color 5000s ease-in-out 0s;
    -webkit-text-fill-color: #FFF !important;
}

.company-info {
    margin-top: 2rem;
}

.company-info li {
    margin-bottom: 0.75rem;
}

.company-info li i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.5rem;
    background: rgba(0, 0 ,0 , 0.5);
    width: 40px;
    height: 40px;
    border-radius: 5px;
}

#map-canvas {
    min-height: 500px;
    height: 100%;
    width: 100%;
    background-color: #222;
}

/* --------------------------- /////////// FOOTER /////////// --------------------------- */
#main-footer {
    width: 100%;
    height: auto;
    background-color: #0d0d0d;
    border-top: 2px solid var(--vr-gold);
    padding: 10px 0 5px 0;
}

#main-footer a {
    color: #FFF;
}

#main-footer a:hover {
    color: var(--vr-gold);
    text-decoration: none;
}

#main-footer .col-lg-3:last-of-type {
    display: flex;
    justify-content: end;
}

.footer-links li {
    display: inline;
    margin: 0 1rem;
}

.footer-links li button {
    background: transparent;
    border: none;
    color: inherit;
    font-family: 'Montserrat', sans-serif;
}

.footer-links li button:hover {
    color: var(--vr-gold);
}

#copyright {
    margin: 5px 0 10px 0;
}

/* --------------------------- /////////// POLICY PAGES /////////// --------------------------- */
.extra-page {
    font-size: 0.875rem;
    background: #0d0d0d;
}

.extra-page h3 {
    font-size: 1.5rem;
}

#pmsgSubmit {
    font-size: 1.5rem;
}

.extra-page a {
    color: var(--vr-gold);
}

.extra-page a:hover {
    text-decoration: underline;
}

.extra-page .hero-unit {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 25rem;
    height: auto;
    background: #222;
    border: none;
}

.extra-page h1 {
    font-size: 3.5rem;
}

.extra-page h2 {
    font-size: 2rem;
}

.text-container ul {
    list-style: circle;
    margin-left: 2.5rem;
}

.text-container ul li {
    margin: 0.3125rem 0;
}

.text-container ol li {
    margin: 0.3125rem 0;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    background: #171717;
    border: none;
    height: 3.75rem;
}

.breadcrumb {
    border: none;
    background: none;
    margin: 0;
    padding-left: 1rem;
}

.breadcrumb-item.active {
    color: #999;
}

.breadcrumb-item.active::before {
    color: #999;
}

#footer-extra {
    padding-top: 1.5625rem;
    border-top: 1px solid var(--vr-gold);
}

#footer-extra .socials li a {
    margin-bottom: 10px;
    color: #FFF;
    transition: 0.3s;
}

#footer-extra .socials li a:hover {
    text-decoration: none;
    color: var(--vr-gold);
}


/* --------------------------- /////////// RESPONSIVE STYLES /////////// --------------------------- */
@media (max-width : 1200px) {
    .policy-bar-buttons, .policy-notice-bar .close {
        margin-top: 10px;
    }
}

@media (max-width : 1024px) {
    .navbar {
        background-color: rgba(0, 0, 0, 0.9);
    }

    .navbar-nav {
        padding-left: 1rem;
    }

    .about-section {
        text-align: center;
    }

    .about-section .awards {
        margin-bottom: 2rem;
    }

    .game-card {
        width: 100%;
    }

    .game-card img {
        width: 100%;
        margin-bottom: 1.5rem;
    }

    .large-margin {
        margin-bottom: 9rem;
    }

    .team-card {
        text-align: center !important;
    }

    .team-card img {
        margin: 0 auto 1.5rem auto;
    }

    .order-xs-1 {
        order: 1;
    }

    .order-xs-2 {
        order: 2;
    }

    .careers .col-lg-4 {
        margin-bottom: 2rem;
    }

    .contact-box {
        text-align: center;
    }

    #main-footer {
        text-align: center;
    }

    .footer-links li {
        display: block;
    }

    #main-footer .col-lg-3:last-of-type {
        justify-content: center;
    }

    #footer-extra .col-md-4 {
        justify-content: center !important;
        text-align: center;
        padding-bottom: 2rem;
    }
}

@media (max-width : 768px) {
    .policy-notice-bar {
        align-items: stretch;
        flex-direction: column;
    }

    .policy-notice-bar > p {
        flex-basis: auto;
    }

    .policy-bar-buttons {
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
    }

    #policy-bar button {
        display: block;
        width: 100%;
        margin: 0;
    }

    #close-policy-bar {
        float: none;
    }

    #close-policy-message {
        float: none;
        margin-top: 10px;
    }

    .hero-caption h1 {
        font-size: 3rem;
    }

    .game-card {
        text-align: center;
    }

    .game-genre, .rating, .price {
        display: block;
        float: none;
    }

    .price {
        margin-right: 0;
    }

    .features-link {
        display: block;
        margin-top: 1rem;
    }
}

@media (max-width : 692px) {
    #policy-message {
        align-items: stretch;
        flex-direction: column;
    }

    .modal-header h2 {
        font-size: 1.5rem;
    }
}

@media (max-width : 480px) {

    .company-info li {
        text-align: left;
    }

    .company-info li i {
        display: none;
    }
}

/* ------------------------------------------------------------------
   VR LAND PREMIUM PALETTE
   Frontend-only overrides. The EasyAdmin styles are intentionally
   kept separate and are not affected by this layer.
------------------------------------------------------------------- */
:root {
    --vr-black: #050505;
    --vr-surface: #0d0d0f;
    --vr-surface-light: #17171a;
    --vr-burgundy: #2b0b15;
    --vr-gold: #d8a640;
    --vr-gold-light: #f0c66a;
    --vr-red: #d7193f;
    --vr-red-dark: #8f102a;
    --vr-red-soft: #7f1830;
    --vr-red-soft-alpha: rgba(127, 24, 48, 0.24);
    --vr-white: #ffffff;
    --vr-text-muted: #b8b8bd;
    --vr-border: rgba(216, 166, 64, 0.35);
    --bs-primary: var(--vr-gold);
    --bs-primary-rgb: 216, 166, 64;
    --bs-body-bg: var(--vr-black);
    --bs-body-color: var(--vr-white);
    --bs-border-color: rgba(216, 166, 64, 0.28);
}

html,
body {
    color: var(--vr-white);
    background-color: var(--vr-black);
    background-image:
        linear-gradient(135deg, rgba(5, 5, 5, 0.94), rgba(43, 11, 21, 0.72)),
        url(../images/bg.webp);
}

body,
.background-blur,
.extra-page {
    background-color: var(--vr-black);
}

.background-blur {
    background: linear-gradient(135deg, rgba(5, 5, 5, 0.28), rgba(43, 11, 21, 0.2));
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
label,
li,
dt,
dd {
    color: inherit;
}

.highlight,
a,
a:visited,
a:link {
    color: var(--vr-gold);
}

a:hover:not(.nav-link, .socials li a),
a:focus,
a:active {
    color: var(--vr-gold-light);
}

.subtle,
.text-muted,
small {
    color: var(--vr-text-muted) !important;
}

hr {
    color: var(--vr-border);
    border-color: var(--vr-border);
    opacity: 1;
}

/* Header and navigation */
#main-header,
#main-header .navbar,
.navbar.scrolled {
    background: rgba(5, 5, 5, 0.94);
}

#main-header .navbar {
    border-bottom: 1px solid var(--vr-border);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
}

#main-logo,
.loader-logo {
    color: var(--vr-gold) !important;
}

.navbar-nav .nav-item a,
.navbar-nav .nav-link {
    color: var(--vr-white);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus-visible,
.navbar-nav .nav-link.active,
.navbar-nav .nav-link[aria-current="page"] {
    color: var(--vr-gold-light);
    text-shadow: 0 0 12px rgba(216, 166, 64, 0.25);
}

.navbar-nav .nav-link.active::after,
.navbar-nav .nav-link[aria-current="page"]::after {
    display: block;
    height: 2px;
    margin-top: 5px;
    background: var(--vr-gold);
    content: "";
}

#hamburger .icon-bar {
    background: var(--vr-gold);
}

.navbar-collapse .dropdown-menu {
    border: 1px solid var(--vr-border);
    background: var(--vr-surface);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.45);
}

.navbar-collapse .dropdown-items-divide-hr {
    background-color: var(--vr-border);
}

/* Hero and surfaces */
.hero-overlay {
    background: linear-gradient(90deg, rgba(5, 5, 5, 0.82), rgba(43, 11, 21, 0.38) 58%, rgba(5, 5, 5, 0.56));
}

#progress {
    background: var(--vr-gold);
}

.hero-caption h1,
.hero-caption h2,
.extra-page h1,
.extra-page h2,
.extra-page h3 {
    color: var(--vr-white);
}

.hero-caption h1 .highlight {
    color: var(--vr-gold-light);
    text-shadow: 0 2px 18px rgba(5, 5, 5, 0.9);
}

.extra-page,
.text-container,
.game-card,
.job-card,
.kapcsolat-card,
.vr-gallery-item {
    background-color: var(--vr-surface);
}

/* Game descriptions are database content; keep their reading measure and
   paragraph rhythm consistent even when older records contain extra breaks. */
.jatek-description {
    max-width: 58rem;
    margin-inline: auto;
    overflow-wrap: anywhere;
    text-align: left;
}

.jatek-description > p,
.jatek-description > div,
.jatek-description > ul,
.jatek-description > ol {
    margin: 0 0 1.15rem;
}

.jatek-description > p:last-child,
.jatek-description > div:last-child,
.jatek-description > ul:last-child,
.jatek-description > ol:last-child {
    margin-bottom: 0;
}

.jatek-description h3 {
    margin: 2rem 0 .75rem;
    color: var(--vr-gold-light);
}

.equipment-highlights {
    display: grid;
    gap: .45rem;
    margin: 1.25rem 0;
    padding-left: 1.2rem;
    color: var(--vr-text-muted);
}

.equipment-highlights li::marker {
    color: var(--vr-gold);
}

@media (max-width: 575.98px) {
    .jatek-description {
        font-size: 1rem;
        line-height: 1.7;
    }
}

.extra-page {
    border-top: 1px solid rgba(216, 166, 64, 0.08);
}

.extra-page a,
.extra-page a:hover {
    color: var(--vr-gold);
}

.extra-page .hero-unit {
    border-color: var(--vr-border);
    background: var(--vr-surface-light);
}

/* The booking hero intentionally keeps the premium dark/burgundy treatment.
   Scope this override so policy and content pages retain their own surfaces. */
.page-booking #hero-section .hero-unit {
    background:
        linear-gradient(115deg, rgba(5, 5, 5, 0.94), rgba(43, 11, 21, 0.82)),
        url('../images/bg.webp') center / cover no-repeat;
    border-bottom: 1px solid var(--vr-border);
}

.game-card,
.job-card,
.kapcsolat-card,
.vr-gallery-item,
.gallery-box .col-lg-4 {
    border-color: var(--vr-border);
}

.game-card:hover,
.job-card:hover,
.kapcsolat-card:hover,
.vr-gallery-item:hover {
    border-color: var(--vr-gold);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.38), 0 0 22px rgba(216, 166, 64, 0.08);
}

.job-card img,
.job-card:hover img {
    filter: brightness(0.48);
}

.game-tags button {
    color: var(--vr-text-muted);
}

.game-tags button:hover,
.game-tags button.active {
    color: var(--vr-gold-light);
}

.rating span,
.discount-rate {
    background: var(--vr-red);
    color: var(--vr-white);
}

.rating i {
    color: var(--vr-gold-light);
}

.gallery-icon,
.company-info li i,
.jatek-property-icon,
.features-link i {
    color: var(--vr-gold);
}

.skill-list li {
    border-color: var(--vr-gold);
}

.job-requirements li::before {
    color: var(--vr-gold);
}

/* Buttons and states */
.button,
a.button,
.modal a.button,
.btn-primary {
    color: var(--vr-black) !important;
    border: 1px solid var(--vr-gold);
    background: var(--vr-gold);
    box-shadow: 0 7px 18px rgba(0, 0, 0, 0.24);
}

.button:hover,
.button:focus-visible,
a.button:hover,
.modal a.button:hover,
.btn-primary:hover,
.btn-primary:focus-visible {
    color: var(--vr-black) !important;
    border-color: var(--vr-gold-light);
    background: var(--vr-gold-light);
    box-shadow: 0 0 0 3px rgba(216, 166, 64, 0.2), 0 9px 24px rgba(0, 0, 0, 0.3);
}

.features-link,
.button.secondary,
.button.outline,
.booking-actions .features-link,
.booking-success-actions .features-link,
.booking-game-actions .features-link {
    color: var(--vr-gold) !important;
    border: 1px solid var(--vr-border);
    background: transparent;
}

.features-link:hover,
.button.secondary:hover,
.button.outline:hover,
.booking-actions .features-link:hover,
.booking-success-actions .features-link:hover,
.booking-game-actions .features-link:hover {
    color: var(--vr-gold-light) !important;
    border-color: var(--vr-gold);
    background: rgba(216, 166, 64, 0.1);
}

button:disabled,
.button:disabled,
.button[aria-disabled="true"] {
    color: var(--vr-text-muted) !important;
    border-color: rgba(184, 184, 189, 0.25) !important;
    background: var(--vr-surface-light) !important;
    cursor: not-allowed;
    opacity: 0.58;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--vr-gold-light);
    outline-offset: 3px;
}

/* Forms and contact */
input,
select,
textarea,
.form-control,
.form-select {
    color: var(--vr-white);
    border-color: rgba(216, 166, 64, 0.35);
    background-color: var(--vr-surface-light);
}

input::placeholder,
textarea::placeholder {
    color: rgba(184, 184, 189, 0.78);
}

input:focus,
select:focus,
textarea:focus,
.form-control:focus,
.form-select:focus {
    color: var(--vr-white);
    border-color: var(--vr-gold) !important;
    background-color: var(--vr-surface-light);
    box-shadow: 0 0 0 3px rgba(216, 166, 64, 0.15) !important;
}

select option {
    color: var(--vr-white);
    background: var(--vr-surface);
}

#contactForm input,
#contactForm textarea {
    border-bottom-color: var(--vr-gold);
    background: transparent;
}

#contactForm input:focus,
#contactForm textarea:focus {
    border-bottom-color: var(--vr-gold-light);
}

#map-canvas {
    background-color: var(--vr-surface-light);
}

.kapcsolat-page {
    --kapcsolat-border: var(--vr-border) !important;
    --kapcsolat-surface: var(--vr-surface) !important;
}

.kapcsolat-page .kapcsolat-map,
.kapcsolat-page .kapcsolat-map-placeholder {
    border-color: var(--vr-border);
    background-color: var(--vr-surface-light);
}

.kapcsolat-page .kapcsolat-map-placeholder i,
.kapcsolat-page .company-info li i {
    color: var(--vr-gold) !important;
}

.opening-hours {
    margin: 0 0 1.75rem;
}

.opening-hours li {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: .45rem 0;
    border-bottom: 1px solid var(--vr-border);
}

.opening-hours li:last-child {
    border-bottom: 0;
}

.opening-hours-inline {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .75rem 1.25rem;
    margin: 1.25rem 0 2rem;
}

.opening-hours-inline span {
    padding: .55rem .8rem;
    border: 1px solid var(--vr-border);
    background: var(--vr-surface);
}

.kapcsolat-card label {
    display: block;
    margin-bottom: .35rem;
    color: var(--vr-text-muted);
    font-size: .85rem;
}

.kapcsolat-card input,
.kapcsolat-card select,
.kapcsolat-card textarea {
    width: 100%;
}

.price-card {
    padding: 2rem;
    border: 1px solid var(--vr-border);
    background: var(--vr-surface);
}

.price-card h3 {
    min-height: 3.4rem;
}

.price-card .price {
    margin: 1.25rem 0;
    color: var(--vr-gold-light);
    font-size: 1.65rem;
}

.price-card-duration,
.price-card-guests {
    color: var(--vr-text-muted);
}

.price-group {
    margin-bottom: 2rem;
    padding: clamp(1.25rem, 3vw, 2.25rem);
    border: 1px solid var(--vr-border);
    background: var(--vr-surface);
}

.price-group-note {
    display: flex;
    align-items: flex-start;
    gap: .8rem;
    margin-top: 1rem;
    padding: 1rem 1.15rem;
    border-left: 2px solid var(--vr-gold);
    background: var(--vr-surface-light);
}

.price-group-note > i {
    flex: 0 0 auto;
    margin-top: .2rem;
    color: var(--vr-gold-light);
}

.price-group-note h3 {
    margin: 0 0 .35rem;
    color: var(--vr-white);
    font-size: 1rem;
}

.price-group-note p {
    max-width: 60rem;
    margin: 0;
    color: var(--vr-text-muted);
    line-height: 1.6;
}

.price-group-visual {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border: 1px solid rgba(216, 166, 64, .28);
    background: var(--vr-black);
}

.price-group-visual img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.price-group-header {
    display: grid;
    grid-template-columns: minmax(220px, 28%) minmax(0, 1fr);
    gap: clamp(1.25rem, 3vw, 2.5rem);
    align-items: center;
}

.price-group-intro {
    min-width: 0;
}

.price-group-kicker {
    margin: 0 0 .4rem;
    color: var(--vr-gold);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.price-group h2 {
    margin-bottom: .65rem;
}

.price-group-description {
    max-width: 58rem;
    margin-bottom: 1.25rem;
    color: var(--vr-text-muted);
}

.price-package-list {
    margin-top: clamp(1.5rem, 3vw, 2rem);
    border-top: 1px solid rgba(216, 166, 64, .32);
}

.price-package-heading,
.price-package-row {
    display: grid;
    grid-template-columns: minmax(14rem, 2fr) minmax(6rem, .85fr) minmax(5.5rem, .75fr) minmax(7rem, .9fr) 7rem;
    gap: 1rem;
    align-items: center;
}

.price-package-heading {
    padding: .75rem 0;
    color: var(--vr-text-muted);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.price-package-row {
    min-height: 4.8rem;
    padding: .85rem 0;
    border-top: 1px solid rgba(216, 166, 64, .14);
}

.price-package-row h3,
.price-package-row p {
    margin: 0;
}

.price-package-row h3 {
    font-size: 1rem;
}

.price-package-row p:not(.price) {
    color: var(--vr-text-muted);
    font-size: .9rem;
}

.price-package-row i {
    margin-right: .3rem;
    color: var(--vr-gold);
}

.price-package-row .price {
    color: var(--vr-gold-light);
    font-size: 1.15rem;
}

.price-package-row .button {
    margin: 0;
    padding: .55rem .7rem;
    font-size: .75rem;
    white-space: nowrap;
}

.about-equipment-visual,
.about-equipment-list {
    height: 100%;
}

.about-equipment-visual {
    overflow: hidden;
    border: 1px solid var(--vr-border);
    background: var(--vr-black);
}

.about-equipment-visual img {
    width: 100%;
    height: 100%;
    min-height: 28rem;
    display: block;
    object-fit: cover;
}

.about-equipment-list {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(1.5rem, 3vw, 2.5rem);
    border: 1px solid var(--vr-border);
    background: var(--vr-surface);
}

.about-equipment-list .company-info {
    width: 100%;
    margin: 1rem 0 0;
}

.about-equipment-list .company-info li {
    display: flex;
    align-items: center;
    gap: .85rem;
    width: 100%;
    margin: 0;
    padding: .75rem 0;
    border-bottom: 1px solid rgba(216, 166, 64, .2);
}

.about-equipment-list .company-info li:last-child {
    border-bottom: 0;
}

/* Rólunk oldal: a régi teljes képernyős hero helyett a többi tartalmi oldalhoz
   igazodó, kompakt nyitóblokk és kiegyensúlyozott bemutatkozó kártyák. */
.about-page .about-hero {
    min-height: clamp(18rem, 42vh, 28rem);
    height: auto;
    margin-bottom: 4rem;
    background:
        linear-gradient(90deg, rgba(5, 5, 5, .94), rgba(43, 11, 21, .55)),
        url('../images/bg.webp') center / cover no-repeat;
}

.about-page .about-hero .hero-caption {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-height: inherit;
    height: auto;
    padding: 8rem 0 4rem;
}

.about-page .about-hero-lead {
    max-width: 42rem;
    margin: .75rem 0 0;
    color: var(--vr-text-muted);
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.65;
}

.about-page .about-cta-group {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .75rem;
    margin-top: 1.25rem;
}

.about-page .about-cta-group .button {
    margin: 0;
}

.about-page .about-audience-grid {
    row-gap: 1rem;
    margin-top: 2rem;
}

.about-page .about-audience-grid > [class*="col-"] {
    display: flex;
}

.about-page .about-audience-card {
    width: 100%;
    padding: 1.5rem;
    border: 1px solid rgba(216, 166, 64, .24);
    background: rgba(5, 5, 5, .35);
}

.about-page .about-audience-card h3 {
    margin-bottom: .6rem;
    color: var(--vr-gold-light);
    font-size: 1.25rem;
}

.about-page .about-audience-card p {
    margin: 0;
    color: var(--vr-text-muted);
}

.about-page .about-equipment-links a {
    display: flex;
    align-items: center;
    gap: .85rem;
    width: 100%;
    color: var(--vr-white);
    text-decoration: none;
}

.about-page .about-equipment-links a:hover,
.about-page .about-equipment-links a:focus-visible {
    color: var(--vr-gold-light);
}

.about-page .about-equipment-links a i {
    flex: 0 0 2.25rem;
    margin-right: 0;
}

.about-page .about-next-step {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: clamp(1.5rem, 4vw, 3rem);
    border: 1px solid var(--vr-border);
    background: var(--vr-surface);
}

.about-page .about-next-step h2,
.about-page .about-next-step p {
    margin-bottom: .75rem;
}

.about-page main > section:first-child {
    margin-bottom: 5rem;
    padding: clamp(1.5rem, 4vw, 3rem);
    border: 1px solid var(--vr-border);
    background: var(--vr-surface);
}

.about-page main > section:first-child img {
    display: block;
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    border: 1px solid rgba(216, 166, 64, .2);
}

.about-page .about-equipment-grid {
    margin-bottom: 4rem;
}

.about-page .about-equipment-grid > [class*="col-"] {
    display: flex;
}

@media (max-width: 991.98px) {
    .about-page .about-hero .hero-caption {
        padding-top: 7rem;
    }
}

@media (max-width: 767.98px) {
    .about-page .about-hero {
        min-height: 16rem;
        margin-bottom: 3rem;
    }

    .about-page .about-hero .hero-caption {
        padding: 7rem 0 3rem;
    }

    .about-page main > section:first-child {
        margin-bottom: 3rem;
        padding: 1.25rem;
    }

    .about-page .about-equipment-grid > [class*="col-"] {
        display: block;
    }

    .about-page .about-equipment-visual img {
        aspect-ratio: 16 / 10;
    }

    .about-page .about-next-step {
        align-items: flex-start;
        flex-direction: column;
        gap: 1rem;
    }
}

/* Céges rendezvény landing: a meglévő VR LAND kártya- és CTA-rendszerre épül. */
.corporate-page .corporate-hero .hero-caption {
    align-items: flex-start;
}

.corporate-page .corporate-hero h1 {
    max-width: 54rem;
}

.corporate-hero-lead {
    max-width: 47rem;
    margin: 1rem 0 0;
    color: var(--vr-white);
    font-size: clamp(1.05rem, 2vw, 1.3rem);
    line-height: 1.6;
}

.corporate-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    margin-top: 1.35rem;
}

.corporate-cta-group .button {
    margin: 0;
}

.corporate-usp-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    margin: 0 auto clamp(3rem, 6vw, 5rem);
}

.corporate-usp-card {
    min-width: 0;
    padding: 1.35rem;
    border: 1px solid var(--vr-border);
    background: var(--vr-surface);
}

.corporate-usp-card i {
    margin-bottom: .9rem;
    color: var(--vr-gold);
    font-size: 1.5rem;
}

.corporate-usp-card h2 {
    margin: 0 0 .5rem;
    color: var(--vr-white);
    font-size: 1.05rem;
}

.corporate-usp-card p {
    margin: 0;
    color: var(--vr-text-muted);
    font-size: .94rem;
}

.corporate-event-grid .event-card h3 {
    margin: 0 0 .6rem;
    color: var(--vr-white);
    font-size: 1.2rem;
}

.corporate-device-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.corporate-device-card {
    display: flex;
    min-width: 0;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--vr-border);
    background: var(--vr-surface-light);
}

.corporate-device-card img {
    display: block;
    width: 100%;
    height: 13rem;
    object-fit: cover;
    object-position: center;
    border-bottom: 1px solid var(--vr-border);
}

.corporate-device-card > div {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 1.35rem;
}

.corporate-device-card h3 {
    margin: 0 0 .6rem;
    color: var(--vr-white);
    font-size: 1.2rem;
}

.corporate-device-card p {
    margin-bottom: 1rem;
    color: var(--vr-text-muted);
}

.corporate-device-card .features-link {
    margin-top: auto;
}

.corporate-compare {
    display: grid;
    grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
    gap: 1rem;
    align-items: stretch;
}

.corporate-compare-intro,
.corporate-compare-grid article {
    padding: clamp(1.35rem, 3vw, 2.25rem);
    border: 1px solid var(--vr-border);
    background: var(--vr-surface);
}

.corporate-compare-intro h2 {
    margin: .4rem 0 .8rem;
}

.corporate-compare-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.corporate-compare-grid article {
    background: var(--vr-surface-light);
}

.corporate-compare-grid .corporate-compare-highlight {
    border-color: rgba(215, 25, 63, .55);
    box-shadow: inset 0 0 0 1px rgba(215, 25, 63, .08);
}

.corporate-compare-grid h3 {
    margin: 0 0 .8rem;
    color: var(--vr-gold-light);
    font-size: 1.15rem;
}

.corporate-compare-grid ul {
    margin: 0;
    padding-left: 1.2rem;
    color: var(--vr-text-muted);
}

.corporate-compare-grid li + li {
    margin-top: .55rem;
}

.corporate-process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    margin: 2rem 0 0;
    padding: 0;
    list-style: none;
}

.corporate-process-grid li {
    min-width: 0;
    padding: 1.35rem;
    border: 1px solid var(--vr-border);
    background: var(--vr-surface-light);
}

.corporate-process-grid li > span {
    display: block;
    margin-bottom: .85rem;
    color: var(--vr-gold);
    font-size: 1.35rem;
    font-weight: 700;
}

.corporate-process-grid h3 {
    margin: 0 0 .55rem;
    color: var(--vr-white);
    font-size: 1.08rem;
}

.corporate-process-grid p {
    margin: 0;
    color: var(--vr-text-muted);
}

.corporate-location {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.corporate-location h2,
.corporate-location p {
    margin-bottom: .65rem;
}

.corporate-location .button {
    flex: 0 0 auto;
    margin: 0;
}

.corporate-final-cta .button {
    margin: .35rem;
}

@media (max-width: 1100px) {
    .corporate-usp-grid,
    .corporate-process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .corporate-device-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767.98px) {
    .corporate-hero-lead {
        font-size: 1rem;
    }

    .corporate-cta-group,
    .corporate-location {
        align-items: flex-start;
        flex-direction: column;
    }

    .corporate-cta-group .button,
    .corporate-location .button {
        width: 100%;
    }

    .corporate-usp-grid,
    .corporate-device-grid,
    .corporate-process-grid,
    .corporate-compare,
    .corporate-compare-grid {
        grid-template-columns: 1fr;
    }

    .corporate-device-card img {
        height: 12rem;
    }
}

/* -------------------------------------------------------------------------
   Unified frontend hero

   Every VR LAND page uses the same hero geometry and stacking order. Video
   remains the first layer when a page provides one; the clean bg.webp image
   is the CSS fallback, so a számozott feliratos grafika nem kerülhet ide.
   ------------------------------------------------------------------------- */
.site-hero {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    height: clamp(18rem, 42vh, 28rem);
    min-height: clamp(18rem, 42vh, 28rem);
    margin-bottom: 3rem !important;
    overflow: hidden;
    isolation: isolate;
    background:
        linear-gradient(90deg, rgba(5, 5, 5, .94), rgba(43, 11, 21, .58)),
        url('../images/bg.webp') center / cover no-repeat;
    background-attachment: scroll;
}

.site-hero > #bgvid {
    z-index: 0;
}

.site-hero > .hero-overlay {
    z-index: 1;
}

.site-hero > .container {
    position: relative;
    z-index: 2;
}

.site-hero .hero-caption {
    position: relative;
    display: flex;
    align-items: center;
    height: auto;
    min-height: clamp(18rem, 42vh, 28rem);
    padding: 5rem 0 3rem;
}

.site-hero .hero-caption h1 {
    max-width: 52rem;
    margin-bottom: .75rem;
    font-size: clamp(2.1rem, 5vw, 4rem);
    line-height: 1.08;
}

.site-hero.page-hero-compact {
    height: clamp(18rem, 42vh, 28rem);
    min-height: clamp(18rem, 42vh, 28rem);
    padding: 5rem 0 3rem;
}

.site-hero.page-hero-compact h1 {
    margin-top: .3rem;
}

/* The homepage intentionally keeps its cinematic full-screen opening. */
.skip-link {
    position: fixed;
    z-index: 2000;
    top: .75rem;
    left: .75rem;
    padding: .7rem 1rem;
    border: 2px solid var(--vr-gold);
    background: var(--vr-black);
    color: var(--vr-white);
    transform: translateY(-160%);
    transition: transform .15s ease;
}

.skip-link:focus {
    transform: translateY(0);
    color: var(--vr-white);
    outline: 3px solid var(--vr-gold-light);
    outline-offset: 3px;
}

#main-content:focus {
    outline: none;
}

.page-home #hero.site-hero {
    height: auto;
    min-height: 100vh;
    margin-bottom: 12rem !important;
}

.page-home #hero.site-hero .hero-caption {
    min-height: 100vh;
    padding: 7rem 0 5rem;
}

.page-home .hero-lead {
    max-width: 34rem;
    margin: 1rem 0 0;
    color: var(--vr-white);
    font-size: clamp(1.05rem, 2vw, 1.35rem);
    line-height: 1.5;
}

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    margin-top: 1.35rem;
}

.price-choice-links {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin: 1.5rem auto clamp(2rem, 5vw, 4rem);
    max-width: 72rem;
}

.price-choice-links a {
    display: grid;
    gap: .3rem;
    padding: 1rem 1.15rem;
    border: 1px solid var(--vr-border);
    background: var(--vr-surface);
    color: var(--vr-white);
    text-decoration: none;
}

.price-choice-links a:hover,
.price-choice-links a:focus-visible {
    border-color: var(--vr-gold);
    background: var(--vr-surface-light);
}

.price-choice-links strong {
    color: var(--vr-gold-light);
}

.price-choice-links span {
    color: var(--vr-text-muted);
    font-size: .92rem;
}

/* The games list and detail pages use their video/poster in the same frame. */
.jatekok-page #hero.site-hero,
.jatek-show-page #hero.site-hero,
.about-page #hero.site-hero {
    height: clamp(18rem, 42vh, 28rem);
    min-height: clamp(18rem, 42vh, 28rem);
}

.jatekok-page #hero.site-hero .hero-caption,
.jatek-show-page #hero.site-hero .hero-caption,
.about-page #hero.site-hero .hero-caption {
    min-height: clamp(18rem, 42vh, 28rem);
}

@media (max-width: 767.98px) {
    .site-hero,
    .site-hero.page-hero-compact,
    .jatekok-page #hero.site-hero,
    .jatek-show-page #hero.site-hero,
    .about-page #hero.site-hero {
        height: 16rem;
        min-height: 16rem;
        margin-bottom: 2rem !important;
        padding: 4.5rem 0 2.5rem;
    }

    .site-hero .hero-caption,
    .jatekok-page #hero.site-hero .hero-caption,
    .jatek-show-page #hero.site-hero .hero-caption,
    .about-page #hero.site-hero .hero-caption {
        min-height: 16rem;
        padding: 4.5rem 0 2.5rem;
    }

    .page-home #hero.site-hero {
        height: auto;
        min-height: 100svh;
        margin-bottom: 3rem !important;
    }

    .page-home #hero.site-hero .hero-caption {
        min-height: 100svh;
        padding: 6rem 0 3rem;
    }
}

@media (max-width: 991.98px) {
    .price-group-header {
        grid-template-columns: minmax(180px, 34%) minmax(0, 1fr);
    }

    .about-equipment-visual img {
        min-height: 0;
        aspect-ratio: 16 / 10;
    }
}

@media (max-width: 767.98px) {
    .price-group-header {
        grid-template-columns: 1fr;
    }

    .price-group-visual {
        aspect-ratio: 16 / 9;
    }

    .price-package-heading {
        display: none;
    }

    .price-package-row {
        grid-template-columns: minmax(0, 1fr) auto;
        gap: .35rem .75rem;
        padding: 1rem 0;
    }

    .price-package-row h3 {
        grid-column: 1 / -1;
    }

    .price-package-row p:not(.price) {
        font-size: .82rem;
    }

    .price-package-row .price {
        grid-column: 1;
        grid-row: 3;
    }

    .price-package-row .button {
        grid-column: 2;
        grid-row: 3;
        justify-self: end;
    }
}

.booking-calendar-day.is-closed {
    opacity: .3;
    cursor: not-allowed;
}

/* Cookie dialog and footer */
#policy-message,
.policy-notice-bar {
    color: var(--vr-white);
    border-top-color: var(--vr-gold);
    background-color: var(--vr-surface);
}

.policy-notice-bar a {
    color: var(--vr-gold);
}

.policy-notice-bar button,
.policy-notice-bar .close,
#close-policy-message,
.btn-secondary {
    color: var(--vr-white);
    border: 1px solid var(--vr-border);
    background: transparent;
}

.policy-notice-bar button:hover,
.policy-notice-bar .close:hover,
#close-policy-message:hover,
.btn-secondary:hover {
    color: var(--vr-black);
    border-color: var(--vr-gold);
    background: var(--vr-gold);
}

.modal-content {
    color: var(--vr-white);
    border: 1px solid var(--vr-border);
    background: var(--vr-surface);
}

.modal .btn-close {
    filter: invert(1);
    opacity: 0.86;
}

.modal-header button:not(.btn-close) {
    color: var(--vr-black);
    border-color: var(--vr-gold);
    background: var(--vr-gold);
}

.alert-danger,
.form-errors,
.invalid-feedback {
    color: var(--vr-white);
    border-color: rgba(215, 25, 63, 0.62);
    background: rgba(143, 16, 42, 0.24);
}

#main-footer {
    border-top-color: var(--vr-gold);
    background: var(--vr-black);
}

#main-footer a,
#footer-extra .socials li a {
    color: var(--vr-white);
}

#main-footer a:hover,
#footer-extra .socials li a:hover,
.footer-links li button:hover {
    color: var(--vr-gold-light);
}

.breadcrumb-nav {
    border: 1px solid rgba(216, 166, 64, 0.12);
    background: var(--vr-surface-light);
}

.breadcrumb-item.active,
.breadcrumb-item.active::before {
    color: var(--vr-text-muted);
}

#footer-extra {
    border-top-color: var(--vr-border);
}

/* Game detail page contains a small inline style block; these rules
   keep its visual accents on the central palette without changing markup. */
.jatek-show-page .jatek-property,
.jatek-show-page .jatek-cta {
    border-color: rgba(216, 166, 64, 0.22) !important;
}

.jatek-show-page .jatek-cta {
    background: var(--vr-surface);
}

.vr-gallery-item:focus-visible {
    outline-color: var(--vr-gold-light) !important;
}

.page-home #careers,
.page-home #contact {
    display: none !important;
}
/* Structured VR equipment/game metadata */
.equipment-limitations,
.jatek-limitations,
.booking-choice-limitations {
    margin: 0.75rem 0 1.25rem;
    padding-left: 1.15rem;
    color: var(--vr-text-muted, #b8b8bd);
    font-size: 0.92rem;
    line-height: 1.6;
}

.equipment-limitations li::marker,
.jatek-limitations li::marker,
.booking-choice-limitations li::marker {
    color: var(--vr-gold, #d8a640);
}

.jatek-limitations {
    padding: 1rem 1.25rem;
    border-left: 2px solid var(--vr-gold, #d8a640);
    background: rgba(216, 166, 64, 0.07);
}

.jatek-limitations h3 {
    margin: 0 0 0.35rem;
    color: var(--vr-white, #fff);
    font-size: 1rem;
}

.booking-choice-limitations {
    margin-bottom: 0;
    font-size: 0.82rem;
}

/* Package 3: compact, content-first landing pages and navigation. */
.page-hero-compact {
    display: flex;
    align-items: center;
    min-height: clamp(18rem, 42vh, 28rem);
    padding: 8rem 0 4rem;
    background:
        linear-gradient(90deg, rgba(5, 5, 5, .94), rgba(5, 5, 5, .62)),
        url('../images/bg.webp') center / cover no-repeat;
    border-bottom: 1px solid var(--vr-border);
}

.page-hero-compact h1 {
    max-width: 52rem;
    margin: .3rem 0 .8rem;
    color: var(--vr-white);
    font-size: clamp(2.1rem, 5vw, 4rem);
}

.page-hero-compact p:not(.page-kicker) {
    max-width: 42rem;
    margin: 0;
    color: var(--vr-text-muted);
    font-size: 1.12rem;
}

.page-kicker {
    margin: 0;
    color: var(--vr-gold);
    font-size: .76rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.arcade-intro,
.voucher-value-section,
.event-planning,
.cta-panel {
    padding: clamp(1.4rem, 4vw, 3rem);
    border: 1px solid var(--vr-border);
    background: var(--vr-surface);
}

/* Partner page: a clear, reusable information hierarchy for the technical
   partnership without competing with the booking CTA. */
.page-partners .partner-hero-lead {
    max-width: 42rem;
    margin: 1rem auto 0;
    color: var(--vr-white);
    font-size: clamp(1.05rem, 2vw, 1.35rem);
    line-height: 1.55;
}

.partner-page-content {
    display: grid;
    gap: clamp(2rem, 5vw, 4rem);
}

.partner-intro,
.partner-process {
    max-width: 58rem;
    margin-inline: auto;
}

.partner-brand-mark {
    display: inline-flex;
    min-height: 42px;
    margin: .25rem 0 1.25rem;
    align-items: center;
}

.partner-brand-mark img {
    width: 162px;
    height: 42px;
    object-fit: contain;
}

.partner-intro h2,
.partner-process h2,
.partner-section-heading h2 {
    margin-top: .45rem;
}

.partner-service-grid {
    display: grid;
    gap: 1.5rem;
}

.partner-section-heading {
    margin-bottom: 1.25rem;
    text-align: center;
}

.partner-service-card {
    padding: clamp(1.25rem, 3vw, 2rem);
    border: 1px solid var(--vr-border);
    border-radius: .25rem;
    background: var(--vr-surface);
}

.partner-service-card h3 {
    margin: 1rem 0 .65rem;
    color: var(--vr-white);
}

.partner-service-card p {
    margin-bottom: 0;
    color: var(--vr-text-muted);
}

.partner-service-card:hover,
.partner-service-card:focus-within {
    border-color: var(--vr-gold);
    box-shadow: 0 14px 34px rgba(0, 0, 0, .35), 0 0 22px rgba(216, 166, 64, .08);
}

.partner-process {
    display: grid;
    grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
    gap: 2rem;
    align-items: start;
}

.partner-process-list {
    display: grid;
    gap: 1rem;
    margin: 0;
    padding-left: 1.35rem;
    color: var(--vr-text-muted);
}

.partner-process-list li::marker {
    color: var(--vr-gold);
    font-weight: 700;
}

.partner-process-list strong {
    color: var(--vr-white);
}

.partner-cta-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .75rem;
    margin-top: 1.25rem;
}

.faq-list {
    max-width: 58rem;
    margin-inline: auto;
}

.faq-item {
    border-top: 1px solid var(--vr-border);
    background: transparent;
}

.faq-item:last-child {
    border-bottom: 1px solid var(--vr-border);
}

.faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.15rem 0;
    color: var(--vr-white);
    cursor: pointer;
    font-weight: 700;
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    flex: 0 0 auto;
    color: var(--vr-gold);
    content: '+';
    font-size: 1.35rem;
    line-height: 1;
}

.faq-item[open] summary::after {
    content: '−';
}

.faq-item summary:focus-visible {
    outline: 2px solid var(--vr-gold-light);
    outline-offset: .25rem;
}

.faq-answer {
    max-width: 52rem;
    padding: 0 2rem 1.15rem 0;
    color: var(--vr-text-muted);
}

.faq-answer p {
    margin: 0;
}

@media (max-width: 767.98px) {
    .partner-process {
        grid-template-columns: 1fr;
    }

    .partner-cta-actions .button {
        width: 100%;
    }

    .hero-cta-group .button {
        width: 100%;
    }

    .price-choice-links {
        grid-template-columns: 1fr;
    }

    .faq-item summary {
        align-items: flex-start;
    }
}

.arcade-intro h2,
.voucher-value-section h2,
.event-planning h2,
.cta-panel h2 {
    margin: .45rem 0 1rem;
}

.arcade-intro-actions,
.arcade-device-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .65rem;
    margin-top: 1.25rem;
}

.arcade-intro-actions .button,
.arcade-device-actions .button {
    margin: 0;
}

.arcade-device-grid {
    display: grid;
    gap: 1.5rem;
}

.arcade-device-card {
    display: grid;
    grid-template-columns: minmax(230px, 32%) minmax(0, 1fr);
    gap: clamp(1rem, 3vw, 2rem);
    align-items: stretch;
    padding: clamp(1rem, 2.5vw, 1.5rem);
    border: 1px solid var(--vr-border);
    background: var(--vr-surface);
}

.arcade-device-media {
    position: relative;
    width: 100%;
    min-height: clamp(11rem, 17vw, 16rem);
    height: 100%;
    align-self: stretch;
    overflow: hidden;
    isolation: isolate;
    border: 1px solid rgba(216, 166, 64, .28);
    background: var(--vr-black);
}

.arcade-device-media::before {
    position: absolute;
    inset: -12%;
    z-index: -1;
    background-image: var(--device-image);
    background-position: center;
    background-size: cover;
    filter: blur(18px) brightness(.42);
    transform: scale(1.08);
    content: '';
}

.arcade-device-media img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    background: transparent;
}

.arcade-device-copy {
    min-width: 0;
}

.arcade-device-card h2 {
    margin: .35rem 0 .7rem;
}

.arcade-device-lead {
    margin-bottom: 1rem;
    color: var(--vr-gold-light) !important;
    font-size: 1.08rem;
    font-weight: 600;
    line-height: 1.55;
}

.arcade-device-summary {
    margin-bottom: .55rem;
    color: var(--vr-white) !important;
    font-size: 1rem;
    font-weight: 600;
}

.arcade-device-card p:not(.page-kicker) {
    max-width: 48rem;
    color: var(--vr-text-muted);
}

.arcade-device-specs {
    display: grid;
    gap: .4rem;
    margin: 1.25rem 0 0;
    padding: .9rem 1rem;
    border-left: 2px solid var(--vr-gold);
    background: rgba(216, 166, 64, .07);
    color: var(--vr-text-muted);
    font-size: .9rem;
    line-height: 1.5;
}

.arcade-device-specs li::before {
    margin-right: .45rem;
    color: var(--vr-gold-light);
    content: '•';
}

.voucher-visual {
    overflow: hidden;
    border: 1px solid var(--vr-border);
}

.voucher-visual img {
    display: block;
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
}

.voucher-validity {
    color: var(--vr-gold-light);
    font-weight: 700;
}

.voucher-validity i,
.event-card > i {
    margin-right: .4rem;
    color: var(--vr-gold);
}

.voucher-steps,
.events-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.voucher-steps article,
.event-card {
    min-height: 100%;
    padding: 1.5rem;
    border: 1px solid var(--vr-border);
    background: var(--vr-surface-light);
}

.voucher-step-number {
    display: inline-block;
    margin-bottom: 1rem;
    color: var(--vr-gold);
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
}

.voucher-steps h3,
.event-card h2 {
    margin: 0 0 .6rem;
    font-size: 1.25rem;
}

.voucher-steps p,
.event-card p {
    margin-bottom: 1rem;
    color: var(--vr-text-muted);
}

.faq-section {
    max-width: 60rem;
    margin: 0 auto 5rem;
}

.faq-section h2 {
    margin-bottom: 1.25rem;
}

.faq-section details {
    padding: 1rem 0;
    border-top: 1px solid var(--vr-border);
}

.faq-section details:last-child {
    border-bottom: 1px solid var(--vr-border);
}

.faq-section summary {
    cursor: pointer;
    color: var(--vr-white);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.faq-section details p {
    max-width: 50rem;
    margin: .75rem 0 0;
    color: var(--vr-text-muted);
}

.event-card > i {
    display: block;
    margin-bottom: 1rem;
    font-size: 1.7rem;
}

.event-card .button {
    margin: .35rem 0 0;
}

.events-landing-intro {
    max-width: 58rem;
    margin-inline: auto;
    padding: clamp(1.4rem, 4vw, 3rem);
}

.events-landing-heading {
    max-width: 58rem;
    margin-inline: auto;
    padding: clamp(1.2rem, 3vw, 2rem);
}

.events-landing-heading p:last-child {
    margin-bottom: 0;
    color: var(--vr-text-muted);
}

.events-landing-split {
    margin-inline: 0;
}

.events-landing-split > [class*='col-'] {
    min-width: 0;
}

.events-landing-visual {
    overflow: hidden;
    border: 1px solid var(--vr-border);
    background: var(--vr-black);
}

.events-landing-visual img,
.event-image-card img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 5 / 3;
    object-fit: cover;
}

.event-image-card {
    display: flex;
    flex-direction: column;
}

.event-image-card img {
    margin: -1.5rem -1.5rem 1.25rem;
    width: calc(100% + 3rem);
    border-bottom: 1px solid var(--vr-border);
}

.event-image-card h3 {
    margin: 0 0 .6rem;
    color: var(--vr-white);
    font-size: 1.25rem;
}

.event-image-card .button {
    align-self: flex-start;
    margin-top: auto;
}

.event-card-featured {
    border-color: rgba(215, 25, 63, .55);
    box-shadow: inset 0 0 0 1px rgba(215, 25, 63, .08);
}

.event-planning {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.event-planning .button {
    flex: 0 0 auto;
    margin: 0;
}

.navbar-nav .dropdown-item.active,
.navbar-nav .dropdown-item:focus,
.navbar-nav .dropdown-item:hover {
    color: var(--vr-gold-light);
    background: rgba(216, 166, 64, .1);
}

@media (max-width: 991.98px) {
    .navbar-collapse {
        max-height: calc(100vh - 5rem);
        overflow-y: auto;
        padding: .75rem 0 1rem;
        background: rgba(5, 5, 5, .98);
    }

    .navbar-nav .dropdown-menu {
        margin: 0 0 .5rem;
        border: 0;
        border-left: 2px solid var(--vr-border);
        border-radius: 0;
        box-shadow: none;
    }

    .navbar-nav .dropdown-item {
        padding-left: 1.5rem;
    }

    .arcade-device-card {
        grid-template-columns: minmax(190px, 34%) minmax(0, 1fr);
    }
}

@media (max-width: 767.98px) {
    .page-hero-compact {
        min-height: 16rem;
        padding: 7rem 0 3rem;
    }

    .arcade-device-card,
    .event-planning {
        grid-template-columns: 1fr;
        display: grid;
    }

    .arcade-device-media {
        height: auto;
        min-height: 0;
        aspect-ratio: 16 / 9;
    }

    .arcade-device-media img {
        height: 100%;
    }

    .voucher-steps,
    .events-grid {
        grid-template-columns: 1fr;
    }

    .event-planning .button {
        justify-self: start;
    }

    .events-landing-intro,
    .events-landing-heading {
        padding: 1.25rem;
    }
}
.navbar-nav .dropdown-item.active,
.navbar-nav .dropdown-item:focus,
.navbar-nav .dropdown-item:hover {
    color: var(--vr-gold-light);
    background: rgba(216, 166, 64, .1);
}

/* A teljes navigáció egy sorban maradjon: 1200 px alatt a hamburgeres
   menü veszi át a helyet, nagyobb kijelzőn pedig a rövidített tipográfia
   biztosítja, hogy a menüpontok ne törjenek két sorba. */
@media (min-width: 1200px) {
    #main-logo {
        margin-inline: .8rem;
        font-size: 1.35rem;
        white-space: nowrap;
    }

    .navbar-nav {
        flex-wrap: nowrap;
    }

    .navbar-nav .nav-link {
        padding-inline: .38rem;
        font-size: .72rem;
        letter-spacing: .055em;
        white-space: nowrap;
    }
}

@media (max-width: 1199.98px) {
    .navbar-collapse {
        max-height: calc(100vh - 5rem);
        overflow-y: auto;
        padding: .75rem 0 1rem;
        background: rgba(5, 5, 5, .98);
    }

    .navbar-nav {
        gap: .2rem;
        padding-left: 0;
    }

    .navbar-nav .nav-link {
        padding: .7rem .85rem;
        white-space: nowrap;
    }

    .navbar-collapse .dropdown-menu {
        margin: 0 0 .5rem;
        border: 0;
        border-left: 2px solid var(--vr-border);
        border-radius: 0;
        box-shadow: none;
    }
}

/* A GYIK natív details elemei billentyűzettel és érintőképernyőn is
   egyértelműen nyithatók maradnak. */
.faq-section details summary {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.1rem 0;
    color: var(--vr-white);
    cursor: pointer;
    list-style: none;
    pointer-events: auto;
}

.faq-section details summary::-webkit-details-marker {
    display: none;
}

.faq-section details summary::after {
    flex: 0 0 auto;
    color: var(--vr-gold);
    content: '+';
    font-size: 1.35rem;
    line-height: 1;
}

.faq-section details[open] summary::after {
    content: '−';
}

.faq-section details summary:focus-visible {
    outline: 2px solid var(--vr-gold-light);
    outline-offset: .25rem;
}

.faq-section details p {
    padding: 0 2rem 1rem 0;
}

/* A céges rendezvény hősávjában a hosszabb magyar cím és lead saját
   magasságot kapjon. A közös, fix magasságú hero különben nagyobb asztali
   betűméretnél levághatja vagy a dobozon kívülre tolhatja a tartalmat. */
.corporate-page .corporate-hero {
    height: auto;
    min-height: clamp(22rem, 48vh, 34rem);
}

.corporate-page .corporate-hero > .container {
    min-width: 0;
}

.corporate-page .corporate-hero .hero-caption {
    width: 100%;
    min-height: 0;
    padding: 7rem 0 4rem;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.corporate-page .corporate-hero h1 {
    max-width: 50rem;
    font-size: clamp(2rem, 4.4vw, 3.8rem);
    overflow-wrap: break-word;
}

.corporate-page .corporate-hero-lead {
    overflow-wrap: break-word;
}

.corporate-page .corporate-usp-card,
.corporate-page .corporate-event-grid .event-card,
.corporate-page .corporate-device-card,
.corporate-page .corporate-process-grid li,
.corporate-page .corporate-compare-grid article {
    min-width: 0;
    overflow-wrap: break-word;
}

.corporate-gallery {
    min-width: 0;
}

.corporate-gallery-heading {
    max-width: 48rem;
    margin-bottom: 1.5rem;
}

.corporate-gallery-grid {
    display: grid;
    grid-template-columns: minmax(14rem, .78fr) minmax(0, 1.22fr);
    gap: 1rem;
    align-items: stretch;
}

.corporate-gallery-card {
    display: flex;
    min-width: 0;
    flex-direction: column;
    margin: 0;
    overflow: hidden;
    border: 1px solid var(--vr-border);
    background: var(--vr-surface);
}

.corporate-gallery-card img {
    display: block;
    width: 100%;
    height: clamp(20rem, 34vw, 30rem);
    background: var(--vr-black);
}

.corporate-gallery-card--portrait img {
    object-fit: contain;
}

.corporate-gallery-card--landscape img {
    object-fit: cover;
    object-position: center;
}

.corporate-gallery-card figcaption {
    margin-top: auto;
    padding: .85rem 1rem;
    border-top: 1px solid var(--vr-border);
    color: var(--vr-text-muted);
    font-size: .95rem;
}

@media (max-width: 767.98px) {
    .corporate-page .corporate-hero {
        min-height: 24rem;
    }

    .corporate-page .corporate-hero .hero-caption {
        padding: 6.5rem 0 3rem;
    }

    .corporate-page .corporate-hero h1 {
        font-size: clamp(1.9rem, 9vw, 2.7rem);
    }

    .corporate-gallery-grid {
        grid-template-columns: 1fr;
    }

    .corporate-gallery-card img {
        height: auto;
        max-height: 30rem;
    }
}
