/* ========================================= */
/* PHOTOSHOOTING STORE BUTTON STYLES        */
/* ========================================= */

.photoshooting-button {
    position: relative;
    display: block;
    width: 90%;
    max-width: 100%;
    margin: 20px auto;
    background-image: url('../img/photoshooting.jpeg');
    background-size: cover;
    background-position: center;
    background-color: #f5f5f5;
    border: 2px solid rgba(0, 0, 0, 0.2);
    padding: 40%;
    text-align: center;
    font-size: 22px;
    border-radius: 5px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.photoshooting-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.photoshooting-button-text {
    position: absolute;
    left: 10px;
    bottom: 10px;
    margin: 0;
    padding: 8px 12px;
    color: white;
    font-size: inherit;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 4px;
    font-weight: 600;
}

/* ========================================= */
/* PHOTOSHOOTING POPUP STYLES               */
/* ========================================= */

#popupPhotoshooting {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    backdrop-filter: blur(8px);
}

.photoshooting-popup-content {
    position: relative;
    padding: 0;
    margin: 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 100vh;
}

/* Close Button */
.photoshooting-close-btn {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #333;
    text-decoration: none;
    z-index: 10001;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.photoshooting-close-btn:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Hero Section */
.photoshooting-hero {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.photoshooting-hero-image {
    width: 100%;
    height: 100%;
    background-image: url('../img/photoshooting.jpeg');
    background-size: cover;
    background-position: center;
    filter: brightness(0.7);
}

.photoshooting-hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 40px 20px 30px;
    color: white;
}

.photoshooting-title {
    font-size: 1.8em;
    font-weight: 700;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

/* Content Container */
.photoshooting-content {
    padding: 30px 20px 100px;
    max-width: 600px;
    margin: 0 auto;
}

/* Section Styles */
.photoshooting-section {
    background: white;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 20px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.photoshooting-section:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.photoshooting-section-header {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    gap: 12px;
}

.photoshooting-section-header i {
    color: #c8a165;
    font-size: 1.4em;
    width: 24px;
    text-align: center;
}

.photoshooting-section-header h2 {
    font-size: 1.3em;
    font-weight: 600;
    margin: 0;
    color: #333;
}

.photoshooting-section-text {
    line-height: 1.6;
    color: #555;
    margin: 0;
    font-size: 1em;
}

/* Package Section */
.photoshooting-package {
    background: linear-gradient(135deg, #c8a165 0%, #d4b376 100%);
    border-radius: 16px;
    padding: 30px 24px;
    margin-top: 30px;
    color: white;
    box-shadow: 0 6px 24px rgba(200, 161, 101, 0.3);
}

.photoshooting-package-header {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
    gap: 12px;
}

.photoshooting-package-header i {
    color: white;
    font-size: 1.5em;
    width: 28px;
    text-align: center;
}

.photoshooting-package-header h2 {
    font-size: 1.4em;
    font-weight: 700;
    margin: 0;
    color: white;
}

/* Interest Card */
.photoshooting-interest-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.photoshooting-interest-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.photoshooting-interest-icon i {
    color: white;
    font-size: 1.2em;
}

.photoshooting-interest-content p {
    font-size: 1.1em;
    font-weight: 600;
    color: #333;
    margin: 0 0 4px;
}

.photoshooting-interest-content small {
    color: #666;
    font-size: 0.9em;
    line-height: 1.4;
}

/* ========================================= */
/* RESPONSIVE DESIGN                         */
/* ========================================= */

@media (max-width: 768px) {
    .photoshooting-hero {
        height: 220px;
    }
    
    .photoshooting-title {
        font-size: 1.5em;
    }
    
    .photoshooting-content {
        padding: 20px 16px 80px;
    }
    
    .photoshooting-section {
        padding: 20px;
    }
    
    .photoshooting-package {
        padding: 24px 20px;
    }
    
    .photoshooting-interest-card {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .photoshooting-close-btn {
        top: 16px;
        right: 16px;
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .photoshooting-hero {
        height: 180px;
    }
    
    .photoshooting-title {
        font-size: 1.3em;
    }
    
    .photoshooting-hero-overlay {
        padding: 20px 16px 20px;
    }
    
    .photoshooting-section-header h2 {
        font-size: 1.2em;
    }
    
    .photoshooting-package-header h2 {
        font-size: 1.3em;
    }
}

/* ========================================= */
/* ACCESSIBILITY AND ANIMATIONS             */
/* ========================================= */

@media (prefers-reduced-motion: reduce) {
    .photoshooting-section:hover,
    .photoshooting-button:hover,
    .photoshooting-close-btn:hover {
        transform: none;
    }
    
    .photoshooting-section,
    .photoshooting-button,
    .photoshooting-close-btn {
        transition: none;
    }
}

/* Focus styles for accessibility */
.photoshooting-close-btn:focus {
    outline: 3px solid #c8a165;
    outline-offset: 2px;
}
