 /* Base Styles */
 :root {
    --dark-bg: #121212;
    --gold: #D4AF37;
    --gold-light: #F4E5C2;
    --text: #e0e0e0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--dark-bg);
    color: var(--text);
    line-height: 1.6;
}

/* Header Styles */
header {
    text-align: center;
    padding: 2rem 1rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

header a img {
    width: 100px;
    height: auto;
}

h1, h2 {
    color: var(--gold);
    margin-bottom: 0.5rem;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 1.8rem;
    text-align: center;
}

.pricelist h2 {
    margin-bottom: 30px;

}

.tagline {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--gold-light);
}

/* Social Icons */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.social-icons a {
    color: var(--gold);
    font-size: 1.8rem;
    transition: transform 0.3s, color 0.3s;
}

.social-icons a:hover {
    transform: translateY(-3px);
    color: var(--gold-light);
}

/* Main Content */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

section {
    margin-bottom: 3rem;
}

/* Feature Items */
.feature-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin: 2rem auto;
    max-width: 800px;
    padding: 0 1rem;
}

.feature-item {
    flex: 1 1 calc(33.333% - 2rem); /* Three items per row by default */
    min-width: 120px;
    max-width: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    padding: 1rem;
    /* background: rgba(255,255,255,0.05); */
    border-radius: 8px;
    border: 3px solid rgba(212, 175, 55, 0.1);
}

.feature-item:hover {
    transform: translateY(-5px);
    background: rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.3);
}

.feature-item img {
    width: 100%;
    max-width: 80px;
    height: auto;
    aspect-ratio: 1/1;
    object-fit: contain;
    margin-bottom: 0.8rem;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.feature-item p {
    color: var(--gold-light);
    font-size: 0.9rem;
    margin-top: 0.5rem;
    font-weight: 500;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Revised Gallery Styles */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    padding: 0 1rem;
    justify-items: center; /* Center items horizontally */
}
.thumb {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    padding: 0 1rem;
    justify-items: center; /* Center items horizontally */
}

.thumb-item {
    margin-top: 10px;
    width: 100%;
    max-width: 400px; /* Control maximum size of each item */
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s;
}
.thumb-item img {
    width: 100%;
    height: auto; /* Let height adjust naturally */
    max-height: 100px; /* Control image height */
    object-fit: contain; /* Show complete image without cropping */
    border-radius: 8px;
    
    /* box-shadow: 0 4px 8px rgba(0,0,0,0.1); */
    /* background: #1e1e1e; Background for transparent images */
}
.gallery-item {
    width: 100%;
    max-width: 400px; /* Control maximum size of each item */
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: auto; /* Let height adjust naturally */
    max-height: 400px; /* Control image height */
    object-fit: contain; /* Show complete image without cropping */
    border-radius: 8px;
    /* box-shadow: 0 4px 8px rgba(0,0,0,0.1); */
    /* background: #1e1e1e; Background for transparent images */
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-caption {
    display: none;
    padding: 12px 0;
    color: var(--gold-light);
    text-align: center;
    font-size: 0.9rem;
    width: 100%;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    text-align: center;
}

.lightbox-content img {
    max-width: 90vw;
    max-height: 80vh;
    border: 2px solid var(--gold);
    border-radius: 4px;
    object-fit: contain;
}

.lightbox-caption {
    color: white;
    text-align: center;
    margin-top: 1rem;
    font-size: 1.1rem;
}

.close-lightbox {
    position: absolute;
    top: 20px;
    right: 30px;
    color: var(--gold);
    font-size: 2.5rem;
    cursor: pointer;
    transition: color 0.3s;
}

.close-lightbox:hover {
    color: white;
}

/* accordion start */
 /* Accordion Styles */
 .treatment {
    max-width: 800px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.accordion {
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 1rem;
    
}

.accordion-header {
    /* background-color: rgba(30, 30, 30, 0.8); */
    color: var(--gold-light);
    padding: 1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.accordion-header:hover {
    background-color: rgba(212, 175, 55, 0.1);
}

.accordion-header h3 {
    margin: 0;
    font-size: 1.1rem;
}

.accordion-icon {
    transition: transform 0.3s ease;
    font-weight: bold;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: rgba(40, 40, 40, 0.6);
}

.accordion-content-inner {
    padding: 1rem;
}

/* Active State */
.accordion.active .accordion-icon {
    transform: rotate(90deg);
}

.accordion.active .accordion-content {
    max-height: 500px; /* Adjust based on your content */
}

.accordion-content-inner li {
    margin-left: 25px;
}
/* end accordion */


/* footer start */
footer p{
    text-align: center;
    padding-bottom: 10px;
}
/* footer end */

/* scroll to top */
/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #333;
    color: var(--gold);
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 99;
}

.scroll-to-top:hover {
    background-color: #555;
    transform: scale(1.1);
}

.scroll-to-top.active {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top::after {
    content: "↑";
}

/* Arrow animation */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.scroll-to-top:hover::after {
    animation: bounce 1.5s infinite;
}
/* end of scroll */

/* Responsive Adjustments */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .tagline {
        font-size: 1rem;
    }
    
    .gallery {
        grid-template-columns: 1fr;
    }
    
    .feature-item {
        flex: 1 1 calc(50% - 1.5rem); /* Two items per row on tablets */
        min-width: 110px;
        padding: 0.8rem;
    }
    
    .feature-item img {
        max-width: 60px;
    }
    header a img {
        width: 80px;
        height: auto;
    }
}