/*
File: domCoverStyles.css
Date: 2026-02-12
Author: klp
Workspace: DominoSagaTNT2026-02-12-Stg1
Purpose: Cover for DominoSagaTNT2026-02-12-Stg1

*/

div#heroDiv{
    background: 
        radial-gradient(ellipse at center, hsla(0, 0%, 0%, 0) 0%, hsla(0, 0%, 0%, 0.5) 70%),
        url("../images/playingDominos.png");
    background-size: cover;
    background-position: center;
    flex: 1;
}

div#heroText{
    max-width: 600px;
    color: var(--dom-tan-200, #e6c974);
}

div#heroText h1{
    font-size: 5rem;
    font-weight: 700;
    letter-spacing: 6px;
    line-height: 1.05;
    text-shadow: var(--dom-brown-700, #704d1f) 2px 2px 4px;
}

button#enterBtn{
    background-color: var(--dom-green-500);
    border-color: var(--dom-green-500);
    color: #fff;
    font-weight: 600;
    padding: 12px 40px;
    transition: all 0.3s ease;
}

button#enterBtn:hover{
    background-color: var(--dom-green-700);
    border-color: var(--dom-green-700);
    transform: scale(1.05);
}

/*--------- RESPONSIVE H1 SIZING ----------*/
@media (max-width: 576px) {
    div#heroText h1 {
        font-size: 2.5rem;
        letter-spacing: 2.5px;
    }
}

@media (min-width: 577px) and (max-width: 767px) {
    div#heroText h1 {
        font-size: 3rem;
        letter-spacing: 3px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    div#heroText h1 {
        font-size: 3.5rem;
        letter-spacing: 4px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    div#heroText h1 {
        font-size: 4rem;
        letter-spacing: 5px;
    }
}

@media (min-width: 1200px) and (max-width: 1399px) {
    div#heroText h1 {
        font-size: 4.5rem;
        letter-spacing: 6px;
    }
}

/* 1400px+ keeps the default 5rem from above */

/*--------- RESPONSIVE BACKGROUND IMAGE ----------*/
@media (max-width: 699px) {
    div#heroDiv {
        background-color: #2a1f10;
        background-position: center center;
        background-size: contain;
        background-repeat: no-repeat;
    }
}

/*--------- RESPONSIVE BUTTON SIZING ----------*/
@media (max-width: 576px) {
    button#enterBtn {
        padding: 8px 24px;
        font-size: 0.9rem;
    }
}

@media (min-width: 577px) and (max-width: 767px) {
    button#enterBtn {
        padding: 10px 32px;
        font-size: 1rem;
    }
}

/* 768px+ keeps the default padding: 12px 40px */