/* =====================================================
   Adorn by Akanksha – Main Stylesheet
   Jewellery Theme: Gold, Rose Gold, Ivory
   ===================================================== */

:root {
    --gold: #C9A84C;
    --gold-light: #E8CC80;
    --gold-dark: #9A7B2E;
    --rose-gold: #B76E79;
    --rose-gold-light: #D4959E;
    --ivory: #FAF7F0;
    --dark: #1A1A1A;
    --gray-light: #F5F0EA;
    --gray-mid: #8C7B6E;
    --white: #FFFFFF;
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Montserrat', sans-serif;
}

/* ===== Base ===== */
html, body {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    color: var(--dark);
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
    font-family: var(--font-serif);
    font-weight: 400;
}

/* ===== Navbar ===== */
#mainNav {
    background-color: rgba(26, 26, 26, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 1rem 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}

#mainNav.scrolled {
    background-color: rgba(26, 26, 26, 0.97);
    padding: 0.6rem 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.navbar-brand {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    letter-spacing: 0.5px;
    color: var(--white) !important;
}

.brand-adorn {
    color: var(--gold-light);
    font-style: italic;
    font-size: 1.6rem;
}

.brand-by {
    color: rgba(255,255,255,0.6);
    font-size: 1rem;
    font-style: italic;
    margin: 0 4px;
}

.brand-name {
    color: var(--white);
    font-weight: 600;
    font-size: 1.6rem;
    letter-spacing: 1px;
}

#mainNav .nav-link {
    color: rgba(255,255,255,0.85) !important;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin: 0 0.4rem;
    padding: 0.5rem 0.75rem !important;
    position: relative;
    transition: color 0.3s ease;
}

#mainNav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background-color: var(--gold);
    transition: width 0.3s ease;
}

#mainNav .nav-link:hover,
#mainNav .nav-link.active {
    color: var(--gold-light) !important;
}

#mainNav .nav-link:hover::after {
    width: 70%;
}

.instagram-link {
    color: var(--rose-gold-light) !important;
    border: 1px solid var(--rose-gold);
    border-radius: 20px;
    padding: 0.4rem 1rem !important;
    margin-left: 0.5rem !important;
    transition: all 0.3s ease !important;
}

.instagram-link:hover {
    background-color: var(--rose-gold) !important;
    color: white !important;
    border-color: var(--rose-gold) !important;
}

.instagram-link::after {
    display: none !important;
}

/* ===== Hero Section ===== */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, #1A1A1A 0%, #2D2420 50%, #1A1A1A 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(201, 168, 76, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.hero-ornament {
    color: var(--gold);
    font-size: 1rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-ornament::before,
.hero-ornament::after {
    content: '◆';
    font-size: 0.5rem;
    color: var(--gold-dark);
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 7vw, 6rem);
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 0.5rem;
}

.hero-title span {
    color: var(--gold);
    font-style: italic;
}

.hero-subtitle {
    font-family: var(--font-serif);
    font-size: clamp(1.2rem, 3vw, 2rem);
    color: rgba(255,255,255,0.7);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.hero-text {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 480px;
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
    border: none;
    color: var(--dark);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 0.9rem 2.5rem;
    border-radius: 0;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-gold:hover {
    background: linear-gradient(135deg, var(--gold), var(--gold-light), var(--gold));
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201, 168, 76, 0.35);
    color: var(--dark);
}

.btn-outline-gold {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 0.9rem 2.5rem;
    border-radius: 0;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-outline-gold:hover {
    background-color: var(--gold);
    color: var(--dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201, 168, 76, 0.25);
}

.hero-image-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-frame {
    position: relative;
    width: 100%;
    max-width: 480px;
}

.hero-image-frame::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    right: 15px;
    bottom: 15px;
    border: 1px solid var(--gold);
    opacity: 0.4;
    z-index: 1;
    pointer-events: none;
}

.hero-image-frame::after {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    right: -15px;
    bottom: -15px;
    border: 1px solid var(--rose-gold);
    opacity: 0.3;
    z-index: 1;
    pointer-events: none;
}

.hero-img {
    width: 100%;
    height: 560px;
    object-fit: cover;
    display: block;
    position: relative;
    z-index: 2;
}

/* ===== Section Titles ===== */
.section-badge {
    display: inline-block;
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 0.75rem;
}

.section-title span {
    color: var(--gold);
    font-style: italic;
}

.section-title-white {
    color: var(--white);
}

.section-divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
    margin: 1rem auto;
}

.section-divider-left {
    margin-left: 0;
}

/* ===== Featured Section ===== */
.featured-section {
    padding: 5rem 0;
    background-color: var(--ivory);
}

.product-card {
    background: var(--white);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(201, 168, 76, 0.15);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
    border-color: rgba(201, 168, 76, 0.4);
}

.product-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.product-card-body {
    padding: 1.5rem;
    border-top: 1px solid rgba(201, 168, 76, 0.2);
}

.product-card-title {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    color: var(--dark);
    margin-bottom: 0.25rem;
}

.product-card-tag {
    font-size: 0.75rem;
    color: var(--gold);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

/* ===== Instagram Banner ===== */
.instagram-banner {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--dark) 0%, #2D1F1F 100%);
    text-align: center;
}

.instagram-banner .ig-icon {
    font-size: 2.5rem;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.instagram-banner h3 {
    font-family: var(--font-serif);
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.instagram-banner p {
    color: rgba(255,255,255,0.6);
    margin-bottom: 1.5rem;
}

.btn-instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    border: none;
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 0.9rem 2.5rem;
    border-radius: 30px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-instagram:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 39, 67, 0.35);
    color: white;
}

