/* 
 * File: buttons.css
 * Purpose: Styles for all buttons including "More Rooms", "More Facilities", and "More Attractions"
 * Notes: Consistent button styling with hover animations.
 */

/* Base button styling */
/*
* File: buttons.css
* Purpose: Styles for all buttons including "More Rooms", "More Facilities", and "More Attractions"
* Notes: Consistent button styling with hover animations.
*/

/* Base button styling */
/* Updated buttons.css */
.view-more-container {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    margin-bottom: 20px;
    width: 100%;
}

.view-more-btn {
    position: relative;
    display: inline-block;
    padding: 12px 35px;
    background-color: transparent;
    color: #333;
    font-weight: 600;
    border: 2px solid #333;
    border-radius: 50px;
    overflow: hidden;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 1;
    text-decoration: none !important;
}

.view-more-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: #333;
    transition: all 0.4s ease;
    z-index: -1;
}

.view-more-btn:hover {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.view-more-btn:hover::before {
    left: 0;
}

.view-more-btn i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.view-more-btn:hover i {
    transform: translateX(4px);
}

/* Specific button styles */
.rooms-more-btn,
.facilities-more-btn,
.attractions-more-btn {
    border-color: #000000;
    color: #000000;
}

.rooms-more-btn::before,
.facilities-more-btn::before,
.attractions-more-btn::before {
    background-color: #000000;
}

.rooms-more-btn:hover,
.facilities-more-btn:hover,
.attractions-more-btn:hover {
    color: white;
}

/* Active state animation */
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.2); }
    70% { box-shadow: 0 0 0 10px rgba(0, 0, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 0, 0, 0); }
}

.view-more-btn:active {
    animation: pulse 0.3s forwards;
    transform: translateY(0);
}

/* Responsive adjustments */
@media (min-width: 769px) {
    .view-more-btn {
        padding: 10px 25px;
        font-size: 0.85rem;
    }
}
    
    /* Specific styling for "More Facilities" button */
    .facilities-more-btn {
    border-color: #000000;
    color: #000000;
    }
    
    .facilities-more-btn::before {
    background-color: #000000;
    }
    
    .facilities-more-btn:hover {
    color: white;
    }
    
    /* Specific styling for "More Attractions" button */
    .attractions-more-btn {
    border-color: #000000;
    color: #000000;
    }
    
    .attractions-more-btn::before {
    background-color: #000000;
    }
    
    .attractions-more-btn:hover {
    color: white;
    }
    
    /* Container to center buttons */
    .view-more-container {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    margin-bottom: 20px;
    }
    
    /* Pulse animation on click */
    @keyframes pulse {
    0% {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.2);
    }
    70% {
    box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
    }
    100% {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }
    }
    
    /* Active state animation */
    .view-more-btn:active {
    animation: pulse 0.3s forwards;
    transform: translateY(0);
    }
    
    /* Attraction link button */
    .attraction-link-btn {
    display: inline-flex;
    align-items: center;
    padding: 8px 20px;
    background-color: transparent;
    color: var(--teal);
    border: 2px solid var(--teal);
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 15px;
    }
    
    @media (min-width: 769px) {
    .attraction-link-btn {
    padding: 10px 25px;
    font-size: 1rem;
    border-width: 3px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }
    }
    
    .attraction-link-btn:hover {
    background-color: #000000;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }
    
    .attraction-link-btn i {
    margin-left: 5px;
    transition: transform 0.3s ease;
    }
    
    .attraction-link-btn:hover i {
    transform: translateX(3px);
    }