/* 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;
}

/* Header/Nav */
.header {
    background: #060335;
    padding: 0.5rem;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: white;
}

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

.logo-text {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-center {
    display: none;
    gap: 3rem;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    transition: opacity 0.2s;
}

.nav-link:hover {
    opacity: 0.8;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    position: relative;
}

.btn-mina-kop {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    padding: 11px 12px;
    border-radius: 50px;
    color: white;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    backdrop-filter: blur(10px);
    transition: background 0.2s;
}

.btn-mina-kop:hover {
    background: rgba(255, 255, 255, 0.3);
}

.menu-button {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    padding: 9px 12px;
    border-radius: 50px;
    color: white;
    cursor: pointer;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.menu-button:hover {
    background: rgba(255, 255, 255, 0.3);
}

.menu-button:active {
    transform: scale(0.98);
}

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

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-content {
    position: absolute;
    right: 0;
    top: calc(100% + 0.5rem);
    width: 320px;
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    padding: 1rem;
    z-index: 50;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease-in-out;
    transform: translateY(-10px);
}

.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 0.5rem;
    border-radius: 0.375rem;
    transition: background-color 0.2s;
    cursor: pointer;
    text-decoration: none;
}

.dropdown-item:hover {
    background-color: #f9fafb;
}

.dropdown-item h3 {
    font-weight: bold;
    color: black;
    font-size: 0.875rem;
}

.dropdown-item p {
    font-size: 0.75rem;
    color: #4b5563;
}

.dropdown-divider {
    height: 1px;
    background-color: #e5e7eb;
    margin: 0.5rem 0;
}

.dropdown-buttons {
    display: flex;
    gap: 0.5rem;
    padding-top: 0.5rem;
}

.btn-support,
.btn-login {
    flex: 1;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
}

.btn-support {
    background: transparent;
    border: 1px solid #ef4444;
    color: #ef4444;
}

.btn-support:hover {
    background: #ef4444;
    color: white;
}

.btn-login {
    background: #dc2626;
    color: white;
}

.btn-login:hover {
    background: #b91c1c;
}

/* 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;
    transition: all 0.2s;
}

.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;
    transition: all 0.2s;
}

.find-button:hover {
    background: #8a0000;
}

.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;
    transition: all 0.2s;
}

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

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

/* 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;
}

/* 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;
    }
}

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

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