/* ===== Page Header ===== */
.page-header {
    padding: 10rem 0 5rem;
    background: linear-gradient(135deg, #1A1A1A 0%, #2D2420 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(ellipse at center, rgba(201, 168, 76, 0.07) 0%, transparent 70%);
}

.page-header h1 {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: var(--white);
}

.page-header h1 span {
    color: var(--gold);
    font-style: italic;
}

.page-header p {
    color: rgba(255,255,255,0.6);
    font-size: 1rem;
}

.breadcrumb {
    justify-content: center;
    background: none;
    padding: 0;
}

.breadcrumb-item a {
    color: var(--gold);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: rgba(255,255,255,0.5);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255,255,255,0.3);
}

/* ===== About Page ===== */
.about-section {
    padding: 5rem 0;
    background-color: var(--ivory);
}

.about-image-frame {
    position: relative;
}

.about-image-frame::before {
    content: '';
    position: absolute;
    top: -12px;
    left: -12px;
    right: 12px;
    bottom: 12px;
    border: 2px solid var(--gold);
    opacity: 0.4;
    z-index: 1;
}

.about-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    position: relative;
    z-index: 2;
    display: block;
}

.about-lead {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    color: var(--gray-mid);
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.about-text {
    color: #555;
    line-height: 1.9;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.value-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: var(--white);
    border: 1px solid rgba(201, 168, 76, 0.15);
    transition: all 0.3s ease;
    height: 100%;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    border-color: var(--gold);
}

.value-icon {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.value-card h5 {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.value-card p {
    font-size: 0.85rem;
    color: var(--gray-mid);
    line-height: 1.7;
    margin: 0;
}

/* ===== Gallery Page ===== */
.gallery-section {
    padding: 5rem 0;
    background-color: var(--white);
}

.gallery-grid {
    columns: 3;
    column-gap: 1rem;
}

@media (max-width: 768px) {
    .gallery-grid {
        columns: 2;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        columns: 1;
    }
}

.gallery-item {
    break-inside: avoid;
    margin-bottom: 1rem;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    border: 1px solid rgba(201, 168, 76, 0.15);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

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

.gallery-item img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 26, 26, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-overlay i {
    font-size: 2rem;
    color: var(--gold);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.95);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    border: 1px solid rgba(201, 168, 76, 0.3);
}

.lightbox-close {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    opacity: 0.7;
    transition: opacity 0.2s;
    background: none;
    border: none;
    padding: 0;
}

.lightbox-close:hover {
    opacity: 1;
    color: var(--gold);
}

/* ===== Contact Page ===== */
.contact-section {
    padding: 5rem 0;
    background-color: var(--ivory);
}

.contact-info-card {
    background: var(--dark);
    color: var(--white);
    padding: 3rem 2.5rem;
    height: 100%;
}

.contact-info-card h3 {
    font-family: var(--font-serif);
    color: var(--gold-light);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact-info-card p {
    color: rgba(255,255,255,0.65);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-item-icon {
    width: 42px;
    height: 42px;
    background: rgba(201, 168, 76, 0.15);
    border: 1px solid rgba(201, 168, 76, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
}

.contact-item-text h6 {
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.25rem;
}

.contact-item-text p, .contact-item-text a {
    color: rgba(255,255,255,0.75);
    font-size: 0.9rem;
    margin: 0;
    text-decoration: none;
}

.contact-item-text a:hover {
    color: var(--gold-light);
}

.contact-form-card {
    background: var(--white);
    padding: 3rem 2.5rem;
    border: 1px solid rgba(201, 168, 76, 0.15);
    height: 100%;
}

.contact-form-card h3 {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 0.25rem;
}

.contact-form-card .subtitle {
    color: var(--gray-mid);
    font-size: 0.85rem;
    margin-bottom: 2rem;
}

.form-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gray-mid);
    margin-bottom: 0.4rem;
}

.form-control {
    border: 1px solid rgba(201, 168, 76, 0.25);
    border-radius: 0;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    background-color: var(--ivory);
    color: var(--dark);
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
    background-color: var(--white);
}

.alert-success-custom {
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid rgba(201, 168, 76, 0.4);
    color: var(--gold-dark);
    border-radius: 0;
    padding: 1rem 1.5rem;
    font-size: 0.9rem;
}

/* ===== Footer ===== */
.site-footer {
    background-color: #111111;
    padding: 4rem 0 2rem;
}

.footer-brand {
    font-family: var(--font-serif);
    color: var(--gold-light);
    font-size: 1.5rem;
    font-style: italic;
    margin-bottom: 0.75rem;
}

.footer-tagline {
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
    line-height: 1.7;
}

.footer-heading {
    color: var(--gold);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--gold);
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 50%;
}

.social-icon:hover {
    background: var(--rose-gold);
    border-color: var(--rose-gold);
    color: white;
    transform: translateY(-3px);
}

.footer-contact {
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
}

.footer-divider {
    border-color: rgba(255,255,255,0.08);
    margin: 2rem 0 1.5rem;
}

.footer-copyright {
    color: rgba(255,255,255,0.3);
    font-size: 0.8rem;
    margin: 0;
}

/* ===== Utilities ===== */
.text-gold {
    color: var(--gold) !important;
}

.bg-dark-custom {
    background-color: var(--dark);
}

.py-section {
    padding: 5rem 0;
}

/* ===== Animations ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}
