.header-wrap .site-header {
    background: var(--base-3);
	  position: fixed;
  	width: 100%;
		
}
/* Base style for larger screens */
.main-title {
    font-size: 1.5rem; 
    white-space: nowrap; 
    display: block;
    max-width: 100%;
    overflow-wrap: break-word; 
	  text-transform: uppercase;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 800px) {
    .main-title {
        font-size: 1.0rem; 
        white-space: normal; 
        max-width: 150px; 
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 1rem; 
        max-width: 150px; 
    }
}
.wp-social-link:hover{
	color: var(--accent) !important;
	cursor:pointer !important;;
}
.map a{
	color:black !important;
}
.footer-widgets-container{
	display: block;
	 width: 100%; !important;
	padding: 0;
}
.alarm-modal {
    display: block;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    animation: fadeIn 0.3s;
}

.alarm-modal-content {
    background-color: #2c3e50;
    margin: 15% auto;
    padding: 30px;
    border: none;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    text-align: center;
    color: white;
    position: relative;
    animation: slideIn 0.3s;
}

.alarm-modal-close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    right: 20px;
    top: 15px;
    cursor: pointer;
}

.alarm-modal-close:hover {
    color: white;
}

.alarm-modal-content h3 {
    color: #3498db;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.alarm-modal-content p {
    margin-bottom: 20px;
    line-height: 1.6;
}

.alarm-modal-content a {
    color: #3498db;
    text-decoration: underline;
}

.alarm-modal-btn {
    background: #3498db;
    color: white;
    padding: 10px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
}

.alarm-modal-btn:hover {
    background: #2980b9;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}