/* Define Colors */
:root {
    --bg-color: #ffffff;
    --fg-color: #000000;
    --accent: #e26668;
    --highlight: #dbd8e3;
    --text-white: #ffffff;
    --text-black: #000000;
}


/* Fonts */
/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "pretendard", sans-serif;
    font-weight: 900;
    font-style: normal;

    margin: 10px;
}

h1 {
    font-size: 90px;
}

h2 {
    font-family: "oswald", sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 55.5px;
}

h3 {
    font-size: 20px;
}

/* Paragraph */
p {
    font-family: "krub", sans-serif;
    font-weight: 400;
    font-style: normal;

    margin: 5px;
}

/* Hyperlinks */
a {
    color: var(--text-black);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

body {
    color: var(--text-black);
}

/* Superscript */
sup {
    vertical-align: top;
    font-size: 1rem;
    line-height: 1;
}

/* Icon Images */
.icon {
    filter: invert(1);
    width: 20px;
    transition: all 100ms;
}

.icon:hover {
    transform: scale(1.1);
}

/* Visible Page */
/* Header */
.header {
    background-color: var(--fg-color);

    padding: 20px 30px;

    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.header-logo a img {
    height: 70px;
}

.header-nav {
    display: flex;
    flex-direction: row;
    gap: 5px;
}

.header-nav-link {
    padding: 15px 25px;
    color: var(--text-white);
    transition: all 200ms;
}

.header-nav-link:hover {
    transform: scale(1.07);
    background-color: color-mix(in srgb, var(--fg-color) 50%, black 20%);
}

.header-user {
    display: flex;
    flex-direction: row-reverse;
    gap: 20px;
    align-items: center;
}

.header-user .search {
    display: flex;
    flex-direction: row;
    gap: 10px;

    margin-right: 20px;
    height: 30px;
}

/* Main Content */
/* Above the Fold */
.main-content {
    /* Placeholder Height */
    min-height: 100vh;

    padding-bottom: 50px;

    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Hero Banner */
.hero-banner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Carousel container */
.carousel-container {
    width: 100%;
    position: relative;
    margin: auto;
}

/* Hide the images by default */
.mySlides {
    display: none;
}

.carousel-image {
    width: 100%;
    aspect-ratio: 16/7;
    object-fit: cover;
}

/* Next & previous buttons */
.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}

/* Position the "next button" to the right */
.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

/* Caption text */
.text {
    color: #f2f2f2;
    font-size: 15px;
    padding: 8px 12px;
    position: absolute;
    bottom: 8px;
    width: 100%;
    text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
    color: #f2f2f2;
    background-color: #00000080;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
}

/* The dots/bullets/indicators */
.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.active,
.dot:hover {
    background-color: #717171;
}

/* Fading animation */
.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fade {
    from {
        opacity: .4
    }

    to {
        opacity: 1
    }
}

/* Below the Fold */
.below-the-fold {
    margin: 0 auto;
    max-width: 90%;
}

/* product Carousel */
.product-carousel {
    display: flex;
    flex-direction: row;
    gap: 20px;
    overflow: scroll;
}

/* product Card */
.product-card {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.product-card-image {
    margin: 0;
    text-align: center;
    width: 300px;
    aspect-ratio: 1/1;
    object-fit: contain;
}

.product-card-link {
    background-color: var(--accent);
    box-sizing: border-box;
    padding: 20px;
    width: 100%;
    text-align: center;
    transition: ease-in-out 200ms;

}

.product-card-link:hover {
    filter: brightness(1.2);
    transition: ease-in-out 200ms;
}

/* Footer */
.footer {
    background-color: var(--fg-color);

    color: var(--text-white);
    padding: 20px 30px;
}

.top-footer {
    margin: 20px 100px;
    margin-bottom: 50px;
    display: flex;
    justify-content: space-between;
}

.bottom-footer {
    text-align: center;
}

/* Social Media Tray */
.social-media-tray {
    display: flex;
    flex-direction: row;
    flex-flow: row wrap;
    gap: 20px;

    width: 150px;
}

/* Stickers */
.stickers-bg {
    position: fixed;
    width: 100%;
    z-index: -1;
    opacity: 0.07;
}

.sticker1 {
    position: absolute;
    width: 70%;
    max-width: 1000px;

    left: -200px;
    top: 100px;
}

.sticker2 {
    position: absolute;
    width: 25%;
    max-width: 800px;

    top: -200px;
    right: 0px;
}

.sticker3 {
    position: absolute;
    width: 50%;
    max-width: 500px;

    right: 0;
    top: 700px;
}