/* Hostel & Cafeteria Page - Modern & Colorful Design */
/* Theme Color: #26c976 */

.spk-hostel-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.spk-hostel-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Facility Item */
.spk-hostel-item {
    background: white;
    border-radius: 25px;
    padding: 50px;
    margin-bottom: 50px;
    box-shadow: 0 15px 60px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
}

.spk-hostel-item:hover {
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.12);
    transform: translateY(-5px);
}

/* Content Grid */
.spk-hostel-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

/* Image Section */
.spk-hostel-image-wrapper {
    position: relative;
}

.spk-hostel-image-main {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
    background: #f0f0f0;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.spk-hostel-image-main img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.spk-hostel-image-main:hover img {
    transform: scale(1.08);
}

/* Text Section */
.spk-hostel-text h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #333333;
    margin-bottom: 20px;
    line-height: 1.3;
}

.spk-hostel-text p {
    font-size: 17px;
    color: #666666;
    line-height: 1.9;
}

/* Color accents for each item */
.spk-hostel-item:nth-child(1) {
    border-left: 6px solid #26c976;
}

.spk-hostel-item:nth-child(1) h3 {
    color: #26c976;
}

.spk-hostel-item:nth-child(2) {
    border-left: 6px solid #FFB74D;
}

.spk-hostel-item:nth-child(2) h3 {
    color: #FFB74D;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .spk-hostel-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .spk-hostel-section {
        padding: 60px 0;
    }

    .spk-hostel-item {
        padding: 35px 25px;
        margin-bottom: 35px;
    }

    .spk-hostel-text h3 {
        font-size: 1.6rem;
    }
}

/* Animation Classes */
.spk-fade-in {
    opacity: 0;
    transform: translateY(30px);
}

.spk-scale-in {
    opacity: 0;
    transform: scale(0.95);
}