@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400..900&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;         
    font-family: "Cinzel", serif;
    font-optical-sizing: auto;
    font-weight: bold;
    font-style: normal;
    scroll-behavior: smooth;
}

/* Accessibility: Screen reader only content */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.hero {
    height: 100vh;
    background-image: url('./tctbg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom right, rgba(233,193,131,0.45), rgba(25,36,46,0.65));
    z-index: 1;
}

.content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: rgb(193, 193, 197);
    max-width: 700px;
    padding: 20px;
}

.content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.content p {
    font-size: 1.2rem;
    line-height: 1.6;
}

/* Button styles (for when blog link is active) */
.btn {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 12px 30px;
    background-color: rgba(233,193,131,0.9);
    color: #19242e;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.btn:hover,
.btn:focus {
    background-color: rgba(233,193,131,1);
    outline: 2px solid white;
    outline-offset: 2px;
}

@media (max-width: 768px) {
    .content h2 {
        font-size: 2rem;
    }
    .content p {
        font-size: 1rem;
    }
}