/* Reset some basic styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* @font-face: Load the Trade Gothic Condensed font in multiple formats */
@font-face {
    font-family: 'Trade Gothic Condensed';
    src: url('fonts/TradeGothic-CondEighteen.woff2') format('woff2'),
         url('fonts/TradeGothic-CondEighteen.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

/* General body styling */
body {
    font-family: 'Trade Gothic Condensed', sans-serif; /* Use the correct font */
    background-color: #fff;
    color: black;
}

/* Full Bleed Image */
.hero {
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

/* When image is shown, set opacity to 1 */
.hero img.show {
    opacity: 1;
}

/* Links Section */
.links {
    margin-top: 40px;
    margin-bottom: 40px;
    padding: 20px;
    background-color: #fff;
    text-align: center;
    font-family: 'Trade Gothic Condensed', sans-serif;
}

.links p {
    font-size: 1.2rem; /* Main font size */
    margin-bottom: 10px;
    line-height: 1.5;
    color: black;
}

/* Additional Info Styling */
.additional-info {
    margin-top: 40px;
}

.coming-soon {
    font-size: 1.2rem; /* Same size as links text */
    font-weight: normal;
    margin-bottom: 10px;
    color: black;
    font-family: 'Trade Gothic Condensed', sans-serif; /* Apply font explicitly */
}

.copyright {
    font-size: 0.9rem !important; /* Increased size for better readability */
    font-weight: normal;
    color: black;
    margin-top: 10px;
    font-family: 'Trade Gothic Condensed', sans-serif; /* Apply font explicitly */
}

/* Style for links */
.links a {
    color: black;
    text-decoration: none;
    font-weight: normal;
    font-family: 'Trade Gothic Condensed', sans-serif; /* Ensure link text uses the font */
}

.links a:hover {
    color: #333;
}

/* Mobile Optimization */
@media (max-width: 768px) {
    .links p {
        font-size: 1rem; /* Smaller font size for mobile */
    }

    .coming-soon {
        font-size: 1rem; /* Adjust size for mobile */
    }

    .copyright {
        font-size: 0.65rem; /* Slightly adjusted smaller text size for mobile */
    }
}
