@font-face {
    font-family: 'Rubik';
    src: url('../fonts/Rubik-VariableFont_wght.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}


html {
  font-size: 14px;
  
}
body {
    font-family: 'Rubik', sans-serif !important;
    background-color: white;
    /*background-color: #eeedea;*/
}
@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
    
}
@media (max-width:950px ){
    .hero-buttons {
        flex-direction: column; /* Stack buttons vertically */
        align-items: center; /* Center buttons horizontally */
        
    }
        .hero-buttons button {
            flex: 1 0 auto;
        }
}

nav {
    font-size: 120%;
    background-color: #D3D0C5;
}
footer {
    font-size: 120%;
    background-color: #D3D0C5;
}
.navbar-brand {
    font-weight: bold;
}

.navbar {
    padding-top: 1% !important;
    padding-bottom: 1% !important;
    padding-left: 8.5% !important;
    padding-right: 8.5% !important;
    background-color: #D3D0C5 !important;
}


html {
    position: relative;
    min-height: 100%;
    scroll-behavior: smooth;
}

body {
  margin-bottom: 60px;
}


.hero {
    margin: 0;
    padding: 0;
    position: relative;
    overflow: hidden;
    text-align: center;
    width: 100% !important;
    height: 80vh; /* This sets the height of the hero to the full viewport height. */
}

    .hero img {
        width: 100%; /* Ensure the image stretches across the entire width of the hero. */
        height: 100%; /* This makes the image cover the entire height of the hero. */
        object-fit: cover; /* Ensures the image covers the entire hero while maintaining its aspect ratio. */
        margin: 0 auto;
    }

.hero-text {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
   
}
.btn-link {
    color: dimgray !important;
}
.btn-primary {
    background-color: #785F7D !important;
    color: white !important;
}
    .hero-text .btn {
        background-color: #785F7D !important;
        color: white !important;
    }
    .hero-text h1 {
       
        /* font-weight: bold;  Make the text bold. */
        color: white; /* Set the text color to black. */
        margin-top: 100px;
    }
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 40px; /* Adjust the space between buttons */
    margin-top: 100px; /* Adjust the margin from the h1 */
    background-color: darkpurple !important;
    color: white !important;
    width: 100%; /* Set width to 100% to take the full width of the container */
    padding: 20px; /* Add padding for better visual appearance */
}
    .hero-buttons button {
        flex: 1 0 auto;
    }
.btn.btn-primary {
    background-color: darkpurple !important;
    color: white !important;
    border-color: white !important;
    border: unset;
}
.content {
    margin-left: 50px;
    margin-right: 50px;
}


.contact {
    margin-top: 100px;
    margin-left: 90px;
}
.map {
}
.gallery {
    margin: 10px 50px;
}

    .gallery a img {
        width: 114px;
        padding: 5px;
    }

        .gallery a img:hover {
            transform: scale(1.05)
        }
.contact ul {
    margin-left: 120px;
}
@media (max-width: 800px) {
    .contact ul {
        margin-left: 10px;
    }
    
}