/* Global Styles */
body {
    margin: 0;
    font-family: arial, sans-serif;
    background-color: #ffffff;
    color: #333;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    border-bottom: 1px solid #ddd;
    background-color: #fff;
}

.logo img {
    height: 60px;
}

/* Navigation */
nav {
    margin-left:15px;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
}

nav a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
}

nav a:hover {
    text-decoration: underline;
}

/* Main Content */
main {
    max-width: 1000px;
    margin: 20px auto; 
    padding: 0 20px;
    text-align: left; 
    
}

#top-image
{
    width:100%;
    height:400px;
     background-image: url("kalfatindur.png");
     background-color:rgba(0,0,0,0.5);
    background-color: #ffffff;
}

.intro h1 {
    font-size: 2em;
    margin-bottom: 10px;
}

.intro p {
    font-size: 1.2em;
    color: #555;
}

.about-section
{
    text-align: left;
}

/* Gallery */
.gallery h2 {
    margin-top: 50px;
    margin-bottom: 20px;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.image-grid img {
    width: 100%;
    height: auto;
    border: 1px solid #ddd;
    border-radius: 8px;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    margin-top: 50px;
    font-size: 1.0em;
    color: #333;
}

.inline-div-intro {
    display: inline-block;
    vertical-align: top;
    margin-right: 15px;
    padding: 20px 0;
    height:200px;
    max-width:500px;
    text-align: center;
    /*border: solid 1px black; */
}

.inline-div-ferd {
    display: inline-block;
    vertical-align: top;
    line-height: 1.6;
    letter-spacing: 1.5px;
    height:200px;
    max-width:500px;
    margin-left: 35px;
    padding: 20px 0;
    text-align: center;
    /*border: solid 1px black; */
}


.product_box {
      background-size: cover;
      background-position: center;
      border-radius: 10px;
      height: 400px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 2em;
      font-family: sans-serif;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }



/* Whatsapp button placeholder */
.contact-box {
    text-align: left;
    max-width:600px;
    margin-bottom: 15px;
}

.whatsapp {
    height:50px;
}

#dropbox-logo {
    display:inline-table;
    height:200px;
    width:150px;
    vertical-align: middle;
}

#dropbox-img {
    width:120px;
}

/* Styles for photos section */
#photo-info {
    display:inline-table;
    height:200px;
    max-width:800px;
    vertical-align: top;
}
#photo-box {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr)); /* Example: responsive columns */
    justify-content: space-between; /* or space-evenly */
    gap: 20px; /* For consistent gaps */
    max-width: 800px;
    margin-left:150px;
    margin-top:50px;
}
.photo-frame {
    width:200px;
}

#dropbox-preview {
    padding-left:150px;
}
/* Styles for photos section */


/* Link styling */
    a.phone:link {
        color: #333;
        letter-spacing: 2px;
    }
    a.phone:visited {
        color: #333;
        letter-spacing: 2px;
    }
    a.phone:hover {
        color: #336600;
        letter-spacing: 2px;
    }



/* Styles for tours page */

.box_price {
    position: relative;
    top:10px;
    left:10px;
    height:20px;
    width:auto;
    font-size: 15px;
}

.box_caption {
    position: relative;
    top:40%;
    left:0px;
    height:20px;
    width:100%;
    align-items: center;
    border:solid 1px black;
}

/* Tours-details.html */

.detail_photo {
     display:inline-table;
     width:200px;
}

.tour_description {
     display:inline-table;
     max-width: 600px;
     vertical-align: top;
}

.tour_description h1 {
     font-size: 28px;
     letter-spacing: 2px;
}

.tour_description_details {
     border:solid 1px rgb(201, 199, 199);
     border-radius: 4px;
     padding:5px;
     max-width: 200px;
     vertical-align: top;
}

.tour_description_body {
     margin-top:20px;
     font-size: 18px;
     padding:5px;
     max-width: 600px;
     vertical-align: top;
}


.index_info_box
{
    max-width:1000px;
    margin-top:30px;
}

.index_social_media_icons {
    max-width:100%;
    text-align: right;
    display: block;
    vertical-align: top;
}

.about_social_media_icons {
    max-width:100%;
    text-align: left;
    display: block;
    vertical-align: top;
}

.index_social_img {
    height:30px;
    margin-left:15px;
}

.index_introduction_text {
    font-size:18px;
    color:#333366;
    letter-spacing: 1.2px;
    margin-bottom:40px;
}



/* Hamburger menu */
nav {
    position: relative;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    border-radius: 3px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        right: 0;
        top: 60px;
        background: white;
        padding: 15px;
        border: 1px solid #ddd;
        box-shadow: 0 2px 6px rgba(0,0,0,0.1);
        z-index: 999;
    }

    .nav-links.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }
}

/* End hamburger menu  */