:root{
    --white: #f9f9f9;
    --black: #36383F;
    --gray: #85888C;
} /* variables*/

/* Reset */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    background-color: var(--white);
    font-family: 'Cabin', sans-serif;
}
a{
    text-decoration: none;
    font-family: 'Cabin', sans-serif;

}
main{
    background-size: cover !important;
    padding-top: 60px;
}
ul{
    list-style: none;
}
header ul li a{
    font-size: 18px;
    font-family: 'Cabin', sans-serif;
}
p{
    font-size:18px;
    font-family: 'Cabin', sans-serif;

}
html{
    scroll-behavior: smooth;
    overflow-x: hidden;
    background: url('./img/bg-shape.png');
    font-family: 'Cabin', sans-serif;

}
h1,h2,h3,h4,h5,h6{
    font-family: 'Cabin', sans-serif;
    padding: 10px;
}
.row{
    position: relative;
}
h2{
    padding: 20px 0px;
}
h2::before{
    content: '';
    top: 25px;
    left:10px;
    position: absolute;
    height: 32px;
    width: 14px;
    background-color: rgb(213, 10, 10);
    
}
/* h3::before{
    content: '';
    top: 10px;
    left: -10px;
    position: absolute;
    height: 32px;
    width: 5px;
    background-color: rgb(213, 10, 10);
    
} */

.container.header-box{
    display: flex;
    justify-content: center;
    align-items: center;
}
.main-box{
    display: flex;
    flex-direction: column;
    justify-content: left;
    align-items: center;
    
}

.header-text{
    text-shadow: 1px 1px #000;
    color: #fff;
    display: flex;
}

.logo{
    font-size: 55px;
    padding-left: 100px;
    text-decoration: none;
    font-weight: 600;
    color: #fff;
}
.header-text .header1{
    font-size: 45px;
    margin-bottom: 25px;
    font-weight: bold
}

.header-text a:hover{
    background-color: rgb(237, 46, 46);
    border-radius: 10px;
}
main .container{
    background-color: rgba(255, 255, 255, 0.519);
}

/* NAVBAR MENU */

.header{
    background-color: var(--black);
    box-shadow: 1px 1px 5px 0px var(--gray);
    top: 0;
    background: url(../img/turkey-header.jpg) 10% 70% ;
    height: 65vh;
    background-size: cover;
    position: relative;
}
/* Logo */
.logo{
    display: inline-block;
    color: var(--white);
    margin-left: 10px;
}
.nav{
    overflow: hidden;
    max-height: 0;
    position: fixed;
    transition: max-height .5s ease-out;
    top: 8%;
    background-color: #333;
    width: 100%;
    z-index: 10;
    display: flex;
    justify-content: center;
}
.menu a{
    display: block;
    padding: 10px;
    color: var(--white);
}
.menu a:hover{
    background-color: var(--gray);
}

.hamb{
    cursor: pointer;
    float: right;
    padding: 40px 20px;
}/* Style label tag */

.hamb-line {
    background: var(--white);
    display: block;
    height: 2px;
    position: relative;
    width: 24px;

} /* Style span tag */

.hamb-line::before,
.hamb-line::after{
    background: var(--white);
    content: '';
    display: block;
    height: 100%;
    position: absolute;
    transition: all .2s ease-out;
    width: 100%;
}
.hamb-line::before{
    top: 5px;
}
.hamb-line::after{
    top: -5px;
}

.side-menu {
    display: none;
} /* Hide checkbox */   

.side-menu:checked ~ nav{
    max-height: 100%;
}
.side-menu:checked ~ .hamb .hamb-line {
    background: transparent;
}
.side-menu:checked ~ .hamb .hamb-line::before {
    transform: rotate(-45deg);
    top:0;
}
.side-menu:checked ~ .hamb .hamb-line::after {
    transform: rotate(45deg);
    top:0;
}


section a button:hover{
    background-color: #f71f1f !important;
    cursor: pointer;
}

.foot-row{
    display: flex; 
    justify-content: center; 
    align-items: center;
    background-color: #333;
    color: #fff; 
    padding: 20px 0px;
    font-family: Arial, Helvetica, sans-serif !important;
}

section div{
    padding: 0px 30px;
}
section ul li,
section ol li{
    list-style: disc;
    font-size: 18px;
    font-family: 'Cabin', sans-serif;
}

