.btn-gold {
	background-color: var(--gold);
	color: white;
	padding: 2px 10px;
	border: none;
	border-radius: 4px;
	font-weight: bold;
	transition: background-color 0.3s;
}

.btn-gold:hover {
	background-color: #a3780a;
	color: white;
}

.section-title {
	text-align: center;
	margin-bottom: 10px;
	font-size: 2.5rem;
	color: var(--gold);
}

.section-subtitle {
	text-align: center;
	margin-bottom: 10px;
	font-size: 2.0rem;
	color: #333;
}

.before {
	content: "";
	display: block;
	width: auto;
	height: 50px;
	background: url('../../assets/images/before.png') no-repeat center;
	background-size: contain;
	margin: 0 auto 10px;
}

.before2 {
	content: "";
	display: block;
	width: auto;
	height: 50px;
	background: url('../../assets/images/before2.png') no-repeat center;
	background-size: contain;
	margin: 0 auto 10px;
}

.before3 {
	content: "";
	display: block;
	width: auto;
	height: 50px;
	background: url('../../assets/images/before2.png') no-repeat right;
	background-size: contain;
	margin: 0 auto 10px;
}

.before4 {
	content: "";
	display: block;
	width: auto;
	height: 50px;
	background: url('../../assets/images/before2.png') no-repeat left;
	background-size: contain;
	margin: 0 auto 10px;
}

.after {
	content: "";
	display: block;
	width: 200px;
	height: 20px;
	background: url('../../assets/images/after.png') no-repeat center;
	background-size: contain;
	margin: 10px auto 0;
}

.after2 {
	content: "";
	display: block;
	height: 20px;
	background: url('../../assets/images/after2.png') no-repeat center;
	background-size: contain;
	margin-bottom: 15px;
}

.after3 {
	content: "";
	display: block;
	height: 200px;
	background: url('../../assets/images/after3.png') no-repeat right;
	background-size: contain;
	margin: 10px auto 0;
}

.after4 {
	content: "";
	display: block;
	height: 200px;
	background: url('../../assets/images/after4.png') no-repeat left;
	background-size: contain;
	margin: 10px auto 0;
}

.line4 {
	content: "";
	display: block;
	height: 20px;
	background: url('../../assets/images/line4.png') no-repeat center;
	background-size: contain;
	margin-bottom: 15px;
}

.collection-card {
	background-color: white;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease-out, box-shadow 0.3s ease-out;
	height: 100%;
	will-change: transform;
}

.collection-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.card-img {
	height: 200px;
	background-color: #eee;
	background-size: cover;
	background-position: center;
}

.card-title {
	color: var(--gold);
}

.accordion-contents{
	border-bottom: 1px solid #eee;
	padding-bottom: 20px;
	margin-bottom: 20px;
}

.accordion-heading {
	font-weight: bold;
	cursor: pointer;
	transition: color 0.3s;
}

.accordion-heading:hover {
	color: var(--gold);
}

.blog-card {
	background-color: white;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	height: 100%;
	transition: transform 0.3s ease-out, box-shadow 0.3s ease-out;
	will-change: transform;
}

.blog-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.blog-img {
	height: 200px;
	background-color: #eee;
	background-size: cover;
	background-position: center;
	transition: transform 0.5s ease;
}

.blog-card:hover .blog-img {
	transform: scale(1.05);
}

.image-text {
    display: flex;
    justify-content: center;   /* horizontal center */
    align-items: center;       /* vertical center */
    min-height: 100vh;         /* or any height you need */
}
p.content {
	text-align: center;
	padding: 15px;
}
.image-section {
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	min-width: 560px;
	max-height: 650px;
	transition: transform 0.5s ease;
}

.image-section:hover {
	transform: scale(1.02);
}

.content-section {
	background-color: #f8f9fa;
	padding: 3rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
	height: 100%;
}

.instagram-card {
	position: relative;
	overflow: hidden;
	border-radius: 10px;
}

.instagram-img {
	height: 500px;
	object-fit: cover;
	transition: transform 0.5s ease;
	will-change: transform;
}

.instagram-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.4);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.5s ease;
}

.instagram-overlay i {
	color: white;
	font-size: 2rem;
	transition: transform 0.3s ease;
}

.instagram-card:hover .instagram-overlay {
	opacity: 1;
}

.instagram-card:hover .instagram-img {
	transform: scale(1.05);
}

.instagram-card:hover .instagram-overlay i {
	transform: scale(1.2);
}

/* Scroll animations */
.animate-in {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-in.visible {
	opacity: 1;
	transform: translateY(0);
}

/* Optimized carousel */
.carousel-item {
	transition: transform 0.6s ease-in-out;	
}

/* Smooth scrolling */
html {
	scroll-behavior: smooth;
}

/* Performance optimizations */
.image-section,
.instagram-img,
.blog-img {
	transform: translateZ(0);
	backface-visibility: hidden;
	perspective: 1000;
}

.accordion-contents{
	border-bottom: 1px solid #ddd;
	padding: 12px 0;
}

.accordion-heading {
	cursor: pointer;
	font-weight: 600;
	position: relative;
	padding-right: 30px;
	/* space for icon */
}

.faq-icon {
	position: absolute;
	right: 0;
	top: 0;
	font-size: 22px;
	color: var(--primary) transition: transform 0.3s ease;
}

/* Add '+' when collapsed */
.accordion-heading.collapsed .faq-icon::before {
	content: '+';
}

/* Add '–' when expanded */
.accordion-heading:not(.collapsed) .faq-icon::before {
	content: '–';
}

.collapse {
	transition: all 0.3s ease;
}


.our_promise {
    background: url('assets/images/our_promise.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 150px;
    height: 100%;
    transition: transform 0.5s;
}

/* Animation keyframes */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(20px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}