:root {
    --navy: #102542;
    --navy-deep: #0d1b2a;
    --red: #b22234;
    --red-bright: #cf3348;
    --gold: #d4af37;
    --gold-soft: #f4deb0;
    --white: #ffffff;
    --card-bg: rgba(255, 255, 255, 0.93);
    --card-border: rgba(255, 255, 255, 0.16);
    --text: #1c2430;
    --muted: #5a6775;
    --shadow: 0 18px 42px rgba(0, 0, 0, 0.34);
    --shadow-hover: 0 24px 52px rgba(0, 0, 0, 0.38);
    --radius: 18px;
    --radius-lg: 24px;
    --max-width: 1100px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

body.golf-page {
    min-height: 100vh;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--white);
    overflow-x: hidden;
    background-color: var(--navy-deep);
    background-image:
        linear-gradient(
            to bottom,
            rgba(255, 255, 255, 0.14) 0%,
            rgba(255, 255, 255, 0.08) 18%,
            rgba(255, 255, 255, 0.02) 35%,
            rgba(255, 255, 255, 0) 52%
        ),
        linear-gradient(
            to bottom,
            rgba(8, 18, 32, 0.12) 0%,
            rgba(8, 18, 32, 0.22) 30%,
            rgba(8, 18, 32, 0.42) 65%,
            rgba(8, 18, 32, 0.56) 100%
        ),
        url('https://upload.wikimedia.org/wikipedia/commons/2/2a/Kiawah_Island_Golf_Course.jpg');
    background-position:
        center top,
        center top,
        center -100px;
    background-size:
        cover,
        cover,
        cover;
    background-repeat:
        no-repeat,
        no-repeat,
        no-repeat;
    background-attachment:
        scroll,
        scroll,
        scroll;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
}

main.content-wrap {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 72px 20px 64px;
}

.hero-card {
    margin-bottom: 32px;
    padding: 36px 32px;
    border-radius: var(--radius-lg);
    background: linear-gradient(
        135deg,
        rgba(16, 37, 66, 0.90),
        rgba(178, 34, 52, 0.78)
    );
    border: 1px solid var(--card-border);
    box-shadow: var(--shadow);
}

.hero-brand {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.hero-logo {
/*    width: 400px;
    height: auto; */
    height: 200px;
    width: auto;
    background: var(--white);
    padding: 10px;
    border-radius: 16px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}

.hero-copy {
    flex: 1 1 420px;
}

.eyebrow {
    display: inline-block;
    margin-bottom: 12px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold-soft);
}

.hero-card h1 {
    margin: 0 0 14px;
    font-size: clamp(2rem, 4vw, 3.3rem);
    line-height: 1.08;
    color: var(--white);
}

.hero-text {
    margin: 0;
    max-width: 820px;
    font-size: 1.08rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
}

.secure-note {
    margin: 18px 0 26px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.95);
}

.secure-note strong,
.secure-note span {
    display: block;
}

.secure-note strong {
    margin-bottom: 6px;
    color: #ffd7d7;
}

.event-meta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.event-meta-card {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 18px;
    padding: 20px;
}

.event-meta-label {
    display: block;
    margin-bottom: 10px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: var(--gold-soft);
}

.event-meta-value {
    line-height: 1.7;
    color: var(--white);
}

.event-map-wrap {
    width:	100%;
    max-width:  none;
    margin-top: 14px;

}

.event-map-wrap iframe {
    width: 100%;
    height: 220px;
    border: 0;
    border-radius: 12px;
    display: block;
}

.intro-card {
    margin-bottom: 24px;
}

.sponsorship-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    align-items: stretch;
}

.sponsor-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 26px 24px;
    border-top: 6px solid var(--navy);
    border-radius: var(--radius);
    background: var(--card-bg);
    color: var(--text);
    box-shadow: var(--shadow);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.sponsor-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.card-top {
    margin-bottom: 4px;
}

.sponsor-card h2 {
    margin: 0 0 10px;
    font-size: 1.4rem;
    line-height: 1.2;
    color: var(--navy);
}

.price {
    margin: 0 0 16px;
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--red);
}

.sponsor-card p {
    margin: 0 0 14px;
    line-height: 1.65;
    color: var(--muted);
}

.sponsor-card ul {
    flex: 1 1 auto;
    margin: 0;
    padding-left: 18px;
}

