:root {
    --primary-gold: #c5a059;
    --deep-maroon: #630000;
    --matte-black: #0a0a0a;
    --soft-white: #f8f9fa;
    --gold-glow: rgba(197, 160, 89, 0.3);
}

body {
    background-color: var(--matte-black);
    color: var(--soft-white);
    font-family: 'Lato', sans-serif;
    line-height: 1.8;
    overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #050505;
}

::-webkit-scrollbar-thumb {
    background: var(--deep-maroon);
    border-radius: 10px;
}

h1,
h2,
h3 {
    font-family: 'Cinzel', serif;
    letter-spacing: 3px;
    text-transform: uppercase;
}

/* Header / Hero */
.hero-cinema {
    height: 60vh;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.8)), url('cinema-hero.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-bottom: 2px solid var(--deep-maroon);
}

.hero-subtext {
    letter-spacing: 6px;
}

/* Section Spacing */
.section-padding {
    padding: 100px 0;
}

.gold-text {
    color: var(--primary-gold);
}

/* Video Gallery Styling */
.video-container-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 4px;
    background: #000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.video-wrapper:hover {
    transform: translateY(-5px);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.small-video-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.passion-box {
    background: rgba(255, 255, 255, 0.02);
    border-left: 3px solid var(--primary-gold);
    padding: 40px;
    margin: 40px 0;
}

/* Buttons */
.btn {
    background: linear-gradient(45deg, var(--deep-maroon), #800000);
    color: white;
    border: none;
    padding: 14px 45px;
    font-size: 0.8rem;
    letter-spacing: 3px;
    font-weight: 700;
    border-radius: 2px;
    transition: 0.5s;
    box-shadow: 0 10px 30px rgba(99, 0, 0, 0.3);
    text-transform: uppercase;
}

.btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(99, 0, 0, 0.5);
    color: white;
    background: linear-gradient(45deg, #800000, var(--deep-maroon));
}

/* Connect Section */
#connect {
    background: rgba(197, 160, 89, 0.02);
    border-top: 1px solid rgba(197, 160, 89, 0.05);
}

.connect-inner {
    padding: 3rem 0;
}

.connect-heading {
    color: var(--primary-gold);
}

.connect-divider {
    border-top: 1px solid #6c757d;
    /* Bootstrap secondary color */
    padding-top: 3rem;
    margin-top: 3rem;
}

.society-logo {
    max-width: 180px;
    height: auto;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.1));
}

/* Forms */
.form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(197, 160, 89, 0.2);
    color: rgb(63, 63, 63) !important;
    border-radius: 0;
    padding: 12px;
    margin-bottom: 20px;
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-gold);
    box-shadow: none;
}

.form-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    display: block;
}

/* Social Icons */
.social-icons a {
    color: var(--primary-gold);
    font-size: 1.3rem;
    margin: 0 20px;
    transition: 0.4s ease;
    opacity: 0.7;
    text-decoration: none;
}

.social-icons a:first-child {
    margin-left: 0;
}

.social-icons a:hover {
    color: white;
    opacity: 1;
    transform: translateY(-3px);
}

.solskin-text {
    color: var(--primary-gold);
    letter-spacing: 2px;
}

@media (max-width: 768px) {
            .small-video-grid {
                grid-template-columns: 1fr;
            }
        }