@font-face {
    font-family: 'Georgia', serif;
    src: url('../font/georgia.ttf') format('truetype');
}
/* Apply smooth scrolling for the page */
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

/* Chrome, Edge, Safari */
::-webkit-scrollbar {
  width: 8px;                 /* slim width */
}

::-webkit-scrollbar-track {
  background: #050505;         /* dark track matching your background */
}

::-webkit-scrollbar-thumb {
  background-color: #c9a84c;   /* gold color */
  border-radius: 4px;          /* rounded edges */
}

::-webkit-scrollbar-thumb:hover {
  background-color: #e1c15c;   /* lighter gold on hover */
}

/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: #c9a84c #050505;
}
body{
    overflow-x: hidden;
    margin: 0;
    padding-top: 90px;
    cursor: none;
}
body, a, button {
  cursor: none !important;
}

.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  background: #c9a84c;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
}

.cursor-outline {
  position: fixed;
  top: 0;
  left: 0;
  width: 14px;
  height: 14px;
  border: 2px solid #c9a84c;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transition: width 0.2s ease, height 0.2s ease;
  transform-origin: center center; /* ensures the growth is centered */
}


.hover-target:hover + .cursor-outline {
  width: 60px;
  height: 60px;
}

.navbar{
        padding: 30px 0px;
}
.custom-navbar {
    transition: background 0.3s ease;
    background: transparent; /* initial background */
}

.custom-navbar.scrolled {
    background: #000; /* background when scrolled */
}
.navbar .nav-link {
  position: relative;
  color: #fff; /* default link color */
  text-decoration: none;
  padding-bottom: 0.5rem; /* spacing for border */
  transition: all 0.3s ease;
}

.navbar .nav-link.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px; /* thickness of the border */
  background-color: #c9a84c; /* gold color for active */
  border-radius: 2px;
}

.brand-wrap{
    display:flex;
    align-items:center;
    gap:15px;
}

.brand-wrap svg{
    color:#c9a65b;
}

.brand-wrap h4{
        margin: 0;
    color: #e8e0d0;
    font-size: 14px;
    letter-spacing: 3px;
    margin-bottom: -10px;
    font-family: 'Georgia', serif;
}

.brand-wrap span{
    color:#c9a65b;
    font-size:9px;
    letter-spacing:2px;
}
.logo{
    width: 200px;
    height: 113px;
}
.nav-link{
    color:#999 !important;
    letter-spacing:2px;
    font-size:12px;
    margin:0 10px;
}

.nav-link:hover,
.nav-link.active{
    color:#fff !important;
}

.btn-inquire{
    border:1px solid #c9a65b;
    color:#c9a65b;
    text-decoration:none;
    padding:10px 20px;
    transition:.3s;
}

.btn-inquire:hover{
    background:#c9a65b;
    color:#000;
}

.hero-section{
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
}
.hero {
    position: relative;
    background-image: url('../images/hero-banner.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    min-height: 101vh;
    margin-top: -100px;

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;

    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
}

.hero-content h3 {
    font-size: 10px;
    text-transform: uppercase;
    color: #c9a84c;
    padding: 10px 15px;
    letter-spacing: 6px;
    border: 1px solid #c9a84c33;
    font-weight: 300;
    width: 450px;
    margin: 0 auto;
}
.hero-content h1{
    font-size: 144px;
    color: #f5f0e8;
    font-family: 'Georgia', serif;
}
.hero-title-wrap {
    overflow: hidden;
    margin-bottom: 32px;
}

.hero-title {
    font-family: 'Georgia', serif;
    font-size: clamp(4rem, 10vw, 9rem);
    font-weight: 400;
    line-height: 0.85;
    letter-spacing: -3px;
    margin: 0;

    background: linear-gradient(
        180deg,
        #e8d59c 0%,
        #c9a84c 40%,
        #9f7b2c 100%
    );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}   
.hero-content p {
    font-size: 18px;
    line-height: 28px;
    color: #999999b2;
    margin-bottom: 40px;
    font-weight: 400;
}
.hero-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.hero-btn a {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 14px 32px;

    font-size: 12px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;

    transition: all 0.4s ease;
}

/* Primary Button */
.hero-btn a:first-child {
    background: #c9a84c;
    color: #000;
}

.hero-btn a:first-child:hover {
    background: #e0bc5b;
    color: #000;
    box-shadow: 0 0 30px rgba(201, 168, 76, 0.35);
}

/* Secondary Button */
.hero-btn a:last-child {
    border: 1px solid rgba(201, 168, 76, 0.4);
    color: #c9a84c;
    background: transparent;
}

.hero-btn a:last-child:hover {
    background: rgba(201, 168, 76, 0.1);
    border-color: #c9a84c;
}

/* Icons */
.hero-btn svg {
    width: 16px;
    height: 16px;
    stroke-width: 2;
}
.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;       /* 10 in Tailwind ≈ 2.5rem */
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;         /* spacing between text and arrow */
  color: rgba(255, 215, 0, 0.4); /* semi-transparent gold */
  font-size: 0.5625rem; /* 9px */
  letter-spacing: 0.4em;
  text-transform: uppercase;
}

.scroll-indicator .arrow svg {
  width: 2rem;           /* 16px */
  height: 2rem;
  color: rgba(201, 168, 76, 0.5); /* gold 50% opacity */
  animation: bounce 1.5s infinite; 
}

/* simple up-down bounce animation */
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

@media (max-width: 576px) {
    .hero-btn {
        flex-direction: column;
        width: 100%;
    }

    .hero-btn a {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

.museum-strip {
    padding: 24px 0;
    background: #0a0a0a;
    border-top: 1px solid rgba(201, 168, 76, 0.1);
    border-bottom: 1px solid rgba(201, 168, 76, 0.1);
    overflow: hidden;
}

.marquee {
    white-space: nowrap;
    overflow: hidden;
}

.marquee span {
    display: inline-block;
    white-space: nowrap;

    color: rgba(255, 255, 255, 0.3);
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;

    animation: marquee 35s linear infinite;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}
.artist-section {
    background: #050505;
    color: #fff;
}

.artist-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 80vh;
}

.artist-image-box {
    position: relative;
    min-height: 500px;
    overflow: hidden;
}

.artist-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s ease;
}

.artist-image-box:hover img {
    transform: scale(1.05);
}

.artist-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, transparent, rgba(5, 5, 5, 0.35));
}

