@charset "utf-8";

@font-face {
    font-family: "GeologicaThin";
    font-style: normal;
    font-weight: normal;
    src: url("../fonts/Geologica-Thin.woff") format("woff");
}
@font-face {
    font-family: "GeologicaLight";
    font-style: normal;
    font-weight: normal;
    src: url("../fonts/Geologica-Light.woff") format("woff");
}
@font-face {
    font-family: "GeologicaSemiBold";
    font-style: normal;
    font-weight: normal;
    src: url("../fonts/Geologica-SemiBold.woff") format("woff");
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
    --white: #f0f0f0;
    --black: #2c2b30;
    --darg-gray: #4f4f51;
    --light-gray: #d6d6d6;
    --pink: #f2c4ce;
    --rose: #f58f7c;
}
a, .inputbox {
    outline-width:0;
}
a {
    transition: all 0.3s ease;
    text-decoration: none;
    color: var(--rose);
}
a:hover {
    text-decoration: none;
}
p {
    margin-bottom: 14px;
}
ol, ul {
    list-style: none;
}

body {
    max-width: 1920px;
    height: 100%;
    margin: 0px auto;
    padding: 0px;
    font-family: GeologicaThin;
    font-size: 20px;
    letter-spacing: -1px;
    color: var(--black);
    background-color: #fefefe;
}
.innerBlock{
    max-width: 1280px;
    margin: 0 auto;
    border-bottom: 0;
    padding: 0 20px;
}


/* Base Typography */
h1 {
    font-family: GeologicaSemiBold;
    font-size: clamp(1.8em, 4vw, 2.5em);
    letter-spacing: -2.5px;
    position: relative;
}
h1::before {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    margin-bottom: 10px;
    background: var(--rose);
}
h2{
    font-size: 2em;
}
h3{
    font-size: clamp(1.3em, 3vw, 1.5em);
}
h4{
    font-size: clamp(1em, 2.5vw, 1.2em);
}
/* Base Typography */


/* Buttons */
.button {
    display: inline-block;
    color: var(--black);
    background-color: var(--rose);
    padding: 15px 25px;
    margin-top: 10px;
    font-family: GeologicaThin;
}
.button:hover {
    background-color: var(--pink);
}
/* /Buttons */

/* Social Icons */
.socialIcons {
    display: flex;
    gap: 10px;
    padding: 15px 0;
}
.socialIcons i {
    font-size: 1em;
    padding: 10px;
}
.socialIcons a {
    color: var(--black);
    border: 1px solid var(--black);
    border-radius: 50%;
}
.socialIcons a:hover {
    color: var(--pink);
    border: 1px solid var(--pink);
}
/* /Social Icons */

/* Header */
.header {
    display: flex;
    align-items: center;
    width: 100%;
    height: 90px;
    position: fixed;
    background-color: var(--white);
    z-index: 2;
}
.headerInt {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    flex: 1;
    height: 100%;
}
/* Logo */
.logo img {
    width: 95px;
    margin-top: 7px;
}
/* /Logo */

.menuSocial {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 40px;
}
.menuSocial .socialIcons i {
    font-size: .7em;
}
/* Menu */
.mainMenu {
    border-right: 1px solid var(--pink);
    padding: 30px 0;
    padding-right: 30px;
}
.mainMenu ul li a {
    padding: 10px;
    font-family: GeologicaLight;
    font-size: .8em;
    color: var(--black);
}
.mainMenu ul li a:hover {
    color: var(--pink);
}
.mainMenuWrapper {
    position: relative;
}
.menuToggle {
    display: none;
    font-size: 34px;
    background: none;
    border: none;
    color: var(--black);
    position: absolute;
    top: -25px;
    right: -20px;
}
@media (max-width: 800px) {
    .headerInt {
        padding: 0 20px;
    }
    .mainMenu {
        border-right: 0;
    }
    .menuToggle {
        display: block;
        margin-right: 20px;
    }
    .socialIcons {
        display: none;
    }
    .mainMenu {
        position: absolute;
        bottom: -350px;
        right: -21px;
        background-color: var(--black);
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
        z-index: 1000;
        padding: 20px 10px;
        transition: all .5s ease;
        opacity: 0;
        visibility: hidden;
        min-width: 200px;
    }
    .mainMenu ul {
        flex-direction: column;
        text-align: right;
    }
    .mainMenu ul li {
        padding: 10px 20px!important;
    }
    .mainMenu ul li a {
        color: var(--rose);
        font-size: 1em;
    }
    .mainMenu ul li a:hover {
        color: var(--pink);
    }
    .mainMenu.active {
        transition: all .5s ease;
        bottom: -385px;
        opacity: 1;
        min-width: 200px;
        visibility: visible;
    }
}
/* /Menu */
/* /Header */

