/* ===========================
   RESET & BASE STYLES
   =========================== */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
}

/* ===========================
   CUSTOM SCROLLBAR
   =========================== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #000000;
}

::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #9333ea;
}

/* ===========================
   UTILITY CLASSES
   =========================== */
.text-gradient {
    background: linear-gradient(to right, #9333ea, #c084fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn-primary-gradient {
    background: linear-gradient(135deg, #9333ea 0%, #7e22ce 100%);
    transition: all 0.3s ease;
}

.btn-primary-gradient:hover {
    filter: brightness(1.2);
    transform: translateY(-1px);
    box-shadow: 0 10px 30px rgba(147, 51, 234, 0.3);
}

/* ===========================
   LIGHTBOX CUSTOMIZATION
   =========================== */
.fslightbox-container {
    background: rgba(0, 0, 0, 0.95) !important;
}

.fslightbox-toolbar {
    background: rgba(18, 18, 18, 0.8) !important;
}

/* ===========================
   PORTFOLIO FILTERING
   =========================== */
.portfolio-item {
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.portfolio-item.hidden {
    opacity: 0;
    transform: scale(0.8);
    height: 0;
    overflow: hidden;
    margin: 0;
}

.filter-btn.active {
    background: #9333ea !important;
    color: #ffffff !important;
}

/* ===========================
   ANIMATIONS & GSAP READY
   =========================== */
.hero-content {
    opacity: 0;
}

.about-image,
.about-content {
    opacity: 0;
}

.service-card {
    opacity: 0;
}

.portfolio-item {
    opacity: 0;
}

.pricing-card {
    opacity: 0;
}

.testimonial-card {
    opacity: 0;
}

/* ===========================
   MOBILE MENU (Optional Enhancement)
   =========================== */
#mobile-menu {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(10px);
    padding: 2rem;
    z-index: 40;
    border-bottom: 1px solid rgba(147, 51, 234, 0.2);
}

#mobile-menu.active {
    display: block;
}

#mobile-menu a {
    display: block;
    padding: 1rem 0;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: color 0.3s ease;
}

#mobile-menu a:hover {
    color: #9333ea;
}

/* ===========================
   RESPONSIVE ADJUSTMENTS
   =========================== */
@media (max-width: 768px) {
    .columns-1 {
        column-count: 1 !important;
    }
}