.foot-row{
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}
.menu-footer ul li a{
    text-decoration: none;
}
.menu-footer ul li a:hover{
    color: rgb(175, 167, 167) !important;

}

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


.lang-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: right;
    position: relative;
}
.lang-menu .selected-lang {
    display: flex;   
    justify-content: space-between;
    line-height: 2;
    cursor: pointer;
    color: #fff;
}
.lang-menu .selected-lang:before {
    content: '';
    display: inline-block;
    width: 32px;
    height: 32px;
    background-size: contain;
    background-repeat: no-repeat;
}

.lang-menu ul {
    margin: 0;
    padding: 0;
    display: none;
    background-color: #333;
    border: 1px solid #f8f8f8;
    position: absolute;
    top: 0px;
    right: 0px;
    width: 125px;
    border-radius: 5px;
    box-shadow: 0px 1px 10px rgba(0,0,0,0.2);
}


.lang-menu ul li {
    list-style: none;
    text-align: left;
    display: flex;
    justify-content: space-between;
    
}

.lang-menu ul li a {
    text-decoration: none;
    width: 125px;
    padding: 5px 10px;
    display: block;
    color: #fff;
    font-size: 14px;
}

.lang-menu ul li a:hover {
    color: #6c757d;
}

.lang-menu ul li a:before {
    content: '';
    display: inline-block;
    width: 25px;
    height: 25px;
    vertical-align: middle;
    margin-right: 10px;
}

.lang-menu:hover ul {
    display: block;
}

.language img{
    width: 20px;
    height: 20px;
}
.language ul li a{
    color: #fff;
}
.language li a:hover{
    color: #6c757d;
}

/* MEDIA QUEIRES */
@media (min-width: 850px) {
    .nav{
        max-height: none;
        top: 0;
        position: relative;
        float: right;
        width: fit-content;
        display: flex;
        align-items: center;
        overflow: visible;
    }
    .menu{
        display: flex;
        align-items: center;
        margin: 0;
        padding: 0;
    }
    .menu li{
        display: flex;
        align-items: center;
    }
    .menu a{
        padding: 0 10px;
        line-height: 1;
    }
    .menu a:hover{
        background-color: transparent;
        color: var(--gray);
    }

    .hamb{
        display: none;
    }

    .logo{
        font-size: 30px;
        padding: 0px;
        line-height: 1;
        display: flex;
        align-items: center;
    }
    .header-text{
        padding-top: 100px;
    }
}

@media (max-width: 850px) {
    
    .logo{
        font-size: 30px;
        padding-left: 0px;
    }
    .header-text p{
        font-size: 18px;
    }

    .header-text{
        padding-top: 50px;
    }
    .header{
        height: 70vh;
    }
}
@media (max-width: 700px) {
    
    .logo{
        font-size: 30px;
        padding-left: 0px;
    }
    .header-text p{
        font-size: 18px;
    }

    .header-text{
        padding-top: 150px;
    }
    .header{
        height: 80vh;
    }
    .foot-row{
        display: flex;
        flex-direction: column;
    }
}
@media (max-width: 600px) {
    .logo{
        font-size: 30px;
        padding: 0px;
    }
    .container.header-text{
        padding: 80px;

    }
    .header-text{
        padding: 50px 0px 0px 0px;
    }
    .foot-row{
        display: flex;
        flex-direction: column;
    }
    .header{
        height: 80vh;
    }
    section div {
        padding: 0px;
      }
    :before, :after{
        display: none;
    }
}
@media (max-width: 400px) {

    .header-text .header1{
        font-size: 28px;
    }
    .header-text .header1 p{
        font-size: 15px;
    }
    .container.header-text{
        padding: 50px;
    }

}

@media (max-width: 360px) {
    .header-text .header1{
        font-size: 30px;
    }
    .header-text .header1 p{
        font-size: 15px;
    }
    .container.header-text{
        padding: 50px;
    }
    .header{
        height: 90vh;
    }
}

@media (max-width: 850px) {
    .container-fluid.navbar-bar {
        padding: 10px 15px !important;
    }
    .logo img {
        height: 36px !important;
    }
}


