@font-face {
  font-family: 'MailartRubberstamp-Regular';
  src: url('../fonts/MailartRubberstamp-Regular.otf') format('truetype');
  font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'MailartRubberstamp-Regular';
}

body {
    width: 100vw;
    height: 100vh;
    background: url("../images/UC_Hero-DC.webp") center/cover no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
    position: relative;
}

/* Overlay */
body::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.65);
    z-index: 0;
}

/* Top Bar */
.uc-topbar {
    background:#C4622D;
    color:#000;
    font-size:15.5px;
    text-transform:uppercase;
    text-align:center;
    padding:13px 0;
    letter-spacing:0.5px;
    border-bottom:1px solid #222;
    position:fixed;
    top:0;
    width:100%;
    z-index:10;
}

/* Main Wrapper */
.uc-wrapper {
    position: relative;
    z-index: 2;
    max-width: 90%;
}

/* Logo */
.uc-logo {
    width: 22rem;
    max-width: 35vw;
    margin-bottom: 2rem;
}

/* Heading */
.uc-heading {
    font-size: 2.3rem;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

/* Button Group */
.uc-btn-group {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Buttons */
.uc-btn {
    padding: 0.8rem 2rem;
    font-size: 1.1rem;
    font-weight: bold;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    width: 8rem;
}

.uc-yes,
.uc-no {
    background: #fff;
    color: #000;
}

/* Footer */
.uc-footer {
    position: absolute;
    bottom: 2vh;
    font-size: 0.9rem;
    text-align: center;
    width: 100%;
    color: #ddd;
    z-index: 2;
}

.uc-link {
    color:#fff;
    text-decoration:none;
}

/* Responsive */
@media (max-width: 600px) {
    .uc-heading { font-size: 1.6rem; }

    .uc-logo {
        max-width: 75vw;
    }

    .uc-btn {
        width: 7rem;
        font-size: 1rem;
    }
}