body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    position: relative;
    background-image: url('img/bg-1.svg');
    background-position: 0 0;
    background-size: cover;         
    background-repeat: no-repeat;
    background-color: #CDDB00;
}

.container {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
}

/* Background elements (recreating the shapes) */
.container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background-image: 
        url('img/avocado-1.png'),
        url('img/avocado-2.png');

    background-position: 
        0 100%,
        100% 0;

    background-size:    
        350px auto,         
        337px auto;         

    background-repeat: no-repeat, no-repeat, no-repeat;

    z-index: -1;
}

.horizontal-divider{
    border: 1px solid #000000;
}

/* "Coming Soon" circle */
.coming-soon {
    position: absolute;
    top: 50px;
    left: 50px;
}

/* Main text section */
.main-content {
    text-align: center;
    margin-top: 100px;
    margin-bottom: 20px;
    width: 578px;
}

.brand-name {
    margin: 0 0 10px 0;
}

.slogan-container {
    display: flex;
    justify-content: space-between;
    width: 502px;
    margin: 30px auto 20px;
}

.slogan-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.slogan-text {
    font-family: 'Teko', sans-serif;
    font-size: 3em;
    font-weight: 700;
    color: #4b3e4f;
    text-transform: uppercase;
    line-height: 1;
}

.slogan-text.pink {
    color: #EF87CF;
}

.slogan-text.purple {
    color: #9B7DD5;
}

.slogan-text.black {
    color: #000000;
}

/* Product bottles */
.bottles {
    position: absolute;
    bottom: -4px;
}

/* "Current Site" link */
.current-site {
    position: absolute;
    bottom: 50px;
    right: 50px;
}

.current-site a img {
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.current-site a:hover img {
  transform: scale(1.2);
  opacity: 0.8;
}

/* Responsiveness */
@media (max-width: 1024px) {
    body{
        background-repeat: repeat;
    }
    .main-content{
        width: 100%;
        margin-top: 20px;
    }
    .slogan-container{
        width: 100%;
        margin: 20px auto;
    }
    .brand-name{
        margin-top: 0;
        margin-bottom: 50px;
    }
    .brand-name img{
        width: 100%;
    }
    .container::before{
        background-image: none;
    }
    .coming-soon {
        position: relative;
        bottom: 0;
        top: 0;
        right: 0;
        left: 0;
        margin-top: 50px;
    }

    .bottles {
        position: relative;
        margin-top: 50px;
        margin-bottom: 20px;
    }

    .bottle-img.combined {
        width: 100%;
    }

    .current-site {
        position: relative;
        bottom: 0;
        top: 0;
        right: 0;
        left: 0;
        margin-top: 50px;
    }

    .horizontal-divider{
        width: 100%;
    }
}