/* ==================== Things to Do Page Styles ==================== */

/* Hero Section */
.things-hero {
    position: relative;
    background: linear-gradient(135deg, rgba(255, 105, 180, 0.85), rgba(255, 20, 147, 0.85)), url('/media/gallery/hero_room.jpg') center/cover no-repeat;
    padding: 120px 0 80px;
    overflow: hidden;
}

.things-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.2) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-block;
    padding: 12px 30px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    color: white;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 8px 25px rgba(255, 105, 180, 0.3);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 12px 35px rgba(255, 105, 180, 0.4);
    }
}

.things-hero h1,
.things-hero h1.display-3 {
    color: white !important;
    text-shadow: none;
    animation: slideInLeft 0.8s ease-out 0.2s both;
}

.things-hero .lead {
    color: rgba(255, 255, 255, 0.9) !important;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.things-hero .lead {
    color: #4a5568;
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    animation: slideInRight 0.8s ease-out 0.4s both;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Categories Filter */
.categories-filter {
    background: #f8f9fa;
    padding: 40px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.filter-wrapper {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.filter-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 50px;
    color: #4a5568;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.filter-btn i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.filter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 105, 180, 0.2);
    border-color: #FF69B4;
    color: #FF69B4;
}

.filter-btn:hover i {
    transform: scale(1.2);
}

.filter-btn.active {
    background: linear-gradient(135deg, #FF69B4 0%, #FF1493 100%);
    color: white;
    border-color: transparent;
    box-shadow: 0 8px 25px rgba(255, 105, 180, 0.4);
}

/* Activities Section */
.activities-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.activity-item {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.activity-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.activity-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.activity-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.activity-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.activity-card:hover .activity-image img {
    transform: scale(1.1);
}

.activity-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.activity-badge.adventure {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
}

.activity-badge.culture {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    color: white;
}

.activity-badge.nature {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
}

.activity-badge.food {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
}

.activity-badge.nightlife {
    background: linear-gradient(135deg, #6366f1, #4f46e5);
    color: white;
}

.activity-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.activity-card:hover .activity-overlay {
    opacity: 1;
}

.btn-explore {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FF69B4;
    font-size: 24px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transform: scale(0);
}

.activity-card:hover .btn-explore {
    transform: scale(1);
}

.btn-explore:hover {
    background: #FF69B4;
    color: white;
    transform: scale(1.1) rotate(360deg);
}

.activity-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.activity-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.activity-icon {
    width: 55px;
    height: 55px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.activity-icon.adventure {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.activity-icon.culture {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.activity-icon.nature {
    background: linear-gradient(135deg, #10b981, #059669);
}

.activity-icon.food {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.activity-icon.nightlife {
    background: linear-gradient(135deg, #6366f1, #4f46e5);
}

.activity-meta {
    display: flex;
    flex-direction: column;
    gap: 6px;
    text-align: right;
}

.activity-meta span {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
    font-size: 13px;
    color: #718096;
}

.activity-meta i {
    color: #a0aec0;
    font-size: 12px;
}

.activity-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 12px;
}

.activity-content p {
    color: #718096;
    line-height: 1.7;
    margin-bottom: 20px;
    flex: 1;
}

.activity-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.activity-features span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #4a5568;
    font-weight: 500;
}

.activity-features i {
    color: #10b981;
    font-size: 14px;
}

.activity-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.price .label {
    font-size: 12px;
    color: #a0aec0;
    text-transform: uppercase;
    font-weight: 600;
}

.price .amount {
    font-size: 1.8rem;
    font-weight: 800;
    color: #FF69B4;
}

.price .per {
    font-size: 13px;
    color: #718096;
}

.btn-book {
    padding: 12px 28px;
    background: linear-gradient(135deg, #FF69B4 0%, #FF1493 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 105, 180, 0.3);
}

.btn-book:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 105, 180, 0.4);
}

.btn-book:active {
    transform: translateY(0);
}

/* No Results */
.no-results {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    text-align: center;
}

.no-results i {
    font-size: 80px;
    color: #cbd5e0;
    margin-bottom: 25px;
}

.no-results h3 {
    font-size: 1.8rem;
    color: #4a5568;
    margin-bottom: 12px;
}

.no-results p {
    color: #a0aec0;
    font-size: 1.1rem;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
    margin-top: 60px;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.05);
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 40%, rgba(255, 105, 180, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 60%, rgba(255, 20, 147, 0.08) 0%, transparent 50%);
}

.cta-card {
    background: white;
    backdrop-filter: blur(15px);
    border-radius: 25px;
    padding: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    border: 2px solid #e2e8f0;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.08), 0 10px 30px rgba(255, 105, 180, 0.1);
    position: relative;
    animation: ctaFadeIn 0.8s ease-out;
}

@keyframes ctaFadeIn {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.cta-content h2 {
    color: #1a202c;
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: none;
    line-height: 1.2;
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 50%, #4a5568 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: slideInLeft 0.8s ease-out 0.2s both;
}

.cta-content p {
    color: #4a5568;
    font-size: 1.2rem;
    margin: 0;
    max-width: 600px;
    text-shadow: none;
    line-height: 1.6;
    animation: slideInLeft 0.8s ease-out 0.4s both;
}

.cta-actions {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
    animation: slideInRight 0.8s ease-out 0.6s both;
}

.btn-cta-primary,
.btn-cta-secondary {
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 17px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    white-space: nowrap;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.btn-cta-primary {
    background: linear-gradient(135deg, #FF69B4 0%, #FF1493 100%);
    color: white;
    box-shadow: 0 10px 35px rgba(255, 105, 180, 0.3);
}

.btn-cta-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #FF1493 0%, #FF69B4 100%);
    transition: left 0.5s ease;
}

.btn-cta-primary:hover::before {
    left: 0;
}

.btn-cta-primary span {
    position: relative;
    z-index: 1;
}

.btn-cta-primary:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 50px rgba(255, 105, 180, 0.4);
    color: white;
}

.btn-cta-secondary {
    background: white;
    color: #FF69B4;
    border: 2px solid #FF69B4;
    box-shadow: 0 8px 25px rgba(255, 105, 180, 0.15);
}

.btn-cta-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #FF69B4 0%, #FF1493 100%);
    transition: left 0.5s ease;
    z-index: 0;
}

.btn-cta-secondary:hover::before {
    left: 0;
}

.btn-cta-secondary span {
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.btn-cta-secondary:hover {
    border-color: #FF69B4;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 40px rgba(255, 105, 180, 0.3);
    color: white;
}


/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes ctaFadeIn {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Responsive Design */
@media (max-width: 991px) {
    .cta-section {
        padding: 80px 0;
    }

    .cta-card {
        flex-direction: column;
        text-align: center;
        padding: 50px 40px;
    }

    .cta-content h2 {
        font-size: 2.3rem;
    }

    .cta-content p {
        max-width: 100%;
        font-size: 1.1rem;
    }

    .cta-actions {
        flex-direction: column;
        width: 100%;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .things-hero {
        padding: 80px 0 60px;
    }

    .things-hero h1 {
        font-size: 2.5rem;
    }

    .categories-filter {
        padding: 30px 0;
    }

    .filter-wrapper {
        gap: 10px;
    }

    .filter-btn {
        padding: 12px 22px;
        font-size: 14px;
    }

    .filter-btn i {
        font-size: 16px;
    }

    .activities-section {
        padding: 60px 0;
    }

    .activity-image {
        height: 220px;
    }

    .activity-content {
        padding: 20px;
    }

    .activity-content h3 {
        font-size: 1.2rem;
    }

    .price .amount {
        font-size: 1.5rem;
    }

    .cta-section {
        padding: 60px 0;
    }

    .cta-card {
        padding: 40px 30px;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-content p {
        font-size: 1.05rem;
    }
}

@media (max-width: 480px) {
    .things-hero {
        padding: 60px 0 40px;
    }

    .hero-badge {
        font-size: 14px;
        padding: 10px 20px;
    }

    .things-hero h1 {
        font-size: 2rem;
    }

    .things-hero .lead {
        font-size: 1rem;
    }

    .filter-btn span {
        display: none;
    }

    .filter-btn {
        padding: 12px;
        width: 50px;
        height: 50px;
        justify-content: center;
    }

    .activity-header {
        flex-direction: column;
        gap: 15px;
    }

    .activity-meta {
        flex-direction: row;
        width: 100%;
        justify-content: space-between;
    }

    .activity-meta span {
        justify-content: flex-start;
    }

    .activity-footer {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }

    .btn-book {
        width: 100%;
    }

    .cta-section {
        padding: 50px 0;
    }

    .cta-card {
        padding: 35px 25px;
    }

    .cta-content h2 {
        font-size: 1.8rem;
    }

    .cta-content p {
        font-size: 1rem;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        padding: 16px 32px;
        font-size: 15px;
    }
}
