/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Room Categories Section */
.room-categories {
    padding: 80px 20px;
    text-align: center;
    background: #fff;
}

.room-categories h2 {
    font-size: 40px;
    margin-bottom: 20px;
    color: #2d2d2d;
}

.room-categories p {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.room-card {
    position: relative;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.room-card-link {
    text-decoration: none;
    color: inherit;
}

.room-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.room-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.3s;
}

.room-card:hover img {
    transform: scale(1.05);
}

.room-card-content {
    padding: 20px;
}

.room-card-content h3 {
    font-size: 26px;
    margin-bottom: 10px;
    color: #2d2d2d;
}

.room-card-content p {
    font-size: 16px;
    color: #666;
    margin-bottom: 15px;
}

.badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #d4af37;
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    background: #d4af37;
    color: #fff;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.room-card-link:hover .btn {
    background: #b8972e;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.6);
}

/* CTA Section */
.cta {
    padding: 80px 20px;
    text-align: center;
    background: linear-gradient(135deg, #d4af37, #b8972e);
    color: #fff;
}

.cta h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.cta p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta .btn {
    background: #fff;
    color: #2d2d2d;
}

.cta .btn:hover {
    background: #f0f0f0;
    color: #d4af37;
}

/* Animations */
.animate-section {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.animate-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
}

.animate-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-reveal[data-delay] {
    transition-delay: var(--delay);
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .room-categories h2,
    .cta h2 {
        font-size: 36px;
    }
    .room-categories p,
    .cta p {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .room-grid {
        grid-template-columns: 1fr;
    }
    .room-card img {
        height: 200px;
    }
    .btn {
        padding: 12px 25px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .room-categories h2,
    .cta h2 {
        font-size: 32px;
    }
    .room-card-content h3 {
        font-size: 22px;
    }
    .room-card-content p {
        font-size: 14px;
    }
}