/* Policy Page */


.content-title {
    display: flex;
    align-items: center;
    column-gap: 12px;
}

.artist_des ul li {
    list-style-type: initial;
    line-height: 24px;
    margin-left: 16px;
}

.artist_des a {
    text-decoration: underline;
    color: var(--primary_Green);
}

.artist_des a i {
    margin-left: 8px;
}

.shipping_detail, .policy_detail {
    padding-top: 120px;
}

.shipping_detail span, .policy_detail span{
    font-size: 16px;
    font-style: italic;
    line-height: 24px;
}

.shipping_detail ul, .policy_detail ul{
    margin-top: 16px;
    margin-bottom: 24px;
}

.shipping_detail ul {
    margin-bottom: 0px;
}

.shipping_detail ul li, .policy_detail ul li{
    margin-bottom: 12px;
    font-size: 16px;
    font-weight: 300;
}


.policy_des p {
    font-size: 16px;
    font-weight: 400;
}

.policy_des span {
    font-size: 14px;
    font-weight: 300;
}


.shipping_detail table {
    width: 100%;
    text-align: left;
}

.policy_detail p {
    font-size: 20px;
}

.policy_detail h6 {
    font-size: 16px;
    font-weight: 300;
    margin-top: 0px;

}

#notes{
    margin-bottom: 160px;
}

@media (max-width: 960px){

    .shipping_detail, .policy_detail {
        padding-top: 40px;
    }

    #notes{
        margin-bottom: 80px;
    }  

}


/* Sidebar menu */


.sidebar {
    width: 140px;
    margin-top: 80px;
}

.sidebar.fixed {
    position: fixed;
    height: 100%;
    margin-top: 40px;
   
}

.menu {
    list-style: none;
    padding: 0;
}

.menu-item a {
    display: block;
    padding: 10px;
    text-decoration: none;
    color: var(--gray500);
}

.menu-item a:hover {
    color: var(--primary-color);
}

.menu-item.active a {
    color: var(--primary-color);
    background-color: transparent;
}

@media (max-width: 960px) {
    .sidebar, .sidebar.fixed {
        display: none;
        position: static; /* 小屏幕時不固定 sidebar */
        width: 10%;
        margin-top: 0px;
    }

}





/*---------------------------------------------------------*/
/* CONTACT PAGE for contact.php 
-----------------------------------------------------------*/

.contact-content__text h1{
    font-size: 80px;
}

.contact-content__text {
    text-align: center;
}

.contact-content__text p a {
    text-decoration: underline;
    color: var(--primary_Green);
    transition: 0.8s all;
}

.contact-content__text p a:hover{
    opacity: 0.3;
}

.contact-content__text span {
    color: var(--gray100);
}

.contact-content__text span:before, .contact-content__text span:after {
    content: "";
    height: 1px;
    width: 120px;
    position: absolute;
    top: 50%;
    background-color: var(--gray100);
}

.contact-content__text span:after{
    left: 56px;
}

.contact-content__text span:before {
    right: 56px;
}

.contact-content__text .social-bar.footer-social-bar {
    justify-content: center;
    margin-top: 16px;
    margin-right: 0px;
}

.contact-content__text .footer__icon-btn i {
    color: var(--gray700);
}

@media(max-width: 480px){

    .contact-content__text h1 {
        font-size: 40px;
    }

}


.contact_bg{
	height: 100vh;
}


h5.u-text-center {
    font-family: "Raleway", sans-serif;
    text-align: center;
    font-size: 40px;
    font-weight: 200;
    line-height: 160%;
    margin-bottom: 24px;
}

.mv_bg.contactMV, .mv_bg.codeMV{
    display: block;
}

.section.contact, .section.code {
    display: flex;
    justify-content: center; 
    align-items: center;
	/* position: absolute; */
    margin-top: 200px;
    margin-bottom: 160px;
    left: 50%;
    transform: translateX(-50%);

}

.contact p, .code p{
    color: var(--primary-color);;
    text-align: center;
}

.contact .container, .code .container{ 
    width: 100%; /* Make it responsive */
    padding: 0 20px; /* Padding for small screens */
    box-sizing: border-box; /* Includes padding in the width */
}

.contact .container{
    max-width: 640px; 
}

.code .container{
    max-width: 1200px; 
}

.contact-content__text h2{
	margin-bottom: 8px;
}

.contact-content__text p, .code-content__text p {
    text-align: center;
	margin-bottom: 0px;
	color: var(--gray900);
	font-weight: 400;
}

.contact-content__text p{
    margin-bottom: 24px;
}


/* Styling form rows and columns for layout */
.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
	flex-direction: column;
    align-items: center;
}

.contact-col {

    box-sizing: border-box; 
    width: 100%; 
    display: flex;
    flex-direction: column; 
    justify-content: center;
	margin-bottom: 40px;
}

/* Styling for labels */
label {
    color: var(--gray700); 
    font-size: 14px; 
    margin-bottom: 8px; 
}

/* General input and textarea styling */
input[type="text"],
input[type="email"],
textarea {
    width: 100%; 
    height: 56px; 
    border: 1px solid var(--gray500);; 
    padding: 10px; 
    box-sizing: border-box; 
	background: transparent;
	outline: none;
	border-radius: 8px;
}

textarea {
    height: auto; 
    resize: none; 
}

input:focus, textarea:focus {
    border: 1px solid var(--primary-color);;
}

/* Styling for the submit button */

/* .btn.contact_btn{
	padding: 24px 0px;
	background-color: var(--primary-color);; 
	color: var(--base_white);;
	border: none;
	cursor: pointer;
	transition: background-color 0.3s;
	align-self: flex-start;
	letter-spacing: 1px;
}

.contact_btn:hover {
    background-color: var(--gray700); 
} */


@media (max-width: 480px) {

    .section.contact, .section.code{
        margin-top: 120px;
    }

    .contact .container, .code .container {
        padding: 0px 12px;
    }

    .btn.contact_btn {
        width: 100%;
    }



}


@media (max-width: 375px) {
    
    .contact .container {
        width: 300px;
    }
}
