/* Designer Portfolio Styles */

:root {
    --primary: #6c5ce7;
    --secondary: #a29bfe;
    --text-dark: #2d3436;
    --text-muted: #636e72;
    --purple: #6c5ce7;
    --orange: #e17055;
    --green: #00b894;
    --light-purple: rgba(108, 92, 231, 0.1);
    --light-orange: rgba(225, 112, 85, 0.1);
    --light-green: rgba(0, 184, 148, 0.1);
}

body {
    font-family: 'Quicksand', sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
    background-color: #fff;
}

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

/* Utilities */
.text-primary { color: var(--primary) !important; }
.text-purple { color: var(--purple) !important; }
.text-orange { color: var(--orange) !important; }
.text-green { color: var(--green) !important; }
.bg-light-purple { background-color: var(--light-purple) !important; }
.bg-light-orange { background-color: var(--light-orange) !important; }
.bg-light-green { background-color: var(--light-green) !important; }

.text-gradient {
    background: linear-gradient(45deg, var(--primary), #0984e3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ls-2 { letter-spacing: 2px; }

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
}

.btn-primary:hover {
    background-color: #5849be;
    border-color: #5849be;
}

.btn-white {
    background-color: #fff;
    color: var(--text-dark);
    border: 1px solid #eee;
}

.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 1rem 3rem rgba(0,0,0,0.15) !important;
}

/* Background Blobs */
.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
    opacity: 0.6;
}

.blob-1 {
    top: -10%;
    right: -5%;
    width: 600px;
    height: 600px;
    background-color: var(--light-purple);
}

.blob-2 {
    bottom: 10%;
    left: -10%;
    width: 500px;
    height: 500px;
    background-color: var(--light-orange);
}

.blob-3 {
    top: 20%;
    right: 30%;
    width: 400px;
    height: 400px;
    background-color: var(--light-green);
}

/* Hero Section */
.hero-section {
    min-height: 90vh;
    padding-top: 80px;
}

.hero-image-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.floating-card {
    position: absolute;
    z-index: 2;
    min-width: 180px;
    display: flex;
    align-items: center;
    gap: 15px;
    animation: float 6s ease-in-out infinite;
}

.card-1 {
    top: 10%;
    left: 0;
    animation-delay: 0s;
}

.card-2 {
    bottom: 20%;
    right: 0;
    animation-delay: 2s;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

/* Process Cards */
.process-card {
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.process-card:hover {
    transform: translateY(-10px);
    border-color: #eee;
}

.icon-box {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Work Items */
.work-item {
    transition: transform 0.3s ease;
}

.work-item:hover {
    transform: translateY(-5px);
}

/* Floating Action Buttons */
.floating-actions {
    position: fixed;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
    z-index: 1000;
}

.floating-btn {
    padding: 10px 18px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    color: var(--primary);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.floating-btn:hover {
    transform: translateY(-2px);
    border-color: var(--primary);
    background: var(--primary);
    color: #ffffff;
    box-shadow: 0 8px 16px rgba(108, 92, 231, 0.2);
}

.floating-btn.edit-btn {
    border-color: var(--primary);
    background: var(--primary);
    color: #ffffff;
}

.floating-btn.edit-btn:hover {
    background: #5b4bc4;
    opacity: 0.9;
    color: #ffffff;
}
