/*
File: swCoverStyles.css
Date: 2026-02-12
Author: klp
Workspace: SketchWaveTNT2026-02-12-Stg1
Purpose: Cover for SketchWaveTNT2026-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/rembrandtAndAI4.jpeg");
    background-size: cover;
    background-position: center;
    flex: 1;
}

div#heroText{
    max-width: 600px;
    color: #e6c974;
}

div#heroText h1{
    font-size: 5rem;
    letter-spacing: 4px;
    text-shadow: #704d1f 2px 2px 4px;
}

button#enterBtn{
    background-color: #C18335;
    border-color: #C18335;
    color: white;
    font-weight: 600;
    padding: 12px 40px;
    transition: all 0.3s ease;
}

button#enterBtn:hover{
    background-color: #a16d2a;
    border-color: #a16d2a;
    transform: scale(1.05);
}

/*--------- RESPONSIVE H1 SIZING ----------*/
@media (max-width: 576px) {
    div#heroText h1 {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }
}

@media (min-width: 577px) and (max-width: 767px) {
    div#heroText h1 {
        font-size: 3rem;
        letter-spacing: 2px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    div#heroText h1 {
        font-size: 3.5rem;
        letter-spacing: 3px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    div#heroText h1 {
        font-size: 4rem;
        letter-spacing: 3px;
    }
}

@media (min-width: 1200px) and (max-width: 1399px) {
    div#heroText h1 {
        font-size: 4.5rem;
        letter-spacing: 4px;
    }
}

/* 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 */