
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;300;400;500;600&display=swap');

:root{
--main-color: rgb(0, 2, 51);
--black-color:#121212;
--border:0.1rem solid rgba(255,255,255,0.4);
}
* {
    font-family: "poppins", sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    border: none;
    text-decoration:none ;
    text-transform: capitalize;
    transition: 0.2s ease;
}


/*! base html cods */

html {
    font-size: 62.5%;
    overflow-x: hidden;
    scroll-padding-top: 9rem;
    scroll-behavior: smooth;
}

html::-webkit-scrollbar{
    width: 0.8rem;
    background-color: white;

}

html::-webkit-scrollbar-track{
    background-color: transparent;
}

html::-webkit-scrollbar-thumb{
    border-radius: 3rem;
    background-color: var(--black-color);

}



body{
    background-color:rgb(0, 2, 51);
    height: 200vh;
}

section{
    padding: 3.5rem 7%;
}

/* Buton stilleri */
.btn {
    margin-top: 1rem; /* Üstten boşluk */
    display: inline-block; /* Blok görünüm */
    padding: 2rem 3.75rem; /* Buton boyutu */
    border-radius: 30rem; /* Yuvarlatılmış köşeler */
    font-size: 1.7rem; /* Yazı boyutu */
    color: #fff; /* Yazı rengi */
    background-color: var(--black-color); /* Arka plan rengi */
    text-decoration: none; /* Alt çizgiyi kaldır */
}

.btn:hover {
    opacity: 0.6; /* Hover etkisi */
}
.heading{
    color:#fff;
    text-transform: uppercase;
    font-size: 4rem;
    margin-bottom: 3.5rem;
    border-bottom: 0.1rem solid #fff;

}
.heading .span{
    text-transform: uppercase;
    color: var(--black-color);
}
.search-input{
    font-size: 1.6rem;
    color: var(--black-color);
    padding: 1rem;
    text-transform: none;
    border-radius: 3rem;
}



/*! header start */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;300;400;500;600&display=swap');

:root {
    --main-color: rgb(0, 2, 51);
    --black-color: #121212;
    --border: 0.1rem solid rgba(255, 255, 255, 0.4);
    --white-color: #fff;
}

* {
    font-family: "Poppins", sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    border: none;
    text-decoration: none;
    text-transform: capitalize;
    transition: 0.2s ease;
}

body {
    background-color: rgb(0, 2, 51);
}

section {
    padding: 3.5rem 7%;
}

.logo img {
    height: 10rem;
}