@-webkit-keyframes rotating {
    from{
        -webkit-transform: rotateY(0deg);
    }
    to{
        -webkit-transform: rotateY(360deg);
    }
}
@-webkit-keyframes rotating-x {
    from{
        -webkit-transform: rotate(0deg);
    }
    to{
        -webkit-transform: rotate(360deg);
    }
}

@-webkit-keyframes apear{
    0%{
        transform: rotate3d(30dag);
    }
    100%{
        padding: 0px;
    }
}


/* .rotating {
    -webkit-animation: rotating 2s linear infinite;
    animation-delay: 1s;
} */
.contact-img{
    -webkit-animation: rotating-x 15s linear infinite;

}

.lineUp {
    animation: 2s anim-lineUp ease-out forwards;
  }
  @keyframes anim-lineUp {
    0% {
      opacity: 0;
      transform: translateY(80%);
    }
    20% {
      opacity: 0;
    }
    50% {
      opacity: 1;
      transform: translateY(0%);
    }
    100% {
      opacity: 1;
      transform: translateY(0%);
    }
  }
.lineUp1 {
    animation: 4.5s anim-lineUp ease-out forwards;
  }
  @keyframes anim-lineUp {
    0% {
      opacity: 0;
      transform: translateY(80%);
    }
    20% {
      opacity: 0;
    }
    50% {
      opacity: 1;
      transform: translateY(0%);
    }
    100% {
      opacity: 1;
      transform: translateY(0%);
    }
  }
.lineUp2 {
    animation: 4s anim-lineUp ease-out forwards;
  }
  @keyframes anim-lineUp {
    0% {
      opacity: 0;
      transform: translateY(80%);

    }
    20% {
      opacity: 0;
    }
    50% {
      opacity: 1;
      transform: translateY(0%);
    }
    100% {
      opacity: 1;
      transform: translateY(0%);
    }
  }

@-webkit-keyframes shake {
    0%{
        -webkit-transform: rotateX(0deg);
    }
    1%{
        -webkit-transform: rotate(4deg);
    }
    2%{
        -webkit-transform: rotate(0deg);
    }
    3%{
        -webkit-transform: rotate(-4deg);
    }
    4%{
        -webkit-transform: rotate(0deg);
    }
    5%{
        -webkit-transform: rotate(4deg);
    }
    6%{
        -webkit-transform: rotate(0deg);
    }
    8%{
        -webkit-transform: rotate(-4deg);
    }
    10%{
        -webkit-transform: rotate(0deg);
    }
    20%{
        -webkit-transform: rotate(0deg);
    }
    30%{
        -webkit-transform: rotate(0deg);
    }
    40%{
        -webkit-transform: rotate(0deg);
    }
    50%{
        -webkit-transform: rotate(0deg);
    }
    60%{
        -webkit-transform: rotate(0deg);
    }
    70%{
        -webkit-transform: rotate(0deg);
    }
    80%{
        -webkit-transform: rotate(0deg);
    }
    90%{
        -webkit-transform: rotate(0deg);
    }
    100%{
        -webkit-transform: rotateX(0deg);

    }
}

.widget-initializer{
    font-family: 'Cabin', sans-serif;
    font-size: 18px;
    font-weight: 400;
    cursor: pointer;
    color: #fff;
    position: static !important;
    transform: none !important;
    z-index: auto !important;
    top: auto !important;
    left: auto !important;
    bottom: auto !important;
    right: auto !important;
}
.widget-initializer:hover{
    color: #fff !important;
    background-color: #d92121cc !important;
}

button{
    -webkit-animation: shake 10s infinite ease-in forwards;
}

/* FOOTER */
.site-footer {
    background-color: #1e1e1e;
    color: #ccc;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}
.footer-main {
    padding: 50px 0 30px;
    border-bottom: 1px solid #333;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
}
.footer-brand p {
    font-size: 14px;
    color: #aaa;
    margin-top: 14px;
    line-height: 1.6;
}
.footer-nav h4,
.footer-security h4 {
    color: #fff;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 14px;
    padding: 0;
}
.footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-nav ul li {
    margin-bottom: 8px;
}
.footer-nav ul li a {
    color: #aaa;
    text-decoration: none;
    font-size: 14px;
    transition: color .2s;
}
.footer-nav ul li a:hover {
    color: #fff;
}
.security-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #2a2a2a;
    border: 1px solid #3a3a3a;
    border-radius: 8px;
    padding: 10px 14px;
    margin-bottom: 10px;
}
.security-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.security-badge strong {
    display: block;
    color: #fff;
    font-size: 13px;
}
.security-badge span {
    font-size: 11px;
    color: #888;
}
.footer-bottom {
    background-color: #111;
    padding: 14px 0;
    text-align: center;
}
.footer-bottom p {
    font-size: 16px;
    color: #aaa;
    margin: 0;
    text-transform: uppercase;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    letter-spacing: 0.5px;
}
@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-main {
        padding: 30px 15px 20px;
    }
}

