

body {

    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
}

.contents {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Festivals section */
.festivals {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 30px;
    margin-bottom: 40px;
}

#festhead {
    font-size: 2.5em;
    color: #1a936f;
    margin-bottom: 20px;
    text-align: center;
}

.festivals > p {
    font-size: 18px;
    text-align: center;
    margin-bottom: 30px;
    color: #555;
}

.fest {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    background-color: #f9f9f9;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.festimage {
    flex: 0 0 200px;
}

.festimage > img {
    width: 100%;
    height: auto;
    border-radius: 0;
    object-fit: cover;
}

.festcontent {
    flex: 1;
    padding: 20px;
}

.head > h2 {
    font-size: 1.8em;
    margin-bottom: 10px;
    background: linear-gradient(45deg, #1a936f, #114b5f);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.text {
    font-size: 16px;
    line-height: 1.6;
}

/* Arts section */
.artssection {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 30px;
}

#arthead {
    font-size: 2.5em;
    color: #1a936f;
    margin-bottom: 30px;
    text-align: center;
}

#arts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.art {
    background-color: #f9f9f9;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.artimg {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.artimg > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: none;
    border-radius: 0;
}

.arttxt {
    padding: 20px;
    background-color: #ffffff;
}

.artname {
    font-size: 1.2em;
    margin-bottom: 10px;
    color: #1a936f;
}

.artdes {
    font-size: 14px;
    color: #555;
}


/* Food and Fashion Section */
.liestyle {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.lifestylehead {
    font-size: 2.5em;
    color: #1a936f;
    text-align: center;
    margin-bottom: 20px;
}

.liestyle > p {
    font-size: 1.1em;
    line-height: 1.6;
    color: #333;
    text-align: center;
    margin-bottom: 30px;
}
.food-fashion-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

.food, .fashion {
    flex: 1;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.food:hover, .fashion:hover {
    transform: translateY(-5px);
}

.foodimg, .fashionimg {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.foodimg img, .fashionimg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.food:hover .foodimg img, .fashion:hover .fashionimg img {
    transform: scale(1.05);
}

.foodcontent, .fashioncontent {
    padding: 20px;
}

.foodname, .fashionname {
    font-size: 1.5em;
    color: #1a936f;
    margin-bottom: 10px;
}

.foodtext, .fashiontext {
    font-size: 1em;
    line-height: 1.6;
    color: #333;
}

/* Responsive design */
@media (max-width: 768px) {
    .fest {
        flex-direction: column;
    }
    
    .festimage {
        flex: 0 0 auto;
        width: 100%;
    }
    
    #arts {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    .arttxt,.festcontent,.food-fashion-container{
        display: flex;
        flex-direction: column;
        text-align: center;
    }

    .food, .fashion {
        width: 100%;
        margin-bottom: 30px;
    }
}