.header {
    background-color: var(--main-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 7%;
    margin: 2rem 7%;
    border-radius: 30rem;
    box-shadow: 0px 0px 17px -2px rgba(0, 0, 0, 0.75);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header .navbar a {
    background-color: var(--white-color);
    padding: 0.7rem 2rem;
    color: var(--black-color);
    font-size: 2rem;
    border: var(--border);
}

.header a:hover {
    background-color: var(--black-color);
    opacity: 0.7;
}

.header .buttons button {
    cursor: pointer;
    font-size: 2.5rem;
    margin-left: 2rem;
    background-color: transparent;
    border: none;
    color: var(--white-color);
}

.menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 3rem;
    color: var(--white-color);
    cursor: pointer;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .header {
        flex-direction: column;
        padding: 1rem;
    }

    .logo img {
        height: 8rem;
    }

    .navbar {
        flex-direction: column;
        align-items: center;
        display: none;
        width: 100%;
        gap: 1rem;
        background-color: var(--main-color);
        padding: 1rem;
        border-radius: 1rem;
    }

    .navbar.show {
        display: flex;
    }

    .navbar a {
        font-size: 1.8rem;
        padding: 1rem;
        text-align: center;
        width: 100%;
    }

    .menu-btn {
        display: block;
    }

    .buttons {
        margin-top: 1rem;
    }
}

@media (max-width: 480px) {
    .logo img {
        height: 6rem;
    }

    .navbar a {
        font-size: 1.6rem;
    }
}
/*! header end */

/*! home start */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;300;400;500;600&display=swap');

:root {
    --main-color: rgb(0, 2, 51);
    --black-color: #121212;
    --border: 0.1rem solid rgba(255, 255, 255, 0.4);
    --white-color: #fff;
}

* {
    font-family: "Poppins", sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    border: none;
    text-decoration: none;
    text-transform: capitalize;
    transition: 0.2s ease;
}

body {
    background-color: rgb(0, 2, 51);
}

section {
    padding: 3.5rem 7%;
}

.logo img {
    height: 10rem;
}

.header {
    background-color: var(--main-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 7%;
    margin: 2rem 7%;
    border-radius: 30rem;
    box-shadow: 0px 0px 17px -2px rgba(0, 0, 0, 0.75);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header .navbar a {
    background-color: var(--white-color);
    padding: 0.7rem 2rem;
    color: var(--black-color);
    font-size: 2rem;
    border: var(--border);
}

.header a:hover {
    background-color: var(--black-color);
    opacity: 0.7;
}

.header .buttons button {
    cursor: pointer;
    font-size: 2.5rem;
    margin-left: 2rem;
    background-color: transparent;
    border: none;
    color: var(--white-color);
}

.menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 3rem;
    color: var(--white-color);
    cursor: pointer;
}

/* Home Section */
.home {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: url('resimler/Jaeep\ Safari\ Tour.jpg') no-repeat center center;
    background-size: cover;
    margin-top: -14.5rem;
}

.home .content {
    max-width: 60rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.home .btn-container {
    display: flex;
    gap: 20px;
    order: 2;
}

.home .content h3 {
    font-size: 6rem;
    color: var(--white-color);
    margin: 0;
    order: 1;
}

.btn {
    padding: 15px 30px;
    background-color: var(--white-color);
    color: var(--black-color);
    border-radius: 5px;
    font-size: 1.6rem;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #ddd;
}

/* Image Row */
.image-row {
    display: flex;
    gap: 10px;
    padding: 10px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
    margin-top: auto;
    justify-content: center;
}

.image-container {
    width: 200px;
    height: 150px;
    overflow: hidden;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.image-container img:hover {
    transform: scale(1.1);
}

/* Modal styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
}

.modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
}

.close {
    position: absolute;
    top: 30px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .header {
        flex-direction: column;
        padding: 1rem;
    }

    .logo img {
        height: 8rem;
    }

    .navbar {
        flex-direction: column;
        align-items: center;
        display: none;
        width: 100%;
        gap: 1rem;
        background-color: var(--main-color);
        padding: 1rem;
        border-radius: 1rem;
    }

    .navbar.show {
        display: flex;
    }

    .navbar a {
        font-size: 1.8rem;
        padding: 1rem;
        text-align: center;
        width: 100%;
    }

    .menu-btn {
        display: block;
    }

    .buttons {
        margin-top: 1rem;
    }

    .home {
        margin-top: -10rem;
        padding: 10px;
    }

    .home .content h3 {
        font-size: 2.5rem;
    }

    .content .btn-container {
        flex-direction: column;
        align-items: center;
    }

    .content .btn-container .btn {
        padding: 10px 20px;
        font-size: 1.4rem;
    }

    .image-row {
        flex-direction: column;
        gap: 15px;
    }

    .image-container {
        width: 100%;
        max-width: 200px;
        height: auto;
    }
}

@media (max-width: 480px) {
    .header .logo img {
        height: 6rem;
    }

    .navbar a {
        font-size: 1.6rem;
    }

    .home {
        margin-top: -5rem;
        padding: 5px;
    }

    .home .content h3 {
        font-size: 2rem;
    }

    .content .btn-container .btn {
        padding: 8px 15px;
        font-size: 1.2rem;
    }

    .image-row {
        gap: 10px;
    }

    .image-container {
        width: 100%;
        max-width: 180px;
        height: auto;
    }
}
/*! home end */



.info-section {
    display: flex;
    justify-content: space-between; /* Elemanları sağa sola yay */
    background-color: #FFFF;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 100%; /* Kutuyu tam genişlet */
}

.info-box {
    text-align: center;
    flex: 1; /* Her kutuyu eşit şekilde yay */
    padding: 20px;
}

.icon img {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
}

.info-content h4 {
    font-size: 18px;
    color: #000000;
    margin-bottom: 5px;
    font-weight: 600;
}

.info-content p {
    font-size: 16px;
    color:#000000;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .info-section {
        flex-direction: column;
        align-items: center;
    }

    .info-box {
        margin-bottom: 20px;
    }
}




/*! menu start */
/* Yazıların Stil Ayarları */

/* Ana başlık (h3) için stil */
.content h3 {
    font-size: 20rem; /* Daha büyük bir başlık boyutu */
    font-weight: bold; /* Kalın başlık */
    color: #ffffff; /* Başlık rengi beyaz */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Gölge efekti ile okunabilirliği artırma */
    text-align: center; /* Yazıyı ortalama */
    margin-bottom: 20px;
    letter-spacing: 2px; /* Harfler arasında biraz boşluk */
}

/* Genel metinler için stil */
.intro {
    font-size: 2rem; /* Genel metin boyutu */
    line-height: 1.6; /* Satır yüksekliği, yazı aralıkları */
    color: #ffffff; /* Yazı rengi beyaz */
    font-family: 'Roboto', sans-serif; /* Modern ve okunaklı bir font */
    text-align: justify; /* Metin hizalaması */
}
.tour-intro {
    font-size: 2rem; /* Genel metin boyutu */
    line-height: 1.6; /* Satır yüksekliği, yazı aralıkları */
    color: #ffffff; /* Yazı rengi beyaz */
    font-family: 'Roboto', sans-serif; /* Modern ve okunaklı bir font */
    text-align: justify; /* Metin hizalaması */
}

/* Başlıklar ve vurgulu metinler */
h1, h2, h4, h5, h6 {
    font-weight: 700; /* Başlıklar için daha kalın font */
    color: #ffffff; /* Başlıklar beyaz */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5); /* Başlıklara hafif gölge ekleme */
    margin-bottom: 15px;
}

/* Linkler ve düğmeler */
a, button {
    font-size: 1rem;
    color: #ffffff;
    background-color:rgb(0, 2, 51);
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

a:hover, button:hover {
    background-color: #ff4a3d;
}

/* Responsive yazı boyutları (mobil için) */
@media (max-width: 768px) {
    .content h3 {
        font-size: 2.5rem;
    }
    body {
        font-size: 1rem;
    }
}

/*! menu end */


/*! review start */
.review .box-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap: 1.5rem;
}
.review .box-container .box{
    border: var(--border);
    text-align: center;
    padding: 2rem 1rem;
    background-color: #FFFF;
    border-radius: 3rem;
}
.review .box-container .box p{
    font-size: 1.5rem;
    line-height:1.8 ;
    padding: 2rem 0;
}   
.review .box-container .box .Users{
    height: 7rem;
    width: 7rem;
    border-radius: 50½;
    object-fit: cover;
}
.review .box-container .box h3{
    padding: 1rem 0;
    font-size: 2rem;
    color:var(--black-color);
}
.review .box-container .box .stars{
    font-size: 1.5rem;
    color: gold;
}

/*! review end */



/*! contact start */
.contact .row{
    display: flex;
    background-color: #ccc;
    flex-wrap: wrap;
    gap: 1rem;
}
.contact .row .map{
    flex: 1 1 45rem;
    width: 100½;
    object-fit: cover;
}
.contact .row form{
    padding:5rem 2rem;
    flex: 1 1 45rem;
    text-align: center;
}
.contact .row form h3{
text-transform: uppercase;
font-size: 3.5rem;
color: #121212;
}
.contact .row form .inputBox{
    display: flex;
    align-items:center ;
    margin: 2rem 0;
    border: var(--border);
}
.contact .row form .inputBox i{
    color: #121212;
    font-size: 2rem;
    padding-left: 2rem;
}
.contact .row .inputBox .btn{
    margin-top: 1rem;
    display: inline-block;
    padding: 2rem 3.75rem;
    border-radius: 30rem;
    font-size: 1.7rem;
    color:#fff;
    background-color: var(--black-color);
    font-weight: bold;

}
.contact .row form .inputBox input{
width: 100½;
padding: 2rem;
font-size: 1.7rem;
color: #000000;
text-transform: none;
background: none;
}

/*! contact end */





/*! footer start */
.footer{
    background-color: var(--main-color);
    text-align: center;

}

.footer.search{
    display: flex;
    justify-content: center;

}

.footer .search .search-input{
    width: 30rem;
}
.footer .search .btn{
    background-color: var(--main-color);
    padding: 1rem 2rem;
    margin-left: 1rem;
}

.footer .share {
    padding: 2rem 0;
 
}
.footer .share a{
    width: 5rem;
    height: 5rem;
    line-height: 5rem;
    color:#fff;
    font-size: 2rem;
    border: var(--border);
    border-radius: 50½;
    margin: 0.3rem;

 
}
.footer .share a:hover{
    background-color:#fcce00;

}

.footer .links{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;

}
.footer .links a{
    background-color: #FFFF;
    padding: 0.7rem 2rem;
    color: #000000;
    font-size: 2rem;
    border: var(--border);
}
.footer .links a:hover{
   background-color: #fcce00;
   opacity: 0.7;
    
}
.footer .links a.active{
    background-color: var(--black-color);
}
.footer .credit{
    font-size: 2rem;
    color:#fff;
    font-weight: 300;
    padding-top: 1.5rem;
}
.footer .credit span{
  color: var(--main-color);
}
.footer .credit span:hover{
    color: #fff;
}
/*! footer  end*/

/*! responsive start */
@media(max-width:991px){
    html{
        font-size: 55½;
    }

    .header{
        padding: 1.5rem 2rem;

    }
    .header .logo img{
        height: 7rem;
    }
}
    


/*! responsive end */
