/* ==========================================================================
   decor.vibeees.pro - Tanya Decor Landing Page Styles (Light Theme)
   ========================================================================== */

:root {
    --font-heading: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-accent: 'Unbounded', sans-serif;
    
    /* Warm, elegant light palette */
    --color-bg: #FAF9F6;
    --color-bg-soft: #F4F1EB;
    --color-bg-white: #FFFFFF;
    
    --color-gold: #B88E4F;
    --color-gold-hover: #9E7538;
    --color-gold-light: rgba(184, 142, 79, 0.12);
    --color-gold-border: rgba(184, 142, 79, 0.3);
    
    --color-dark: #201E1D;
    --color-heading: #1C1917;
    --color-text: #4A4643;
    --color-muted: #78716C;
    --color-border: #E7E2D9;
    
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.04);
    --shadow-hover: 0 18px 40px rgba(184, 142, 79, 0.12);
    --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base */
body {
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.65;
    font-size: 16px;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Messengers Circle Buttons (Vadim Style) */
.messenger-circle-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #ffffff;
    border: 1px solid var(--color-border);
    transition: all 0.25s ease;
}

.messenger-circle-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1) !important;
}

.messenger-circle-btn img {
    width: 32px;
    height: 32px;
}

/* Tanya Avatar Circle Styling */
.tanya-avatar-wrapper {
    width: 280px;
    height: 280px;
}

.tanya-avatar-circle {
    width: 280px;
    height: 280px;
    background: #eae2d6;
}

.tanya-avatar-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.tanya-avatar-badge {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    bottom: 8px !important;
    right: 8px !important;
}

@media (max-width: 576px) {
    .tanya-avatar-wrapper, .tanya-avatar-circle {
        width: 230px;
        height: 230px;
    }
}

.form-control-warm, .form-select-warm {
    background-color: #ffffff;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    padding: 0.65rem 0.9rem;
    font-size: 0.95rem;
}

.form-control-warm:focus, .form-select-warm:focus {
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px rgba(184, 142, 79, 0.15);
}
.container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    max-width: 1260px;
}

/* Headings */
h1, h2, h3, h4, .font-heading {
    font-family: var(--font-heading);
    color: var(--color-heading);
    letter-spacing: -0.01em;
}

h1.hero-title {
    font-size: clamp(2.3rem, 5vw, 3.8rem);
    font-weight: 700;
    line-height: 1.15;
}

h2.section-title {
    font-size: clamp(1.9rem, 4vw, 2.75rem);
    font-weight: 700;
    line-height: 1.25;
}

.text-gold {
    color: var(--color-gold) !important;
}

.bg-gold-subtle {
    background-color: var(--color-gold-light) !important;
}

.bg-light-soft {
    background-color: var(--color-bg-soft) !important;
}

/* Buttons */
.btn {
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.7rem 1.6rem;
    transition: var(--transition);
}

.btn-gold {
    background-color: var(--color-gold);
    color: #ffffff;
    border: 1px solid var(--color-gold);
    box-shadow: 0 4px 15px rgba(184, 142, 79, 0.25);
}

.btn-gold:hover, .btn-gold:focus {
    background-color: var(--color-gold-hover);
    border-color: var(--color-gold-hover);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(184, 142, 79, 0.35);
}

.btn-outline-gold {
    background-color: transparent;
    color: var(--color-gold);
    border: 1px solid var(--color-gold);
}

.btn-outline-gold:hover, .btn-outline-gold:focus {
    background-color: var(--color-gold);
    color: #ffffff;
    border-color: var(--color-gold);
    transform: translateY(-2px);
}

/* Header & Nav */
.site-header {
    transition: var(--transition);
}

.bg-white-glass {
    background-color: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-border);
}

.site-header.scrolled .bg-white-glass {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    padding-top: 0.6rem !important;
    padding-bottom: 0.6rem !important;
}

.brand-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: var(--color-gold);
    color: #ffffff;
    font-size: 1.1rem;
}

.brand-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--color-dark);
    letter-spacing: 0.08em;
    line-height: 1;
}

.brand-subtitle {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-gold);
    font-weight: 600;
}

.navbar-nav .nav-link {
    color: var(--color-dark);
    font-size: 0.92rem;
    padding: 0.5rem 1rem !important;
    position: relative;
    transition: var(--transition);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--color-gold);
}

/* Hero Section */
.hero-section {
    padding-top: 130px;
    padding-bottom: 70px;
    position: relative;
    background: radial-gradient(circle at 80% 20%, rgba(184, 142, 79, 0.08) 0%, rgba(250, 249, 246, 0) 60%);
}

.min-vh-hero {
    min-height: calc(82vh - 100px);
}

.hero-badge {
    background-color: var(--color-bg-white);
    border: 1px solid var(--color-border);
    padding: 0.4rem 1.1rem;
    border-radius: 9999px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-dark);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.hero-stat {
    border-left: 3px solid var(--color-gold);
    padding-left: 0.9rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (max-width: 576px) {
    .hero-stats-row {
        gap: 0.75rem !important;
    }
    .hero-stat {
        padding: 0.5rem 0.8rem;
        background: rgba(255, 255, 255, 0.7);
        border-radius: 8px;
        box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
    }
    .stat-number {
        font-size: 1.15rem !important;
    }
    .stat-label {
        font-size: 0.78rem !important;
    }
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-heading);
    line-height: 1.1;
}

.stat-label {
    display: block;
    font-size: 0.75rem;
    color: var(--color-muted);
}

/* Hero Visual Box */
.hero-visual-card {
    padding: 10px;
}