/* E-E-A-T: Last updated badge */
.last-updated {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #666;
    background: #f5f5f5;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    padding: 4px 12px;
    margin-bottom: 24px;
}
.last-updated svg { flex-shrink: 0; }

/* E-E-A-T: Expert author bio */
.expert-bio {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: #fff8f0;
    border: 1px solid #f0d9b5;
    border-left: 4px solid #f71f1f;
    border-radius: 10px;
    padding: 24px 28px;
    margin: 40px 0 50px;
}
.expert-bio__avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid #f71f1f;
}
.expert-bio__avatar-placeholder {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #f71f1f;
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-family: 'Cabin', sans-serif;
}
.expert-bio__body { flex: 1; }
.expert-bio__name {
    font-weight: 700;
    font-size: 17px;
    color: #1a1a1a;
    margin-bottom: 2px;
}
.expert-bio__title {
    font-size: 13px;
    color: #f71f1f;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.expert-bio__text {
    font-size: 15px;
    color: #444;
    line-height: 1.6;
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
}
.expert-bio__sources {
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    font-size: 12px;
}
.expert-bio__sources span {
    color: #666;
    font-weight: 600;
    white-space: nowrap;
}
.expert-bio__sources a {
    color: #1a73e8;
    text-decoration: none;
    background: #f0f4ff;
    border: 1px solid #c5d5f5;
    border-radius: 4px;
    padding: 2px 8px;
    white-space: nowrap;
}
.expert-bio__sources a:hover {
    background: #dce8ff;
    text-decoration: underline;
}
.expert-bio__verified {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: #2e7d32;
    font-weight: 600;
    margin-top: 8px;
}
@media (max-width: 600px) {
    .expert-bio { flex-direction: column; padding: 18px; }
    .expert-bio__avatar, .expert-bio__avatar-placeholder { width: 56px; height: 56px; font-size: 20px; }
}

/* E-E-A-T: Office address on contacto */
.office-address {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-top: 20px;
    font-family: Arial, Helvetica, sans-serif;
    color: #444;
    font-size: 15px;
    line-height: 1.6;
}
.map-wrapper {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 3px 3px 10px rgba(0,0,0,0.15);
    margin: 30px 0 50px;
    width: 100%;
}
.map-wrapper iframe { display: block; width: 100%; }

.button-container {
    text-align: center; /* Centers the button horizontally */
    padding: 20px; /* Optional: Adds space around the container */
     display: none;
    box-shadow: 5px 5px 5px #999;

}
.destination-apply-btn {
    width: 200px;
    background-color: rgba(247, 31, 31, 0.8);
    padding: 15px 20px;
    border: 1px solid red;
    border-radius: 10px;
    color: #fff;
    box-shadow: 3px 3px 3px #333;
}
.destination-apply-btn:hover {
    background-color: #d60b0bcc;
    color: #fff;
}
@media (min-width: 600px) {
    
    .destination-apply-btn {
        max-width: 288px; /* Limit the button width to 288px */
    }
}
/* Floating button style for screens smaller than 600px */
@media (max-width: 600px) {
    .button-container.fixed {
        display: block;
        position: fixed;
        bottom: 20px; /* Adjust as needed */
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        text-align: center;
        padding: 0;
        z-index: 1000; /* Ensures the button is above other elements */
        padding: 20px 0px;
        background-color: rgba(0,0,0,0.5);
    }
    .button-container.fixed .destination-apply-btn {
        max-width: 288px; /* Limit the button width to 288px when fixed */
        width: 90%; /* Adjust the button width */
        margin: 0 auto; /* Center the button */
    }
}