body {
font-family: 'Montserrat', sans-serif;
margin: 0;
}
.hero {
position: relative;
min-height: 100vh;
overflow: hidden;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
color: white;
}
.hero-video {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: cover;
z-index: 1;
}
.hero-overlay {
position: absolute;
width: 100%;
height: 100%;
background: rgba(0,0,0,0.35);
z-index: 2;
pointer-events: none;
}
.hero-content {
position: relative;
z-index: 4;
max-width: 700px;
padding: 20px;
}
.hero-logo img {
max-width: 360px;
margin-bottom: 20px;
z-index: 3;
}
.hero h1 {
font-size: clamp(2.5rem, 6vw, 5rem);
font-weight: 700;
letter-spacing: 2px;
text-transform: uppercase;
}
.hero-content p {
font-size: 1.2rem;
opacity: 0.85;
}
.about, .posts {
padding: 60px 20px;
}
.site-header {
position: fixed;
top: 20px;
left: 0;
width: 100%;
z-index: 1000;
padding: 0 20px;
box-sizing: border-box;
transition: transform 0.35s ease;
}
.site-header-inner {
max-width: 1280px;
margin: 0 auto;
display: flex;
align-items: center;
justify-content: space-between;
gap: 24px;
padding: 14px 22px;
border-radius: 999px;
background: rgba(255, 255, 255, 0.08);
border: 1px solid rgba(255, 255, 255, 0.14);
box-shadow:
0 8px 30px rgba(0, 0, 0, 0.22),
inset 0 1px 0 rgba(255, 255, 255, 0.15);
backdrop-filter: blur(16px) saturate(140%);
-webkit-backdrop-filter: blur(16px) saturate(140%);
position: relative;
overflow: hidden;
}
.site-header.header-hidden {
transform: translateY(-140%);
}
.site-branding a {
display: inline-flex;
align-items: center;
text-decoration: none;
flex: 0 0 auto;
}
.site-title {
color: white;
font-family: 'Montserrat', sans-serif;
font-size: 0.95rem;
letter-spacing: 0.28em;
text-transform: uppercase;
}
.site-nav {
flex: 1;
}
.main-menu {
list-style: none;
display: flex;
justify-content: space-evenly;
align-items: center;
gap: 20px;
margin: 0;
padding: 0;
width: 100%;
}
.main-menu li {
display: flex;
align-items: center;
justify-content: center;
}
.site-nav ul {
list-style: none;
display: flex;
align-items: center;
gap: 18px;
margin: 0;
padding: 0;
}
.site-nav a {
color: white;
text-decoration: none;
font-size: 0.85rem;
font-weight: 600;
letter-spacing: 0.08em;
text-transform: uppercase;
opacity: 0.92;
display: inline-block; transition: 
transform 0.25s ease,
opacity 0.25s ease;
}
.site-nav a:hover {
opacity: 1;
transform: scale(1.08) translateY(-2px);
}
.site-nav a::after {
content: "";
display: block;
height: 2px;
width: 0%;
background: white;
margin-top: 4px;
transition: width 0.25s ease;
}
.site-nav a:hover::after {
width: 100%;
}
.site-footer {
background: #000;
padding: 40px 20px 60px;
text-align: center;
}
.social-footer {
display: flex;
justify-content: center;
align-items: center;
gap: 28px;
}
.social-footer a {
display: inline-flex;
align-items: center;
justify-content: center;
width: 52px;
height: 52px;
border-radius: 50%;
background: rgba(255, 255, 255, 0.06);
transition: transform 0.25s ease, background 0.25s ease, opacity 0.25s ease;
}
.social-footer a:hover {
transform: translateY(-4px) scale(1.05);
background: rgba(255, 255, 255, 0.14);
}
.social-footer img {
width: 24px;
height: 24px;
object-fit: contain;
display: block;
}
.about {
background: #111;
color: white;
padding: 80px 20px;
text-align: center;
}
.about p {
max-width: 600px;
margin: 20px auto 0;
line-height: 1.6;
}
.cta {
background: #c30010;
color: black;
text-align: center;
padding: 80px 20px;
}
.cta-button {
display: inline-block;
margin-top: 20px;
padding: 15px 30px;
background: black;
color: white;
text-decoration: none;
font-weight: bold;
border-radius: 5px;
}
.cta-button:hover {
background: #333;
}
.contact-page {
background: #000;
color: white;
}
.contact-hero {
position: relative;
min-height: 55vh;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
padding: 120px 20px 80px;
overflow: hidden;
background: url(//www.theothervenue.co.za/wp-content/uploads/2026/04/contact-bg.jpg) center/cover no-repeat;
}
.contact-hero-overlay {
position: absolute;
inset: 0;
background: rgba(0, 0, 0, 0.55);
}
.contact-hero-content {
position: relative;
z-index: 2;
max-width: 700px;
}
.contact-hero h1 {
font-size: clamp(2.5rem, 6vw, 4.5rem);
text-transform: uppercase;
letter-spacing: 0.08em;
margin-bottom: 12px;
}
.contact-hero p {
font-size: 1.05rem;
opacity: 0.9;
}
.contact-section {
max-width: 1200px;
margin: 0 auto;
padding: 80px 20px;
display: grid;
grid-template-columns: 1fr 1.2fr;
gap: 40px;
align-items: start;
}
.contact-details h2 {
font-size: 2rem;
margin-bottom: 18px;
}
.contact-details p {
line-height: 1.7;
opacity: 0.9;
}
.contact-links {
margin-top: 28px;
}
.contact-form-wrap {
background: rgba(255, 255, 255, 0.06);
border: 1px solid rgba(255, 255, 255, 0.12);
border-radius: 24px;
padding: 30px;
box-shadow:
0 20px 50px rgba(0, 0, 0, 0.35),
inset 0 1px 0 rgba(255, 255, 255, 0.08);
backdrop-filter: blur(12px);
-webkit-backdrop-filter: blur(12px);
}
.contact-form-wrap .wpforms-container {
max-width: none;
margin: 0;
padding: 0;
}
.contact-form-wrap .wpforms-container input,
.contact-form-wrap .wpforms-container textarea {
color: white;
}
.contact-form-wrap .wpforms-container .wpforms-field-medium {
color: #fff;
background: rgba(255, 255, 255, 0.07);
}
.contact-form-wrap .wpforms-container textarea.wpforms-field-medium::placeholder {
color: rgba(255, 255, 255, 0.5);
}
.contact-form-wrap .wpforms-container textarea.wpforms-field-medium:focus {
color: #fff;
outline: none;
}
.contact-form-wrap .wpforms-field label {
color: white;
font-weight: 600;
margin-bottom: 8px;
}
.contact-form-wrap .wpforms-container .wpforms-field-name .wpforms-field-label,
.contact-form-wrap .wpforms-container .wpforms-field-name label,
.contact-form-wrap .wpforms-container .wpforms-field-label{
color: white;
}
.contact-form-wrap .wpforms-container .wpforms-field-name .wpforms-field-sublabel {
color: rgba(255, 255, 255, 0.6);
}
.contact-form-wrap .wpforms-field input,
.contact-form-wrap .wpforms-field textarea,
.contact-form-wrap .wpforms-field select {
width: 100%;
padding: 14px 16px;
font-size: 16px;
color: white;
background: rgba(255, 255, 255, 0.07);
border: 1px solid rgba(255, 255, 255, 0.15);
border-radius: 14px;
box-sizing: border-box;
}
.contact-form-wrap .wpforms-field input::placeholder,
.contact-form-wrap .wpforms-field textarea::placeholder {
color: rgba(255, 255, 255, 0.55);
}
.contact-form-wrap .wpforms-field textarea {
min-height: 160px;
resize: vertical;
color: white;
}
.contact-form-wrap .wpforms-field form input {
color: white;
}
.contact-form-wrap .wpforms-submit {
padding: 14px 28px;
background: white;
color: black;
border: none;
border-radius: 999px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.08em;
cursor: pointer;
transition: transform 0.25s ease, opacity 0.25s ease;
}
.contact-form-wrap .wpforms-submit:hover {
transform: translateY(-2px);
opacity: 0.9;
}
.events {
background: #000;
color: white;
padding: 80px 0;
overflow: hidden;
}
.events-header {
text-align: center;
margin-bottom: 30px;
padding: 0 20px;
}
.events h2 {
font-size: clamp(2rem, 4vw, 3.5rem);
text-transform: uppercase;
letter-spacing: 2px;
margin: 0;
}
.events-carousel {
width: 100%;
overflow-x: auto;
overflow-y: hidden;
position: relative;
padding: 20px 0;
scrollbar-width: thin;
cursor: grab;
-webkit-overflow-scrolling: touch;
scroll-behavior: smooth;
}
.events-carousel::before,
.events-carousel::after {
content: "";
position: absolute;
top: 0;
width: 120px;
height: 100%;
z-index: 30;
pointer-events: none;
}
.events-carousel:active {
cursor: grabbing;
}
.events-track {
display: flex;
align-items: stretch;
gap: 24px;
width: max-content;
}
.events-carousel::-webkit-scrollbar {
height: 10px;
}
.events-carousel::-webkit-scrollbar-track {
background: rgba(255, 255, 255, 0.08);
border-radius: 999px;
}
.events-carousel::-webkit-scrollbar-thumb {
background: rgba(255, 255, 255, 0.28);
border-radius: 999px;
}
.events-carousel::-webkit-scrollbar-thumb:hover {
background: rgba(255, 255, 255, 0.42);
}
.events-carousel:hover .events-track {
animation-play-state: paused;
}
.event-card {
position: relative;
flex: 0 0 calc((100vw - 48px) / 3);
max-width: 360px;
min-width: 280px;
border-radius: 18px;
overflow: visible;
background: #111;
z-index: 1;
}
.event-card:hover {
transform: scale(1.08);
z-index: 20;
}
.event-link {
display: block;
color: inherit;
text-decoration: none;
border-radius: 18px;
overflow: hidden;
position: relative;
}
.event-poster {
position: relative;
width: 100%;
padding-top: 177%;
overflow: hidden;
background: #111;
border-radius: 18px;
}
.event-poster img {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: cover;
display: block;
z-index: 2;
} .event-poster::after {
display: none;
}
.event-info {
position: absolute;
left: 0;
right: 0;
bottom: 0;
padding: 18px 16px;
z-index: 3;
text-align: left;
pointer-events: none;
}
.event-info {
position: absolute;
left: 0;
right: 0;
bottom: 0;
padding: 18px 16px;
z-index: 3;
text-align: left;
pointer-events: none;
}
.event-date {
display: inline-block;
margin: 0;
padding: 8px 12px;
font-size: 0.8rem;
letter-spacing: 2px;
text-transform: uppercase;
color: white;
background: rgba(0, 0, 0, 0.65);
border-radius: 999px;
backdrop-filter: blur(6px);
}
.custom-logo-link {
display: inline-block;
}
.custom-logo {
display: block;
height: 40px;
margin-top: 8px;
width: auto;
}
.contact-form-wrap .forminator-ui input,
.contact-form-wrap .forminator-ui textarea,
.contact-form-wrap .forminator-ui select {
width: 100%;
padding: 14px 16px;
font-size: 16px;
color: white;
background: rgba(255,255,255,0.07);
border: 1px solid rgba(255,255,255,0.15);
border-radius: 14px;
}
.contact-form-wrap .forminator-ui label {
color: white;
font-weight: 600;
margin-bottom: 6px;
}
.contact-form-wrap .forminator-button {
padding: 14px 28px;
background: white;
color: black;
border-radius: 999px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.08em;
transition: transform 0.25s ease;
}
.contact-form-wrap .forminator-button:hover {
transform: translateY(-2px);
}
.guest-ticket {
text-align: center;
color: white;
padding: 20px 0;
}
.ticket-box {
margin: 30px auto;
padding: 24px;
max-width: 420px;
border-radius: 24px;
background: rgba(255,255,255,0.08);
border: 1px solid rgba(255,255,255,0.12);
backdrop-filter: blur(12px);
}
.ticket-label {
font-size: 0.8rem;
letter-spacing: 0.2em;
text-transform: uppercase;
opacity: 0.6;
}
#ticket-code {
margin: 10px 0 0;
font-size: 2.5rem;
letter-spacing: 0.15em;
}
.ticket-note {
font-size: 0.9rem;
opacity: 0.7;
}
.about-page {
background: #000;
color: white;
}
.about-hero {
position: relative;
min-height: 50vh;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
padding: 120px 20px 80px;
overflow: hidden;
background: url(//www.theothervenue.co.za/wp-content/uploads/2026/04/about-bg.jpg) center/cover no-repeat;
}
.about-hero-overlay {
position: absolute;
inset: 0;
background: rgba(0, 0, 0, 0.5);
}
.about-hero-content {
position: relative;
z-index: 2;
max-width: 700px;
}
.about-hero h1 {
font-size: clamp(2.5rem, 6vw, 4.5rem);
text-transform: uppercase;
letter-spacing: 0.08em;
margin-bottom: 12px;
}
.about-gallery-section {
padding: 120px 10px 40px;
}
.about-gallery-header {
text-align: center;
margin-bottom: 40px;
}
.about-gallery-header h1 {
font-size: clamp(2rem, 5vw, 3.5rem);
text-transform: uppercase;
letter-spacing: 0.1em;
margin: 0;
}
.about-gallery-intro {
text-align: center;
margin-bottom: 40px;
}
.about-gallery-intro h2 {
font-size: 2rem;
text-transform: uppercase;
letter-spacing: 0.08em;
margin-bottom: 10px;
}
.about-gallery-content .wp-block-gallery.has-nested-images {
display: block;
columns: 3;
column-gap: 14px;
gap: 0;
}
.about-gallery-content .wp-block-gallery.has-nested-images figure.wp-block-image {
display: inline-block;
width: 100%;
margin: 0 0 14px 0;
break-inside: avoid;
background: transparent;
box-shadow: none;
border: 0;
outline: 0;
overflow: hidden;
border-radius: 0;
}
.about-gallery-content .wp-block-gallery.has-nested-images figure.wp-block-image a {
display: block;
}
.about-gallery-content .wp-block-gallery.has-nested-images figure.wp-block-image img {
display: block;
width: 100%;
height: auto;
margin: 0;
border: 0;
outline: 0;
box-shadow: none;
object-fit: contain;
transition: transform 0.3s ease, opacity 0.3s ease;
}
.about-gallery-content .wp-block-gallery.has-nested-images figure.wp-block-image:hover img {
transform: scale(1.02);
opacity: 0.95;
}
.about-gallery-content .wp-block-gallery.has-nested-images figcaption {
display: none;
}
.final-tiles-gallery {
background: #000;
}
.final-tiles-gallery .ftg-item {
border: none;
box-shadow: none;
}
.final-tiles-gallery img {
border-radius: 6px;
}
@media (max-width: 1024px) {
.about-gallery-content .wp-block-gallery.has-nested-images {
columns: 2;
}
}
@media (max-width: 700px) {
.about-gallery-content .wp-block-gallery.has-nested-images {
columns: 1;
}
}
@keyframes scrollEvents {
from {
transform: translateX(0);
}
to {
transform: translateX(-50%);
}
} @media (max-width: 1024px) {
.event-card {
flex: 0 0 320px;
}
} @media (max-width: 767px) {
.event-card {
flex: 0 0 260px;
}
.events-track {
gap: 16px;
animation: scrollEvents 24s linear infinite;
}
}
@media (max-width: 900px) {
.site-header {
top: 12px;
padding: 0 12px;
}
.site-header-inner {
gap: 16px;
padding: 12px 16px;
}
.main-menu {
justify-content: space-between;
gap: 12px;
}
.site-nav ul {
gap: 12px;
flex-wrap: wrap;
justify-content: flex-end;
}
.site-nav a {
font-size: 0.72rem;
}
.custom-logo {
height: 30px;
}
.contact-section {
grid-template-columns: 1fr;
gap: 28px;
}
.contact-hero {
min-height: 45vh;
padding: 110px 20px 60px;
}
.contact-form-wrap {
padding: 22px;
}
}