/*
Theme Name: Monchay Events & Interiors
Theme URI: https://monchayeventerior.com
Author: Tausif Torun
Author URI: https://facebook.com/tausif.torun
Description: A premium, dual-division luxury creative agency theme for Monchay Events & Interiors — blending fine arts warmth with architectural minimalism. Rooted in Dhaka's fine art's heritage.
Version: 3.0.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
License: Private
Text Domain: monchay
Tags: luxury, events, interior, portfolio, dual-division, creative-agency, bangladesh
*/

/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  /* Brand Core */
  --brand-maroon: #6B1E1E;
  --brand-maroon-dark: #4A1212;
  --brand-maroon-mid: #8B2A2A;
  --brand-gold: #C89A5A;
  --brand-gold-light: #D9B87A;
  --brand-gold-pale: #F0DEB8;
  --brand-cream: #FAF7F2;
  --brand-dark: #0F0808;

  /* Events Palette — Warm, Earthy, Artistic */
  --ev-bg: #FAF5EC;
  --ev-deep: #3B1F0E;
  --ev-brown: #6B3A1F;
  --ev-earth: #8B6347;
  --ev-warm: #C47D3A;
  --ev-gold: #C89A5A;
  --ev-pale: #F5ECD7;
  --ev-text: #2C1505;

  /* Interior Palette — Ash, Minimal, Architectural */
  --in-bg: #F7F7F5;
  --in-dark: #1A1A1A;
  --in-charcoal: #2C2C2C;
  --in-gray: #5A5A5A;
  --in-silver: #9A9A9A;
  --in-ash: #D8D8D6;
  --in-light: #ECECEA;
  --in-white: #FAFAFA;

  /* Typography */
  --font-display: 'Cormorant Garamond', 'Georgia', serif;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'DM Sans', 'Helvetica Neue', sans-serif;
  --font-serif: 'Cormorant', serif;

  /* Layout */
  --container: 1280px;
  --container-wide: 1520px;
  --gutter: clamp(20px, 4vw, 60px);
  --section-py: clamp(60px, 8vw, 120px);

  /* Radii */
  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 16px;
  --r-xl: 32px;
  --r-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.07);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.11);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.16);
  --shadow-xl: 0 40px 100px rgba(0, 0, 0, 0.22);
  --shadow-warm: 0 20px 60px rgba(107, 30, 30, 0.18);

  /* Transitions */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.0, 0.0, 0.2, 1);
  --t-fast: 0.2s var(--ease);
  --t-mid: 0.4s var(--ease);
  --t-slow: 0.7s var(--ease);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--brand-dark);
  background: var(--brand-cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img,
video {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input,
textarea,
select {
  font-family: inherit;
}

/* ============================================================
   TYPOGRAPHY SCALE
   ============================================================ */
.t-display {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 7rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.t-h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 5rem);
  font-weight: 400;
  line-height: 1.1;
}

.t-h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 3.5rem);
  font-weight: 400;
  line-height: 1.15;
}

.t-h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 2.5vw, 2.2rem);
  font-weight: 500;
  line-height: 1.25;
}

.t-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.t-body {
  font-size: clamp(0.95rem, 1.1vw, 1.1rem);
  line-height: 1.8;
}

.t-small {
  font-size: 0.875rem;
  line-height: 1.6;
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.container--wide {
  max-width: var(--container-wide);
}

.section {
  padding: var(--section-py) 0;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

/* Section Headers */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--brand-gold);
  margin-bottom: 16px;
}

.section-eyebrow::before,
.section-eyebrow::after {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.8rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--brand-dark);
  margin-bottom: 20px;
}

.section-title em {
  font-style: italic;
  color: var(--brand-maroon);
}

.section-desc {
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  color: #5C4A35;
  line-height: 1.8;
  max-width: 600px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: var(--r-full);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: var(--t-mid);
  white-space: nowrap;
  cursor: pointer;
}

.btn--primary {
  background: var(--brand-maroon);
  color: #fff;
  box-shadow: var(--shadow-warm);
}

.btn--primary:hover {
  background: var(--brand-maroon-dark);
  transform: translateY(-2px);
  box-shadow: 0 28px 70px rgba(107, 30, 30, 0.28);
}

.btn--gold {
  background: var(--brand-gold);
  color: #fff;
}

.btn--gold:hover {
  background: var(--brand-gold-light);
  transform: translateY(-2px);
}

.btn--outline {
  border: 1.5px solid var(--brand-maroon);
  color: var(--brand-maroon);
  background: transparent;
}

.btn--outline:hover {
  background: var(--brand-maroon);
  color: #fff;
}

.btn--outline-light {
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  color: #fff;
}

.btn--outline-light:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
}

.btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* Divider */
.ornamental-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 24px 0;
}

.ornamental-divider::before,
.ornamental-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--brand-gold));
  max-width: 120px;
}

.ornamental-divider::after {
  background: linear-gradient(to left, transparent, var(--brand-gold));
}

.ornamental-divider span {
  color: var(--brand-gold);
  font-size: 1.2rem;
}

/* Scroll Reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.reveal--left {
  transform: translateX(-40px);
}

.reveal--right {
  transform: translateX(40px);
}

.reveal--left.in-view,
.reveal--right.in-view {
  transform: translateX(0);
}

.reveal--delay-1 {
  transition-delay: 0.1s;
}

.reveal--delay-2 {
  transition-delay: 0.2s;
}

.reveal--delay-3 {
  transition-delay: 0.35s;
}

.reveal--delay-4 {
  transition-delay: 0.5s;
}

/* ============================================================
   SCROLLBAR
   ============================================================ */
::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: var(--brand-cream);
}

::-webkit-scrollbar-thumb {
  background: var(--brand-maroon);
  border-radius: 10px;
}

/* ============================================================
   SELECTION
   ============================================================ */
::selection {
  background: var(--brand-maroon);
  color: #fff;
}