/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Nov 10 2025 | 07:14:45 */
/* 2025.06.19 - Kingsley */
a {
	text-decoration: none !important;
}
.site-below-footer-wrap[data-section="section-below-footer-builder"] {
	padding: 50px;
	    background: linear-gradient(0deg, rgb(47, 79, 79) 0%, rgb(20, 20, 43) 0%, rgb(47, 79, 79) 100%) !important;
}

@font-face {
  font-family: 'kmpFont';
  src: url('/font/KMP-Font.TTF') format('truetype');
}


body .site-title,
.site-title h1,
.site-title a {
  font-family: 'kmpFont', Arial, sans-serif !important;
	font-weight: 1;
}

/* Cards CSS */
.kmp-grid-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.kmp-grid-title {
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.kmp-grid-title h2 {
    text-align: left;
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    background: linear-gradient(135deg, #2f4f4f 0%, #212121 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.kmp-grid-title p {
    font-size: 1.1rem;
    color: #666;
    margin: 0;
}

.kmp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.kmp-card {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.kmp-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00ff00, #2f4f4f);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.kmp-card:hover::before {
    transform: scaleX(1);
}

.kmp-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: #cbd5e0;
}

.kmp-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.kmp-card:hover .kmp-card-icon {
    transform: scale(1.1);
}

.kmp-card-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
    color: #1a202c;
}

.kmp-card-description {
    color: #718096;
    line-height: 1.6;
    margin: 0 0 1.5rem 0;
}

.kmp-card-url {
    font-size: 0.9rem;
    color: #2f4f4f;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.kmp-card-url::after {
    content: '→';
    transition: transform 0.3s ease;
}

.kmp-card:hover .kmp-card-url::after {
    transform: translateX(4px);
}

/* Icon backgrounds */
.kmp-main { background: linear-gradient(135deg, #00ff00, #764ba2); color: white; }
.kmp-booking { background: linear-gradient(135deg, #00ff00, #f5576c); color: white; }
.kmp-shop { background: linear-gradient(135deg, #00ff00, #00f2fe); color: white; }
.kmp-blog { background: linear-gradient(135deg, #00ff00, #38f9d7); color: white; }
/* Responsive adjustments */
@media (max-width: 768px) {
    .kmp-grid-container {
        padding: 1rem;
    }
    
    .kmp-grid-title h2 {
        font-size: 2rem;
    }
    
    .kmp-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .kmp-card {
        padding: 1.5rem;
    }
}