@import url(../fonts/stylesheet.css);

/* VARIABLES */
:root {
    --c-white: #ffffff;
    --c-light-blue: #bef4fe;
    --c-blue: #005099;
    --font-base: "Gellix", sans-serif;
    --box-shadow: 0px 15px 25px rgba(0, 0, 0, 0.08);
    --transition: all 0.5s ease;
}

/* HELPERS & RESETS */
* {
    font-family: var(--font-base);
    line-height: 1.7;
    color: var(--c-blue);
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

*::selection {
    background-color: black;
    color: #ffffff;
}

body {
    color: var(--c-white);
    background-color: var(--c-light-blue);
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3.h4.h5.h6 {
    font-weight: 800;
    color: var(--c-blue);
}

p {
    color: var(--c-blue);
}

a {
    text-decoration: none;
    color: var(--c-blue);
    transition: var(--transition);
    font-size: 18px;
}

a:hover {
    color: var(--c-light-blue);
}

.section-padding {
    padding-top: 140px;
    padding-bottom: 140px;
    background-color: #ddddc7;
}

img {
    max-width: 100%;
    height: auto;
}

/* Navbar */
header {
    background-color: var(--c-white);
}

header a {
    font-size: 22px;
    font-weight: bold;
    font-weight: 500;
}

header a:hover {
    color: black;
    text-decoration: underline;
    text-decoration-thickness: 3px;
    text-decoration-skip-ink: none;
    text-underline-offset: 2px;
    text-decoration-color: white;
    text-align: center;
}


/* HERO */
#hero {
    background-color: #004aa1;
    padding-top: 20vh;
    padding-bottom: 5vh;
}

#hero h1 {
    font-size: 80px;
    color: white;
}

#hero p {
    font-size: 20px;
    color: white;
}


/* COLLECTIONS */
#collection {
    background-color: white;

}

#collection img {
    background-color: #f5f5f5;
    width: 350px;
    height: 400px;
    object-fit: cover;
    object-position: center;
}

#collection h2 {
    font-size: 36px;
    font-weight: 700;
}

#collection #collection-nav {
    position: sticky;
    top: 20px;

}

#collection #collection-nav ul {
    list-style: none;
    padding: 40px;
}

#collection #collection-nav li {
    font-size: 18px;
    font-weight: 500;
    padding: 10px;
}

#collection #collection-images ul {
    list-style: none;
    padding: 0px 40px;
    margin: 0px 0px 80px 0px;
}





/* DiETARY-ICONS */
#dietary {
    background-color: #91dfb9;
    position: relative;
    padding: 5vh 0;
}

#dietary h2 {
    font-size: 55px;
    font-weight: 700;
    text-align: center;
}

#dietary p {
    text-align: center;
    font-size: 22px;
    font-weight: 500;
}

#dietary img,
svg {
    height: 55px;
    width: auto;
    margin: 10px 35px;
}




/* FOOTER */
footer {
    background-color: #235E6B;
    padding: 10vh 0;
}

footer * {
    color: var(--c-white);
    list-style: none;
}

footer li {
    padding: 5px 0px;
    font-size: 18px;
    font-weight: 500;
}

footer a:hover {
    color: #91dfb9;
}

footer h5 {
    font-size: 22px;
}

footer p {
    opacity: 0.8;
    font-size: 16px;
}

footer span {
    font-size: 12px;
    opacity: 0.8;
}

footer i {
    font-size: 2rem;
}



/* pimg */




.container_imgh {
    position: relative;
    width: 100%;
    max-width: 300px;
}

.image {
    display: block;
    width: 100%;
    height: auto;
}

.overlay {
    position: absolute;
    bottom: 0;
    background: rgb(0, 0, 0);
    background: rgba(0, 0, 0, 0.5);
    /* Black see-through */
    color: #f1f1f1;
    width: 100%;
    transition: .5s ease;
    opacity: 0;
    color: white;
    font-size: 20px;
    padding: 20px;
    text-align: center;
}

.container_imgh:hover .overlay {
    opacity: 1;
}