@font-face {
    font-family: 'SF Pro Display';
    src: url('font/SFPRODISPLAYREGULAR.OTF') format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'SF Pro Display';
    src: url('font/SFPRODISPLAYMEDIUM.OTF') format('opentype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'SF Pro Display';
    src: url('font/SFPRODISPLAYBOLD.OTF') format('opentype');
    font-weight: 700;
    font-style: normal;
}

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

body {
    font-family: 'SF Pro Text', 'SF Pro Display', sans-serif;
    background-color: #f0f0f0;
    color: #333;
}

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

header {
    text-align: center;
    margin-bottom: 40px;
}

header h1 {
    font-size: 2.5em;
    color: #333;
}

header p {
    color: #666;
    font-size: 1.2em;
}

.king-robert {
    color: #8b4513;
    font-weight: bold;
    font-size: 1.1em;
    margin-top: 10px;
}

.add-nacker {
    background: white;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    border: 1px solid #ddd;
}

.add-nacker h2 {
    margin-bottom: 15px;
    color: #333;
}

#nackerForm {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#nackerForm input,
#nackerForm textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1em;
    font-family: 'SF Pro Text', 'SF Pro Display', sans-serif;
}

#nackerForm input:focus,
#nackerForm textarea:focus {
    outline: none;
    border-color: #666;
}

#nackerForm button {
    padding: 12px;
    background-color: #4a90a4;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1em;
    cursor: pointer;
}

#nackerForm button:hover {
    background-color: #3a7a8e;
}

.captcha {
    margin-top: 10px;
}

.captcha label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #333;
}

.captcha #captchaQuestion {
    font-size: 1.2em;
    color: #4a90a4;
}

.captcha input {
    width: 100%;
}

.nacker-list h2 {
    margin-bottom: 15px;
    color: #333;
}

.nacker-card {
    background: white;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
}

.nacker-card h3 {
    color: #333;
    margin-bottom: 5px;
}

.nacker-card .location {
    color: #666;
    font-size: 0.9em;
    margin-bottom: 10px;
}

.nacker-card .phone {
    color: #666;
    font-size: 0.9em;
    margin-bottom: 10px;
}

.nacker-card .description {
    color: #555;
    line-height: 1.5;
}

.nacker-card .date {
    color: #999;
    font-size: 0.8em;
    margin-top: 10px;
}

.no-nackers {
    text-align: center;
    color: #999;
    padding: 20px;
}

footer {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
    color: #666;
    font-size: 0.9em;
}

.wedding-section {
    background: white;
    padding: 20px;
    border-radius: 8px;
    margin-top: 30px;
    border: 1px solid #ddd;
}

.wedding-section h2 {
    margin-bottom: 15px;
    color: #333;
    text-align: center;
}

.wedding-counter {
    text-align: center;
}

.wedding-counter p {
    font-size: 1.2em;
    margin-bottom: 15px;
    color: #333;
}

.wedding-counter #weddingCount {
    font-weight: bold;
    color: #e74c3c;
    font-size: 1.5em;
}

.wedding-btn {
    padding: 12px 30px;
    background-color: #e74c3c;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1.1em;
    cursor: pointer;
}

.wedding-btn:hover {
    background-color: #c0392b;
}

.wedding-btn:disabled {
    background-color: #999;
    cursor: not-allowed;
}

.michael-btn {
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #9b59b6;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1em;
    cursor: pointer;
}

.michael-btn:hover {
    background-color: #8e44ad;
}

.ascii-art {
    margin-top: 20px;
    text-align: center;
}

.ascii-art pre {
    font-family: 'Courier New', monospace;
    font-size: 1.2em;
    line-height: 1.2;
    color: #9b59b6;
    background: white;
    padding: 15px;
    border-radius: 4px;
    display: inline-block;
    border: 1px solid #ddd;
}

.gypsy-btn {
    margin-top: 15px;
    padding: 10px 20px;
    background-color: #27ae60;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1em;
    cursor: pointer;
}

.gypsy-btn:hover {
    background-color: #219150;
}
