/*
Theme Name: GeneratePress Child
Theme URI: https://generatepress.com
Description: A child theme for GeneratePress
Author: Your Name
Author URI: PetitBijou
Template: generatepress
Version: 1.0.0
*/

@import url("../generatepress/style.css");

@import url('https://fonts.googleapis.com/css2?family=Spectral:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');


h1 {
    font-family: Spectral, serif;
    font-size: 80px;
}

h2 {
    font-family: Spectral, serif;
    font-size: 60px;
}

p, a {
    font-family: "Nunito", serif;
}


/* hapesira per elementet */

.mt-100 {
    margin-top: 100px;
}
.mt-50 {
    margin-top: 50px;
}
.mt-40 {
    margin-top: 40px;
}


.pt-100 {
    padding-top: 100px;
}
.pt-50 {
    padding-top: 50px;
}
.pt-40 {
    padding-top: 40px;
}
.ptb-100 {
    padding: 100px 0;
}

/* buttons */
.gb-button {
    font-size: 16px;
    line-height: 20px;
    flex-direction: row;
    gap: 0px;
    border-width: 0;
    border-radius: 30px;
    padding: 10px 50px;
    color: #000!important;
    background-color: #fff;    
    transition-duration: 200ms;
}
.gb-button:hover {
    background-color: #956b3a;
    color: #fff!important;
}

/* 
.quote_1::before {
    display: block;
    content: "";
    border-block-end: 0;
    flex-grow: 1;
    border-block-start: 2px solid #000;
    width: 10px;
} */

/* Carousel ne Homepage */

.swiper-container {
    width: 100%;
    height: 500px;
    position: relative;
    margin: 50px auto;
    overflow: hidden;
}

.swiper-slide {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #f0f0f0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.swiper-slide img {
    width: 70%;
    height: auto;
    object-fit: cover;
}

.carousel-content {
    padding: 15px;
    text-align: center;
}

.carousel-content h3 {
    font-size: 1.5rem;
    margin: 10px 0;
}

.carousel-content p {
    font-size: 1rem;
    color: #555;
}

.swiper-button-next,
.swiper-button-prev {
    color: #fff;
    background: rgba(0, 0, 0, 0.5);
    padding: 15px;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.swiper-button-next {
    right: 10px;
}

.swiper-button-prev {
    left: 10px;
}

.swiper-pagination-bullet {
    background: #000;
    opacity: 0.7;
}

.swiper-pagination-bullet-active {
    background: #007aff;
}
