/* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #fafbfc;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: 'acumin-pro', 'Inter', sans-serif;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    font-weight: 600;
    letter-spacing: -0.02em;
}

h1 {
    font-size: 2rem;
    font-weight: 700;
}

h2 {
    font-size: 1.75rem;
    font-weight: 600;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
}

h4 {
    font-size: 1.25rem;
    font-weight: 600;
}

/* Header Styles */
.header {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    color: white;
    padding: 1.5rem 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-img {
    width: 60px;
    height: 60px;
}

.logo-text h1 {
    color: white;
    margin-bottom: 0.25rem;
}

.logo-text p {
    color: #b8d4be;
    font-style: italic;
}

.tournament-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-align: left;
}

.date-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #e8f5e8;
    justify-content: flex-start;
}

.date-location i {
    color: #d4af37;
}

/* Modern Navigation Styles */
.nav {
    margin-top: 2rem;
    margin-bottom: 0.5rem;
    position: relative;
}

.nav::before {
    content: '';
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.nav-menu {
    display: flex;
    gap: 0;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 6px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    max-width: fit-content;
    margin: 0 auto;
}

.nav-link {
    font-family: 'acumin-pro', 'Inter', sans-serif;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: -0.01em;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-link:hover {
    color: white;
    transform: translateY(-1px);
}

.nav-link:hover::before {
    opacity: 1;
}

.nav-link.active {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-link.active::before {
    opacity: 1;
}

/* Hero Section with Flyer */
.hero-section {
    padding: 3rem 0;
    background: linear-gradient(135deg, #fafbfc 0%, #f1f5f9 100%);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    overflow-x: hidden;
}

.hero-content {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
}

.hero-flyer {
    max-width: min(800px, 90vw);
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-flyer:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.flyer-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    object-fit: contain;
    max-width: 100%;
    max-height: 80vh;
}

/* Responsive breakpoints for flyer */
@media (max-width: 1200px) {
    .hero-flyer {
        max-width: 700px;
    }
}

@media (max-width: 992px) {
    .hero-section {
        padding: 2.5rem 0;
    }
    
    .hero-flyer {
        max-width: 600px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 1.5rem 0;
    }
    
    .hero-content {
        padding: 0 20px;
    }
    
    .hero-flyer {
        max-width: 90vw;
        width: 90vw;
        border-radius: 16px;
    }
    
    .flyer-image {
        border-radius: 16px;
        max-width: 100%;
        width: 100%;
        height: auto;
        max-height: 50vh;
        object-fit: contain;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 1rem 0;
    }
    
    .hero-content {
        padding: 0 15px;
    }
    
    .hero-flyer {
        max-width: 85vw;
        width: 85vw;
        border-radius: 12px;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }
    
    .flyer-image {
        border-radius: 12px;
        max-width: 100%;
        width: 100%;
        height: auto;
        max-height: 45vh;
        object-fit: contain;
    }
}

@media (max-width: 400px) {
    .hero-section {
        padding: 0.75rem 0;
    }
    
    .hero-content {
        padding: 0 10px;
    }
    
    .hero-flyer {
        max-width: 80vw;
        width: 80vw;
    }
    
    .flyer-image {
        max-width: 100%;
        width: 100%;
        max-height: 40vh;
        object-fit: contain;
    }
}

/* Tournament Details Section */
.tournament-details {
    padding: 3rem 0;
    background: white;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.detail-card {
    text-align: center;
    padding: 2rem 1rem;
    background: #f8f9fa;
    border-radius: 10px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(44, 85, 48, 0.1);
    border-color: #4a7c59;
}

.detail-card i {
    font-size: 2.5rem;
    color: #d4af37;
    margin-bottom: 1rem;
}

.detail-card h3 {
    color: #2c5530;
    justify-content: center;
    margin-bottom: 1rem;
}

.detail-card p {
    color: #666;
    line-height: 1.5;
}

/* Modern Registration Form Section */
.registration-form-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #fafbfc 0%, #f1f5f9 100%);
}

.form-container {
    background: white;
    border-radius: 24px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    border: 1px solid rgba(226, 232, 240, 0.8);
}

.form-header {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    color: white;
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
}

.form-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.form-header h2 {
    font-family: 'acumin-pro', 'Inter', sans-serif;
    color: white;
    margin-bottom: 0.75rem;
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.form-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    font-weight: 400;
}

/* Form Styles */
.registration-form {
    padding: 2rem;
}

.form-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e9ecef;
}

.form-section:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
}

.form-section h3 {
    font-family: 'acumin-pro', 'Inter', sans-serif;
    font-size: 1.4rem;
    color: #0f172a;
    margin-bottom: 2rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    gap: 0;
}

.section-subtitle {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 2rem;
    font-style: italic;
}

.modern-form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 1.5rem;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.form-group {
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 0.75rem;
    font-family: 'acumin-pro', 'Inter', sans-serif;
    font-weight: 500;
    color: #374151;
    font-size: 0.95rem;
    letter-spacing: -0.01em;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    background: #ffffff;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: #1a1a1a;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #94a3b8;
    font-weight: 400;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
    background: #fefefe;
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: #cbd5e1;
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #dc3545;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Radio Button Styles */
.radio-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.radio-option {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
}

.radio-option:hover {
    border-color: #4a7c59;
    background: #f8fff9;
}

.radio-option input[type="radio"] {
    display: none;
}

.radio-custom {
    width: 20px;
    height: 20px;
    border: 2px solid #ddd;
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
    margin-top: 2px;
}

.radio-option input[type="radio"]:checked + .radio-custom {
    border-color: #4a7c59;
}

.radio-option input[type="radio"]:checked + .radio-custom::after {
    content: '';
    width: 10px;
    height: 10px;
    background: #4a7c59;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.radio-content {
    flex: 1;
}

.radio-content strong {
    color: #2c5530;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 0.25rem;
}

.radio-content p {
    color: #666;
    margin: 0;
    font-size: 0.9rem;
}

/* Checkbox Styles */
.checkbox-group {
    margin-bottom: 1rem;
}

.checkbox-option {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    padding: 0.5rem 0;
}

.checkbox-option input[type="checkbox"] {
    display: none;
}

.checkbox-custom {
    width: 18px;
    height: 18px;
    border: 2px solid #ddd;
    border-radius: 4px;
    position: relative;
    flex-shrink: 0;
    margin-top: 2px;
    transition: all 0.3s ease;
}

.checkbox-option input[type="checkbox"]:checked + .checkbox-custom {
    background: #4a7c59;
    border-color: #4a7c59;
}

.checkbox-option input[type="checkbox"]:checked + .checkbox-custom::after {
    content: '\2713';
    color: white;
    font-size: 12px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.checkbox-option span:last-child {
    color: #333;
    line-height: 1.4;
}

.checkbox-option a {
    color: #4a7c59;
    text-decoration: none;
}

.checkbox-option a:hover {
    text-decoration: underline;
}

/* Modern Golfer Cards */
.golfer-card {
    background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
    border: 2px solid #e2e8f0;
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    position: relative;
}

.golfer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6, #06b6d4);
    border-radius: 20px 20px 0 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.golfer-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: #cbd5e1;
}

.golfer-card:hover::before {
    opacity: 1;
}

.golfer-card h4 {
    font-family: 'acumin-pro', 'Inter', sans-serif;
    color: #0f172a;
    margin-bottom: 2rem;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    border-bottom: 2px solid #f1f5f9;
    padding-bottom: 1rem;
}

/* Team Members Styles (Legacy) */
.team-members {
    margin-top: 1rem;
}

.team-member {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.team-member h4 {
    color: #2c5530;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #ddd;
}

/* Payment Summary */
.payment-summary {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    border: 1px solid #e9ecef;
}

.summary-line {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    padding: 0.5rem 0;
}

.summary-line.total {
    border-top: 2px solid #ddd;
    margin-top: 1rem;
    padding-top: 1rem;
    font-weight: 600;
    font-size: 1.1rem;
    color: #2c5530;
}

/* Modern Payment Options */
.payment-options {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.payment-option {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    border: 2px solid #e9ecef;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.payment-option:hover {
    border-color: #4a7c59;
    background: linear-gradient(135deg, #f8fff9 0%, #ffffff 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(74, 124, 89, 0.1);
}

.payment-option input[type="radio"] {
    display: none;
}

.payment-radio {
    width: 24px;
    height: 24px;
    border: 3px solid #ddd;
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
    margin-top: 2px;
    transition: all 0.3s ease;
}

.payment-option input[type="radio"]:checked + .payment-radio {
    border-color: #4a7c59;
    background: #4a7c59;
}

.payment-option input[type="radio"]:checked + .payment-radio::after {
    content: '';
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.payment-content {
    flex: 1;
}

.payment-content strong {
    color: #2c5530;
    font-size: 1.2rem;
    display: block;
    margin-bottom: 0.5rem;
}

.payment-content p {
    color: #666;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.payment-address {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-top: 0.5rem;
    padding-left: 1rem;
}

.cashapp-link {
    color: #00d632;
    text-decoration: none;
    font-weight: 600;
    padding: 0.5rem 1rem;
    background: #f0fff4;
    border: 2px solid #00d632;
    border-radius: 8px;
    display: inline-block;
    margin-top: 0.5rem;
    transition: all 0.3s ease;
}

.cashapp-link:hover {
    background: #00d632;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 214, 50, 0.3);
}

.payment-content p strong {
    color: #2c5530;
    font-weight: 600;
}

/* Terms Agreement */
.terms-agreement {
    margin: 2rem 0;
}

.terms-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    cursor: pointer;
    font-size: 1rem;
    line-height: 1.6;
}

.terms-checkbox input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 24px;
    height: 24px;
    border: 3px solid #ddd;
    border-radius: 6px;
    position: relative;
    flex-shrink: 0;
    margin-top: 2px;
    transition: all 0.3s ease;
}

.terms-checkbox input[type="checkbox"]:checked + .checkmark {
    background: #4a7c59;
    border-color: #4a7c59;
}

.terms-checkbox input[type="checkbox"]:checked + .checkmark::after {
    content: '\2713';
    color: white;
    font-size: 16px;
    font-weight: bold;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}



/* Error Messages */
.error-message {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: none;
}

.error-message.show {
    display: block;
}

/* Buttons */
.btn {
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    text-align: center;
    justify-content: center;
}

.btn-primary {
    font-family: 'acumin-pro', 'Inter', sans-serif;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    border-radius: 16px;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.25);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(59, 130, 246, 0.35);
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.btn-secondary {
    background: white;
    color: #2c5530;
    border: 2px solid #2c5530;
}

.btn-secondary:hover {
    background: #2c5530;
    color: white;
}

/* Tab Styles */
.registration-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid #e5e7eb;
    padding-bottom: 0;
}

.tab-button {
    padding: 1rem 2rem;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    font-size: 1rem;
    font-weight: 600;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'acumin-pro', 'Inter', sans-serif;
}

.tab-button:hover {
    color: #3b82f6;
}

.tab-button.active {
    color: #3b82f6;
    border-bottom-color: #3b82f6;
}

.tab-button i {
    font-size: 1.2rem;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Spectator Card Styles */
.spectator-card {
    background: #f8fafb;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    position: relative;
}

.spectator-card h4 {
    color: #1f2937;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.remove-spectator-btn {
    background: #ef4444;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.remove-spectator-btn:hover {
    background: #dc2626;
}

.add-spectator-btn {
    margin-top: 1rem;
}

/* Donation Form Styles */
.donation-message {
    background: #fef3c7;
    border: 1px solid #fbbf24;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    color: #92400e;
}

.donation-message p {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.6;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.donation-message i {
    color: #f59e0b;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.amount-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.currency-symbol {
    position: absolute;
    left: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
    color: #374151;
}

.amount-input-wrapper input {
    padding-left: 2.5rem;
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e9ecef;
}

/* Map Links */
a[href*="maps.google.com"] {
    color: #3b82f6 !important;
    text-decoration: none !important;
    border-bottom: 1px dashed #3b82f6;
    transition: all 0.3s ease;
}

a[href*="maps.google.com"]:hover {
    color: #2563eb !important;
    border-bottom-style: solid;
}

/* Footer */
.footer {
    background: #2c5530;
    color: white;
    padding: 2rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer h4 {
    color: #d4af37;
    margin-bottom: 1rem;
}

.footer p {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer i {
    color: #d4af37;
    width: 16px;
}

.footer-bottom {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid #4a7c59;
    color: #b8d4be;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .header-content {
        flex-direction: column;
        text-align: center;
    }
    
    .tournament-info {
        text-align: center;
    }
    
    .details-grid {
        grid-template-columns: 1fr;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .radio-option {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .radio-custom {
        margin-top: 0;
    }
    
    h1 {
        font-size: 1.5rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    h3 {
        font-size: 1.25rem;
    }
    
    /* Registration tabs responsive */
    .registration-tabs {
        gap: 0.5rem;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    
    .registration-tabs::-webkit-scrollbar {
        display: none;
    }
    
    .tab-button {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
        white-space: nowrap;
        flex-shrink: 0;
    }
    
    .tab-button i {
        display: none;
    }
}

@media (max-width: 480px) {
    .registration-form {
        padding: 1rem;
    }
    
    .form-header {
        padding: 1.5rem;
    }
    
    .team-member {
        padding: 1rem;
    }
    
    .detail-card {
        padding: 1.5rem 1rem;
    }
    
    /* Even smaller tabs for mobile */
    .registration-tabs {
        gap: 0.25rem;
        margin-bottom: 1.5rem;
    }
    
    .tab-button {
        padding: 0.6rem 0.8rem;
        font-size: 0.85rem;
    }
}

/* Print Styles */
@media print {
    body {
        background: white;
        color: black;
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .header {
        background: none;
        color: black;
        border-bottom: 2px solid #000;
    }
    
    .form-container {
        box-shadow: none;
        border: 1px solid #000;
    }
    
    .form-header {
        background: none;
        color: black;
        border-bottom: 1px solid #000;
    }
    
    .btn {
        display: none;
    }
    
    .footer {
        background: none;
        color: black;
        border-top: 1px solid #000;
    }
    
    .radio-option,
    .detail-card,
    .team-member {
        border: 1px solid #ccc;
        break-inside: avoid;
        margin-bottom: 10pt;
    }
    
    .form-section {
        break-inside: avoid;
        margin-bottom: 20pt;
    }
    
    h1, h2, h3, h4 {
        color: black;
    }
    
    .logo-text h1,
    .form-header h2 {
        color: black;
    }
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for better accessibility */
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid #4a7c59;
    outline-offset: 2px;
}

.radio-option:focus-within,
.checkbox-option:focus-within {
    outline: 2px solid #4a7c59;
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .btn-primary {
        background: #000;
        border: 2px solid #000;
    }
    
    .btn-secondary {
        border: 2px solid #000;
    }
    
    .radio-custom,
    .checkbox-custom {
        border: 2px solid #000;
    }
}

/* Rules Page Styles */
.rules-hero {
    background: linear-gradient(135deg, #2c5530 0%, #4a7c59 100%);
    color: white;
    padding: 3rem 0;
    text-align: center;
}

.rules-header h1 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.rules-subtitle {
    color: #b8d4be;
    font-size: 1.1rem;
    margin: 0;
}

.rules-content {
    padding: 4rem 0;
    background: #f8f9fa;
}

.rules-container {
    max-width: 1000px;
    margin: 0 auto;
}

.rules-section {
    margin-bottom: 3rem;
}

.rules-section h2 {
    color: #2c5530;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.rules-section h2 i {
    color: #d4af37;
    font-size: 1.5rem;
}

.rules-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #4a7c59;
}

.rules-card.important {
    border-left-color: #d4af37;
    background: linear-gradient(135deg, #fffdf0 0%, #ffffff 100%);
}

.rules-card h3 {
    color: #2c5530;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.course-info {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.rule-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.rule-item:last-child {
    margin-bottom: 0;
}

.rule-item i {
    color: #4a7c59;
    font-size: 1.2rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.rules-card.important .rule-item i {
    color: #d4af37;
}

.rule-content {
    flex: 1;
}

.rule-content h4 {
    color: #2c5530;
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
}

.rule-content p {
    color: #666;
    margin: 0;
    line-height: 1.5;
    font-size: 0.95rem;
}

/* Mobile styles for rules page */
@media (max-width: 768px) {
    .nav-menu {
        gap: 1rem;
        flex-wrap: wrap;
    }
    
    .nav-link {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .rules-header h1 {
        font-size: 2rem;
    }
    
    .rules-section h2 {
        font-size: 1.5rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .rule-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
}

/* Sponsorship Page Styles */
.sponsorship-content {
    max-width: 1200px;
    margin: 0 auto;
}

.sponsorship-content h2 {
    text-align: center;
    color: #2c5530;
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.intro-text {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.sponsorship-tiers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.sponsorship-tier {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.sponsorship-tier:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.tier-header {
    padding: 2rem;
    text-align: center;
    color: white;
}

.platinum .tier-header {
    background: linear-gradient(135deg, #7c6f8f, #9d8fb3);
}

.gold .tier-header {
    background: linear-gradient(135deg, #d4af37, #f4d03f);
}

.silver .tier-header {
    background: linear-gradient(135deg, #8e8e8e, #b8b8b8);
}

.hole-sponsor .tier-header {
    background: linear-gradient(135deg, #2c5530, #4a7c59);
}

.tier-header i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.tier-header h3 {
    font-size: 1.5rem;
    margin: 0 0 1rem 0;
    font-weight: 600;
    display: block;
    text-align: center;
}

.tier-price {
    font-size: 2.5rem;
    font-weight: 700;
}

.tier-benefits {
    padding: 2rem;
}

.tier-benefits h4 {
    color: #2c5530;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.tier-benefits ul {
    list-style: none;
    padding: 0;
}

.tier-benefits li {
    padding: 0.5rem 0;
    display: flex;
    align-items: flex-start;
}

.tier-benefits li i {
    color: #4a7c59;
    margin-right: 0.5rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.sponsorship-contact {
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 16px;
    text-align: center;
}

.sponsorship-contact h3 {
    color: #2c5530;
    margin-bottom: 1rem;
}

.contact-methods {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-method i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.contact-method a {
    color: #2c5530;
    text-decoration: none;
    font-weight: 500;
}

.contact-method a:hover {
    color: var(--accent-color);
}

@media (max-width: 768px) {
    .sponsorship-tiers {
        grid-template-columns: 1fr;
    }
    
    .contact-methods {
        flex-direction: column;
        align-items: center;
    }
}



/* Volunteer Page Styles */
.volunteer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.volunteer-content h2 {
    text-align: center;
    color: #2c5530;
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.volunteer-positions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.volunteer-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.volunteer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.volunteer-icon {
    background: linear-gradient(135deg, #2c5530, #4a7c59);
    padding: 2rem;
    text-align: center;
    color: white;
}

.volunteer-icon i {
    font-size: 3rem;
}

.volunteer-card h3 {
    background: linear-gradient(135deg, #2c5530, #4a7c59);
    color: white;
    padding: 1rem;
    margin: 0;
    text-align: center;
    font-size: 1.5rem;
}

.volunteer-details {
    padding: 2rem;
}

.volunteer-details h4 {
    color: #2c5530;
    margin-bottom: 1rem;
}

.volunteer-details ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.volunteer-details li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.volunteer-details li:before {
    content: "•";
    color: #d4af37;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.time-commitment,
.volunteers-needed,
.special-note {
    margin: 0.5rem 0;
    font-weight: 500;
}

.time-commitment i,
.volunteers-needed i,
.special-note i {
    color: var(--accent-color);
    margin-right: 0.5rem;
}

.special-note {
    color: #d4af37;
    font-style: italic;
}

.volunteer-signup {
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 16px;
    text-align: center;
}

.volunteer-signup h3 {
    color: #2c5530;
    margin-bottom: 1rem;
}

.volunteer-benefits {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    margin-top: 2rem;
}

.volunteer-benefits h4 {
    color: #2c5530;
    margin-bottom: 1rem;
}

.volunteer-benefits ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.volunteer-benefits li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
}

.volunteer-benefits li i {
    color: #4a7c59;
    margin-right: 0.5rem;
}

/* Registration Success Message */
.registration-success {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.success-content {
    background: white;
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    max-width: 500px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.success-content h2 {
    color: #4a7c59;
    margin-bottom: 20px;
    font-size: 2em;
}

.success-content p {
    margin: 10px 0;
    font-size: 1.1em;
    color: #333;
}

.success-content strong {
    color: #2c5530;
}

@media (max-width: 768px) {
    .volunteer-positions {
        grid-template-columns: 1fr;
    }
}
