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

/* Body Styling */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: #1a1a1d; /* deep charcoal */
    color: #f2f2f2; /* soft white */
    padding: 1.25rem;
}

/* Header */
header {
    text-align: center;
    margin-bottom: 2rem;
}

h1 {
    font-size: 1.9rem;
    font-weight: 700;
    color: #ffffff;
}

/* Club Card */
.club-card {
    background: rgba(255, 255, 255, 0.05); /* subtle glass effect */
    padding: 1.5rem;
    border-radius: 14px;
    margin-bottom: 1.75rem;
    backdrop-filter: blur(6px);
    text-align: center;
}

/* Club Name */
.club-name {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #ffffff;
}

/* Club Head Image */
.club-head-image {
    width: 85%;
    max-width: 330px;
    display: block;
    margin: 0.75rem auto 1rem;
    border-radius: 10px;
    object-fit: contain;
}

/* Shaft Image */
.shaft-image {
    width: 75%;
    max-width: 260px;
    display: block;
    margin: 1rem auto 0.5rem;
    border-radius: 8px;
    object-fit: contain;
}

/* Shaft Text */
.shaft-text {
    font-size: 1rem;
    color: #dcdcdc;
    margin-top: 0.25rem;
    margin-bottom: 0.75rem;
}

/* Specs List */
.club-specs {
    list-style: none;
    padding-left: 0;
    margin: 0.5rem auto 1rem;
    font-size: 0.95rem;
    color: #e0e0e0;
    max-width: 260px;
}

.club-specs li {
    margin-bottom: 0.3rem;
}

.club-specs strong {
    font-weight: 600;
    color: #ffffff;
}

/* Desktop Enhancements */
@media (min-width: 700px) {
    body {
        padding: 2rem;
    }

    .club-card {
        padding: 2rem;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .club-name {
        font-size: 1.5rem;
    }

    .club-head-image {
        max-width: 360px;
    }

    .shaft-image {
        max-width: 300px;
    }
    .secondary-putter-image {
    margin-top: 0.75rem;
    width: 75%; /* slightly smaller than main image */
    max-width: 260px;
    opacity: 0.95; /* subtle visual hierarchy */
}

