/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Prompt', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

/* ส่วนของ header และ nav */
header {
    background-color: #ffffff;
    padding: 1rem;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    color: #000000;
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
}

/* ส่วนของเมนู */



/* Hero section styles */


h2 {
    margin: 15px 0; /* เพิ่ม margin บนและล่าง */
}

.highlight {
    color: #1a237e; /* สีดำ */
    font-size: 1.0em; /* ขนาดตัวอักษรใหญ่ขึ้น */
}

.text-gray {
    color: gray; /* สีเทา */
    font-size: 1em; /* ขนาดตัวอักษรปกติ */
}





/* Search section styles */
.search-section {
    background-color: #fff;
    padding: 2rem 0;
}

.search-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.search-container form {
    display: flex;
    gap: 1rem;
}

.search-container input[type="text"] {
    flex-grow: 1;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.search-button {
    background-color: #1a237e;
    color: #fff;
    border: none;
    padding: 1rem 2rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.search-button:hover {
    background-color: #3949ab;
}

/* Attractions section styles */
.attractions {
    padding: 4rem 2rem;
    background-color: #fff;
    text-align: center;
}

.attractions h2 {
    font-size: 1.9rem;
    color: #000000d7;
    margin-bottom: 2rem;
}

.attractions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.attraction-item {
    background-color: #f5f5f5;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.attraction-item:hover {
    transform: translateY(-5px);
}

.attraction-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.attraction-item h3 {
    padding: 1rem;
    font-size: 1.2rem;
    color: #1a237e;
}

.attraction-item p {
    padding: 0 1rem 1rem;
    font-size: 0.9rem;
    color: #666;
}

.view-more {
    display: inline-block;
    margin-top: 2rem;
    background-color: #1a237e;
    color: #fff;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
}

.view-more:hover {
    background-color: #3949ab;
}

/* Recent search section styles */
.recent-search {
    padding: 4rem 2rem;
    background-color: #f5f5f5;
    text-align: center;
}

.recent-search h2 {
    font-size: 2rem;
    color: #1a237e;
    margin-bottom: 2rem;
}

.recent-search ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.recent-search ul li a {
    display: inline-block;
    background-color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #1a237e;
    text-decoration: none;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: background-color 0.3s, color 0.3s;
}

.recent-search ul li a:hover {
    background-color: #1a237e;
    color: #fff;
}

/* Newsletter styles */
.newsletter {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center; /* Center text */
    padding: 20px; /* Padding around the section */
    background-color: #f9f9f9; /* Background color */
    border-radius: 8px; /* Rounded corners */
    margin: 20px auto; /* Top and bottom margin */
    max-width: 600px; /* Maximum width */
}

.newsletter h2,
.newsletter p {
    color: #1a237e; /* Dark blue text color */
}

.newsletter-form {
    display: flex;
    flex-direction: column; /* Form items in vertical alignment */
    width: 100%; /* Full width */
    color: #1a237e; /* Dark blue text color */
}

.newsletter-form input[type="email"] {
    padding: 10px;
    margin-bottom: 10px; /* Space between input and button */
    border: 1px solid #ccc; /* Border for the input */
    border-radius: 4px; /* Rounded corners for the input */
}

.newsletter-form button {
    padding: 10px;
    background-color: #4CAF50; /* Background color for the button */
    color: white; /* Text color for the button */
    border: none; /* No border */
    border-radius: 4px; /* Rounded corners for the button */
    cursor: pointer; /* Change cursor on hover */
}

/* Change button color on hover */
.newsletter-form button:hover {
    background-color: #45a049; /* Darker green on hover */
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .newsletter {
        padding: 15px; /* Adjust padding for mobile */
        margin: 15px; /* Adjust margin for mobile */
    }

    .newsletter h2 {
        font-size: 1.8rem; /* Decrease heading size on mobile */
    }

    .newsletter p {
        font-size: 1rem; /* Decrease paragraph size on mobile */
    }

    .newsletter-form input[type="email"] {
        padding: 12px; /* Adjust padding for mobile input */
        font-size: 0.9rem; /* Smaller font size for input */
    }

    .newsletter-form button {
        padding: 12px; /* Adjust padding for mobile button */
        font-size: 0.9rem; /* Smaller font size for button */
    }
}


/* icon  */

.social-icons1 {
    display: flex;
    justify-content: center; /* Center horizontally */
    align-items: center;     /* Center vertically */
    margin-top: 20px;        /* Adjust for spacing if needed */
}

.social-icons1 a {
    font-size: 20px; /* Adjust the icon size */
    color: #ffffff;  /* White color */
    text-decoration: none;
    margin-right: 10px; /* Space between icons */
    display: flex;
    align-items: center;
}

.social-icons1 i {
    margin-right: 3px; /* Space between the icon and text */
}

.social-icons1 a:hover {
    color: #f0f0f0; /* Slightly lighter shade of white on hover */
}
/* รูปปก */

/* ใต้รูปปก */
.highlights {
    background-color: rgb(242, 240, 237);
    padding: 50px 0;
    text-align: center;
}

.section-heading {
    font-size: 2em;
    color: #333;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.highlight-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.highlight-item {
    flex-basis: 22%;
    min-width: 250px;
    margin: 15px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-5px);
}

.highlight-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.highlight-item h3 {
    font-size: 1.2em;
    margin: 15px 0 10px;
    color: #333;
    padding: 0 15px;
}

.highlight-item p {
    font-size: 0.9em;
    color: #666;
    padding: 0 15px 20px;
}

@media (max-width: 1024px) {
    .highlight-item {
        flex-basis: 45%;
    }
}

@media (max-width: 768px) {
    .section-heading {
        font-size: 1.8em;
    }
}

@media (max-width: 480px) {
    .highlight-item {
        flex-basis: 100%;
    }
    .section-heading {
        font-size: 1.5em;
    }
}


/* สไตล์สำหรับ tour-info-102 */
.tour-info-102 {
    padding: 60px 20px;
    background-color: #f9f9f9;
    text-align: center;
    margin-top: 80px;
}

.tour-info-102 h2 {
    color: #000009;
    margin-bottom: 10px;
}

.tour-info-102 p {
    font-size: 18px;
    color: #696969;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

