/* Premium Estate Pro - Design Module Styles */

/* ============================================================
   PAGE BANNER STYLES
   ============================================================ */

.premium-estate-pro-page-banner {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
}

.premium-estate-pro-page-banner .banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.premium-estate-pro-page-banner .banner-content {
    position: relative;
    z-index: 2;
    width: 100%;
    text-align: center;
    padding: 40px 20px;
}

.premium-estate-pro-page-banner .banner-title {
    color: #ffffff;
    font-size: 3rem;
    font-weight: 700;
    margin: 0 0 15px 0;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.premium-estate-pro-page-banner .banner-subtitle {
    color: #ffffff;
    font-size: 1.25rem;
    margin: 0;
    opacity: 0.95;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

@media screen and (max-width: 768px) {
    .premium-estate-pro-page-banner .banner-title {
        font-size: 2rem;
    }
    
    .premium-estate-pro-page-banner .banner-subtitle {
        font-size: 1rem;
    }
}

/* ============================================================
   SOCIAL SHARING STYLES
   ============================================================ */

.premium-estate-social-sharing {
    position: fixed;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
}

.premium-estate-social-sharing .social-sharing-toggle {
    width: 50px;
    height: 50px;
    background: #5b63ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    margin-bottom: 10px;
}

.premium-estate-social-sharing .social-sharing-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.premium-estate-social-sharing .social-sharing-toggle svg {
    color: #ffffff;
}

.premium-estate-social-sharing .social-sharing-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.premium-estate-social-sharing:hover .social-sharing-buttons {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.premium-estate-social-sharing .social-share-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.premium-estate-social-sharing .social-share-btn:hover {
    transform: translateX(-5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.premium-estate-social-sharing .social-share-btn.facebook {
    background: #1877f2;
    color: #ffffff;
}

.premium-estate-social-sharing .social-share-btn.twitter {
    background: #1da1f2;
    color: #ffffff;
}

.premium-estate-social-sharing .social-share-btn.linkedin {
    background: #0077b5;
    color: #ffffff;
}

.premium-estate-social-sharing .social-share-btn.pinterest {
    background: #e60023;
    color: #ffffff;
}

.premium-estate-social-sharing .social-share-btn.email {
    background: #6b7280;
    color: #ffffff;
}

@media screen and (max-width: 768px) {
    .premium-estate-social-sharing {
        right: 15px;
        transform: translateY(-50%) scale(0.85);
    }
}

/* ============================================================
   SOCIAL PROFILES STYLES
   ============================================================ */

.premium-estate-social-profiles {
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.premium-estate-social-profiles.size-small .social-profile-link {
    width: 35px;
    height: 35px;
    font-size: 16px;
}

.premium-estate-social-profiles.size-medium .social-profile-link {
    width: 45px;
    height: 45px;
    font-size: 20px;
}

.premium-estate-social-profiles.size-large .social-profile-link {
    width: 55px;
    height: 55px;
    font-size: 24px;
}

.premium-estate-social-profiles .social-profile-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f3f4f6;
    color: #374151;
    text-decoration: none;
    transition: all 0.3s ease;
}

.premium-estate-social-profiles.style-default .social-profile-link {
    border-radius: 0;
}

.premium-estate-social-profiles.style-circle .social-profile-link {
    border-radius: 50%;
}

.premium-estate-social-profiles.style-square .social-profile-link {
    border-radius: 8px;
}

.premium-estate-social-profiles .social-profile-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.premium-estate-social-profiles .social-profile-link.facebook:hover {
    background: #1877f2;
    color: #ffffff;
}

.premium-estate-social-profiles .social-profile-link.twitter:hover {
    background: #1da1f2;
    color: #ffffff;
}

.premium-estate-social-profiles .social-profile-link.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #ffffff;
}

.premium-estate-social-profiles .social-profile-link.linkedin:hover {
    background: #0077b5;
    color: #ffffff;
}

.premium-estate-social-profiles .social-profile-link.youtube:hover {
    background: #ff0000;
    color: #ffffff;
}

.premium-estate-social-profiles .social-profile-link.pinterest:hover {
    background: #e60023;
    color: #ffffff;
}

.premium-estate-social-profiles .social-profile-link .dashicons {
    width: auto;
    height: auto;
}
