/* ===== GLOBAL ===== */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f5f7fa;
}

/* ===== HEADER ===== */
header {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 100px 0;
    background: url('../images/h1_bg.jpg') no-repeat center center;
    background-size: cover;
    color: white;
    text-align: center;
    border-radius: 0 0 15px 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    overflow: hidden;
}

header::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

header h1 {
    position: relative;
    font-size: 2.8em;
    font-weight: bold;
    z-index: 1;
}

nav {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 25px;
    margin-top: 20px;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    padding: 8px 16px;
    border-radius: 6px;
    transition: background 0.3s;
}

nav a:hover {
    background: rgba(255,255,255,0.2);
}

/* ===== FOOTER ===== */
footer {
    text-align: center;
    background: rgba(0, 123, 255, 0.9);
    color: white;
    padding: 15px 0;
    margin-top: 40px;
    font-size: 0.9em;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}


/* ===== Shirt Cards ===== */
.shirt-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    padding: 40px 20px;
}

.shirt-card {
    background: white;
    border-radius: 15px;
    width: 240px;
    padding: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.shirt-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    padding: 20px;
}

.shirt-card {
    background: white;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    width: 220px;
    transition: 0.3s;
}

.shirt-card:hover {
    transform: translateY(-5px);
}

.shirt-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 10px;
}

.shirt-card h3 {
    color: #007bff;
}

.shirt-card button {
    background: #007bff;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
}

.shirt-card button:hover {
    background: #0056b3;
}


.shirt-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.shirt-card img {
    width: 300%;
    height: 220px;
    object-fit: cover;
    border-radius: 10px;
}

.shirt-card h3 {
    margin: 10px 0 5px;
    color: #007bff;
}

.shirt-card p {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 10px;
}

button {
    background: #007bff;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 8px;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s;
}

button:hover {
    background: #0056b3;
    transform: scale(1.02);
}

footer {
    text-align: center;
    background: rgba(0, 123, 255, 0.9);
    color: white;
    padding: 15px 0;
    margin-top: 40px;
    font-size: 0.9em;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    nav {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    header h1 {
        font-size: 2em;
    }
}
