/*
Theme Name: Mirra Fashions Dubai
Theme URI: https://mirrafashions.ae
Author: Mirra Fashions
Author URI: https://mirrafashions.ae
Description: Premier modeling & posing academy theme for TikTok, Instagram, YouTube, Snapchat creators. Based on original Mirra Fashions design.
Version: 1.0.0
License: GPL v2 or later
Text Domain: mirra-fashions
*/

* { 
    font-family: 'Inter', sans-serif; 
    scroll-behavior: smooth; 
}

.gradient-pink-hero {
    background: linear-gradient(135deg, #ff0080 0%, #ff4d8c 25%, #ff99cc 50%, #ff66b5 75%, #ff1a75 100%);
    background-size: 200% 200%;
    animation: gradientShift 8s ease infinite;
}

@keyframes gradientShift { 
    0% { background-position: 0% 50%; } 
    50% { background-position: 100% 50%; } 
    100% { background-position: 0% 50%; } 
}

.glow-pink { 
    text-shadow: 0 0 20px rgba(255, 20, 147, 0.8), 0 0 40px rgba(255, 105, 180, 0.5); 
}

.card-glow { 
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1); 
    border: 1px solid rgba(255, 105, 180, 0.3); 
}

.card-glow:hover { 
    transform: translateY(-12px) scale(1.02); 
    box-shadow: 0 30px 50px -20px rgba(255, 20, 147, 0.5); 
    border-color: #ff69b4; 
}

.btn-pink-pulse { 
    animation: pulseBtn 2s infinite; 
}

@keyframes pulseBtn { 
    0% { box-shadow: 0 0 0 0 rgba(255, 105, 180, 0.7); } 
    70% { box-shadow: 0 0 0 15px rgba(255, 105, 180, 0); } 
    100% { box-shadow: 0 0 0 0 rgba(255, 105, 180, 0); } 
}

@keyframes float { 
    0%, 100% { transform: translateY(0px); } 
    50% { transform: translateY(-20px); } 
}

.float-animation { 
    animation: float 4s ease-in-out infinite; 
}

.pink-gradient-text { 
    background: linear-gradient(135deg, #ff0080, #ff4d8c, #ff99cc); 
    -webkit-background-clip: text; 
    background-clip: text; 
    color: transparent; 
}

::-webkit-scrollbar { 
    width: 10px; 
}

::-webkit-scrollbar-track { 
    background: #ffe6f0; 
}

::-webkit-scrollbar-thumb { 
    background: #ff69b4; 
    border-radius: 10px; 
}

.toast-notify { 
    position: fixed; 
    bottom: 25px; 
    right: 25px; 
    z-index: 9999; 
    background: linear-gradient(135deg, #ff0080, #ff4d8c); 
    color: white; 
    padding: 14px 28px; 
    border-radius: 50px; 
    font-weight: 600; 
    box-shadow: 0 15px 35px rgba(255, 20, 147, 0.3); 
}

.modal-backdrop { 
    backdrop-filter: blur(8px); 
}

.spinner { 
    border: 3px solid #f3f3f3; 
    border-top: 3px solid #ff0080; 
    border-radius: 50%; 
    width: 40px; 
    height: 40px; 
    animation: spin 1s linear infinite; 
    margin: 0 auto; 
}

@keyframes spin { 
    0% { transform: rotate(0deg); } 
    100% { transform: rotate(360deg); } 
}

/* Before/After Slider Styles */
.before-after-container { 
    position: relative; 
    width: 100%; 
    overflow: hidden; 
    border-radius: 24px; 
    cursor: ew-resize; 
}

.before-image, .after-image { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    display: block; 
}

.slider-handle { 
    position: absolute; 
    top: 0; 
    bottom: 0; 
    width: 4px; 
    background: white; 
    cursor: ew-resize; 
    box-shadow: 0 0 10px rgba(0,0,0,0.5); 
    z-index: 10; 
}

.slider-handle::before { 
    content: ''; 
    position: absolute; 
    top: 50%; 
    left: 50%; 
    transform: translate(-50%, -50%); 
    width: 40px; 
    height: 40px; 
    background: white; 
    border-radius: 50%; 
    box-shadow: 0 0 10px rgba(0,0,0,0.3); 
}

.slider-handle::after { 
    content: '◀ ▶'; 
    position: absolute; 
    top: 50%; 
    left: 50%; 
    transform: translate(-50%, -50%); 
    color: #ff0080; 
    font-size: 12px; 
    font-weight: bold; 
    z-index: 11; 
}

/* Slideshow Styles */
.slideshow-container { 
    position: relative; 
    overflow: hidden; 
    border-radius: 24px; 
}

.slideshow-slide { 
    display: none; 
    animation: fade 0.5s ease-in-out; 
}

.slideshow-slide.active { 
    display: block; 
}

@keyframes fade { 
    from { opacity: 0; } 
    to { opacity: 1; } 
}

.slideshow-dot { 
    transition: all 0.3s ease; 
}

.slideshow-dot:hover { 
    transform: scale(1.2); 
}
/* ===== Navigation Menu Hover Colors ===== */
.main-navigation a,
.primary-menu a,
.nav-link {
    transition: color 0.3s ease;
}

.main-navigation a:hover,
.primary-menu a:hover,
.nav-link:hover {
    color: #ff69b4 !important;
}

/* Active menu item */
.main-navigation .current-menu-item a,
.primary-menu .current-menu-item a {
    color: #ff0080 !important;
    font-weight: 600;
}
/* Video Container */
.video-wrapper { 
    position: relative; 
    padding-bottom: 56.25%; 
    height: 0; 
    overflow: hidden; 
    border-radius: 24px; 
}

.video-wrapper iframe { 
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    border-radius: 24px; 
}

.transform-hover { 
    transition: all 0.4s ease; 
}

.transform-hover:hover { 
    transform: scale(1.02); 
    box-shadow: 0 20px 40px rgba(0,0,0,0.1); 
}

/* WordPress Core */
.wp-block-image img {
    border-radius: 20px;
}

.aligncenter {
    text-align: center;
}
/* Contact Form 7 Styling */
.wpcf7-form .form-group {
    margin-bottom: 20px;
}

.wpcf7-form .form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #fbc4d0;
    border-radius: 12px;
    outline: none;
    transition: all 0.3s ease;
    font-size: 16px;
}

.wpcf7-form .form-control:focus {
    border-color: #ff0080;
    box-shadow: 0 0 0 3px rgba(255, 0, 128, 0.1);
}

.wpcf7-form .btn {
    width: 100%;
    background: linear-gradient(135deg, #ff0080, #ff4d8c);
    color: white;
    padding: 12px;
    border-radius: 50px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
}

.wpcf7-form .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 0, 128, 0.3);
}

.wpcf7-form .wpcf7-not-valid-tip {
    color: #dc2626;
    font-size: 12px;
    margin-top: 5px;
}

.wpcf7-form .wpcf7-response-output {
    margin: 20px 0 0;
    padding: 12px;
    border-radius: 10px;
}

.wpcf7-form .wpcf7-mail-sent-ok {
    background: #dcfce7;
    border-color: #22c55e;
    color: #166534;
}

.wpcf7-form .wpcf7-validation-errors {
    background: #fee2e2;
    border-color: #dc2626;
    color: #991b1b;
}

.wpcf7-form .wpcf7-spinner {
    display: none;
}
/* Responsive */
@media (max-width: 768px) {
    .gradient-pink-hero {
        padding: 60px 0;
    }
    
    h1 {
        font-size: 36px !important;
    }
}