/********** Template CSS **********/
:root {
    --primary: #029B04;
    --secondary: #FB9F38;
    --light: #F5F8F2;
    --dark: #252C30;
}

/* Global font-weight settings for all text elements */
body, p, div, span, h1, h2, h3, h4, h5, h6, a, li, td, th, label, input, textarea, select {
    font-weight: 400 !important;
    font-family: 'Inter', sans-serif !important;
}

/* Specific font-weight and sizes for headings */
h1 {
    font-weight: 600 !important;
    text-transform: uppercase !important;
    margin-top: 35px !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 28px !important;
}

h2 { font-weight: 600 !important; text-transform: uppercase !important; margin-top: 35px !important; font-family: 'Inter', sans-serif !important; font-size: 24px !important; }
h3 { font-weight: 600 !important; text-transform: uppercase !important; margin-top: 35px !important; font-family: 'Inter', sans-serif !important; font-size: 20px !important; }
h4 { font-weight: 600 !important; text-transform: uppercase !important; margin-top: 35px !important; font-family: 'Inter', sans-serif !important; font-size: 18px !important; }
h5 { font-weight: 600 !important; text-transform: uppercase !important; margin-top: 35px !important; font-family: 'Inter', sans-serif !important; font-size: 16px !important; }
h6 { font-weight: 600 !important; text-transform: uppercase !important; margin-top: 35px !important; font-family: 'Inter', sans-serif !important; font-size: 14px !important; }

/* Footer headings should not have margin-top */
.footer h1, .footer h2, .footer h3, .footer h4, .footer h5, .footer h6 {
    margin-top: 0 !important;
    font-family: 'Inter', sans-serif !important;
}

}


/* Footer icon alignment */
.footer p {
    display: flex;
    align-items: center;
}

.footer p i {
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}

/* Override Bootstrap display classes for smaller headings */
.display-1 { font-size: 2.5rem !important; }
.display-2 { font-size: 2rem !important; }
.display-3 { font-size: 1.75rem !important; }
.display-4 { font-size: 1.5rem !important; }
.display-5 { font-size: 1.25rem !important; }
.display-6 { font-size: 1.1rem !important; }

/* Navbar links font-weight */
.navbar .navbar-nav .nav-link {
    font-weight: 450 !important;
}

/* Button font-weight */
.btn {
    font-weight: 450 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

.fw-medium {
    font-weight: 600 !important;
    text-transform: uppercase !important;
}

.fw-bold {
    font-weight: 600 !important;
    text-transform: uppercase !important;
}

.fw-black {
    font-weight: 600 !important;
    text-transform: uppercase !important;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    transition: .5s;
    font-weight: 450 !important;
}

.btn-primary,
.btn-outline-primary:hover {
    color: var(--light);
}

.btn-secondary,
.btn-outline-secondary:hover {
    color: var(--dark);
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 400 !important;
}


/*** Navbar ***/
.sticky-top {    
    top: -150;
    transition: 0.5s;
}

.navbar .navbar-brand {
    position: absolute;
    padding: 0;
    width: 170px;
    height: 135px;
    top: 0;
    left: 0;
}

.navbar .navbar-nav .nav-link {
    margin-right: 35px;
    padding: 25px 0;
    color: var(--dark);
    font-weight: 450 !important;
    text-transform: uppercase;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Calibri";
    font-weight: 450 !important;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-brand {
        width: 126px;
        height: 100px;
    }

    .navbar .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        margin-top: 75px;
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    background: rgba(40, 69, 2, 0.7);
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 3.5rem;
    background-color: var(--dark);
    border: 15px solid var(--dark);
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.page-header {
    background: linear-gradient(rgba(136, 180, 78), rgba(136, 180, 78)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-size: 18px;
    color: var(--light);
}


/*** Section Title ***/
.section-title {
    position: relative;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
}

.section-title::before {
    position: absolute;
    content: "";
    width: 50%;
    height: 2px;
    bottom: 0;
    left: 0;
    background: var(--primary);
}

.section-title::after {
    position: absolute;
    content: "";
    width: 28px;
    height: 28px;
    bottom: -13px;
    left: calc(25% - 13px);
    background: var(--dark);
    border: 10px solid #FFFFFF;
    border-radius: 28px;
}

.section-title.text-center::before {
    left: 25%;
}

.section-title.text-center::after {
    left: calc(50% - 13px);
}


/*** Products ***/
.product {
    background: linear-gradient(rgba(136, 180, 78, .1), rgba(136, 180, 78, .1)), url(../img/product-bg.png) left bottom no-repeat;
    background-size: auto;
}

.product-carousel .owl-nav {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.product-carousel .owl-nav .owl-prev,
.product-carousel .owl-nav .owl-next {
    margin: 0 10px;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 55px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .15);
    font-size: 25px;
    transition: .5s;
}

.product-carousel .owl-nav .owl-prev:hover,
.product-carousel .owl-nav .owl-next:hover {
    background: #FFFFFF;
    color: var(--primary);
}


/*** About ***/
.video {
    background: linear-gradient(rgba(108, 164, 35, 0.85), rgba(74, 118, 17, 0.85)), url(../img/video-bg.jpg) center center no-repeat;
    background-size: cover;
}

.btn-play {
    position: relative;
    display: block;
    box-sizing: content-box;
    width: 65px;
    height: 75px;
    border-radius: 100%;
    border: none;
    outline: none !important;
    padding: 28px 30px 30px 38px;
    background: #FFFFFF;
}

.btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 120px;
    height: 120px;
    background: #FFFFFF;
    border-radius: 100%;
    animation: pulse-border 1500ms ease-out infinite;
}

.btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 120px;
    height: 120px;
    background: #FFFFFF;
    border-radius: 100%;
    transition: all 200ms;
}

.btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    left: 13px;
    border-left: 40px solid var(--primary);
    border-top: 28px solid transparent;
    border-bottom: 28px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(2);
        opacity: 0;
    }
}

