/* SMM Portfolio CSS - Replicating Image 1 Mockup Design Exactly */
@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@600;700&family=Dancing+Script:wght@600;700&family=Great+Vibes&family=Plus+Jakarta+Sans:wght@400;500;600;700;800;900&display=swap');

body.smm-portfolio-body {
    background-color: var(--color-bg-dark, #0a0b0e) !important;
    background-image: 
        radial-gradient(ellipse at 50% 0%, rgba(35, 39, 52, 0.5) 0%, rgba(10, 11, 14, 0.88) 75%),
        url('../../../assets/dark-bg-tile.jpg') !important;
    background-repeat: repeat !important;
    background-attachment: fixed !important;
    background-size: 750px !important;
    color: #ffffff;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    overflow-x: hidden;
}

/* Header Section */
.smm-hero-section {
    position: relative;
    padding: 50px 0 35px;
    background: transparent;
    text-align: center;
}

.smm-brand-logo {
    max-width: 160px;
    height: auto;
    margin: 0 auto 15px;
}

.smm-title-wrapper {
    position: relative;
    display: inline-block;
    text-align: center;
}

.smm-main-heading {
    font-size: 3.8rem;
    font-weight: 900;
    letter-spacing: 2px;
    line-height: 1;
    color: #c6ff00;
    text-shadow: 0 0 20px rgba(198, 255, 0, 0.6), 0 0 40px rgba(198, 255, 0, 0.3);
    margin: 0;
    text-transform: uppercase;
}

.smm-script-subheading {
    font-family: 'Great Vibes', 'Dancing Script', 'Caveat', cursive;
    font-size: 4.8rem;
    font-weight: 400;
    color: #ffffff;
    text-transform: none;
    display: block;
    margin-top: -30px;
    position: relative;
    z-index: 2;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.9);
}

@media (max-width: 768px) {
    .smm-main-heading {
        font-size: 2.2rem;
    }
    .smm-script-subheading {
        font-size: 3.2rem;
        margin-top: -20px;
    }
}

/* Client Section */
.smm-client-section {
    position: relative;
    padding: 40px 0 60px;
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.smm-client-section:last-child {
    border-bottom: none;
}

/* Phone Mockup */
.smm-phone-container {
    position: relative;
    max-width: 310px;
    margin: 0 auto;
    background: #000000;
    border-radius: 42px;
    padding: 8px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.95),
                0 0 0 2px rgba(255, 255, 255, 0.12),
                0 0 30px rgba(198, 255, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.smm-phone-container:hover {
    transform: translateY(-4px);
    box-shadow: 0 25px 55px rgba(0, 0, 0, 0.98),
                0 0 0 2px rgba(198, 255, 0, 0.4),
                0 0 35px rgba(198, 255, 0, 0.2);
}

.smm-phone-screen {
    position: relative;
    border-radius: 36px;
    overflow: hidden;
    background: #000000;
}

.smm-phone-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Metadata Bar */
.smm-meta-bar {
    background: #111111;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    padding: 16px 24px;
    margin-bottom: 24px;
    width: 100%;
}

.smm-meta-label {
    font-size: 0.8rem;
    color: #999999;
    font-weight: 500;
    margin-bottom: 4px;
}

.smm-meta-value {
    font-size: 1.05rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.smm-meta-link {
    color: #ffffff;
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.2s ease;
}

.smm-meta-link:hover {
    color: #c6ff00;
}

/* 3x2 Grid Layout */
.smm-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    width: 100%;
}

@media (max-width: 576px) {
    .smm-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

.smm-card {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 4px;
    overflow: hidden;
    background: #141414;
    border: 1px solid rgba(255, 255, 255, 0.08);
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.smm-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.smm-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.smm-card-overlay i {
    font-size: 1.6rem;
    color: #c6ff00;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.smm-card:hover {
    transform: translateY(-4px);
    border-color: rgba(198, 255, 0, 0.5);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.8), 0 0 15px rgba(198, 255, 0, 0.25);
}

.smm-card:hover img {
    transform: scale(1.05);
}

.smm-card:hover .smm-card-overlay {
    opacity: 1;
}

.smm-card:hover .smm-card-overlay i {
    transform: scale(1);
}

/* Lightbox Modal */
.smm-modal .modal-content {
    background-color: #111111;
    border: 1px solid rgba(198, 255, 0, 0.3);
    border-radius: 12px;
}

.smm-modal .btn-close {
    filter: invert(1);
}

.smm-modal-img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 8px;
    object-fit: contain;
}
