/**
* Template Name: sa-cms-cream-copper-prestige
* Updated: Nov 24 2025 with Bootstrap v5.3.6
* Author: shah alam
* Author URL: https://shah2266.github.io/myprofile/
* License: null
*/

@charset "UTF-8";

/* Fonts */
:root {
  --default-font: "Lora", serif;        /* body text */
  --heading-font: "Playfair Display", serif;  /* headings */
  --nav-font: "Nunito", sans-serif;     /* navigation */
}

/* Global Colors - Cream & Copper Theme */
:root {
  --background-color: #fff8f0;   /* warm cream background */
  --default-color: #3a2f25;      /* dark coffee text */
  --heading-color: #5c3a21;      /* deep copper headings */
  --accent-color: #d99058;       /* bright copper accent */
  --surface-color: #ffffff;       /* cards and sections */
  --contrast-color: #000000;      /* strong contrast text */
  --highlight-color: #f6e6d9;     /* subtle cream highlight */
}

/* Nav Menu Colors */
:root {
  --nav-color: #5c3a21;           /* deep copper nav */
  --nav-hover-color: #d99058;     /* copper hover */
  --nav-mobile-background-color: #fff8f0;
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: #3a2f25;
  --nav-dropdown-hover-color: #d99058;
}

/* Section Color Presets */
.light-background {
  --background-color: #faefe2;
  --surface-color: #faf0f0;
}

.dark-background {
  --background-color: #5c3a21;
  --default-color: #ffffff;
  --heading-color: #f6e6d9;
  --surface-color: #7c4e32;
  --contrast-color: #ffffff;
}

.accent-background {
  --background-color: #d99058;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #f6e6d9;
  --contrast-color: #000000;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(255, 248, 240, 0);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 2px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .header-container {
  background: color-mix(in srgb, var(--default-color), transparent 100%);
  transition: all 0.5s;
  position: relative;
  padding-top: 10px;
  padding-bottom: 10px;
}

/* Global Header on Scroll */
.scrolled .header {
  --background-color: #ffffff;
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/* Buttons and Links */
a, .btn {
  color: var(--nav-color);
  font-family: var(--nav-font);
  transition: color 0.3s, background-color 0.3s;
}

a:hover, .btn:hover {
  color: var(--accent-color);
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  color: var(--heading-color);
}

/* Paragraphs and text */
p {
  font-family: var(--default-font);
  color: var(--default-color);
}
