/* **********************************************************
 * add custom styles after imports below
 * ********************************************************** */

@import "default.css";
@import "layout.css";
@import "menu.css";
@import "queries.css";

/* **********************************************************
 * to import a font, use the @import option, you can find
 * lots of font options at fonts.google.com for example.
 * ********************************************************** */

 @font-face {
    font-family: 'arial_1_by_10light';
    src: url(/assets/fonts/arial1by10light/arial1by10-light-webfont.woff) format('woff2'),
         url('arial1by10-light-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'arial_1_by_10regular';
    src: url(/assets/fonts/arial1by10regular/arial1by10-regular-webfont.woff) format('woff2'),
         url('arial1by10-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'arial_1_by_10_bold';
    src: url(/assets/fonts/arial1by10regular/arial1by10-regular-webfont.woff) format('woff2'),
         url('arial1by10-regular-webfont.woff') format('woff');
    font-weight: bold;
    font-style: normal;

}

@font-face {
    font-family: 'univers_elselight_';
    src: url(/assets/fonts/univers-else-light/univers-else-light-webfont.woff) format('woff2');
    font-weight: normal;
    font-style: normal;

}

html {
    font-family: 'arial_1_by_10regular';
    font-size: 110%;
}


/* **********************************************************
 * Customizing
 *
 * changes to default settings like colors, typography,
 * spacing can be made in default.css
 *
 * other custom settings, start below
 *
 * ********************************************************** */

 .main-title{
    font-size: clamp(3rem, 10vw, 8rem);
    line-height:90%;
    cursor: pointer;
    transition: all 0.3s ease;
 }

 .main-title:hover {
    color: var(--color-fg-light, #3f3f3f);
    transform: translateX(10px);
    letter-spacing: 0.05em;
 }

 .main-subtext{
    font-size: 2.6rem;
    line-height:120%;
}

.img__cover-30 {
    width: 30%;
    height: auto;
    max-width: 200px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.img__cover-40 {
    width: 40%;
    height: auto;
    max-width: 300px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

* {
    line-height: 137%;
    font-weight: 500;
}

body {
    background-color: #f3f3f3;
    color: var(--color-fg);
}


/* Slideshow - manual navigation only */
.slideshow-container {
    width: 100%;
    max-width: 930px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    
}

.slideshow-track {
    display: flex;
    transition: transform 0.3s ease-in-out;
}

.slideshow-track img {
    width: 100%;
    min-width: 100%;
    height: auto;
    object-fit: cover;
    flex-shrink: 0;
}

.slideshow-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.2);
    border-radius:50px;
    color: white;
    border: none;
    font-size: 1.5rem;
    padding: 0.5rem 1.5rem;
    cursor: pointer;
    transition: background 0.3s;
    z-index: 10;
}

.slideshow-btn:hover {
    background: rgba(0, 0, 0, 0.4);
}

.slideshow-btn-prev {
    left: 10px;
}

.slideshow-btn-next {
    right: 10px;
}

@media (orientation: portrait) {
    * {
        font-size: 16px;
    }

    .slideshow-container {
        max-width: 100%;
    }

    .slideshow-btn {
        font-size: 2rem;
        padding: 0.5rem 1rem;
    }
}
