/* Default code Starts here */

@import url("https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Merienda:wght@300..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-wrap: pretty;
  /* border: 1px solid red; */
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  /* background-color: #eff2f7; */
  background-color: rgb(247, 247, 247);
  /* font-family: "Merienda", serif; */
  font-family: "Nunito Sans", serif;
  color: #666666;
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: 0.1rem;
  /* -webkit-font-smoothing: antialiased; */
  /* font-optical-sizing: auto; */
}

h1 {
  font-family: "Merienda", serif;
  color: #333333;
  font-size: 6rem;
  font-weight: 800;
  line-height: 1;
}

h2 {
  font-family: "Merienda", serif;
  color: #333333;
  font-size: 4.5rem;
  font-weight: 800;
  line-height: 1;
}

button {
  background-color: var(--primaryColor);
  color: var(--lightColor);

  cursor: pointer;
  border: none;
  /* border-radius: 0.5rem; */
  padding: 1rem 3rem;
  transition: background-color 0.2s ease;
}

button:hover {
  background-color: var(--darkColor);
  color: var(--lightColor);
  transition: background-color 0.2s ease;
}

/* :::::SCROLL BAR CODE S T A R T S::::: */

/* Width and height of the scrollbar */
::-webkit-scrollbar {
  width: 1.5rem; /* Vertical scrollbar */
  height: 10px; /* Horizontal scrollbar */
}

/* Track (background of the scrollbar) */
::-webkit-scrollbar-track {
  background: #e3e4e6;
  border-radius: 5px;
}

/* Scrollbar thumb (the draggable part) */
::-webkit-scrollbar-thumb {
  background: #cececf;
  /* border-radius: 5px; */
}

/* On hover */
::-webkit-scrollbar-thumb:hover {
  background: #b9b9ba;
}

/* :::::SCROLL BAR CODE E N D S::::: */

h1,
h2,
h3,
h4,
h6,
p {
  text-wrap: balance;
}

input,
textarea,
button {
  font-family: inherit;
  font-size: inherit;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

li {
  list-style-type: none;
}

a {
  text-decoration: none;
  color: inherit;
}

:root {
  --primaryColor: #be9c79;
  --secondaryColor: #666666;
  --darkColor: #333333;
  --lightColor: #ffffff;
  --regularFont: 1.6rem;
  --headingFont: 2.5rem;
  --ffPrimary: "Nunito Sans", serif;
  --ffSecondary: "Merienda", serif;
}

/* project standard classes Starts */

.componentSpacing {
  padding: 5rem 0rem; /* Breathing Space Between Components */
}

.screenSize {
  max-width: 1200px; /* Device Screen Size */
   margin: auto; /* Left and right Center */  
}

.grid-1 {
  display: grid;
  grid-template-columns: 1fr;
  padding: 0rem 2rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 0rem 2rem;
  /* column-gap: 1rem; */
  /* row-gap: 1rem; */
  gap: 1rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  /* column-gap: 1rem; */
  /* row-gap: 1rem; */
  gap: 1rem;
  padding: 0rem 2rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  /* column-gap: 1rem; */
  /* row-gap: 1rem; */
  gap: 1rem;
  padding: 0rem 2rem;
}

.dflex {
  display: flex; /* without this wont work */
  align-items: center; /* top & bottom Alignment */
  justify-content: center; /* left & right Alignment */
}

.dflex-col {
  display: flex;
  flex-direction: column; /* makes top to bottom align */
  align-items: center; /* Behaves like a justify-content */
  justify-content: center; /* Behaves like a align-items */
  text-align: center;
}

.dflex-start {
  display: flex; /* without this wont work */
  align-items: center; /* top & bottom Alignment */
  justify-content: start; /* left & right Alignment */
}

/* project standard classes Ends */

/* Default code Ends here */

/* :::PARENT CONTAINER Code Starts here::: */

header {
  /* background-color: #13c6bd; */
  width: 100%; /* Full Screensize */
  height: auto; /* content Height */
}

main {
  /* background-color: #ffbf00; */
  width: 100%;
  height: auto;
}

footer {
  /* background-color: #89f357; */
  width: 100%;
  height: auto;
}

/* :::PARENT CONTAINER Code Ends here::: */

.btn {
  /* background-color:var(--primaryColor); */
  /* color: var(--lightColor);
  font-family: var(--ffPrimary);
  font-size: var(--regularFont);
  font-weight: 400;
  line-height: 1; */
  /* letter-spacing: 0.1rem; */

  /* cursor: pointer;
  border: none; */
  /* border-radius: 0.5rem; */
  /* padding: 1rem 3rem;
  transition: background-color 0.3s ease; */
}

/* button:hover {
  background-color: var(--darkColor);
  color: var(--lightColor);
  transition: background-color 0.2s ease;
} */

/* :::PARENT CONTAINER Code Ends here::: */

/* :::HEADER Code Starts hereE::: */
/* Navbar code */
/* Navbar code */

/* Hero Section code */
/* Hero Section code */
/* :::HEADER Code Ends here::: */

/* :::MAIN Code Starts here::: */
/* Our Menu code */
/* Our Menu code */

/* Facility code */
/* Facility code */

/* Popular code */
/* Popular code */

/* Gallery code */
/* Gallery code */

/* Team code */
/* Team code */
/* :::MAIN Code Ends here::: */

/* :::FOOTER Code Starts here::: */
/* Contact code */
/* Contact code */

/* Contact Icons code */
/* Contact Icons code */
/* :::FOOTER Code Ends here::: */

/* ::::: RESPONSIVE DESIGN DEVICE SIZES ::::: */

/* for Responsive Target the ROW Code (display:grid) */

/* Small devices (landscape phones, upto 576px and below) */
/* @media (width <=576px) */
@media (max-width: 576px) {
  .grid-1,
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
    padding: 0rem 1rem;
  }
}

/* Medium devices (tablets, upto 768px and above) */
/* @media (min-width: 577px) and (max-width: 768px) */
@media (width >=577px) and (width <=768px) {
   .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr 1fr;
    padding: 0rem 1rem;
  }
}

/* Large devices (Laptops, upto 992px and above) */
/* @media (min-width: 769px) and (max-width: 992px) */
@media (width >=769px) and (width <=992px) {
   .grid-3,
  .grid-4 {
    grid-template-columns: 1fr 1fr 1fr;
    padding: 0rem 1rem;
  }
}

/* X-Large devices (large desktops, upto 1200px and above) */
/* @media (min-width: 993px) and (max-width: 1200px) */
@media (width >=993px) and (width <=1200px) {

}

/* XX-Large devices (larger desktops, upto 1400px and above) */
/* @media (min-width: 1200px)  */
@media (width >=1200px) {
  /* write code here */
}
