/* Home Page Styles */

.welcome-text {
    padding: 30px;
    margin: 30px 0;
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    font-family: 'Comic Sans MS', cursive;
}

.welcome-text p { margin-bottom: 15px; }

.nav-buttons {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.nav-buttons a {
    display: inline-block;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    outline: none !important;
    box-shadow: none !important;
}

.nav-buttons a:hover { transform: translateY(-5px); box-shadow: 0 8px 20px rgba(0,0,0,0.2); }

.nav-buttons img {
    width: 200px;
    height: auto;
    border-radius: 4px;
    display: block;
    background: transparent !important;
    border: none !important;
    outline: none !important;
}

.extra-buttons {
    text-align: center;
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-secondary {
    display: inline-block;
    padding: 10px 20px;
    background: #333;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    transition: background 0.3s;
}

.btn-secondary:hover { background: #555; }

/* Location Modal */
.location-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

.location-modal.open {
    display: flex;
    justify-content: center;
    align-items: center;
}

.location-modal-content {
    background: white;
    padding: 30px;
    border-radius: 8px;
    max-width: 600px;
    width: 90%;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    text-align: center;
}

.modal-close {
    float: right;
    font-size: 28px;
    font-weight: bold;
    color: #999;
    cursor: pointer;
}

.modal-close:hover { color: #333; }

.location-map {
    width: 100%;
    height: auto;
    margin: 20px 0;
    border-radius: 4px;
}

.location-address {
    font-size: 18px;
    line-height: 1.6;
    color: #333;
    margin: 20px 0;
}

.location-button {
    display: inline-block;
    margin-top: 15px;
    padding: 8px 16px;
    background: #333;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    border: none;
    transition: background 0.3s;
}

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