/* Content Pages (History, Private Rooms, Contact) */

.content {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

.content p { margin-bottom: 20px; }

/* Contact Form */
.form-container {
    background: transparent;
    padding: 30px;
    margin: 30px 0;
}

.form-group { margin-bottom: 20px; }

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

input[type="text"],
input[type="email"],
input[type="tel"],
textarea,
select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: Arial, sans-serif;
    font-size: 14px;
}

textarea { resize: vertical; min-height: 120px; }

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: #333;
    box-shadow: 0 0 5px rgba(51,51,51,0.2);
}

button {
    background: #333;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    font-size: 14px;
    transition: background 0.3s;
}

button:hover { background: #555; }

.success-message {
    display: none;
    background: #d4edda;
    color: #155724;
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 20px;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 24px;
    background: #333;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    transition: background 0.3s;
}

.cta-button:hover { background: #555; }

/* Comic Sans for content text */
.content-comic {
    font-family: 'Comic Sans MS', cursive;
    font-size: 18px;
}

/* Locations Section */
.locations-section {
    margin-top: 50px;
    padding: 30px;
    background: #f9f9f9;
    border-radius: 8px;
}

.locations-section h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 24px;
}

.location-card {
    background: white;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.location-card h3 {
    text-align: center;
    margin-bottom: 15px;
    color: #333;
    font-size: 18px;
}

.location-card-map {
    width: 100%;
    height: auto;
    border-radius: 4px;
    margin-bottom: 15px;
}

.location-card-info {
    text-align: center;
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

.location-card-info p {
    margin: 8px 0;
}