/* Hero */
.heroCont {
    display: flex;
    justify-content: center;
    align-items: center;
    /*background-image: url(../images/heroBg.jpg);
    background-position: top center;
    background-size: cover;
    background-attachment: fixed;*/
    min-height: 100vh;
    color: var(--white);
}
.heroCont .carousel-item img {
    position: relative;
    width: 100%;
    height: 100vh;
    object-fit: cover;
}
.heroCont .carousel-item .textCont {
    position: absolute;
    top: 50%;
    left: 30%;
    transform: translate(-30%, -40%);
}
.heroCont .carousel {
    width: 100%;
}
.textBlock h1 {
    color: var(--pink);
    opacity: 0;
    animation: slideRightH1 .3s ease-out .7s forwards;
    text-shadow: 1px 1px 1px var(--black);
}
@keyframes slideRightH1 {
    from {
        transform: translateX(-100px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}
.textBlock h3 {
    padding: 0 0 20px;
    opacity: 0;
    animation: slideRightH3 .3s ease-out .9s forwards;
    font-family: GeologicaThin;
    text-shadow: 1px 1px 1px var(--black);
}
@keyframes slideRightH3 {
    from {
        transform: translateX(-100px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}
.textBlock .button {
    opacity: 0;
    animation: slideRightButton .3s ease-out 1.1s forwards;
}
@keyframes slideRightButton {
    from {
        transform: translateX(-100px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}
.carousel-control-next, .carousel-control-prev {
    width: 5%;
}
/* /Hero */


/* Top Positions */
/* Top 1 Brands */
.carousel.brands {
    box-shadow: 0 0 20px #ddd;
    margin: 50px 0 0;
}
.brands .carousel-item {
    width: 100%;
}
.brands .carousel-item .card {
    border: unset!important;
    float: left;
    width: 20%;
    border-right: 1px solid #eee!important;
    border-radius: 0!important;
}
.brands .carousel-item .card:last-child {
    border-right: 0;
}
.brands .carousel-item .card img {
    width: 150px;
    margin: 0 auto;
    opacity: .3;
    transition: all .3s ease;
    vertical-align: middle;
    padding: 50px 0;
}
.brands .carousel-item .card img:hover {
    opacity: .5;
}
@media (max-width: 480px) {
    .brands .carousel-item .card {
        border-right: 0;
        border-bottom: 1px solid #eee!important;
        width: 100%;
    }
    .brands .carousel-item .card:last-child {
        border-bottom: 0;
    }
}
/* /Top 1 Brands */

/* Top 2  Categories */
.top2cont {
  display: flex;
  gap: 20px;
  padding: 50px 0;
  box-sizing: border-box;
  height: 100vh;
  min-height: 300px;
}
.left, .right {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
}
.leftBlock {
  position: relative;
  width: 100%;
  flex: 1;
  height: 100%;
}
.leftBlock img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.blockTextCont {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 50%;
  padding: 50px;
  background-image: linear-gradient(to top, rgba(44,43,48,0.4), rgba(44,43,48,0));
  color: var(--white);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 5px;
}
.blockTextTitle {
  font-family: GeologicaSemiBold;
  transition: transform 0.3s ease;
  transform: translateY(80px);
  display: block;
  position: relative;
}
.blockTextTitle::before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: -5px;
  width: 60px;
  height: 1px;
  background: var(--white);
}
.rightBlock:hover .blockTextTitle,
.leftBlock:hover .blockTextTitle {
  transform: translateY(5px);
}
.blockTextCont .button,
.blockTextCont .socialIcons {
  transform: translateY(40px);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.rightBlock:hover .blockTextCont .button,
.leftBlock:hover .blockTextCont .button,
.rightBlock:hover .blockTextCont .socialIcons {
  transform: translateY(0);
  opacity: 1;
  transition: all .3s ease;
}
.right {
  gap: 20px;
  height: 100%;
  justify-content: stretch;
}
.rightBlock {
  position: relative;
  flex: 1 1 0;
  height: 0;
  min-height: 0; /* Trick: Το ύψος δίνεται απ’ τον flex parent (right) */
  display: flex;
}
.rightBlock img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 800px) {
  .top2cont {
    flex-direction: column;
    height: auto;
    min-height: unset;
    padding: 20px;
  }
  .left, .right {
    width: 100%;
    flex: unset;
    height: auto;
  }
  .right {
    gap: 20px;
    height: auto;
  }
  .rightBlock {
    width: 100%;
    height: auto;
    min-height: 200px;
  }
  .leftBlock {
    min-height: 200px;
    height: auto;
  }
}
/* /Top 2 Categories */
/* /Top Positions */


/* Bottom Positions */
/* Bottom 2 Testimonials */
.testiCarousel {
    padding: 50px 20px 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.testiCarousel h1 {
    margin-bottom: 20px;
}
.carousel-indicators {
    margin-bottom: 0rem;
}
.carousel-indicators [data-bs-target] {
    background-color: var(--rose);
}
.testi .carousel-item {
    width: 100%;
    min-height: 250px;
}
.testi .carousel-item .card {
    border: unset!important;
    float: left;
    width: 33.33%;
    border-radius: 0!important;
    background: transparent;
    padding: 20px;
    text-align: center;
}
.cardText {
    font-style: italic;
    font-size: .85em;
    margin-bottom: 20px;
}
.cardName {
    font-family: GeologicaSemiBold;
    font-size: .8em;
}
@media (max-width: 480px) {
    .testi .carousel-item .card {
        width: 100%;
    }
}
/* /Bottom 2 Testimonials */

/* Bottom 3 Newsletter */
.newsletterCont {
    background-image: url(../images/newsletterBg.jpg);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    /*height: 100%;*/
    padding: 100px 0;
}
.newsletterBlocks {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
.newsletterBlock {
    flex: 1;
}
.newsletterBlockInt {
    color: var(--white);
}
.blockSubText {
    padding: 10px 0 30px;
}
.newsletterFormBlock {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
}
.newsletterFormBlock input {
    width: calc(100% - 200px);
    padding: 10px 20px;
    height: 60px;
    margin-top: 11px;
    border: 0;
}
@media (max-width: 800px) {
    .newsletterBlock {
        flex: 1 100%;
        padding: 0 40px;
    }
}
@media (max-width: 480px) {
    .newsletterFormBlock {
        flex-direction: column;
    }
    .newsletterFormBlock input {
        width: 100%;
    }
}
/* /Bottom 3 Newsletter */
/* /Bottom Positions */


/* Main Content */
.mainLayout {

}
.contentArea {
    flex: 1;
    min-width: 0;
    padding: 30px 22px;
}
/* /Main Content */


/* Side Bars */
.sidebarLeft, .sidebarRight {
    width: 220px;
    min-width: 180px;
    max-width: 260px;
    padding: 22px 16px;
}
/* /Side Bars */





/* Footer */
.footerCont {

}
.footerBlock {

}
.copyright {

}
/* /Footer */




/* Responsive styles */
@media (max-width: 900px) {
    
}