.modal-video .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

.modal-video .modal-body {
    position: relative;
    padding: 0px;
}

.modal-video .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: 400 !important;
    color: #FFFFFF;
    background: #000000;
    opacity: 1;
}


/*** Store ***/
.store-item .store-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(138, 180, 78, .3);
    opacity: 0;
    transition: .5s;
}

.store-item:hover .store-overlay {
    opacity: 1;
}


/*** Contact ***/
.contact .btn-square {
    width: 100px;
    height: 100px;
    border: 20px solid var(--light);
    background: var(--primary);
    border-radius: 50px;
}


/*** Alt Sayfa Title ***/
.subpage-title{
    color:rgb(255, 255, 255);
    font-size:xx-large;
}


/*** Testimonial ***/
.testimonial {
    background: linear-gradient(rgba(136, 180, 78, .85), rgba(136, 180, 78, .85)), url(../img/testimonial-bg.jpg) center center no-repeat;
    background-size: cover;
}

.testimonial-item {
    margin: 0 auto;
    max-width: 600px;
    text-align: center;
    background: #FFFFFF;
    border: 30px solid var(--primary);
}

.testimonial-item img {
    width: 60px !important;
    height: 60px !important;
    border-radius: 60px;
}

.testimonial-carousel .owl-dots {
    margin-top: 35px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: var(--primary);
    border-radius: 15px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    width: 30px;
    background: var(--dark);
}


/*** Footer ***/
.footer {
    color: #B0B9AE;
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #B0B9AE;
    font-weight: 400 !important;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Calibri";
    font-weight: 450 !important;
    color: var(--dark);
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--light);
    letter-spacing: 1px;
    box-shadow: none;
}

.copyright {
    color: #B0B9AE;
}

.copyright {
    background: #252525;
}

.copyright a:hover {
    color: #FFFFFF !important;
}

/*** diğerleri ***/

.top-padding{
    padding-top: 16px;
}