.artist-content-box {
    display: flex;
    align-items: center;
    padding: 80px 0;
}

.artist-content {
    max-width: 500px;
    margin: auto;
    padding: 0 50px;
}

.section-label {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
}

.section-label div {
    width: 48px;
    height: 1px;
    background: #c9a84c;
}

.section-label span {
    color: #c9a84c;
    font-size: 10px;
    letter-spacing: 5px;
    text-transform: uppercase;
}

.artist-content h2 {
    font-size: 50px;
    line-height: 1.1;
    margin-bottom: 32px;
    font-weight: 400;
}

.artist-content h2 span {
    color: #c9a84c;
}

.artist-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    font-size: 15px;
    margin-bottom: 24px;
}

.artist-quote {
    color: rgba(255, 255, 255, 0.5) !important;
    font-size: 14px !important;
    font-style: italic;
    margin-bottom: 40px !important;
}

.artist-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 14px 32px;
    border: 1px solid rgba(201, 168, 76, 0.4);

    color: #c9a84c;
    text-decoration: none;

    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;

    transition: all 0.4s ease;
}

.artist-btn:hover {
    background: rgba(201, 168, 76, 0.1);
    border-color: #c9a84c;
    color: #c9a84c;
}

.artist-btn svg {
    width: 16px;
    height: 16px;
}

@media (max-width: 768px) {
    .artist-grid {
        grid-template-columns: 1fr;
    }

    .artist-content {
        padding: 0 25px;
    }

    .artist-content h2 {
        font-size: 36px;
    }
}
.featured-works{
    padding:120px 0;
    background:#050505;
}

.section-header{
    text-align:center;
    max-width:700px;
    margin:0 auto 80px;
}

.section-header span{
    display:block;
    color:#c9a84c;
    font-size:10px;
    letter-spacing:5px;
    text-transform:uppercase;
    margin-bottom:20px;
}

.section-header h2{
    color:#fff;
    font-size:60px;
    margin-bottom:20px;
    font-weight:400;
    font-family: 'Georgia', serif;
}

.section-header h2 span{
    display: inline;
   background: linear-gradient(135deg, #c9a84c, #e8d48b 50%, #c9a84c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size:60px;
    margin-bottom:20px;
    font-weight:400;
    text-transform: capitalize;
    
}


.section-header p{
    color:#999999;
    max-width:450px;
    margin:auto;
    line-height:1.8;
    font-size: 14px;
}
.works-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* exactly 2 columns per row */
  gap: 40px;
}

.work-card {
  background:#0d0d0d;
  overflow:hidden;
  cursor:pointer;
}
.work-card a{
    color: none;
}

.work-image {
  position: relative;
  overflow:hidden;
  background:#000;
}

.work-image img {
  width: 100%;
  aspect-ratio:1/1;
  object-fit:contain;
  padding:40px;
  transition: transform 1s ease-out;
}

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

/* Overlay */
.overlay {
  position:absolute;
  inset:0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  opacity:0;
  transition: opacity 0.7s ease;
}

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

/* Four L-shaped corners */
.corner {
    position: absolute;
    width: 30px;
    height: 30px;
    border: 2px solid #c9a84c;
    opacity: 0;
    transition: opacity 0.5s ease;
}

/* Position each corner */
.corner.top-left {
    top: 8px;
    left: 8px;
    border-right: none;
    border-bottom: none;
}

.corner.top-right {
    top: 8px;
    right: 8px;
    border-left: none;
    border-bottom: none;
}

.corner.bottom-left {
    bottom: 8px;
    left: 8px;
    border-top: none;
    border-right: none;
}

.corner.bottom-right {
    bottom: 8px;
    right: 8px;
    border-top: none;
    border-left: none;
}

.work-card:hover .corner {
    opacity: 1;
}

/* View & Inquire overlay */
.view-inquire {
  position:absolute;
  bottom:20px;
  left:20px;
  right:20px;
  text-align:center;
  opacity:0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.work-card:hover .view-inquire {
  opacity:1;
  transform: translateY(0);
}

.view-inquire span {
  display:inline-flex;
  align-items:center;
  gap:6px;
  font-size:10px;
  letter-spacing:2px;
  text-transform:uppercase;
  color:#c9a84c;
}
.work-content{
    padding:25px;
    border-top:1px solid rgba(201,168,76,.1);
}

.work-content h3{
    color:#fff;
    font-size:18px;
    margin-bottom:10px;
    transition:.4s;
    font-family: 'Georgia', serif;
}

.work-card:hover h3{
    color:#c9a84c;
}

.work-content p{
    color: #c9a84c;
    font-size: 13px;
    letter-spacing:2px;
    text-transform:uppercase;
}
.works-btn{
    text-align:center;
    margin-top:70px;
}

.works-btn a{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:14px 32px;
    border:1px solid rgba(201,168,76,.4);
    color:#c9a84c;
    text-decoration:none;
    font-size:12px;
    letter-spacing:3px;
    text-transform:uppercase;
    transition:.4s;
}

.works-btn a:hover{
    background:rgba(201,168,76,.1);
    border-color:#c9a84c;
}
.paris-exhibition {
  position: relative;
  padding: 8rem 0;
  background: #0f0f0f;
  overflow: hidden;
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3.5rem;
  color: #fff;
}

.section-header span {
  display: block;
  font-size: 10px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: #c9a84c;
  margin-bottom: 10px;
}

.section-header h2 {
  font-size: 60px;
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.section-header h2 em {
  font-style: italic;
  background: linear-gradient(90deg, #e8d59c, #c9a84c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-header p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  line-height: 1.7;
}

/* Video Card */
.video-card {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  border-radius: 6px;
  overflow: hidden;
  background: #000;
}

.video-card video {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  border-radius: 6px;
  transition: transform 0.8s ease;
}

.video-card:hover video {
  transform: scale(1.03);
}

/* L-shaped corners */
.video-corner {
  position: absolute;
  width: 32px;
  height: 32px;
  border: 2px solid rgba(201,168,76,0.3);
  transition: border-color 0.5s;
}

.video-corner.top-left { top: 16px; left: 16px; border-right: none; border-bottom: none; }
.video-corner.top-right { top: 16px; right: 16px; border-left: none; border-bottom: none; }
.video-corner.bottom-left { bottom: 16px; left: 16px; border-top: none; border-right: none; }
.video-corner.bottom-right { bottom: 16px; right: 16px; border-top: none; border-left: none; }

.video-card:hover .video-corner {
  border-color: rgba(201,168,76,0.6);
}

/* Unmute Button */
.unmute-btn {
  position: absolute;
  bottom: 24px;
  right: 24px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: rgba(0,0,0,0.7);
  border: 1px solid rgba(201,168,76,0.5);
  border-radius: 999px;
  color: #c9a84c;
  cursor: pointer;
  backdrop-filter: blur(4px);
  transition: all 0.3s ease;
}

.unmute-btn:hover {
  background: rgba(0,0,0,0.8);
  border-color: #c9a84c;
  box-shadow: 0 0 30px rgba(218,165,32,0.35);
}

.video-footer {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 10px;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.3);
}

.shadow-boxes-section {
  position: relative;
  padding: 8rem 0;
  background: #050505;
  overflow: hidden;
  color: #fff;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header .label {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.section-header .label .line {
  flex: 1;
  height: 1px;
  background: rgba(201,168,76,0.4);
}

.section-header .label span {
  font-size: 10px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: #c9a84c;
}

.section-header h2 {
  font-size: 3rem;
  font-weight: 400;
  margin-bottom: 1rem;
}

.section-header h2 span {
  color: #c9a84c;
}

.section-header p {
  color: rgba(255,255,255,0.6);
  max-width: 500px;
  margin: 0 auto;
  font-size: 14px;
  line-height: 1.7;
}

/* Grid */
.shadow-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.shadow-card.large {
  grid-column: span 2;
}

.shadow-image {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  cursor: pointer;
}

.shadow-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
}

.shadow-image:hover img {
  transform: scale(1.1);
}

/* Overlay */
.shadow-image .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  opacity: 0;
  transition: opacity 0.7s;
}

