/* Events and Newsletter Sections */

/* Events Section */
.events-section {
    background: linear-gradient(135deg, rgba(20, 10, 30, 0.95) 0%, rgba(40, 20, 50, 0.95) 100%);
    padding: 60px 40px;
}

.events-section h2 {
    text-align: center;
    font-size: 2.5em;
    color: #d4af37;
    margin-bottom: 50px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    font-weight: bold;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.event-card {
    display: flex;
    gap: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid #8b6f47;
    border-radius: 10px;
    padding: 20px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.event-card:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: #d4af37;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.event-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 80px;
    padding: 15px;
    background: linear-gradient(135deg, #8b6f47 0%, #d4af37 100%);
    border-radius: 8px;
    text-align: center;
    font-weight: bold;
}

.event-day {
    font-size: 2em;
    color: #fff;
    line-height: 1;
}

.event-month {
    font-size: 0.8em;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 5px;
    letter-spacing: 1px;
}

.event-details {
    flex: 1;
}

.event-details h3 {
    color: #d4af37;
    font-size: 1.4em;
    margin-bottom: 5px;
    margin-top: 0;
}

.event-time {
    color: #b8a878;
    font-size: 0.9em;
    font-style: italic;
    margin: 5px 0;
}

.event-description {
    color: #ccc;
    font-size: 0.95em;
    margin: 10px 0;
    line-height: 1.5;
}

.event-actions {
    margin-top: 10px;
}

.event-btn {
    background: linear-gradient(135deg, #8b6f47 0%, #d4af37 100%);
    color: #000;
    border: none;
    padding: 8px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
    font-size: 0.9em;
}

.event-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

/* Newsletter Section */
.newsletter-section {
    background: linear-gradient(135deg, rgba(30, 15, 40, 0.95) 0%, rgba(50, 25, 60, 0.95) 100%);
    padding: 60px 40px;
}

.newsletter-content {
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-ornament-top,
.newsletter-ornament-bottom {
    text-align: center;
    margin: 20px 0;
}

.newsletter-section h2 {
    text-align: center;
    color: #d4af37;
    font-size: 2.2em;
    margin: 20px 0;
}

.newsletter-section > .parallax-content > p {
    text-align: center;
    color: #b8a878;
    margin-bottom: 30px;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group input[type="text"],
.form-group input[type="email"] {
    padding: 12px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid #8b6f47;
    border-radius: 5px;
    color: #fff;
    font-size: 1em;
    transition: all 0.3s ease;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.12);
    border-color: #d4af37;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

.form-group.checkbox {
    margin: 10px 0;
}

.form-group.checkbox label {
    display: flex;
    align-items: center;
    cursor: pointer;
    color: #b8a878;
    font-size: 0.9em;
}

.form-group.checkbox input[type="checkbox"] {
    margin-right: 10px;
    cursor: pointer;
    width: 18px;
    height: 18px;
    accent-color: #d4af37;
}

.form-group.checkbox a {
    color: #d4af37;
    text-decoration: none;
}

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

.submit-btn {
    padding: 12px;
    background: linear-gradient(135deg, #8b6f47 0%, #d4af37 100%);
    color: #000;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 1em;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

.submit-btn:active {
    transform: translateY(0);
}

.form-message {
    padding: 12px;
    border-radius: 5px;
    text-align: center;
    margin-top: 10px;
    font-weight: bold;
    min-height: 20px;
}

.form-message.success {
    background: rgba(76, 175, 80, 0.2);
    color: #4caf50;
    border: 1px solid #4caf50;
}

.form-message.error {
    background: rgba(244, 67, 54, 0.2);
    color: #f44336;
    border: 1px solid #f44336;
}

/* Motto Section */
.motto-section {
    background: linear-gradient(135deg, rgba(40, 20, 50, 0.95) 0%, rgba(20, 10, 30, 0.95) 100%);
    padding: 60px 40px;
}

.motto-ornament-top,
.motto-ornament-bottom {
    text-align: center;
    margin: 20px 0;
}

.motto-section h2 {
    text-align: center;
    color: #d4af37;
    font-size: 2.2em;
    margin: 20px 0;
}

.motto-content {
    max-width: 800px;
    margin: 0 auto;
    color: #b8a878;
    line-height: 1.8;
}

.motto-content p {
    margin: 15px 0;
    font-size: 1em;
}

/* Menu Section */
.menu-section {
    background: linear-gradient(135deg, rgba(20, 10, 30, 0.95) 0%, rgba(40, 20, 50, 0.95) 100%);
    padding: 60px 40px;
    text-align: center;
}

.menu-section h2 {
    color: #d4af37;
    font-size: 2.2em;
    margin-bottom: 15px;
}

.menu-section p {
    color: #b8a878;
    margin-bottom: 30px;
    font-size: 1.1em;
}

.menu-button {
    display: inline-block;
    padding: 12px 40px;
    background: linear-gradient(135deg, #8b6f47 0%, #d4af37 100%);
    color: #000;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1em;
}

.menu-button:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .events-section,
    .newsletter-section,
    .motto-section,
    .menu-section {
        padding: 40px 20px;
    }
    
    .events-section h2,
    .newsletter-section h2,
    .motto-section h2,
    .menu-section h2 {
        font-size: 1.8em;
    }
    
    .event-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .event-date {
        min-width: auto;
    }
    
    .events-grid {
        grid-template-columns: 1fr;
    }
    
    .form-group.checkbox label {
        font-size: 0.85em;
    }
}
