/* GLOBAL RESET */
body {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
    background-color: #000;
    color: #fff;
    line-height: 1.7;
}

/* PAGE WRAPPER */
.page-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px 80px;
}

/* HEADINGS */
h1, h2, h3 {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

h1 {
    font-size: 2.6rem;
    margin-bottom: 10px;
    color: #fff;
}

h2 {
    font-size: 1.9rem;
    margin-top: 60px;
    margin-bottom: 20px;
    color: #d4af37; /* gold accent */
}

h3 {
    font-size: 1.3rem;
    margin-top: 30px;
    margin-bottom: 10px;
    color: #fff;
}

/* TEXT */
p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    color: #ddd;
}

ul.list {
    padding-left: 20px;
}

ul.list li {
    margin-bottom: 6px;
    color: #ccc;
}

/* SECTION SPACING */
.section {
    margin-bottom: 60px;
}

/* HERO TAGLINE */
.hero-tagline {
    font-style: italic;
    font-size: 1.2rem;
    color: #d4af37;
    margin-bottom: 20px;
}

/* CONTACT BOX */
.contact-block {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 25px;
    border-radius: 6px;
}

.contact-block a {
    color: #d4af37;
    text-decoration: none;
    font-weight: 600;
}

.contact-block strong {
    color: #fff;
}

/* LINKS */
a {
    color: #d4af37;
    text-decoration: none;
}

a:hover {
    opacity: 0.8;
}

/* VIDEO EMBED */
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 6px;
    margin-top: 20px;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* RESPONSIVE */
@media (min-width: 768px) {
    h1 { font-size: 3rem; }
    h2 { font-size: 2.2rem; }
    p { font-size: 1.15rem; }
}