:root{
    --orange-btn-headerText: #FF8303;
    --light-blue-footer: #6AA3B7;
    --light-gray-footerBack: #F6F6F6;
    --gray-productBack-filterBack: #F8F8F9;
    --white-text:#FFFFFF;
    --black-filter: #232323;
    --black-productText-categoryText: #202630;
}
@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy-Italic.ttf') format('truetype');
    font-weight: normal;
    font-style: italic;
}
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

input:focus {
    outline: none;
}

textarea:focus {
  outline: none;
}

html {
    overflow-x: hidden;
}


input:focus,
select:focus {
    outline: none;
}

* {
    box-sizing: border-box;
  font-family: 'Gilroy', sans-serif;
}

a {
    text-decoration: none;
}
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Montserrat:wght@300;400;500;600&display=swap');
        
body {
	font-family: 'Montserrat', sans-serif;
	scroll-behavior: smooth;
}

h1, h2, h3, h4 {
	font-family: 'Playfair Display', serif;
}

.hero {
	background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('https://images.unsplash.com/photo-1519225421980-715cb0215aed?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.gallery-item {
	transition: all 0.3s ease;
}

.gallery-item:hover {
	transform: scale(1.03);
}

.testimonial-card {
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.menu-btn {
	transition: all 0.3s ease;
}

.menu-btn.active .bar:nth-child(1) {
	transform: translateY(8px) rotate(45deg);
}

.menu-btn.active .bar:nth-child(2) {
	opacity: 0;
}

.menu-btn.active .bar:nth-child(3) {
	transform: translateY(-8px) rotate(-45deg);
}

.bar {
	transition: all 0.3s ease;
}

.mobile-menu {
	transition: all 0.3s ease;
	transform: translateX(100%);
}

.mobile-menu.active {
	transform: translateX(0);
}