/* General Styles */
body {
    font-family: Arial, sans-serif;
    color: #333;
    background-color: #FDF5E6;
    margin: 0;
    padding: 0;
}

/* Navbar Styles */
nav {
    background: linear-gradient(to bottom, #ff9b9a, #a4d6a5); /* à¹à¸”à¸‡à¸­à¹ˆà¸­à¸™à¹„à¸¥à¹ˆà¸£à¸°à¸”à¸±à¸šà¹„à¸›à¹€à¸‚à¸µà¸¢à¸§ */
    padding: 1em;
    display: flex;
    justify-content: center;
    align-items: center;
    position: sticky;
    top: 0;
    transition: top 0.3s;
    box-shadow: 2px 2px 2px #333;
}

h2 {
    font-size: 50px;
}

h2, p, a, label {
    color: #7e2826;
}

a {
    box-shadow: 3px 3px 3px #333;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}
nav ul li {
    display: inline;
}
nav ul li a {
    text-decoration: none;
    color: #7e2826;
    font-size: 1.2em;
    padding: 15px;
}

nav ul li a:hover {
    background: #ff9b9a;
    font-weight: bold;
}

#menu-toggle {
    display: none;
}

/* Section Styles */
section {
    padding: 2em;
    text-align: center;
}

/* Gallery and Hover Effects */
.gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}
.hover-effect {
    transition: transform 0.3s ease;
}
.hover-effect:hover {
    transform: scale(1.1);
}

/* Contact Form Styles */
form {
    display: flex;
    flex-direction: column;
    gap: 1em;
    width: 70%;
}
form label {
    font-weight: bold;
}
form input, form textarea, form button {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

/* LINE Contact Styles */
.line-contact {
    text-align: center;
    margin-top: 2em;
    width: 70%;
}

#about {
    background: linear-gradient(to bottom, #ff9b9a, #a4d6a5); /* à¹à¸”à¸‡à¸­à¹ˆà¸­à¸™à¹„à¸¥à¹ˆà¸£à¸°à¸”à¸±à¸šà¹„à¸›à¹€à¸‚à¸µà¸¢à¸§ */
}

#contact {
    background: linear-gradient(to bottom, #ff9b9a, #a4d6a5); /* à¹à¸”à¸‡à¸­à¹ˆà¸­à¸™à¹„à¸¥à¹ˆà¸£à¸°à¸”à¸±à¸šà¹„à¸›à¹€à¸‚à¸µà¸¢à¸§ */
}

#contact .card-contact {
    display: flex;
    flex-direction: row;
    background: #a4d6a5; /* à¸ªà¸µà¹€à¸‚à¸µà¸¢à¸§à¸—à¸µà¹ˆà¹ƒà¸Šà¹‰à¸£à¹ˆà¸§à¸¡à¸à¸±à¸šà¹„à¸¥à¹ˆà¸£à¸°à¸”à¸±à¸š */
    padding: 50px;
}

button {
    background: #a02b29;
    color: #FDF5E6;
    cursor: pointer;
}

/* Media Query for Mobile */
@media (max-width: 768px) {
    h2 {
        font-size: 30px;
    }
    nav ul {
        display: none;
        flex-direction: column;
    }
    #menu-toggle {
        display: block;
        margin-left: auto;
    }
    #contact .card-contact {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 20px 0px;
    }
    a {
        box-shadow: none;
    }
}
