/* assets/css/style.css */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

:root {
    --primary: #0B0C10;      /* Deep dark background */
    --surface: #1F2833;      /* Dark surface for cards */
    --accent: #F92672;       /* Vibrant neon pink */
    --secondary: #66D9EF;    /* Neon blue */
    --accent-gradient: linear-gradient(135deg, #F92672, #66D9EF);
    --bg: #0B0C10;
    --white: #FFFFFF;
    --text: #C5C6C7;         /* Soft light grey text */
    --border: rgba(255, 255, 255, 0.08);
    --glass-bg: rgba(31, 40, 51, 0.6);
    --glass-blur: blur(16px);
    --glow: 0 0 20px rgba(249, 38, 114, 0.4);
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6, .serif {
    font-family: 'Playfair Display', serif;
    color: var(--white);
    letter-spacing: 0.5px;
}

a {
    color: var(--secondary);
    text-decoration: none;
    transition: 0.3s;
}

a:hover {
    color: var(--accent);
}

/* Base Utility Overrides for dark mode */
.bg-light, .bg-white {
    background-color: var(--surface) !important;
}
.text-dark { color: var(--white) !important; }
.text-muted { color: #8c92a0 !important; }
.border { border-color: var(--border) !important; }

/* Buttons */
.btn-accent {
    background: var(--accent-gradient);
    color: var(--white);
    border: none;
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.btn-accent:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--glow);
    color: var(--white);
}

.btn-outline-primary {
    background: transparent;
    border: 2px solid var(--secondary);
    color: var(--secondary) !important;
    border-radius: 50px;
    padding: 10px 28px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: var(--secondary);
    color: var(--primary) !important;
    box-shadow: 0 0 15px rgba(102, 217, 239, 0.4);
}

.btn-outline-dark {
    border-color: rgba(255,255,255,0.2);
    color: var(--white);
}
.btn-outline-dark:hover {
    background: var(--white);
    color: var(--primary) !important;
}

/* Navbar overrides for deep aesthetic */
.navbar {
    transition: all 0.4s ease;
    padding: 1.5rem 0;
    background: transparent !important;
}
.navbar.scrolled {
    background: rgba(11, 12, 16, 0.85) !important;
    backdrop-filter: var(--glass-blur);
    padding: 0.8rem 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid var(--border);
}
.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    font-size: 1.8rem;
    color: var(--white) !important;
}
.nav-link {
    color: var(--text) !important;
    font-weight: 600;
    margin: 0 12px;
    position: relative;
    letter-spacing: 0.5px;
}
.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: var(--accent-gradient);
    transition: width 0.3s ease;
}
.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}
.nav-link:hover, .nav-link.active {
    color: var(--white) !important;
}
.nav-icons a {
    color: var(--white);
    font-size: 1.25rem;
    margin-left: 20px;
    transition: 0.3s;
}
.nav-icons a:hover {
    color: var(--accent);
    transform: scale(1.1);
}

/* Hero Section */
.hero {
    position: relative;
    padding: 180px 0 120px;
    background-color: var(--primary);
    overflow: hidden;
}

/* Dynamic floating shapes for hero */
.hero::before, .hero::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
    animation: float 10s infinite ease-in-out alternate;
}
.hero::before {
    width: 400px;
    height: 400px;
    background: rgba(249, 38, 114, 0.15);
    top: -100px;
    left: -100px;
}
.hero::after {
    width: 500px;
    height: 500px;
    background: rgba(102, 217, 239, 0.12);
    bottom: -150px;
    right: -100px;
    animation-delay: -5s;
}

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(30px, 50px) scale(1.1); }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.glass-box {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.hero-img-box {
    position: relative;
    padding: 15px;
    background: var(--accent-gradient);
    border-radius: 20px;
    box-shadow: var(--glow);
    animation: pulseGlow 4s infinite alternate;
}
.hero-img-box img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: inset 0 0 20px rgba(0,0,0,0.5);
}

@keyframes pulseGlow {
    0% { box-shadow: 0 0 20px rgba(249, 38, 114, 0.4); }
    100% { box-shadow: 0 0 40px rgba(102, 217, 239, 0.6); }
}

.hero h1 {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--white);
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}
.text-accent {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero p {
    font-size: 1.25rem;
    color: var(--text);
    margin-bottom: 40px;
}

/* Art Cards */
.art-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid var(--border);
    position: relative;
}
.art-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 2px;
    background: var(--accent-gradient);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.art-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--glow);
}
.art-card:hover::before {
    opacity: 1;
}

.art-img-wrap {
    overflow: hidden;
    position: relative;
    padding-top: 125%; /* 4:5 Aspect Ratio */
}
.art-img-wrap img {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease, filter 0.7s ease;
    filter: brightness(0.9);
}
.art-card:hover .art-img-wrap img {
    transform: scale(1.08);
    filter: brightness(1.1);
}
.art-card-body {
    padding: 24px;
    position: relative;
    z-index: 2;
}
.art-card-title {
    font-size: 1.3rem;
    margin-bottom: 12px;
}
.art-card-title a {
    color: var(--white) !important;
}
.art-card-title a:hover {
    color: var(--accent) !important;
}
.art-card-price {
    font-weight: 700;
    color: var(--secondary);
    font-size: 1.2rem;
    text-shadow: 0 0 10px rgba(102, 217, 239, 0.3);
}

.badge.bg-light {
    background: rgba(255,255,255,0.1) !important;
    color: var(--white) !important;
    border-color: rgba(255,255,255,0.2) !important;
    backdrop-filter: blur(5px);
}

/* Sections */
.section-dark {
    background-color: var(--primary);
    position: relative;
}
.section-dark::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
}

/* Footer */
footer {
    background-color: #07080b;
    color: var(--text);
    padding: 80px 0 30px;
    border-top: 1px solid var(--border);
    position: relative;
}
footer h5 {
    color: var(--white);
    margin-bottom: 25px;
}
footer a {
    color: var(--text);
}
footer a:hover {
    color: var(--accent);
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    margin-top: 60px;
    padding-top: 25px;
}

/* Modals */
.modal-content {
    background: var(--surface);
    color: var(--white);
    border: 1px solid var(--border);
    backdrop-filter: var(--glass-blur);
}
.modal-content .btn-close {
    filter: invert(1);
}
.modal-content input.form-control {
    background: rgba(0,0,0,0.3) !important;
    color: var(--white);
    border: 1px solid var(--border) !important;
}
.modal-content input.form-control::placeholder {
    color: #666;
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
}
.floating-whatsapp:hover {
    background-color: #128C7E;
    color: white;
    transform: scale(1.1);
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.4);
}

