﻿
.premium-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    border-radius: 15px !important;
    background: white;
    height: 100%;
}

.premium-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2) !important;
}

.premium-image {
    transition: transform 0.3s ease;
    border-radius: 15px;
}

.premium-card:hover .premium-image {
    transform: scale(1.05);
}

.premium-overlay {
    transition: opacity 0.3s ease;
    opacity: 0;
    background: rgba(0, 0, 0, 0.3) !important; /* Transparent black instead of solid black */
}


.premium-card:hover .premium-overlay {
    opacity: 1 !important;
}

.premium-load-more-btn {
    background: linear-gradient(45deg, #0d6efd, #0b5ed7) !important;
    border: none;
    color: white;
    transition: transform 0.2s ease, background 0.2s ease;
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.4) !important;
}

    .premium-load-more-btn:hover {
        transform: translateY(-3px);
        background: linear-gradient(45deg, #0b5ed7, #0a58ca) !important;
        box-shadow: 0 6px 20px rgba(13, 110, 253, 0.6) !important;
        color: white;
    }

.object-fit-cover {
    object-fit: cover;
}

.premium-gallery-section {
    background: linear-gradient(135deg, #f8fafc 0%, #f0f4f8 100%) !important;
  /*  min-height: 100vh;*/
}

.premium-gallery-item {
    margin-bottom: 1.5rem;
}

/* Premium Modal Styles */
.premium-image-modal .modal-content {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

.premium-modal-content {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

.premium-modal-header {
    background: rgba(0, 0, 0, 0.8) !important;
    border: none !important;
    padding: 10px 20px !important;
    border-radius: 10px 10px 0 0 !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 1051 !important;
    transition: all 0.3s ease !important;
}

    .premium-modal-header:hover {
        background: rgba(0, 0, 0, 0.9) !important;
    }

.premium-close-btn {
    filter: none !important;
    background: rgba(255, 0, 0, 0.9) !important;
    border-radius: 50% !important;
    width: 12px !important; /* Smaller size */
    height: 12px !important; /* Smaller size */
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: relative !important;
    z-index: 1052 !important;
    transition: all 0.3s ease !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
}

    .premium-close-btn::before,
    .premium-close-btn::after {
        content: '';
        position: absolute;
        width: 20px; /* Smaller lines */
        height: 3px;
        background-color: white;
        border-radius: 2px;
    }

    .premium-close-btn::before {
        transform: rotate(45deg);
    }

    .premium-close-btn::after {
        transform: rotate(-45deg);
    }

    .premium-close-btn:hover {
        background: rgba(200, 0, 0, 1) !important;
        transform: scale(1.1) !important;
        box-shadow: 0 0 20px rgba(255, 0, 0, 0.5) !important;
    }

.premium-modal-body {
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 100vh !important;
    position: relative !important;
}

.premium-image-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100vh;
    padding: 60px 0 !important;
}

.premium-full-image {
    max-width: 95vw !important;
    max-height: 85vh !important;
    object-fit: contain !important;
    border-radius: 12px !important;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.7) !important;
    transition: transform 0.4s ease, box-shadow 0.4s ease !important;
    border: 3px solid rgba(255, 255, 255, 0.1) !important;
}

    .premium-full-image:hover {
        transform: scale(1.03) !important;
        box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8) !important;
    }

.premium-nav-arrows {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    pointer-events: none;
    z-index: 1050;
    transform: translateY(-50%) !important;
}

.premium-nav-btn {
    pointer-events: all;
    background: rgba(255, 255, 255, 0.15) !important;
    border: 2px solid rgba(255, 255, 255, 0.4) !important;
    color: #28a745 !important; /* Green color */
    border-radius: 50% !important;
    width: 50px !important; /* Smaller size */
    height: 50px !important; /* Smaller size */
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 1.2rem !important; /* Smaller size */
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    backdrop-filter: blur(10px) !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3) !important;
}

    .premium-nav-btn:hover {
        background: rgba(40, 167, 69, 0.2) !important; /* Green hover */
        color: white !important;
        transform: scale(1.1) !important;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4) !important;
    }

    .premium-nav-btn:disabled {
        opacity: 0.3 !important;
        cursor: not-allowed !important;
        transform: scale(0.8) !important;
    }

.modal-fullscreen {
    max-width: 100% !important;
    height: 100% !important;
    margin: 0 !important;
}

.premium-counter {
    font-size: 1rem !important; /* Smaller font */
    font-weight: bold !important;
    z-index: 1051 !important;
    backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    bottom: 20px !important; /* Position at bottom */
    left: 50% !important;
    transform: translateX(-50%) !important;
}

/* Ensure modal backdrop appears */
.premium-image-modal {
    display: none;
}

    .premium-image-modal.show {
        display: block;
    }

