@import url('https://fonts.googleapis.com/css2?family=Michroma&display=swap');

:root {
    --font-main: "Figtree";
    /*--font-secondary: "Instrument Sans";*/
    --font-secondary: "Michroma";
    --olive: #636B2F;
    --olive-bright: #BAC095;
    --olive-dark: #3D4127;
}

body {
    font-family: var(--font-main), sans-serif;
    color: #383838;
    scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary), sans-serif;
    font-weight: 700;
}


/*HEADER*/

header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 990;
}

.navbar {
    padding: 1rem 2.5rem;
}

.navbar .logo {
    width: 170px;
}

.navbar-menu ul {
    display: flex;
    gap: 1.25rem;
    align-items: center;
}

.navbar-menu {
    font-size: 14px;
    font-weight: 500;
}

.navbar-menu li a {
    color: #fff;
}

.navbar-toggler {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.toggler-line {
    height: 2px;
    background-color: #fff;
    width: 12px;
}

.toggler-line.long {
    width: 20px;
}

/*FOOTER*/

footer {
    padding: 120px 60px 40px 60px;
    background-color: var(--olive);
    color: #fff;
}

.footer-logo img {
    width: 180px;
    margin: 0 auto;
}

footer h4 {
    margin-bottom: .75rem;
    letter-spacing: 1px;
}

.footer-social {
    display: flex;
    gap: 1.15rem;
    justify-content: flex-end;
}

.footer-social li a {
    width: 35px;
    height: 35px;
    background-color: var(--olive-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: .4s ease-in-out;
}

.footer-social li:hover a {
    background-color: var(--olive-bright);
}


.copyright {
    padding-top: 60px;
}

.copyright a {
    color: #dedf24;
}

/*GENERAL*/

.section-padding {
    padding: 100px 0;
}

.bg-olive {
    background-color: var(--olive);
}

/*HERO*/
.hero-swiper .swiper-slide {
    height: 100vh;
    position: relative;
    background-position: center;
    background-size: cover;
}

.hero-swiper .swiper-slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-swiper .overlay {
    position: absolute;
    inset: 0;
    background: #000;
    opacity: 0.4; /* fallback */
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.hero-meta {
    position: absolute;
    top: 50%;
    left: 50%;
    color: #fff;
    transform: translate(-50%, -50%);
    width: 50%;
    text-align: center;
}

.hero-meta h1 {
    font-size: 40px;
    font-weight: 800;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 14px 36px;
    border-radius: 999px;

    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;

    color: #ffffff;
    text-decoration: none;

    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18);

    transition: all 0.3s ease;
}

.hero-btn:hover {
    background: rgba(255, 255, 255, 0.28);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.28);
}


/*HOMEPAGE*/

.intro p {
    margin-bottom: 1rem;
    text-align: center;
}

.intro h1 {
    text-align: center;
    font-size: 35px;
    font-weight: 700;
    margin-bottom: 1rem;
}

/*PAGE BANNER*/
.page-banner {
    height: 500px;
    position: relative;
    background-size: cover;
    background-position: center;
}

.page-banner video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-banner::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: #000;
    opacity: .4;
    pointer-events: none;
}

.page-banner-meta {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 2;
    color: #fff;
    transform: translate(-50%, -50%);
}

.page-banner-meta h1 {
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 2px;
    text-align: center;
}

/*PRODUCT LIST*/
.product-item {
    padding: 1rem;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.product-cover {
    margin-bottom: 1rem;
    overflow: hidden;
}

.product-cover img {
    width: 100%;
    transition: .5s ease-in-out;
}

.product-item:hover .product-cover img {
    transform: scale(1.05);
}

.product-item h2 {
    text-align: center;
}

/*PRODUCT DETAIL*/
/* Gallery */
.product-gallery img {
    width: 100%;
    height: auto;
    border-radius: 14px;
    object-fit: cover;
}

.gallery-wrapper {
    display: flex;
    overflow-x: auto;
    gap: 16px;
    scroll-snap-type: x mandatory;
}

.gallery-item {
    min-width: 100%;
    scroll-snap-align: center;
}

/* Content */
.product-title {
    font-size: 26px;
    margin-bottom: 24px;
    font-weight: 800;
}

.product-body {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 40px;
}

/* Button */
.product-btn {
    display: inline-block;
    padding: 14px 36px;
    border-radius: 999px;
    background: #2f5d3a;
    color: #fff;
    font-size: 14px;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.product-btn:hover {
    background: #24492d;
    transform: translateY(-2px);
}

.product-gallery img {
    width: 100%;
    border-radius: 14px;
    object-fit: cover;
}

.mainSwiper {
    margin-bottom: 20px;
}

/* Thumbs container */
.thumbSwiper {
    margin-top: 20px;
}

/* Each thumb slide */
.thumbSwiper .swiper-slide {
    padding: 6px;
    border-radius: 12px;
    cursor: pointer;
    opacity: 0.55;
    transition: all 0.25s ease;
}

/* Image itself */
.thumbSwiper img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    transform: scale(0.92);
    transition: transform 0.25s ease;
}

/* Hover */
.thumbSwiper .swiper-slide:hover {
    opacity: 0.8;
}

/* Active thumb */
.thumbSwiper .swiper-slide-thumb-active {
    opacity: 1;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.14);
}

.thumbSwiper .swiper-slide-thumb-active img {
    transform: scale(1);
}


.admin-link {
    color: #fff;
    background-color: var(--olive);
    border-radius: 999px;
    padding: 14px 36px;
}

.product-body p, .product-body h3 {
    margin-bottom: .75rem;
}

.product-separator {
    width: 64px;
    height: 2px;
    margin: 24px 0 32px;
    background: rgba(0, 0, 0, 0.12);
}


/*ABOUT US*/
.scroll-dot {
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    margin-top: 6px;
    animation: scrollDown 1.8s infinite;
}

@keyframes scrollDown {
    0% {
        opacity: 0;
        transform: translateY(0);
    }
    30% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateY(18px);
    }
}

.circle-images p {
    padding-inline: 2rem;
    margin-bottom: 1rem;
    color: #000;
}

.circle-images h1 {
    text-align: center;
    margin-bottom: 1rem;
}

.circle-images {
    background-position: center;
    background-size: cover;
}

/*CONTACT*/
#map {
    height: 500px;
    border-radius: 1.25rem;
}

.custom-marker {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    border: 3px solid white;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .35);
}

/*LEGAL*/

.kvkk {
    padding: 100px 0;
}

.kvkk p, .kvkk ul, .kvkk ol,
.kvkk h1, .kvkk h2, .kvkk h3
{
    margin-bottom: 1rem;
}

.kvkk ul, .kvkk ol {
    padding-left: 2.25rem;
}

.kvkk ol li {
    list-style: decimal;
}

.kvkk ul li {
    list-style: disc;
}

