@font-face {
    font-family: 'Copperplate-gothic';
    src: url('/COPRGTB.TTF') format('truetype');
}

:root {
    --font-family: "Montserrat", serif;
    --base-color: #d89941;
}

* {
    padding: none;
    margin: none;
    box-sizing: border-box;
    font-family: var(--font-family);
}

p {
    font-size: 1.05rem;
}

.spacer {
    width: 100%;
    height: 100px;
}
.spacer2 {
    width: 100%;
    height: 80px;
}

/** locking container **/
.container {
    max-width: 1200px !important;
}

.navbar {
    background-color: #fff;
    box-shadow: rgba(33, 35, 38, 0.1) 0px 10px 10px -10px;
}
.navbar-nav {
    gap: 20px;
}

.nav-link {
    color: #000;
    font-family: Copperplate-gothic, serif;
    font-size: 1.2rem;
}

.nav-link.active {
    color: var(--base-color) !important;
}

.brand_logo{
    max-width: 200px
}


/*** footer ***/

footer {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.brand-info, .address {
    max-width: 400px;
}

footer .address a {
    text-decoration: none;
    color: var(--base-color);
}

@media screen and (min-width: 1024px) {
    footer {
        flex-direction: row;
        justify-content: space-between;
    }
    
}

.ftr {
    border-top: 1px solid #333;
    padding: 30px 0 0 0;
}


/** footer branding ***/
.ufk {
    text-align: center;
}

.ufk a {
    color: var(--base-color);
    text-decoration: none;
}

/*** whatsapp icon ***/
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}

.whatsapp-float img {
  width: 60px; /* Adjust size as needed */
  height: auto;
}