/* WhatsApp Button Styles */
.whatsapp-btn {
    position: fixed;
    right: 30px;
    bottom: 100px; /* Back to top butonunun üzerinde */
    z-index: 99;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    user-select: none;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.whatsapp-btn:active {
    transform: scale(0.95);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    transition: all 0.1s ease;
}

.whatsapp-btn i {
    color: white;
    pointer-events: none;
}

/* Contact Link Styles */
.contact-link {
    cursor: pointer;
    user-select: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.contact-link:hover {
    transform: scale(1.05);
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

.contact-link:active {
    transform: scale(0.95);
    transition: all 0.1s ease;
}

/* Hero Section Styling */
.hero-header {
    position: relative;
    background: linear-gradient(135deg, 
        rgba(136, 180, 78, 0.6) 0%, 
        rgba(76, 175, 80, 0.4) 25%, 
        rgba(139, 195, 74, 0.5) 50%, 
        rgba(102, 187, 106, 0.3) 75%, 
        rgba(136, 180, 78, 0.5) 100%);
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Decorative Background Elements */
.hero-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        /* Modern green elements */
        radial-gradient(circle at 20% 20%, rgba(76, 175, 80, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 80% 30%, rgba(139, 195, 74, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 40% 70%, rgba(102, 187, 106, 0.04) 0%, transparent 35%),
        /* Leaf elements */
        radial-gradient(ellipse at 60% 15%, rgba(129, 199, 132, 0.05) 0%, transparent 45%),
        radial-gradient(ellipse at 25% 60%, rgba(165, 214, 167, 0.04) 0%, transparent 40%),
        radial-gradient(ellipse at 85% 80%, rgba(200, 230, 201, 0.03) 0%, transparent 35%);
    background-size: 200px 200px, 150px 150px, 180px 180px, 160px 120px, 140px 100px, 120px 90px;
    background-position: 0 0, 100px 50px, 200px 150px, 50px 100px, 300px 200px, 150px 300px;
    animation: floatBackground 20s ease-in-out infinite;
    z-index: 1;
}

.hero-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        /* Additional modern green shapes */
        radial-gradient(circle at 10% 80%, rgba(76, 175, 80, 0.03) 0%, transparent 30%),
        radial-gradient(circle at 90% 10%, rgba(139, 195, 74, 0.025) 0%, transparent 25%),
        /* Additional leaf shapes */
        radial-gradient(ellipse at 70% 50%, rgba(129, 199, 132, 0.025) 0%, transparent 30%),
        radial-gradient(ellipse at 30% 90%, rgba(165, 214, 167, 0.02) 0%, transparent 25%);
    background-size: 100px 100px, 80px 80px, 90px 70px, 70px 60px;
    background-position: 50px 250px, 250px 100px, 180px 180px, 320px 280px;
    animation: floatBackground 25s ease-in-out infinite reverse;
    z-index: 1;
}

/* Floating animation for background elements */
@keyframes floatBackground {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-10px) rotate(1deg);
    }
    50% {
        transform: translateY(-5px) rotate(-1deg);
    }
    75% {
        transform: translateY(-15px) rotate(0.5deg);
    }
}

.hero-header .container {
    position: relative;
    z-index: 2;
}

.hero-header h1 {
    font-size: 3.5rem;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 3;
}

.hero-header h3 {
    font-size: 1.5rem;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    color: #000000 !important;
    margin-top: 0 !important;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 3;
}

.hero-header p {
    font-size: 1.1rem;
    font-weight: 400 !important;
    line-height: 1.6;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 3;
}

/* Button Styling */
.btn-dark {
    background-color: #252C30;
    border-color: #252C30;
    color: white;
    transition: all 0.3s ease;
    position: relative;
    z-index: 3;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.btn-dark:hover {
    background-color: #1a1f23;
    border-color: #1a1f23;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.btn-outline-dark {
    border-color: #252C30;
    color: #252C30;
    background-color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
    position: relative;
    z-index: 3;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.btn-outline-dark:hover {
    background-color: #252C30;
    border-color: #252C30;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

/* Product Image Styling */
.hero-header img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
    position: relative;
    z-index: 3;
    transition: transform 0.3s ease;
}

.hero-header img:hover {
    transform: scale(1.02);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-header h1 {
        font-size: 2.5rem;
    }
    
    .hero-header h3 {
        font-size: 1.2rem;
    }
    
    .hero-header p {
        font-size: 1rem;
    }
}


/* Social Media Button*/

.social-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column; /* alt alta */
    gap: 10px; /* aralarında boşluk */
    z-index: 9999;
}

.btn-lg-square {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}
/* posnique footer */
a.fw-medium {
    text-transform: none !important;
}
