:root {
    --primary-color: #1a1a1a;
    --accent-color: #c5a059;
    --bg-color: #ffffff;
    --text-color: #1a1a1a;
    --text-muted: #666666;
    --border-color: #eeeeee;
    --section-padding: 80px 0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Playfair Display', serif; /* Elegant serif for luxury */
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, .logo {
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

p, a, span, input, button, textarea {
    font-family: 'Inter', sans-serif;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    background: white;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    color: var(--primary-color);
    white-space: nowrap;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a:hover {
    color: var(--accent-color);
}

.nav-icons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    background: none;
    border: none;
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    height: 80vh;
    min-height: 500px;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('https://images.unsplash.com/photo-1490481651871-ab68de25d43d?q=80&w=2000&auto=format&fit=crop') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 0 20px;
}

.hero-content {
    max-width: 800px;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.btn-luxury {
    display: inline-block;
    padding: 15px 40px;
    background: var(--accent-color);
    color: white;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 2px;
    margin-top: 20px;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}

.btn-luxury:hover {
    background: #b08d4a;
    transform: translateY(-2px);
}

/* Collections Grid */
.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    position: relative;
    padding-bottom: 15px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: var(--accent-color);
}

.collections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.collection-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.collection-img-wrapper {
    overflow: hidden;
    height: 500px;
}

.collection-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.collection-card:hover .collection-img {
    transform: scale(1.1);
}

.collection-info {
    padding: 20px 0;
    text-align: center;
}

.collection-info h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.collection-info p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Footer */
footer {
    background: #111;
    color: white;
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-col h4 {
    margin-bottom: 25px;
    font-size: 1.1rem;
    color: white;
}

.footer-col p, .footer-col li {
    color: #aaa;
    font-size: 0.95rem;
    margin-bottom: 12px;
}

.footer-col ul li a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid #222;
    font-size: 0.85rem;
    color: #666;
}

/* Dynamic Pages */
#page-content {
    padding: 60px 0;
}

.filters-bar {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 25px;
    border: 1px solid var(--border-color);
    background: white;
    cursor: pointer;
    transition: 0.3s;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.filter-btn.active, .filter-btn:hover {
    background: var(--accent-color);
    color: white;
    border-color: var(--accent-color);
}

/* Detail Page */
.detail-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: start;
}

.detail-img {
    width: 100%;
    height: 800px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.detail-info {
    padding-top: 20px;
}

.detail-info h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    line-height: 1.1;
}

.detail-info .category {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 25px;
    display: block;
    font-size: 1.1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.detail-info .desc {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    line-height: 1.8;
}

/* Forms (Contact/Order) */
.form-container {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.9rem;
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    background: #f9f9f9;
    font-size: 1rem;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    background: white;
}

/* Tablet Responsive (max-width: 1024px) */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 3rem;
    }

    .detail-grid {
        gap: 40px;
    }

    .detail-info h1 {
        font-size: 2.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Mobile Responsive (max-width: 768px) */
@media (max-width: 768px) {
    header {
        padding: 10px 0;
    }

    .mobile-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 60px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 60px);
        background: white;
        flex-direction: column;
        justify-content: center;
        gap: 40px;
        transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        padding: 40px;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
    }

    .nav-links a {
        font-size: 1.5rem;
        font-weight: 700;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .collections-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .collection-img-wrapper {
        height: 400px;
    }

    .detail-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .detail-img {
        height: 500px;
    }

    .detail-info h1 {
        font-size: 2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-col {
        text-align: center;
    }

    .footer-col ul {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .btn-luxury {
        width: 100%;
        padding: 12px 20px;
    }
}

/* Small Mobile (max-width: 480px) */
@media (max-width: 480px) {
    .logo {
        font-size: 1.2rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .section-title h2 {
        font-size: 1.75rem;
    }

    .collection-img-wrapper {
        height: 350px;
    }

    .detail-img {
        height: 400px;
    }

    .detail-info h1 {
        font-size: 1.75rem;
    }

    .detail-info .desc {
        font-size: 1rem;
    }

    .filter-btn {
        padding: 8px 15px;
        font-size: 0.8rem;
    }
}

/* Logo Styling */
.logo-link {
    display: flex;
    align-items: center;
}

.main-logo {
    height: 60px; /* Default desktop height */
    width: auto;
    transition: 0.3s;
}

@media (max-width: 768px) {
    .main-logo {
        height: 45px; /* Mobile height */
    }
}

@media (max-width: 480px) {
    .main-logo {
        height: 35px; /* Small mobile height */
    }
}









.instagram{
padding:40px;
text-align:center;
background:#f2f2f2;
}

.instagram a{
display:inline-block;
margin-top:10px;
padding:10px 20px;
background:#E1306C;
color:white;
text-decoration:none;
border-radius:5px;
}

.instagram-feed{
padding:40px;
text-align:center;
background:#f9f9f9;
}

.insta-gallery{
display:flex;
justify-content:center;
gap:15px;
flex-wrap:wrap;
}

.insta-gallery img{
width:180px;
border-radius:10px;
transition:0.3s;
}

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








/* ==========================================================================
   Insta Hero Section - Luxury Light Styling
   ========================================================================== */

/* Main Section Wrapper - Changed to a premium ivory/light backdrop */
.insta-hero-section {
    background-color: #fcfbfa; /* Soft luxury off-white */
    color: #1a1a1e; /* Deep charcoal for sharp readability */
    padding: 60px 24px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid #eef0f2;
}

/* Container limits width and handles layout alignment */
.insta-hero-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 50px;
    max-width: 800px;
    width: 100%;
}

/* Left Side: Avatar & Verification Badge */
.insta-hero-visual {
    position: relative;
    flex-shrink: 0;
}

.insta-circle-large {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    padding: 4px;
    background: linear-gradient(45deg, #b38728, #fbf5b7, #daa520, #aa771c); /* Luxury Gold Gradient Ring */
    box-shadow: 0 8px 20px rgba(179, 135, 40, 0.15); /* Softer, warm shadow for light backgrounds */
}

.insta-circle-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    background-color: #ffffff;
}

/* Instagram Verification Badge */
.insta-verify-badge {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background-color: #0095f6; /* Authentic Instagram Blue */
    color: #ffffff;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: bold;
    border: 3px solid #fcfbfa; /* Matches the new light background perfectly */
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

/* Right Side: Profile Info & Text Content */
.insta-hero-content {
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex-grow: 1;
}

/* Gold Subtitle styling */
.gold-subtitle {
    color: #b38728; /* Deepened slightly for better contrast on light backgrounds */
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
}

.insta-hero-content h2 {
    font-size: 1.75rem;
    color: #1a1a1e;
    margin: 0;
    font-weight: 400; /* Slightly weighted for crisp visibility */
    letter-spacing: 0.5px;
}

/* Follower & Post Statistics */
.insta-stats {
    display: flex;
    gap: 24px;
    font-size: 0.95rem;
    color: #52525b; /* Soft gray-slate for sub-stats */
    border-top: 1px solid #eef0f2;
    border-bottom: 1px solid #eef0f2;
    padding: 10px 0;
}

.insta-stats span {
    font-weight: 400;
}

.insta-stats strong {
    color: #1a1a1e;
    font-weight: 600;
}

/* Bio Content Styling */
.insta-bio {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #52525b; 
}

.insta-bio p {
    margin: 0 0 4px 0;
}

.insta-bio p:last-child {
    margin-bottom: 0;
}

.insta-bio strong {
    color: #1a1a1e;
    letter-spacing: 0.5px;
}

/* Premium Dark/Gold Action Button - Pops beautifully on light background */
.insta-hero-btn {
    align-self: flex-start;
    background: #1a1a1e; /* Solid dark button for striking contrast */
    color: #ffffff;
    text-decoration: none;
    padding: 12px 28px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    border: 1px solid #1a1a1e;
}

.insta-hero-btn:hover {
    background: transparent;
    color: #1a1a1e; /* Inverts cleanly on hover */
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */

@media (max-width: 768px) {
    .insta-hero-section {
        padding: 40px 16px;
    }

    .insta-hero-container {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }

    .insta-circle-large {
        width: 120px;
        height: 120px;
    }

    .insta-stats {
        justify-content: center;
        gap: 16px;
        font-size: 0.85rem;
    }

    .insta-hero-btn {
        align-self: center;
        width: 100%;
        max-width: 280px;
        box-sizing: border-box;
    }
}