/*
Theme Name: Mariestadboishockey Com
Theme URI: https://mariestadboishockey.com
Description: Converted from static HTML
Version: 6.0.1
Author: TrueWhitePages
Author URI: https://truewhitepages.com
*/

/* Inline Styles from HTML */
/* Font */
        @font-face {
            font-family: 'VitesseSans-Book';
            src: url("https://fonts.cdnfonts.com/s/15119/VitesseSans-Book.woff") format('woff');
            font-weight: normal;
            font-style: normal;
        }

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

        body {
            font-family: VitesseSans-Book, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            background: #060335;
            color: white;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

       

        /* Hero Section */
        .hero {
            padding: 2rem 1rem;
            text-align: center;
        }

        .hero-title {
            font-size: 30px;
            font-weight: 700;
            text-transform: uppercase;
            margin-bottom: 2rem;
            letter-spacing: 1px;
        }

        .match-container {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 1rem;
            margin-bottom: 2rem;
        }

        .team-logo {
            width: 120px;
            height: 120px;
            object-fit: contain;
        }

        .match-time {
            display: flex;
            flex-direction: column;
            align-items: center;
            font-weight: 700;
            text-transform: uppercase;
        }

        .match-date {
            font-size: 18px;
            margin-bottom: 0.25rem;
        }

        .match-hour {
            font-size: 20px;
        }

        .sponsor-box {
            max-width: 650px;
            margin: 0 auto 2rem;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 24px;
            padding: 1rem;
        }

        .sponsor-link {
            display: flex;
            align-items: center;
            gap: 1rem;
            text-decoration: none;
            color: white;
        }

        .sponsor-logo {
            width: 100px;
            height: auto;
        }

        .sponsor-text {
            text-align: left;
        }

        .sponsor-label {
            font-size: 12px;
            opacity: 0.7;
            margin-bottom: 0.25rem;
        }

        .sponsor-name {
            font-size: 16px;
            font-weight: 600;
        }

        .prize-section {
            margin-top: 2rem;
        }

        .prize-label {
            font-size: 18px;
            opacity: 0.7;
            margin-bottom: 0.5rem;
        }

        .prize-amount {
            font-size: 24px;
            font-weight: 700;
        }

        /* Lottery Section */
        .lottery-section {
            background: white;
            color: black;
            padding: 3rem 1rem;
            border-radius: 40px 40px 0 0;
        }

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

        .lottery-title {
            font-size: 28px;
            font-weight: 700;
            text-transform: uppercase;
            text-align: center;
            margin-bottom: 2rem;
        }

.ticket-buttons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.ticket-btn {
    background: #a30000;
    border: none;
    border-radius: 50px;
    color: white;
    padding: 0.5rem;
    cursor: pointer;
    transition: opacity 0.2s;
}

.ticket-btn:hover {
    opacity: 0.9;
}

.ticket-qty {
    font-size: 20px;
    font-weight: 700;
    display: block;
}

.ticket-price {
    font-size: 14px;
    font-weight: 700;
    display: block;
    margin-top: -4px;
}

        .custom-btn {
            background: transparent;
            border: 1px solid #a30000;
            color: #a30000;
            padding: 0.5rem 1rem;
            border-radius: 8px;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            display: block;
            margin: 0 auto 2rem;
        }

        .custom-btn:hover {
            background: #a30000;
            color: white;
        }

        /* Lottery Numbers Grid */
        .lottery-numbers-section {
            margin: 2rem 0;
        }

        .lottery-numbers-title {
            font-size: 20px;
            font-weight: 700;
            color: #1f2937;
            margin-bottom: 1rem;
        }

        .lottery-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 0.75rem;
        }

        .lottery-card {
            background: white;
            border: 2px solid #e5e7eb;
            border-radius: 0.5rem;
            padding: 1rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
            transition: box-shadow 0.2s;
        }

        .lottery-card:hover {
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
        }

        .lottery-number {
            font-size: 24px;
            font-weight: 700;
            color: #1f2937;
            margin-bottom: 0.5rem;
        }

        .lottery-card-logo {
            width: 48px;
            height: 48px;
            object-fit: contain;
        }

        .sms-checkbox {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: 0.5rem;
        }

        .sms-checkbox input {
            width: 18px;
            height: 18px;
            cursor: pointer;
        }

        .sms-note {
            font-size: 12px;
            font-style: italic;
            color: #666;
            margin-bottom: 1rem;
        }

        .total-section {
            border-top: 1px solid #ddd;
            padding-top: 1rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 18px;
            margin-bottom: 2rem;
        }

        .total-amount {
            font-size: 24px;
            font-weight: 700;
        }

        /* Modal */
        .modal-overlay {
            display: none;
            position: fixed;
            inset: 0;
            z-index: 50;
            align-items: center;
            justify-content: center;
            background: rgba(0, 0, 0, 0.5);
        }

        .modal-overlay.active {
            display: flex;
        }

        .modal-content {
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: center;
            max-height: 80vh;
            background: white;
            border-radius: 0.5rem;
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
            width: 90vw;
            max-width: 700px;
        }

        .modal-content-small {
            max-width: 500px;
            padding: 1.5rem;
        }

        .modal-close-btn {
            position: absolute;
            bottom: 1rem;
            right: 1rem;
            z-index: 10;
            background: #a30000;
            color: white;
            border: none;
            padding: 0.5rem 1rem;
            border-radius: 0.5rem;
            font-weight: 600;
            cursor: pointer;
        }

        .modal-body {
            overflow-y: auto;
            max-width: 100%;
            padding: 1rem;
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .modal-title {
            font-size: 28px;
            font-weight: 700;
            text-align: center;
            color: #111827;
            margin-bottom: 1.5rem;
        }

        .modal-section {
            width: 100%;
        }

        .modal-section h3 {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: #111827;
        }

        .modal-section p {
            font-size: 14px;
            color: #374151;
            line-height: 1.5;
        }

        /* Footer */
        footer {
            background: white;
            color: black;
            padding: 3rem 1rem;
        }

        .footer-container {
            max-width: 1000px;
            margin: 0 auto;
            text-align: center;
        }


        .footer-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    margin-bottom: 2rem;
}


        .info-button {
            background: transparent;
            border: 1px solid #a30000;
            color: #a30000;
            padding: 0.5rem 1.5rem;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 3rem;
        }

        .info-button:hover {
            background: #a30000;
            color: white;
        }

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

        .partner-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.5rem;
        }

        .partner-img {
            width: 140px;
            height: auto;
        }

        .partner-img-small {
            width: 60px;
            height: auto;
        }

        .partner-text {
            font-size: 12px;
            text-align: center;
        }

