/* boutique/static/css/style.css */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap');

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

#header {
    padding-block: 0.5rem;
}

#header .header-inner {
    padding-block: 0.85rem;
    min-height: 60px;
    height: 60px;
}

#header .header-inner a h1 {
    margin: 0;
    font-size: 1.25rem;
    line-height: 1;
}

#header nav a {
    padding-top: 0;
    padding-bottom: 0;
}


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

@keyframes gradient-text {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes ping {
    75%, 100% { transform: scale(2); opacity: 0; }
}

/* Utility Classes */
.animate-spin {
    animation: spin 1s linear infinite;
}

.animate-ping {
    animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.animate-pulse-subtle {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.pulse-animation {
    animation: pulse 2s infinite;
}

.bounce-animation {
    animation: bounce 2s infinite;
}

.gradient-text {
    background: linear-gradient(90deg, #fff, #fecaca, #fff);
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient-text 3s ease-in-out infinite;
}

.floating-dot {
    position: absolute;
    width: 1px;
    height: 1px;
    background-color: rgba(251, 113, 133, 0.3);
    border-radius: 50%;
    animation: float 15s ease-in-out infinite;
    animation-delay: calc(var(--delay) * 1s);
}

.floating-geometry {
    position: absolute;
    opacity: 0.1;
    animation: float 20s ease-in-out infinite;
    animation-delay: calc(var(--delay) * 2s);
}

.floating-geometry:nth-child(4n+1) {
    width: 20px;
    height: 20px;
    background: linear-gradient(45deg, rgba(251, 113, 133, 0.2), rgba(168, 85, 247, 0.2));
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    top: 10%;
    left: 10%;
}

.floating-geometry:nth-child(4n+2) {
    width: 30px;
    height: 30px;
    border: 2px solid rgba(251, 113, 133, 0.3);
    border-radius: 50%;
    top: 20%;
    right: 15%;
}

.floating-geometry:nth-child(4n+3) {
    width: 15px;
    height: 15px;
    background: rgba(168, 85, 247, 0.2);
    transform: rotate(45deg);
    top: 30%;
    left: 20%;
}

.floating-geometry:nth-child(4n) {
    width: 25px;
    height: 25px;
    background: linear-gradient(135deg, rgba(251, 113, 133, 0.2), rgba(168, 85, 247, 0.2));
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    top: 40%;
    right: 10%;
}

.pattern-overlay {
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}


/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

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

::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, #f472b6, #c084fc);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(to bottom, #ec4899, #a855f7);
}
