:root {
    /* Genel renk paleti */
    --color-white: #fff;
    --color-black: #000;
    --color-gray: #666777;
    --color-hover: #c5955b;
    --color-highlight: #b19777;
    --color-bg: #c5955b;
    --color-bg-hover: rgb(103, 73, 33);

    /* Navbar ayarları */
    --navbar-height: 80px;
    --navbar-margin: 20px;
    --navbar-radius: 16px;


    /* Hero Section */
    --hero-height: 70vh;
    --hero-overlay-opacity: 45%;

    /* Search */
    --search-height: 50px;
    --search-radius: 30px;
    --search-width-lg: 37rem;
    --search-width-sm: 21rem;

    /* Text Container */
    --text-font-size-lg: 1.3rem;
    --text-font-size-x-lg: 2.5rem;
    --text-font-size-xs-lg: 1.1rem;
    --text-font-size-sm: 17px;
    --text-gap: 1rem;

    /* Shadow ve Geçişler */
    --box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    --text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
    --transition-duration: 0.3s;
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');


@font-face {
    font-family: "Lufga-Light";
    src: url(../fonts/LufgaLight.woff);
}

@font-face {
    font-family: "Lufga-Regular";
    src: url(../fonts/LufgaRegular.woff);
}

@font-face {
    font-family: "Lufga-Bold";
    src: url(../fonts/LufgaBold.woff);
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Lufga-Regular"
}

html {
    scroll-behavior: smooth !important;
}

.navbar {
    background-color: var(--color-white);
    height: var(--navbar-height);
    margin: var(--navbar-margin);
    border-radius: var(--navbar-radius);
    padding: 0.5rem;
    transition: all 0.5s ease-in-out;
}


.navbar.scrolled {
    margin: 0 !important;
    border-radius: 1px !important;
    transition: width 0.8s ease-in-out;
}

.navbar-brand img {
    width: 145px;
}

/* Navbar Toggler */
.navbar-toggler {
    border: none;
    font-size: 1.25rem;
}

.navbar-toggler:focus,
.btn-close:focus {
    box-shadow: none;
    outline: none;
}

.nav-link {
    color: var(--color-gray);
    font-weight: 500;
    position: relative;
    transition: color var(--transition-duration) ease-in-out;
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-black);
}

/* Hero Section */
.hero-section {
    background: url(../img/bgbg.png) no-repeat center;
    background-size: cover;
    width: 100%;
    height: var(--hero-height);
}

.hero-section::before {
    /*background-color: rgb(0 0 0 / var(--hero-overlay-opacity));*/
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    height: var(--hero-height);
}

/* Search */
.search-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.search-input {
    height: var(--search-height);
    border-radius: var(--search-radius);
    padding-left: 35px;
    border: none;
    box-shadow: var(--box-shadow);
    width: var(--search-width-lg);
}

.search-icon {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    color: #ffffff;
    background-color: #000;
    padding: 10px;
    border-radius: 50px;
    cursor: pointer;

}

/* Text Container */
.text-container {
    position: absolute;
    top: 44%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--color-white);
    z-index: 2;
    display: flex;
    flex-wrap: nowrap;
    white-space: nowrap;
    justify-content: center;
    align-items: center;
    gap: var(--text-gap);
}

.welcome-text {
    position: absolute;
    top: 33%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--color-white);
    z-index: 2;
    font-weight: 600;
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    white-space: nowrap;
    font-size: var(--text-font-size-x-lg);
    text-shadow: var(--text-shadow);
}

.welcome-bio {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--color-white);
    z-index: 2;
    font-weight: 600;
    display: flex;
    flex-wrap: nowrap;
    white-space: nowrap;
    justify-content: center;
    font-size: var(--text-font-size-xs-lg);
    text-shadow: var(--text-shadow);

}

#heading-text {
    font-family: "Lufga-Bold";
    font-weight: 600;
    font-size: 1.9rem;
}


.about-img{
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    transition: transform var(--transition-duration) ease-in-out;

}


.about-heading h4 {
    font-family: "Lufga-Bold";
    font-weight: 600;
    font-size: 1.5rem;
}

.card-title2 {
    font-family: "Lufga-Bold";
    font-weight: 600;
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.footer-heading h5{
    font-family: "Lufga-Bold";
    font-weight: 600;
    font-size: 1.3rem;
    margin-bottom: 20px;
}


.team-card-body {

    z-index: 999;
    margin-top: -29px;
    position: relative;
}


.team-card-cp {
    border-radius: 25px;
    margin-bottom: 12px;
}



.about23 {
    margin-top: 8%;
}

.card-3d {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    transform-style: preserve-3d;
    will-change: transform;
    cursor: pointer;
    border: none;
}

.frmilk {
    font-family: 'Poppins', sans-serif;
}



.footer-circle-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 140px;
    height: 35px;
    border: 1px solid #000;
    border-radius: 50%;
    font-size: 20px;
    color: #000;
    margin-right: 10px;
}

.footer-circle-icon2 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border: 1px solid #000;
    border-radius: 50%;
    font-size: 20px;
    color: #000;
    margin-right: 10px;
}
.footer-contact {
    flex-wrap: nowrap !important;
    display: flex;
    align-items: center;
}

.footer-links{
    margin-bottom: 10px;
}
.footer-links a{
    color: black;
    display: inline-block;
    transition: all 0.3s ease;
}

.footer-links a:hover{
    color: var(--color-hover) !important;
    transform: scale(1.1) !important;
}


.footer-middle{
    display: flex;
    justify-content: end;
}

.footer-end{
    display: flex;
    justify-content: space-around;
}

.footer-social-icons a {
    font-size: 17px;
    color: black; 
    text-decoration: none;
    transition: all 0.3s ease;

  }
  
  .footer-social-icons a:hover {
    color: var(--color-hover); 
  }

  .footer-social-bar{

    display: flex;
    justify-content: end;

  }
  .photo-thumbnail {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px; 
  }
  
    .photo-thumbnail2 {
    width: 100%;

    object-fit: cover;
    border-radius: 8px; 
  }


@media (min-width: 991px) {
    .nav-link::before {
        content: "";
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        height: 2px;
        background-color: var(--color-hover);
        visibility: hidden;
        transition: var(--transition-duration) ease-in-out;
    }

    .nav-link:hover::before,
    .nav-link.active::before {
        width: 100%;
        visibility: visible;
    }

}

@media (max-width: 991px) {
    .navbar-brand img {
       margin-top: -45px !important;
    }
    .navbar-toggler {
    margin-bottom: 38px;
}
}