.find-button {
    background: #a30000;
    border: none;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.subscribe-button {
    background: transparent;
    border: 1px solid #a30000;
    color: #a30000;
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.subscribe-button:hover {
    background: #a30000;
    color: white;
}

        .club-logo-footer {
            width: 60px;
            margin-bottom: 1rem;
        }

        .powered-by {
            font-size: 14px;
            color: #666;
            margin-top: 1rem;
        }

        .clubmate-logo {
            width: 100px;
            margin-top: 0.5rem;
        }

        /* Form elements */
        input[type="tel"],
        input[type="email"],
        select {
            font-family: inherit;
        }

        .btn-outline {
            background: transparent;
            padding: 0.5rem 1rem;
            border-radius: 0.5rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s;
        }

        .btn-outline.border-red-700 {
            border: 1px solid #b91c1c;
            color: #b91c1c;
        }

        .btn-outline.border-red-700:hover {
            background: #b91c1c;
            color: white;
        }

        .btn-outline.border-amber-600 {
            border: 1px solid #d97706;
            color: #d97706;
        }

        .btn-outline.border-amber-600:hover {
            background: #fef3c7;
        }

        .btn-red {
            background: #b91c1c;
            color: white;
            border: none;
            padding: 0.75rem 1.5rem;
            border-radius: 0.5rem;
            font-weight: 600;
            cursor: pointer;
        }

        .btn-red:hover {
            background: #991b1b;
        }

        /* Success message */
        .success-message {
            background: #10b981;
            color: white;
            padding: 1rem;
            border-radius: 0.5rem;
            text-align: center;
            margin-top: 1rem;
            display: none;
        }

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

        /* Responsive */
        @media (min-width: 640px) {
            .logo-img {
                width: 48px;
                height: 48px;
            }

            .logo-text {
                font-size: 16px;
            }

            .btn-mina-kop {
                font-size: 14px;
                padding: 11px 20px;
            }

            .menu-button {
                padding: 9px 20px;
            }

            .menu-button svg {
                width: 24px;
                height: 24px;
            }

            .hero-title {
                font-size: 45px;
            }

            .team-logo {
                width: 150px;
                height: 150px;
            }

            .sponsor-logo {
                width: 144px;
            }

            .lottery-title {
                font-size: 36px;
            }
        }

        @media (min-width: 768px) {
            .nav-center {
                display: flex;
            }

            .partners-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }

