
:root {
    --primary: #1A365D; 
    --primary-light: #8a9ba8;
    --bg-color: #F9F8F6;
    --text-color: #333333;
    --white: #FFFFFF;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; line-height: 1.6; background-color: var(--bg-color); color: var(--text-color); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1544367567-0f2fcb009e0b?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80') center/cover;
    color: var(--white);
    text-align: center;
    padding: 100px 20px;
}
.hero h1 { font-size: 3rem; margin-bottom: 20px; }
.hero h1 span { color: var(--white); text-decoration: underline; text-decoration-color: var(--primary); }
.hero p { font-size: 1.2rem; margin-bottom: 30px; max-width: 600px; margin-left: auto; margin-right: auto; }

.btn { display: inline-block; background: var(--primary); color: var(--white); font-weight: bold; padding: 12px 24px; border-radius: 30px; text-decoration: none; transition: opacity 0.3s; }
.btn:hover { opacity: 0.9; }

.btn-outline { display: inline-block; border: 2px solid var(--primary); color: var(--primary); font-weight: bold; padding: 8px 16px; border-radius: 20px; text-decoration: none; margin-top: 15px; transition: all 0.3s; }
.btn-outline:hover { background: var(--primary); color: var(--white); }

.seo-intro { margin: 60px 0; }
.seo-intro h2 { color: var(--primary); margin-bottom: 20px; text-align: center; font-size: 2rem;}
.long-text p { margin-bottom: 20px; font-size: 1.1rem; color: #444; text-align: justify;}
.long-text a { color: var(--primary); font-weight: bold; text-decoration: underline; }

.map-container { margin: 60px 0; }
.map-container h2 { text-align: center; color: var(--primary); margin-bottom: 20px;}
#map { height: 500px; border-radius: 12px; box-shadow: 0 4px 15px rgba(0,0,0,0.1); border: 2px solid var(--white); z-index: 1;}

.clubs-list { margin: 60px 0; }
.clubs-list h2 { text-align: center; color: var(--primary); margin-bottom: 20px;}
.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 30px; margin-top: 30px; }
.club-card { background: var(--white); padding: 30px; border-radius: 12px; box-shadow: 0 4px 6px rgba(0,0,0,0.05); transition: transform 0.3s; display: flex; flex-direction: column;}
.club-card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.1); }
.club-card h3 { color: var(--primary); margin-bottom: 10px; font-size: 1.4rem; }
.club-type { font-weight: bold; color: #777; font-size: 0.9rem; margin-bottom: 10px; }
.club-address { margin-bottom: 15px; font-size: 0.95rem; }
.club-card p:not(.club-type):not(.club-address) { flex-grow: 1; }

footer { background: var(--text-color); color: var(--white); text-align: center; padding: 40px 0; margin-top: 60px; }
.footer-links { margin-top: 15px; margin-bottom: 15px; font-size: 0.9rem; }
.footer-links a { color: var(--primary-light); text-decoration: none; margin: 0 10px; }
.footer-links a:hover { text-decoration: underline; color: var(--white); }

/* PBN Network Links CSS */
.network-links { margin-top: 20px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.1); font-size: 0.85rem; color: #aaa; }
.network-links a { color: #aaa; text-decoration: underline; margin: 0 8px; font-weight: bold; transition: color 0.3s; }
.network-links a:hover { color: var(--white); }