.sponsor-card li {
    margin-bottom: 10px;
    line-height: 1.55;
    color: var(--text);
}

.sponsor-card li:last-child {
    margin-bottom: 0;
}

.sponsor-card form {
    margin-top: auto;
    padding-top: 18px;
}

.mini-badge {
    display: inline-block;
    margin-bottom: 10px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(16, 37, 66, 0.10);
    color: var(--navy);
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1;
}

.tier-title {
    border-top-color: var(--red);
}

.tier-gold {
    border-top-color: var(--gold);
}

.tier-silver {
    border-top-color: #94a3b8;
}

.tier-bronze {
    border-top-color: #8b5a2b;
}

.contact-card {
    margin-top: 24px;
    justify-content: center;
}

.btn-primary {
    display: inline-block;
    align-self: flex-start;
    margin-top: 8px;
    padding: 12px 20px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--red), var(--red-bright));
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    line-height: 1.2;
    box-shadow: 0 10px 22px rgba(178, 34, 52, 0.28);
    cursor: pointer;
    transition: transform 0.15s ease, filter 0.15s ease;
}

.btn-primary:hover {
    transform: translateY(-1px);
    filter: brightness(1.05);
}

.btn-primary:focus-visible {
    outline: 3px solid rgba(16, 37, 66, 0.28);
    outline-offset: 3px;
}

.processing-note {
    margin-top: 8px;
    font-size: 0.8rem;
    font-style: italic;
    line-height: 1.4;
    color: var(--muted);
}

.qty-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
    color: var(--navy);
}

.qty-input {
    width: 100%;
    max-width: 120px;
    margin-bottom: 14px;
    padding: 10px 12px;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    font: inherit;
    color: var(--text);
    background: var(--white);
}

.qty-input:focus {
    outline: 2px solid rgba(16, 37, 66, 0.2);
    border-color: var(--navy);
}

@media (max-width: 1024px) {
    .sponsorship-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    main.content-wrap {
        max-width: 900px;
    }
}

@media (max-width: 768px) {
    body.golf-page {
        background-position:
            center top,
            center top,
            center -60px;
    }

    main.content-wrap {
        padding: 56px 16px 48px;
    }

    .hero-card {
        padding: 28px 22px;
    }

    .event-meta-grid {
        grid-template-columns: 1fr;
    }

    .sponsor-card {
        padding: 22px 20px;
    }
}

@media (max-width: 640px) {
    .sponsorship-grid {
        grid-template-columns: 1fr;
    }
}
.event-meta-row {
    display: grid;
    grid-template-columns: 1fr 140px;
    align-items: center;
    gap: 16px;
    margin-bottom: 14px;
}

.event-meta-value {
    line-height: 1.5;
}

.event-meta-logo {
	width:		140px;
	height:		160px;
	display:	flex;
/*	justify-content:flex-start; */
	align-items:	flex-start;
	overflow:	hidden;

}

.event-meta-logo img {
height: 125px;
width:  auto; 
max-width: none;
margin:  0 auto;
display: block;
align: center;
}

.event-map-wrap iframe {
    width: 100%;
    height: 250px;
    border: 0;
    border-radius: 10px;
    display: block;
}

.event-logo-bar {
    display: 			flex;
    justify-content: 		center; /* centers the whole group */
    align-items: 		center;
    gap: 			30px;   /* spacing between logos */
    flex-wrap: 			wrap;	/* allows wrap on small screens */
    margin-bottom: 		15px;

    width: 			100%;
    text-align:			center;
}

.event-logo-bar img {
    max-height: 		100px;          /* keep them uniform */
    object-fit:			contain;
    width: 			auto;
    display: 			block;
}

.powered-by {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 15px;
    text-align: center;
    font-size: 0.85rem;
    color: #aaa;
    margin-top: 40px;
    margin-bottom: 20px;
}

.powered-by a {
    color: #ccc;
    text-decoration: none;
}

.powered-by a:hover {
    color: #fff;
    text-decoration: underline;
}


.powered-by {
    text-align: center;
    font-size: 0.85rem;
    color: #aaa;
    margin-top: 40px;
    margin-bottom: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 15px;
}

.powered-by a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ccc;
    text-decoration: none;
}

.powered-by img {
    height: 20px;   /* 🔥 keep it subtle */
    width: auto;
}

.powered-by a:hover {
    color: #fff;
}