.hero-card-inner {
    border-radius: 28px;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--color-border);
}

.hero-image-wrapper {
    width: 100%;
    height: 480px;
}

.hero-floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 0.8rem 1.2rem;
    z-index: 2;
}

.floating-bottom-left {
    bottom: 25px;
    left: 20px;
}

.floating-top-right {
    top: 25px;
    right: 20px;
}

.floating-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--color-gold-light);
    color: var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

/* Section Common */
.section-padding {
    padding: 85px 0;
}

.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--color-gold);
    margin-bottom: 0.75rem;
}

.section-subtitle {
    max-width: 680px;
    font-size: 1.05rem;
}

/* Cards & Interactions */
.transition-hover {
    transition: var(--transition);
}

.transition-hover:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover) !important;
}

/* Texture Visual Mockups (CSS-generated realistic textures) */
.texture-pattern {
    width: 100%;
    height: 100%;
    position: relative;
}

.texture-silk {
    background: linear-gradient(135deg, #e3ded6 0%, #cec4b7 35%, #ded8cf 65%, #c4b9a9 100%);
    background-size: 200% 200%;
    animation: gradientShift 12s ease infinite;
}

.texture-box {
    width: 100%;
    height: 240px;
    position: relative;
    overflow: hidden;
}

.texture-silk-pearl {
    background: radial-gradient(circle at 30% 30%, #f4eee6 0%, #e2d7c5 45%, #cab89e 100%);
}

.texture-microcement-grey {
    background: linear-gradient(45deg, #a8a7a5 25%, #8f8e8b 50%, #b5b4b1 75%);
    background-size: 40px 40px;
}

.texture-concrete-loft {
    background: radial-gradient(circle at 70% 60%, #878683 0%, #686765 60%, #4f4e4c 100%);
}

.texture-venetian-gold {
    background: linear-gradient(120deg, #f8f6f0 0%, #d8caa9 40%, #edd8a6 60%, #c4b38d 100%);
}

.texture-silk-velvet {
    background: linear-gradient(135deg, #dfc3b7 0%, #cba798 50%, #b89181 100%);
}

.texture-microcement-kitchen {
    background: linear-gradient(60deg, #cfc6b6 0%, #bcb09d 50%, #a89a84 100%);
}

.texture-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
}

.texture-glass-tag {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    padding: 0.4rem 0.9rem;
    border-radius: 9999px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-dark);
}

/* Service Card Thumbnails */
.service-thumb {
    height: 180px;
    position: relative;
}

.service-thumb {
    height: 200px;
    position: relative;
    background-size: cover !important;
    background-position: center !important;
}

.service-thumb-venetian {
    background: url('/img/work_venetian.jpg') center/cover no-repeat;
}

.service-thumb-microcement {
    background: url('/img/work_microcement.jpg') center/cover no-repeat;
}

.service-thumb-silk {
    background: url('/img/work_silk.jpg') center/cover no-repeat;
}

.service-thumb-concrete {
    background: url('/img/work_concrete.jpg') center/cover no-repeat;
}

.service-thumb-travertine {
    background: url('/img/work_travertine.jpg') center/cover no-repeat;
}

.service-thumb-accent {
    background: url('/img/work_accent.jpg') center/cover no-repeat;
}

.service-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.95);
    padding: 0.3rem 0.8rem;
    border-radius: 9999px;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--color-heading);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* Portfolio Hover Overlay */
.portfolio-hover-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(28, 25, 23, 0.88) 0%, rgba(28, 25, 23, 0.2) 60%, rgba(0,0,0,0) 100%);
    opacity: 0;
    transition: var(--transition);
}

.portfolio-card:hover .portfolio-hover-overlay {
    opacity: 1;
}

.portfolio-badge {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(6px);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.3rem 0.8rem;
    border-radius: 9999px;
}

/* Filter Buttons */
.btn-filter {
    background: var(--color-bg-white);
    color: var(--color-muted);
    border: 1px solid var(--color-border);
    font-size: 0.88rem;
    padding: 0.5rem 1.3rem;
    border-radius: 9999px;
    transition: var(--transition);
}

.btn-filter:hover, .btn-filter.active {
    background: var(--color-dark);
    color: #ffffff;
    border-color: var(--color-dark);
}

/* About Photo Placeholder */
.about-photo-placeholder {
    height: 380px;
    background: linear-gradient(135deg, #f7f4ed 0%, #ece5d8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-avatar-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--color-bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.about-badge-experience {
    bottom: -20px;
    right: -20px;
    max-width: 210px;
}

/* Steps */
.step-badge {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-gold);
    line-height: 1;
}

/* Form Styles */
.form-control, .form-select {
    padding: 0.75rem 1rem;
    border-radius: 12px;
    border: 1px solid var(--color-border);
    font-size: 0.95rem;
    background-color: #FAFAFA;
    transition: var(--transition);
}

.form-control:focus, .form-select:focus {
    background-color: #ffffff;
    border-color: var(--color-gold);
    box-shadow: 0 0 0 4px var(--color-gold-light);
    outline: none;
}

.form-terms {
    font-size: 0.75rem;
}

/* Footer */
.footer-social-link {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--color-bg-soft);
    color: var(--color-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    text-decoration: none;
}

.footer-social-link:hover {
    background: var(--color-gold);
    color: #ffffff;
    transform: translateY(-2px);
}

/* Animations */
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .about-badge-experience {
        position: static !important;
        margin-top: 15px;
        max-width: 100%;
    }
    .hero-image-wrapper {
        height: 340px;
    }
    .section-padding {
        padding: 60px 0;
    }
}
