/* Fashion Model Styles */

body {
    font-family: 'Jost', sans-serif;
    overflow-x: hidden;
}

.font-serif {
    font-family: 'Bodoni Moda', serif;
}

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

.mix-blend-difference {
    mix-blend-mode: difference;
}

/* Animations */
.animate-bounce {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-10px);}
    60% {transform: translateY(-5px);}
}

/* Polaroid */
.polaroid {
    transform: rotate(-3deg);
    transition: transform 0.3s ease;
}

.polaroid:hover {
    transform: rotate(0deg) scale(1.05);
    z-index: 10;
}

.handwriting {
    font-family: 'Bodoni Moda', serif;
    font-style: italic;
    color: #555;
}

/* Portfolio Hover */
.grayscale-hover {
    filter: grayscale(100%);
    transition: filter 0.5s ease;
}

.group-hover:hover .grayscale-hover {
    filter: grayscale(0%);
}

.group-hover-opacity {
    transition: opacity 0.5s ease;
    background: rgba(0,0,0,0.5);
    padding: 2rem;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.group-hover:hover .group-hover-opacity {
    opacity: 1 !important;
}

/* Typography Overlays */
.display-1 {
    font-size: clamp(4rem, 10vw, 8rem);
}

.mt-n3 {
    margin-top: -1rem;
}

@media (min-width: 992px) {
    .mt-n3 {
        margin-top: -2rem;
    }
}

/* 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: 0;
    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 #111111;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    color: #111111;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: 'Jost', sans-serif;
}

.floating-btn:hover {
    transform: translateY(-2px);
    border-color: #111111;
    background: #111111;
    color: #ffffff;
}

.floating-btn.edit-btn {
    border-color: #111111;
    background: #111111;
    color: #ffffff;
}

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

/* Form Styles */
.form-control:focus {
    box-shadow: none;
    border-color: #111111;
}
