/* main wrapper */
.main-wrapper {
    margin-top: 20px;
}

/* main header */
.main-header * {
    background-color: inherit;
    background-color: #e1d6d3;
}

.main-header {
    display: flex;
}

/* navigation container */
.navigation-container {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    overflow: hidden;
    height: 100%;
    margin-bottom: 10px;
}

/* Search Bar */
.form-search-bar {
    position: relative;
    margin-top: 20px;
}

#search-bar::-webkit-search-cancel-button {
    -webkit-appearance: none;
    appearance: none;
    display: none;
    /* hides the default X */
}

#search-bar {
    width: 100%;
    padding: 10px 40px 10px 15px;
    /* space for icon */
    border: 1px solid #ccc;
    border-radius: 10px;
    font-size: 16px;
}

#search-bar::placeholder {
    color: #aaa;
}

/* Add SVG as background */
#search-bar {
    background: url('/assets/icons/search-bar.svg') no-repeat right 12px center;
    background-size: 18px;
}

/* Social Media container */

.social-media div {
    margin-right: 5px;
}

.social-media-icon-container {
    margin-left: 5px;
}

.social-media {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    overflow: hidden;
    height: 50px;
}

#social-media-title {
    align-items: flex-end;
    margin-left: 20px;
    margin-right: 5px;
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 16px;
    font-weight: 300;
}

#social-media-title span {
    -webkit-user-select: none;
    /* Chrome, Safari */
    -ms-user-select: none;
    /* Edge (old) */
    user-select: none;
}

.social-media a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    overflow: hidden;
}

.social-media path {
    fill: #272727;
    transition: fill 0.2s ease;
}

/* Facebook icon*/
.facebook-icon {
    width: 100%;
    height: 100%;
}

.facebook-icon:hover path {
    fill: url(#fbGradient);
    /* no quotes */
}


/* Animate the path fill (gradient reference) */
.instagram-icon {
    width: 100%;
    height: 100%;
}

.instagram-icon:hover path {
    fill: url(#instaGradient);
    /* no quotes */
}

.tiktok-icon {
    width: 100%;
    height: 100%;
}

.tiktok-icon:hover path {
    fill: url(#tiktoGradient);
}

/* Container for logo and nav */
.col-header {
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    padding: 10px 5%;
    background-color: #ffffff
}

.site-branding img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Magic happens here: fills the area without distortion */
    object-position: center;
    /* Keeps the middle of the logo visible */
}

.site-branding a {
    display: block;
    width: 100%;
    /* Set your desired width */
    height: 100%;
    /* Set your reduced height */
    overflow: hidden;
    /* Ensures nothing leaks out */
}

.site-branding {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    margin: 0;
    width: 350px;
    height: 100px;

}

/* navigation menu */
.nav-menu {
    display: flex;
    justify-content: center;
    overflow: hidden;
    align-items: flex-end;
    height: 50px;
    width: auto;
}

.navigation-main-container {
    align-items: center;
    width: 100%;
}

.menu-container {
    display: flex;
}

.menu {
    display: flex;
    justify-content: center;
    overflow: hidden;
}

.menu li {
    display: flex;
    align-items: flex-end;
    list-style: none;
    margin-left: 2px;
    margin-right: 2px;
}

.menu li a {
    -webkit-user-select: none;
    /* Chrome, Safari */
    -ms-user-select: none;
    /* Edge (old) */
    user-select: none;
    text-decoration: none;
    color: black;
}

.menu li a:hover {
    color: rgb(114, 114, 114);
}