.shadow-image:hover .overlay {
  opacity: 1;
}

/* L-shaped corners */
.corner {
  position: absolute;
  width: 32px;
  height: 32px;
  border: 2px solid #c9a84c;
  transition: border-color 0.5s;
}

.corner.top-left {
  top: 8px;
  left: 8px;
  border-right: none;
  border-bottom: none;
}

.corner.bottom-right {
  bottom: 8px;
  right: 8px;
  border-top: none;
  border-left: none;
}

.shadow-image:hover .corner {
  border-color: rgba(201,168,76,0.6);
}

/* View & Inquire */
.view-inquire {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.shadow-image:hover .view-inquire {
  opacity: 1;
  transform: translateY(0);
}

.view-inquire span {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #c9a84c;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Footer */
.shadow-footer {
  text-align: center;
  margin-top: 2rem;
}

.shadow-footer p {
    font-size: 12px;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.shadow-footer a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #c9a84c;
  border: 1px solid rgba(201,168,76,0.4);
  text-decoration: none;
  transition: all 0.3s ease;
}

.shadow-footer a:hover {
  background: rgba(201,168,76,0.1);
  border-color: #c9a84c;
}

.luxury-stats {
  position: relative;
  padding: 7rem 0;
  background: #0f0f0f;
  overflow: hidden;
}

.stat-card svg{
    stroke: #c9a84c;
}

.luxury-stats::before {
  top: 25%;
  left: 25%;
  width: 24rem;
  height: 24rem;
  border: 1px solid rgba(201,168,76,0.2);
}

.luxury-stats::after {
  bottom: 25%;
  right: 25%;
  width: 16rem;
  height: 16rem;
  border: 1px solid rgba(201,168,76,0.1);
}



.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  text-align: center;
}

.stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.icon-wrapper {
  width: 4rem;
  height: 4rem;
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.stat-number {
  font-size: 45px; /* ~6xl */
  font-family: 'YourLuxuryFont', serif;
  background: linear-gradient(90deg, #e8d59c, #c9a84c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.75rem;
}

.divider {
  width: 2rem;
  height: 2px;
  background: rgba(201,168,76,0.3);
  margin-bottom: 0.75rem;
}

.stat-text {
  font-size: 0.625rem; /* ~10px */
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

.contact-inquiries {
  position: relative;
  padding: 10rem 2rem;
  overflow: hidden;
  color: #fff;
  text-align: center;
}

.background-wrapper {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.overlay-dark {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.75);
}

.overlay-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.92), transparent 50%, rgba(0,0,0,0.92));
}

.content-wrapper {
  position: relative;
  z-index: 10;
  max-width: 650px;
  margin: 0 auto;
}

.label {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.label .line {
  flex: 1;
  height: 1px;
  background: rgba(201,168,76,0.4);
}

.label span {
  font-size: 10px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: #c9a84c;
}

.content-wrapper h2 {
  font-size: 60px;
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  font-family: 'Georgia', serif;
}

.content-wrapper h2 span {
  background: linear-gradient(90deg, #e8d59c, #c9a84c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: italic;
}

.content-wrapper p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
  margin-bottom: 3rem;
}

.btn-inquiry {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 14px 32px;
  background-color: #c9a84c;
  color: #000;
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 0.2em;
  font-weight: 500;
  text-decoration: none;
  border-radius: 999px;
  transition: all 0.3s ease;
  box-shadow: 0 0 0 rgba(0,0,0,0);
}

.btn-inquiry:hover {
  background-color: #e0bc5b;
  box-shadow: 0 0 30px rgba(201,168,76,0.3);
}

.icon-arrow {
  width: 24px;
  height: 24px;
}   
.luxury-footer {
  background-color: #050505;
  border-top: 1px solid rgba(201,168,76,0.1);
  color: #fff;
}



.footer-top {
  display: flex;
  flex-direction: row;
  align-items: start;
  justify-content: space-between;
  gap: 2.5rem;
  padding: 4rem 0;
}

.footer-logo {
  max-width: 300px;
}
.footer-logo svg{
    stroke: #c9a84c;
}

.logo-group {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
}

.logo-group h2 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: #fff;
  margin-bottom: 10px;
}

.logo-group p {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: #99999966;
  margin: 0;
}

.footer-description {
  font-size: 12px;
  color: #99999966;
  margin-top: 1rem;
  line-height: 1.5;
}

.footer-links {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #99999966;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #c9a84c;
}

.footer-divider {
  border-top: 1px solid rgba(201,168,76,0.1);
  margin: 2rem 0;
}

.footer-bottom {
  display: flex;
  justify-content: start;
  align-items: center;
  padding-bottom: 2rem;
}

.footer-bottom p {
  font-size: 10px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.2em;
}
.about-bg {
  position: relative;
  min-height: 75vh !important;
  background-image: url(../images/about-bg.jpeg);
   background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Content wrapper */
.about-content {
  position: relative;
  z-index: 10;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
  margin-top: 180px;
}

.about-label {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  width: 180px;
}

.about-label .line {
  flex: 1;
  height: 1px;
  background-color: #c9a84c;
}

.about-label span {
  font-size: 10px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: #c9a84c;
}

/* Titles */
.about-title-light {
  font-size: 96px;
  line-height: 0.9;
  font-weight: 400;
  margin-bottom: 0.75rem;
  color: #f5f5f5;
   font-family: 'Georgia', serif;
   text-align: left;
}

.about-title-gold {
  font-size: 96px;
  line-height: 0.9;
  font-weight: 400;
  margin-bottom: 1rem;
  background: linear-gradient(90deg, #e8d59c, #c9a84c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
   font-family: 'Georgia', serif;
   text-align: left;
}

.about-description {
  font-size: 1.125rem;
  max-width: 550px;
  line-height: 1.6;
  color: rgba(255,255,255,0.8);
  text-align: left;
}

.philosophy-section {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  background-color: #000; /* fallback */
  color: #fff;
  
}

.grid-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 90vh;
}

.image-container {
  position: relative;
  min-height: 600px;
}

.image-hover-zoom {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.image-hover-zoom img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.image-hover-zoom:hover img {
  transform: scale(1.05);
}

/* Years of Mastery badge */
.years-of-mastery {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  background: rgba(0,0,0,0.9);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(201,168,76,0.2);
  padding: 1.5rem;
  text-align: center;
}

.years-number {
  font-size: 2.5rem;
  font-family: 'Georgia', serif;
  background: linear-gradient(90deg, #e8d59c, #c9a84c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0;
}

.years-text {
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-top: 0.25rem;
}

/* Content container */
.content-container {
  display: flex;
  align-items: center;
  background-color: #050505;
  padding: 5rem 2rem;
}

.content-inner {
  max-width: 520px;
  margin: 0 auto;
}

.label {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.label .line {
  flex: 1;
  height: 1px;
  background-color: #c9a84c;
}

.label span {
  font-size: 10px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: #c9a84c;
}

.title {
  font-size: 48px;
  line-height: 1.1;
  margin-bottom: 2.5rem;
  font-family: 'Georgia', serif;
}

.title span {
  background: linear-gradient(90deg, #e8d59c, #c9a84c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.description p {
  font-size: 15px;
  line-height: 1.9;
  color: #999999cc;
  margin-bottom: 1.5rem;
}

blockquote {
  margin-top: 2rem;
  padding-left: 1.5rem;
  border-left: 2px solid rgba(201,168,76,0.3);
}

blockquote p {
  font-style: italic;
  font-size: 0.875rem;
  line-height: 1.6;
  color: #99999980;
}
/* Section styling */
.craft-section {
  position: relative;
  padding: 8rem 2rem;
  background-color: #0f0f0f;
  overflow: hidden;
  font-family: 'Georgia', serif;
  color: #fff;
}

.decorative-circles .circle-large,
.decorative-circles .circle-small {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.05);
}

.decorative-circles .circle-large {
  top: 5rem;
  right: 5rem;
  width: 18rem;
  height: 18rem;
}

.decorative-circles .circle-small {
  bottom: 5rem;
  left: 5rem;
  width: 12rem;
  height: 12rem;
}

/* Section header */
.section-header {
  text-align: center;
  margin-bottom: 5rem;
}

.section-header span {
  display: block;
  font-size: 10px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: #c9a84c;
  margin-bottom: 1rem;
}

.section-header h2 {
  font-size: 60px;
  font-weight: 400;
  margin-bottom: 1rem;
}

.section-header h2 span {
  background: linear-gradient(90deg, #e8d59c, #c9a84c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 0px;
}

.section-header p {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  max-width: 500px;
  margin: 0 auto;
}

/* Grid for cards */
.craft-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

/* Card styling */
.craft-card {
  position: relative;
  background-color: #1a1a1a;
  border: 1px solid rgba(51,51,51,0.1);
  border-radius: 6px;
  padding: 2.5rem;
  overflow: hidden;
  transition: transform 0.5s ease;
}

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

.craft-card .card-top-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0.25rem;
  background: linear-gradient(to right, #c9a84c 10%, transparent);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.craft-card .emerald { background: linear-gradient(to right, #50c878 10%, transparent); }
.craft-card .amber { background: linear-gradient(to right, #ffbf00 10%, transparent); }

.craft-card:hover .card-top-bar {
  opacity: 1;
}



.craft-card h3 {
  font-size: 20px;
  margin-bottom: 1rem;
  transition: color 0.5s;
   font-family: 'Georgia', serif;
}

.craft-card:hover h3 {
  color: #c9a84c;
}

.craft-card p {
  font-size: 14px;
  color: #999999b2;
  line-height: 1.8;
}
.icon-circle {
  width: 3.5rem; /* w-14 */
  height: 3.5rem; /* h-14 */
  border-radius: 50%; /* rounded-full */
  background-color: rgba(201, 168, 76, 0.05); /* bg-gold-500/5 */
  border: 1px solid rgba(201, 168, 76, 0.1); /* border border-gold-500/10 */
  display: flex; /* flex */
  align-items: center; /* items-center */
  justify-content: center; /* justify-center */
  margin-bottom: 1.5rem; /* mb-6 */
  transition: border-color 0.5s; /* transition-colors duration-500 */
}

/* On hover for parent group */
.group:hover .icon-circle {
  border-color: rgba(201, 168, 76, 0.3); /* group-hover:border-gold-500/30 */
}

.life-in-art {
  padding: 8rem 2rem;
  font-family: 'Georgia', serif;
  background-color: #050505;
  color: #fff;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 60px;
  font-weight: 400;
}

.section-header h2 span {
  background: linear-gradient(90deg, #e8d59c, #c9a84c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

/* Card Styling */
.feature-card {
  display: flex;
  gap: 1.5rem;
  padding: 2rem;
  background-color: rgba(13, 13, 13, 0.3);
  border: 1px solid rgba(51, 51, 51, 0.1);
  border-radius: 6px;
  transition: transform 0.3s ease, background 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  background-color: rgba(201, 168, 76, 0.05);
}

/* Icon circle */
.icon-circle {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background-color: rgba(201,168,76,0.05);
  border: 1px solid rgba(201,168,76,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
  transition: all 0.5s ease;
}

.group:hover .icon-circle {
  background-color: rgba(201,168,76,0.1);
  border-color: rgba(201,168,76,0.3);
}

/* Card content */
.card-content {
  display: flex;
  flex-direction: column;
}

.card-label {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #c9a84c;
  margin-bottom: 0.5rem;
}

.card-text {
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.8);
}
.art{
    padding: 80px 0px;
    background: #0A0A0A;
}
.art h1{
    font-size: 48px;
    text-align: center;
    font-family: 'Georgia', serif;
    color: #fff;
    margin-bottom: 80px;
}
.art h1 span{
    color: #c9a84c;
}
.art-card{
    background: #1a1a1a4d;
    padding: 32px;
    display: flex;
    gap: 20px;
}
.art-card:hover{
    border: 1px solid #c9a84c;
}
.art-icon-circle {
  flex-shrink: 0; /* prevent shrinking */
  width: 3.5rem;  /* w-14 = 56px */
  height: 3.5rem; /* h-14 = 56px */
  border-radius: 50%; /* rounded-full */
  background-color: rgba(201, 168, 76, 0.05); /* bg-gold-500/5 */
  border: 1px solid rgba(201, 168, 76, 0.1);   /* border-gold-500/10 */
  display: flex; /* flex container */
  align-items: center; /* vertical centering */
  justify-content: center; /* horizontal centering */
  transition: background-color 0.5s ease; /* transition-colors duration-500 */
}

/* Hover effect for parent group */
.group:hover .art-icon-circle {
  background-color: rgba(201, 168, 76, 0.1); /* bg-gold-500/10 on hover */
}
.art-icon-circle svg{
    color: #c9a84c;
}
.art-card h3{
    color: #c9a84c;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 10px;
}
.art-card p{
    color: #999999cc;
    font-size: 16px;
}
.recog{
    padding: 80px 0px;
    background: #0f0f0f;
}
.recog h5{
    color: #c9a84c;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 5px;
    text-align: center;
}
.recog h1{
    font-size: 48px;
    text-align: center;
    font-family: 'Georgia', serif;
    color: #fff;
    margin-bottom: 80px;
}
.recog h1 span{
    color: #c9a84c;
}
.recog-bx{
    padding: 16px;
    display: flex;
    gap: 10px;
    align-items: center;
}
.recog-bx:hover{
    border: 1px solid #c9a84c;
}
.recog-bx svg{
    color: #c9a84c;
}
.recog-bx p{
font-size: 14px;
color: #999999b3;
margin-bottom: 0px;
}
.recog h6{
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color:#9999994d;
    margin-top: 80px;
    text-align: center;
}
.collection-section {
  padding: 8rem 2rem;
  background-color: #000; /* optional, black background */
  font-family: 'Georgia', serif;
  color: #fff;
}


/* Label */
.section-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.section-label .exp-line {
  flex: 1;
  height: 1px;
  background-color: rgba(201,168,76,0.4); /* gold line */
}

.section-label span {
  font-size: 10px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: #c9a84c;
}

/* Title */
.section-title {
  font-size: 2.5rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
}

.section-title span {
  background: linear-gradient(90deg, #e8d59c, #c9a84c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Description */
.section-description {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

/* Button */
.btn-view-collection {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 14px 32px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 500;
  background-color: #c9a84c; /* gold */
  color: #000;
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 0 0 rgba(0,0,0,0);
}

.btn-view-collection:hover {
  background-color: #e0bc5b; /* lighter gold */
  box-shadow: 0 0 30px rgba(201,168,76,0.3);
}

/* Arrow icon inside button */
.icon-arrow {
  width: 24px;
  height: 24px;
}

.jewel-bg {
  position: relative;
  min-height: 75vh !important;
  background-image: url(../images/jewel-bg.jpg);
   background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.jewel-label svg{
    color: #e0bc5b;
}
.jewel-label {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    width: 200px;
}
.jewel-label span {
    font-size: 10px;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    color: #c9a84c;
}

.jewel-page {
  padding: 5rem 2rem;
  background-color: #050505;
  font-family: 'Georgia', serif;
  color: #fff;
}

.jewel-page .container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Jewel Image */
.jewel-img {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1.2;
  overflow: hidden;
  border-radius: 6px;
  background-color: #0d0d0d;
  cursor: pointer;
}

.jewel-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 2.5rem;
  transition: transform 1s ease;
}

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

/* Corners */
.jewel-corner {
  position: absolute;
  width: 3rem;
  height: 3rem;
  transition: all 0.7s ease;
}

.jewel-top-left {
  top: 1.5rem;
  left: 1.5rem;
  border-top: 2px solid rgba(201,168,76,0);
  border-left: 2px solid rgba(201,168,76,0);
}

.jewel-bottom-right {
  bottom: 1.5rem;
  right: 1.5rem;
  border-bottom: 2px solid rgba(201,168,76,0);
  border-right: 2px solid rgba(201,168,76,0);
}

.jewel-img:hover .jewel-corner {
  border-color: rgba(201,168,76,0.3);
}

/* Jewel Info */
.jewel-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem 1rem;
}

.jewel-label {
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: #c9a84c;
  margin-bottom: 1rem;
}

.title {
  font-size: 3rem;
  margin-bottom: 1rem;
  transition: color 0.5s;
}

.jewel-page .group:hover .title {
  color: #c9a84c;
}

.material {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.5rem;
}

.size {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1.5rem;
}

/* View & Inquire Button */
.jewel-inquire {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #c9a84c;
  text-decoration: none;
  transition: gap 0.3s;
}

.jewel-inquire:hover {
  gap: 1rem;
}

.jewel-inquire .arrow {
  font-weight: bold;
}
.jewel-sub{
    background-color: #050505;
    padding: 80px;
}
.jewel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* exactly 2 columns per row */
  gap: 40px;
}

.painting-bg {
  position: relative;
  min-height: 100vh !important;
  background-image: url(../images/painting-bg.jpg);
   background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.painting-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}
.shadow-image a {
  display: block;
  width: 100%;
  height: 100%;
}
.shadow-image .corner,
.shadow-image .view-inquire {
  opacity: 0;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.shadow-image:hover .corner,
.shadow-image:hover .view-inquire {
  opacity: 1;
}
/* Maximize Icon */
.maximize-icon {
  position: absolute;
  top: 1rem;
  right: 1rem;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.group:hover .maximize-icon {
  opacity: 1;
}

.maximize-icon svg {
  width: 1.25rem; /* 3.5 in tailwind = 14px */
  height: 1.25rem;
  stroke: rgba(201,168,76,0.7);
}

.process-section {
  position: relative;
  padding: 7rem 2rem;
  background-color: #0f0f0f;
  color: #fff;
  font-family: 'Georgia', serif;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Grid Layout */
.grid-2-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
  align-items: center;
}

/* Image wrapper */
.image-wrapper {
  position: relative;
}

.main-image {
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 6px;
}

.main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shadow-box-detail {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 8rem;
  height: 8rem;
  border: 2px solid #0d0d0d;
  border-radius: 6px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.5);
  overflow: hidden;
}

.shadow-box-detail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Content wrapper */
.content-wrapper {}

.label {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.label .line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201,168,76,0.2), transparent);
}

.label span {
  font-size: 10px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: #c9a84c;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
}

.section-title span {
  background: linear-gradient(90deg, #e8d59c, #c9a84c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.content-wrapper .description {
 font-size: 15px;
    line-height: 1.7;
    color: #999999b2;
    margin-bottom: 3rem;
    letter-spacing: 1px;
    font-weight: 200;
}

.content-wrapper .quote {
  font-size: 14px;
    line-height: 1.7;
    color: #99999980;
    margin-bottom: 3rem;
    letter-spacing: 1px;
    font-weight: 200;
}

/* Stats */
.stats {
  display: flex;
  gap: 5rem;
}

.stats .number {
  font-size: 2rem;
  background: linear-gradient(90deg, #e8d59c, #c9a84c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.5rem;
}

.stats p {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.container-max{
  max-width: 1400px;
  margin: 0 auto;
}
.sml-img{
  aspect-ratio: 3/4; /* changed from 4/5 to 3/4 */
  overflow: hidden;
  border-radius: 6px;
}
.journal-hero{
  background: #000;
  padding: 180px 0px;
  margin-top: -90px;
}
.journal-hero h3{
  font-size: 11px;
  color: #c9a84c;
  text-transform: uppercase;
  letter-spacing: 3px;
  text-align: center;
  margin-bottom: 16px;
  margin-top: 50px;
}
.journal-hero h1{
  font-size: 60px;
  color: #e8e0d0;
  margin-bottom: 24px;
  text-align: center;
    font-family: 'Georgia', serif;
}
.journal-hero p{
  font-size: 16px;
  color: #999999;
  margin-bottom: 24px;
  text-align: center;
  letter-spacing: 1px;
}
.blog {
    background: #000;
    padding: 80px 0;
}



.blog-image img {
    width: 100%;
    display: block;
    object-fit: cover;
}

.blog-content {
    color: #fff;
    text-align: center;
    /* width: 500px; */
}

.blog-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 25px;
}

.category {
    display: inline-block;
    padding: 8px 18px;
    border: 1px solid #9d7b2e;
    color: #d4af37;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.date {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #8c8c8c;
    font-size: 13px;
    text-transform: uppercase;
}

.blog-content h2 {
     font-family: 'Georgia', serif;
     font-size: 30px;
     line-height: 46px;
     font-weight: 400;
     margin-bottom: 30px;
     color: #f5e8c7;
     width: 100%;
}

.blog-content p {
        font-size: 16px;
    line-height: 26px;
    letter-spacing: 1px;
    color: #999999;
    margin-bottom: 40px;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #d4af37;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 13px;
    transition: 0.3s;
}

.read-more:hover {
    color: #fff;
    transform: translateX(5px);
}
/* Blog Image */
.blog-image {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  cursor: pointer;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.group:hover img {
  transform: scale(1.05);
}

/* Overlay */
.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.2);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.group:hover .overlay {
  opacity: 1;
}

/* Corners */
.corner {
  position: absolute;
  width: 3rem;
  height: 3rem;
  border-width: 2px;
  border-style: solid;
  border-color: #c9a84c;
  transition: border-color 0.7s ease;
}

.top-left { top: 1rem; left: 1rem; border-top: 2px solid #c9a84c; border-left: 2px solid #c9a84c; }
.bottom-right { bottom: 1rem; right: 1rem; border-bottom: 2px solid #c9a84c; border-right: 2px solid #c9a84c; }

.group:hover .corner {
  border-color: #c9a84c;
}

.contact-section {
  background-color: #050505;
  padding: 4rem 2rem;
  
  color: #fff;
}

.contact-form {
  max-width: 740px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Row for first/last name */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* Form Groups */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.form-group label {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.form-group input,
.form-group textarea {
  width: 100%;
  background: #121212;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  color: #fff;
  padding: 1rem 1rem;
  font-size: 0.9rem;
  outline: none;
  font-family: 'Georgia', serif;
  transition: border 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #c9a84c;
  box-shadow: 0 0 5px rgba(201,168,76,0.5);
}

textarea {
  resize: none;
  min-height: 150px;
}

/* Submit Button */
.btn-send {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-color: #c9a84c;
  color: #050505;
  font-weight: bold;
  text-transform: uppercase;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.btn-send svg {
  width: 24px;
  height: 24px;
}

.btn-send:hover {
  background-color: #e1c15c;
  box-shadow: 0 0 20px rgba(201,168,76,0.35);
}

/* Form note */
.form-note {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  text-align: center;
}

/* Responsive for mobile */
@media (max-width: 640px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}
.form-note {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
}

/* Studio Info */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-info .studio-img {
  width: 100%;
  border-radius: 6px;
  object-fit: cover;
}

.studio-details h4,
.studio-visits h4,
.studio-note h4 {
  font-size: 10px;
  letter-spacing: 3px;
  color: #c9a84c;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.studio-details p,
.studio-visits p,
.studio-note p {
  font-size: 14px;
  line-height: 1.6;
  color: #999;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.icon {
  color: #c9a84c;
}

.jewel-sub-page {
      background-color: #050505;
    color: #fff;
    padding: 180px 0px;
    
    margin-top: -90px;
}

.back-link {
  display: inline-block;
  color: #c9a84c;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  text-decoration: none;
  font-family: 'Georgia', serif;
}

.jewel-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.jewel-image {
  background: #121212;
  padding: 1rem;
  border-radius: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.jewel-image img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
  box-shadow: 0 0 40px rgba(201,168,76,0.3);
}

.jewel-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.jewel-tag {
  font-size: 0.625rem;
  letter-spacing: 0.25em;
  color: #c9a84c;
  text-transform: uppercase;
  font-family: 'Georgia', serif;
}

.jewel-title {
  font-size: 2.5rem;
  color: #fff;
  border-bottom: 1px solid #c9a84c;
  padding-bottom: 0.25rem;
  margin-bottom: 1rem;
  font-family: 'Georgia', serif;
    text-transform:uppercase;
}

.jewel-meta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.meta-label {
  font-size: 0.625rem;
  color: #c9a84c;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.jewel-meta p {
  margin: 0.25rem 0 0 0;
  font-size: 0.875rem;
  color: #ccc;
}

.materials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.25rem;
}

.materials span {
  background: #121212;
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  color: #ccc;
  border-radius: 4px;
}

.jewel-note {
  background: #121212;
  padding: 0.75rem 1rem;
  border-radius: 4px;
  font-size: 0.75rem;
  color: #ccc;
  
}
.jewel-note p{
margin-bottom: 0px;
}
.btn-inquire {
 display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 14px 32px;
    background-color: #c9a84c;
    color: #000;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.2em;
    font-weight: 600;
    text-decoration: none;
    
    transition: all 0.3s ease;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
    justify-content: center;
}
.btn-inquire .arrow-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  overflow: visible; /* prevent clipping */
}
.btn-inquire:hover {
  background-color: #e1c15c;
  box-shadow: 0 0 20px rgba(201,168,76,0.4);
}

/* Responsive */
@media (max-width: 992px) {
  .jewel-content {
    grid-template-columns: 1fr;
  }
}

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

#heroCanvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1; /* above the particles */
  text-align: center;
  color: white;
}
.cart-bx{
    background:#0f0f0f;
}
 .cart-container {
    /* margin: 50px auto; */
    padding: 80px 0px;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
  }

  /* Cart Items Section */
  .cart-items {
    flex: 2;
    /* background: #fff; */
    padding: 20px;
    border-radius: 10px;
  }

  .cart-item {
    display: flex;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #c9a84c;
    position: relative;
  }
  .cart-items h2{
      font-family: 'Georgia', serif;
      color: #c9a84c;
  }

  .cart-item img {
    width: 120px;
    height: auto;
    border-radius: 8px;
    margin-right: 20px;
  }

  .item-details h3 {
    margin: 0 0 8px 0;
    font-size: 1.2em;
    color: #c9a84c;
  }

  .item-details p {
    margin: 0 0 10px 0;
    font-weight: bold;
    color: #999999b3;
  }

  .quantity {
    display: flex;
    gap: 10px;
    align-items: center;
  }

  .quantity input {
    width: 50px;
    text-align: center;
    padding: 5px;
    border-radius: 5px;
    border: 1px solid #ccc;
  }

  .qty-btn {
    background: #222;
    color: #fff;
    border: none;
    width: 30px;
    height: 30px;
    cursor: pointer;
    border-radius: 5px;
    font-weight: bold;
  }

  .remove-btn {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 1.5em;
    cursor: pointer;
  }

  /* Order Summary */
  .order-summary {
    flex: 1;
    /* background: #fff; */
    padding: 25px;
    border-radius: 10px;
    height: fit-content;
  }

  .order-summary h3 {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 1.5em;
    border-bottom: 1px solid #ffffff;
    padding-bottom: 10px;
    font-family: 'Georgia', serif;
    color: #c9a84c;
  }

  .order-summary p {
    font-size: 1.1em;
    margin: 10px 0;
    display: flex;
    justify-content: space-between;
    color: #999999b3;
  }

  .order-summary input {
    width: 100%;
    padding: 10px;
    margin: 10px 0 20px 0;
    border-radius: 5px;
    border: 1px solid #c9a84c;
    background: #121212;
    color: #fff;
  }

 
  .checkout-btn-1{
          display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.4s ease;
    background: #c9a84c;
    border: none;
    margin-bottom:20px;
    width:100%;
    justify-content:center;
  }
 .continue-btn-2 {
          display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.4s ease;
    width:100%;
    justify-content:center;
  }
  .checkout-btn-1:hover {
    background: #e0bc5b;
    color: #000;
    box-shadow: 0 0 30px rgba(201, 168, 76, 0.35);
}
.continue-btn-2:hover {
    background: #e0bc5b;
    color: #000;
    box-shadow: 0 0 30px rgba(201, 168, 76, 0.35);
}

  /* Responsive */
  @media(max-width:900px){
    .cart-container{
      flex-direction: column;
    }
  }
  .checkout-bx{
          background: #0f0f0f;
  }
  .checkout-container {
  padding: 80px 0px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.checkout-form .form-section {
  margin-bottom: 30px;
}

.checkout-form h2 {
  font-size: 1.5em;
  margin-bottom: 15px;
  text-align: center;
      font-family: 'Georgia', serif;
  padding-bottom: 15px;
  color:#c9a84c;
}

.checkout-form input {
  width: 100%;
  padding: 12px 15px;
  margin: 10px 0;
  border-radius: 6px;
  font-size: 1em;
  background: #121212;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
}

.checkout-form .card-row {
  display: flex;
  gap: 15px;
}

.checkout-form .card-row input {
  flex: 1;
}

.submit-btn {
 display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.4s ease;
        width: 100%;
    justify-content: center;
    background: #c9a84c;
    border: none;
}
.submit-btn:hover {
    background: #e0bc5b;
    color: #000;
    box-shadow: 0 0 30px rgba(201, 168, 76, 0.35);
}
/*dashboard*/
.tab-content{
    display:none;
}

.active-tab{
    display:block;
}
.dash-bx{
    padding:80px 0px;
    background: #0f0f0f;
}
.sidebar-box{
    background-color: #1a1a1a;
    padding: 40px 20px;
    border-radius: 10px;
}
.sidebar-box ul{
    padding-left: 0px;
}
.sidebar-box ul li {
    list-style: none;
    margin-bottom: 15px;
}

.sidebar-box ul li a {
    display: block;
    padding: 12px 30px;
    border-radius: 10px;
    text-align: left;

    background: transparent;
    color: #fff; 
    text-decoration: none;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.sidebar-box ul li a:hover {
    background: #c9a84c;
    color: #000; 
}

.sidebar-box ul li.active a {
    background: #c9a84c;
    color: #000; 
}
.tab-content{
       padding: 0px 20px;
    border-radius: 10px;
}
.welcome-card{
    background: #1a1a1a;
    border-radius: 15px;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    color: #c9a84c;
}
.stats-card{
    background: #1a1a1a;
    padding: 20px;
    border-radius: 15px;
    color:#fff;
}
.card{
        background: #1a1a1a;
    border-radius: 20px;
    padding: 22px 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
}
.card h4{
    color: #c9a84c;
}
.table{
    --bs-table-bg: transparent;
    color: white;
}
.table td{
    color:#fff;
}
.table th{
    color:#fff;
}
.profile-wrapper {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 25px;
}
.profile-card {
    background: #1a1a1a;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
}
.profile-img-wrap {
    position: relative;
    width: 140px;
    height: 140px;
    margin: auto;
}
.profile-img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #c9a84c;
}
.upload-btn {
    position: absolute;
    bottom: 0;
    right: 0;
    background: #c9a84c;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.profile-card h3 {
    margin-top: 15px;
    font-weight: 600;
    color: #fff;
    font-family: 'Georgia', serif;
}
.profile-details h3{
   color: #c9a84c;
    font-family: 'Georgia', serif;
}
.profile-details form label{
    color:#fff;
}
.profile-details .form-control{
    width: 100%;
    background: #121212;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    color: #fff;
    padding: 1rem 1rem;
    font-size: 0.9rem;
    outline: none;
    font-family: 'Georgia', serif;
    transition: border 0.3s ease, box-shadow 0.3s ease;
}
.form-btn{
        display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background-color: #c9a84c;
    color: #050505;
    font-weight: bold;
    text-transform: uppercase;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}
.fa-shopping-cart {
    font-size: 24px;
    color: #c9a84c;
    cursor: pointer;
    transition: color 0.3s ease;
}

.fa-shopping-cart:hover {
    color: #b8943f;
}
.auth-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.4s ease;
    border: 1px solid #c9a84c;
    color: #c9a84c;
    margin-left:20px;
}

.auth-btn:hover {
    background: #b8943f;
    color: #000;
}

.auth-btn i {
    font-size: 16px;
}
.auth-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding:80px 0px;
    background: #0f0f0f;
  }

  .auth-box {
    background: #1c1c1c;
    border-radius: 10px;
    width: 400px;
    padding: 40px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    position: relative;
    overflow: hidden;
  }

  .auth-box h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2rem;
    color: #f5f5f5;
  }

  .form-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    transition: 0.5s ease;
  }

  .form-container input {
    padding: 12px 15px;
    border-radius: 0px;
    border: 1px solid #444;
    background: #121212;
    color: #fff;
    font-size: 1rem;
  }

  .form-container button {
    padding: 12px;
    /* border-radius: 10px; */
    border: none;
    font-weight: 500;
    background: #c9a84c;
    color: #fff;
    cursor: pointer;
    transition: 0.3s;
     border: 2px solid #c9a84c;
      padding: 14px 32px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
  }

  .form-container button:hover {
    background: #fff;
    color: #c9a84c;
    border: 2px solid #fff;
  }

  .toggle-btn {
    margin-top: 10px;
    text-align: center;
    cursor: pointer;
    color: #c9a84c;
    font-weight: 500;
  }

  .toggle-btn:hover {
    text-decoration: underline;
  }

  /* ===== Slide effect ===== */
  .signup-form {
    display: none;
    flex-direction: column;
    gap: 15px;
  }
.modal-content{
    max-height:90vh;
    background:#141414;
    padding:50px;
    font-family: 'Georgia', serif;
}
 .modal-content h3{
         font-size: 10px;
    letter-spacing: 3px;
    color: #c9a84c;
    margin-bottom:10px;
 }
 .modal-content h1{
         font-size: 20px;
         line-height:28px;
    color: #e8e0d0;
    margin-bottom:20px;
 } 
 .modal-content .btn-send {
     display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 14px 32px;
    background-color: #c9a84c;
    color: #000;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.2em;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
    justify-content: center;
 }
 /* Highlight invalid inputs */
input.invalid, textarea.invalid {
    border: 2px solid #dc2626 !important;
}
.blog-1-bg {
  position: relative;
  min-height: 75vh !important;
  background-image: url(../images/museum-jewelry-collection.jpg);
   background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
 .blog-2-bg {
  position: relative;
  min-height: 75vh !important;
  background-image: url(../images/cloisonne-enamel-technique.jpg);
   background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.blog-title{
    font-size:48px;
    line-height: 0.9;
    font-weight: 400;
    margin-bottom: 0.75rem;
    color: #f5f5f5;
    font-family: 'Georgia', serif;
    text-align: left;
}
.blog-con{
    background:#0A0A0A;
    padding:100px 0px;
}
.blog-con .inner-con{
    padding:0px 150px;
}
.blog-con h1{
    padding-top:48px;
    padding-bottom:20px;
     font-family: 'Georgia', serif;
     font-size:30px;
    line-height:36px;
    color:#e8e0d0;
}
.blog-con h2{
    padding-top:28px;
    padding-bottom:20px;
     font-family: 'Georgia', serif;
     font-size:20px;
    line-height:26px;
    color:#e8e0d0;
}
.blog-con p{
    margin-bottom:30px;
    font-size:16px;
    line-height:24px;
    color:#999999;
}
.blog-con hr{
    border-color:#333333;
    margin:40px 0px;
}
.tags-con{
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 50px;
}
.tags-con .tags{
    border: 1px solid #c9a84c;
    border-radius: 20px;
    font-size: 9px;
    color: #c9a84c;
    text-transform: uppercase;
    padding: 4px 12px;
}
.tags-con p{
   font-size: 10px;
    color: #99999980;
    margin-bottom: 0px;
    text-transform: uppercase;
    letter-spacing: 2.25px;
}
.name-bx{
        background: #0f0f0f80;
    text-align: center;
    padding: 20px 0px;
    color: #e7dfcfcc;
    font-size: 20px;
    font-weight: 400;
    font-family: 'Georgia', serif;
}