/* =====================================================
   VISHAL DECOR IDEAS — Global Stylesheet
   ideas.vishaldecor.in
   ===================================================== */

/* --- Brand Tokens --- */
:root {
    --bg: #060606;
    --surface: #101010;
    --surface-2: #181818;
    --border: rgba(255, 255, 255, 0.07);
    --gold: #C9A84C;
    --gold-dim: rgba(201, 168, 76, 0.18);
    --gold-glow: rgba(201, 168, 76, 0.35);
    --text: #E8E3DA;
    --text-muted: #888;
    --text-faint: #555;
    --radius-sm: 6px;
    --radius-md: 14px;
    --radius-lg: 24px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --glass: rgba(255, 255, 255, 0.03);
    --shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

/* --- Reset --- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Lora', Georgia, serif;
    line-height: 1.75;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--gold);
}

ul {
    list-style: none;
}

/* --- Typography Scale --- */
h1,
h2,
h3,
h4,
h5 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 700;
    line-height: 1.15;
    color: #fff;
}

h1 {
    font-size: clamp(2.2rem, 5vw, 4.2rem);
}

h2 {
    font-size: clamp(1.6rem, 3vw, 2.6rem);
}

h3 {
    font-size: clamp(1.3rem, 2.5vw, 1.9rem);
}

/* --- Layout --- */
.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-gap {
    padding: 72px 0;
}

/* =====================================================
   SITE HEADER
   ===================================================== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 200;
    background: rgba(6, 6, 6, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

.top-bar {
    background: #000;
    padding: 9px 0;
    font-size: 0.72rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-faint);
    border-bottom: 1px solid var(--border);
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar a {
    color: var(--gold);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 0;
    gap: 32px;
}

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.5px;
    white-space: nowrap;
    text-shadow: 0 0 30px var(--gold-glow);
    flex-shrink: 0;
}

.logo em {
    color: #fff;
    font-style: normal;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 36px;
}

.site-nav a {
    font-size: 0.78rem;
    font-family: 'DM Sans', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    color: var(--text-muted);
    transition: color var(--transition);
}

.site-nav a:hover {
    color: #fff;
}

.search-form {
    position: relative;
}

.search-form input {
    background: var(--glass);
    border: 1px solid var(--border);
    color: var(--text);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    padding: 8px 16px 8px 36px;
    border-radius: 40px;
    outline: none;
    width: 200px;
    transition: border-color var(--transition), width var(--transition);
}

.search-form input:focus {
    border-color: var(--gold);
    width: 240px;
}

.search-form::before {
    content: '⌕';
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 1.1rem;
    pointer-events: none;
}

/* Category Pills */
.category-bar {
    border-bottom: 1px solid var(--border);
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: none;
    padding: 14px 0;
}

.category-bar::-webkit-scrollbar {
    display: none;
}

.category-bar .container {
    display: flex;
    gap: 10px;
}

.pill {
    display: inline-block;
    padding: 5px 16px;
    border-radius: 40px;
    border: 1px solid var(--border);
    font-size: 0.75rem;
    font-family: 'DM Sans', sans-serif;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
}

.pill:hover,
.pill.active {
    border-color: var(--gold);
    color: var(--gold);
    background: var(--gold-dim);
}

/* =====================================================
   SITE FOOTER
   ===================================================== */
.site-footer {
    background: #000;
    border-top: 1px solid var(--border);
    margin-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    padding: 64px 0 48px;
}

.footer-about .logo {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.footer-about p {
    font-size: 0.9rem;
    color: var(--text-muted);
    max-width: 380px;
    line-height: 1.7;
}

.footer-col h5 {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--text-faint);
    margin-bottom: 20px;
}

.footer-col li {
    margin-bottom: 10px;
}

.footer-col a {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.footer-col a:hover {
    color: var(--gold);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding: 20px 0;
    text-align: center;
    font-size: 0.78rem;
    color: var(--text-faint);
    font-family: 'DM Sans', sans-serif;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom a {
    color: var(--text-faint);
}

.footer-bottom a:hover {
    color: var(--gold);
}

/* =====================================================
   UTILITY CLASSES
   ===================================================== */
.meta-tag {
    display: inline-block;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
}

.divider {
    border: none;
    border-top: 1px solid var(--border);
    margin: 48px 0;
}

.section-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-faint);
    padding-bottom: 12px;
    border-bottom: 1px solid var(--gold);
    display: inline-block;
    margin-bottom: 32px;
}

.btn {
    display: inline-block;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition);
    border: none;
}

.btn-gold {
    background: var(--gold);
    color: #000;
}

.btn-gold:hover {
    background: #d9b85a;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px var(--gold-glow);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
}

.btn-outline:hover {
    background: var(--gold-dim);
    transform: translateY(-2px);
}

/* Animate on scroll */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(32px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-up {
    animation: fadeUp 0.7s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.d1 { animation-delay: 0.1s; }
.d2 { animation-delay: 0.2s; }
.d3 { animation-delay: 0.3s; }
.d4 { animation-delay: 0.4s; }

/* =====================================================
   DYNAMIC BACKGROUND (ORBS)
   ===================================================== */
.orbs-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
    background: radial-gradient(circle at 50% 50%, #0a0a0a 0%, #050505 100%);
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    animation: orbFloat 20s infinite alternate ease-in-out;
}

@keyframes orbFloat {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(100px, 50px) scale(1.2); }
}

.orb-1 {
    width: 600px; height: 600px;
    background: var(--gold);
    top: -10%; left: -10%;
    animation-duration: 25s;
}

.orb-2 {
    width: 500px; height: 500px;
    background: #4a3a1a;
    bottom: -5%; right: -5%;
    animation-duration: 30s;
    animation-delay: -5s;
}

.orb-3 {
    width: 300px; height: 300px;
    background: var(--gold-glow);
    top: 40%; left: 60%;
    animation-duration: 22s;
    animation-delay: -10s;
}

/* =====================================================
   RESPONSIVE HEADER
   ===================================================== */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {

    .site-nav,
    .search-form {
        display: none;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 40px 0;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
    }
}