/*
Table Of Contents
=========================
- Default Typography
- Custom Typography
=========================
*/

/*
--------------------------
- Default Typography
--------------------------
*/


/*
--------------------------
- Custom Typography
--------------------------
*/

/* @import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap'); */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');


/* .roboto {
  font-family: "Roboto", sans-serif;
}
.poppins {
  font-family: "Poppins", sans-serif;
}
.playfair {
  font-family: "Playfair Display", serif;
} */

body {
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: 400;
}


/* variable color code */
:root {
  --white: #ffffff;
  --black: #000000;
  --primary: #094063;
  --green: #81bc00;
  --blue: #0082ca;
  --light_blue: #10AFDB;
  --dark: #20292d;
  --dark_gray: #2d3944;
  --slate_gray: #415464;
  --medium_gray: #d1d2d4;
  --light_gray: #e8e9ea;

  --secondary-color: #e49976;
  --hover-color: #d97532;

  --light-color: #ffffff;
  --muted-color: #777;
  
  --font-heading: "Playfair Display", serif;;
  --font-body: 'Source Sans Pro', sans-serif;
  
  --spacing-sm: 8px;
  --spacing-md: 16px;
  --spacing-lg: 32px;
  --spacing-xl: 64px;
  
  --loader-size: 32px;
  
  --radius: 30px;
  --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease-in-out;
  
  --gradient-primary: linear-gradient(135deg, #8B4513 0%, #e49976 100%);
  --gradient-secondary: linear-gradient(135deg, #eec400 0%, #cfa600 100%);
  
  /* ridoy new code */
  --white: #fff;
  --bg_color: #f8f9fa;
  --dark-color: #333;
  --sub-dark-color: #666;
  --primary-color: #F47F1F;
  --primary-hover-color: #d96f1b;
  --primary-shadow: 0 4px 12px rgba(244, 127, 31, 0.3);
  --primary-shadow-hover: 0 6px 16px rgba(244, 127, 31, 0.4);
  --secondary-color: #4386B7;
}

html {
  scroll-behavior: smooth;
}


h1, h2, h3, h4, h5, h6 {
    font-family: "Playfair Display", serif;
}
a:hover, a:focus {
    color: var(--primary-color);
    text-decoration: none;
}