/* รีเซ็ตค่าเบื้องต้น */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
}

header {
    background: linear-gradient(to right, #7b4397, #dc2430);
    color: #f4e6e7;
    padding: 60px 20px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

header h1 {
    font-size: 3.5em;
    margin-bottom: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

header p {
    font-size: 1.3em;
    font-weight: 300;
}

section {
    padding: 50px 20px;
    margin: 30px 0;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #7b4397;
    border-bottom: 2px solid #c0a16b;
    display: inline-block;
    padding-bottom: 10px;
}

ul {
    list-style: none;
    padding-left: 0;
}

ul li {
    font-size: 1.2em;
    padding: 15px;
    background: #f4e6e7;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
}

ul li::before {
    content: '✔️';
    color: #c0a16b;
    margin-right: 15px;
    font-size: 1.5em;
}

.gallery-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.gallery-container img {
    width: 30%;
    border-radius: 15px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.gallery-container img:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.map-container iframe {
    border-radius: 15px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

footer {
    background: #333;
    color: #f4e6e7;
    padding: 30px;
    text-align: center;
    margin-top: 30px;
    border-top: 5px solid #c0a16b;
}

footer a {
    color: #c0a16b;
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s;
}

footer a:hover {
    color: #f4e6e7;
    text-decoration: underline;
}

button {
    padding: 15px 30px;
    background: linear-gradient(to right, #c0a16b, #d4af37);
    color: #fff;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-size: 1.2em;
    font-weight: 600;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
}

button:hover {
    background: linear-gradient(to right, #d4af37, #c0a16b);
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

/* ปรับสไตล์สำหรับหน้าจอมือถือ */
@media (max-width: 768px) {
    header h1 {
        font-size: 2.5em;
    }

    .gallery-container img {
        width: 100%;
    }
}
