/* ===== GLOBAL STYLES & RESET ===== */
:root {
    --gold: #D4AF37;
    --gold-light: #F4D03F;
    --gold-dark: #B8860B;
    --black: #000000;
    --black-light: #1a1a1a;
    --black-lighter: #2a2a2a;
    --white: #ffffff;
    --gray: #888888;
    --gray-light: #aaaaaa;
    --green-whatsapp: #25D366;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--black);
    color: var(--gold);
    font-family: 'Cinzel', serif;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}

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

/* ===== HEADER SECTION ===== */
.main-header {
    background: linear-gradient(to bottom, #111 0%, #000 100%);
    border-bottom: 3px solid var(--gold);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Dancing Script', cursive;
    font-size: 2.5rem;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.title-calligraphy {
    font-family: 'Dancing Script', cursive;
    font-size: 2.8rem;
    background: linear-gradient(to right, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 5px;
}

.tagline {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: var(--gray);
    letter-spacing: 2px;
    margin-top: 5px;
}

/* ===== CONTACT INFO ===== */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: right;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    font-size: 1.1rem;
}

.contact-item i {
    font-size: 1.3rem;
}

.whatsapp-icon {
    color: var(--green-whatsapp);
}

.phone-editable, .email-editable {
    border-bottom: 1px dashed var(--gold);
    cursor: text;
    padding: 2px 5px;
    transition: all 0.3s ease;
}

.phone-editable:hover, .email-editable:hover {
    background-color: rgba(212, 175, 55, 0.1);
    border-bottom-style: solid;
}

/* ===== ORIGINAL NAVIGATION MENU ===== */
.main-nav {
    display: flex;
    justify-content: center;
    padding: 0;
    background-color: rgba(26, 26, 26, 0.95);
    border-top: 1px solid var(--gold-dark);
    flex-wrap: wrap;
}

.nav-link {
    color: var(--gold);
    text-decoration: none;
    padding: 18px 30px;
    margin: 0;
    border: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    position: relative;
    flex: 1;
    min-width: 150px;
    border-right: 1px solid rgba(212, 175, 55, 0.1);
    background-color: transparent;
}

.nav-link:last-child {
    border-right: none;
}

.nav-link:hover {
    background-color: var(--gold);
    color: var(--black);
}

.nav-link.active {
    background-color: var(--gold);
    color: var(--black);
    font-weight: 700;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--gold-light);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link i {
    font-size: 1.1rem;
}

/* ===== HERO SECTION ===== */
.hero-section {
    height: 400px;
    background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.95)), 
                url('https://images.unsplash.com/photo-1523170335258-f5ed11844a49?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero-overlay {
    padding: 40px 60px;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 10px;
    backdrop-filter: blur(5px);
    border: 2px solid var(--gold);
    max-width: 800px;
    margin: 0 20px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    color: var(--gold);
    margin-bottom: 15px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    letter-spacing: 1px;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: var(--white);
    letter-spacing: 3px;
    font-weight: 300;
}

/* ===== ITEMS SECTION ===== */
.items-section {
    padding: 60px 40px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
}

.section-header h2 i {
    color: var(--gold-light);
}

.section-subtitle {
    color: var(--gray);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ===== ITEMS GRID - RESPONSIVE ===== */
.items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 35px;
    max-width: 1400px;
    margin: 0 auto 60px;
}

.item-card {
    background: linear-gradient(145deg, #1a1a1a, #111);
    border: 2px solid var(--gold-dark);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s ease;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.item-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.2);
}

/* ===== ITEM IMAGE ===== */
.item-image-container {
    position: relative;
    height: 320px;
    overflow: hidden;
    flex-shrink: 0;
}

.item-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.item-card:hover .item-image {
    transform: scale(1.05);
}

.item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent 50%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.view-details {
    background-color: var(--gold);
    color: var(--black);
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

/* ===== FEATURED BADGE ===== */
.featured-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--black);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 2;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* ===== ITEM INFO ===== */
.item-info {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.item-title {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 12px;
    font-weight: 700;
    line-height: 1.2;
}

.item-desc-line1 {
    font-size: 1.1rem;
    color: var(--gold-light);
    margin-bottom: 8px;
    font-weight: 600;
}

.item-desc-line2, 
.item-desc-line3 {
    font-size: 0.95rem;
    color: var(--gray-light);
    margin-bottom: 6px;
    line-height: 1.4;
}

/* ===== MODEL METADATA ===== */
.model-meta {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    padding-top: 12px;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
}

.model-category, 
.model-price {
    font-size: 0.8rem;
    padding: 5px 12px;
    border-radius: 15px;
    font-weight: 600;
}

.model-category {
    background-color: rgba(212, 175, 55, 0.15);
    color: var(--gold-light);
}

.model-price {
    background-color: rgba(0, 100, 0, 0.2);
    color: #90EE90;
}

/* ===== ITEM COUNT ===== */
.item-count {
    text-align: center;
    margin: 25px auto;
    padding: 12px 25px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 25px;
    display: inline-block;
    color: var(--gold);
    font-weight: bold;
    font-size: 1.1rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.item-count i {
    margin-right: 8px;
    color: var(--gold-light);
}

/* ===== INFO SECTION ===== */
.info-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

.info-card {
    background-color: var(--black-lighter);
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid var(--gold);
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

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

.info-icon {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.info-card h3 {
    color: var(--white);
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.info-card p {
    color: var(--gray);
    line-height: 1.6;
    font-size: 1rem;
}

/* ===== TEXT AREA ===== */
.text-area {
    padding: 60px 40px;
    background-color: var(--black-light);
    border-top: 2px solid var(--gold-dark);
    border-bottom: 2px solid var(--gold-dark);
}

.text-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.text-content h2 {
    font-size: 2.2rem;
    color: var(--gold);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.text-content p {
    color: var(--gray);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
    text-align: justify;
}

/* ===== SEO KEYWORDS SECTION ===== */
.seo-keywords {
    background-color: rgba(26, 26, 26, 0.8);
    padding: 25px;
    border-radius: 10px;
    margin: 40px 0;
    border-left: 4px solid var(--gold);
    border-right: 1px solid rgba(212, 175, 55, 0.2);
}

.seo-keywords h3 {
    color: var(--gold);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.4rem;
}

.keyword-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    list-style: none;
    padding: 0;
    justify-content: center;
}

.keyword-list li {
    background-color: rgba(212, 175, 55, 0.15);
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--gray-light);
    transition: all 0.3s;
    border: 1px solid transparent;
}

.keyword-list li:hover {
    background-color: rgba(212, 175, 55, 0.25);
    border-color: var(--gold);
    transform: translateY(-2px);
    color: var(--gold-light);
}

.text-editable {
    background-color: rgba(212, 175, 55, 0.1);
    padding: 20px;
    border: 1px dashed var(--gold);
    border-radius: 8px;
    font-style: italic;
    margin-top: 30px;
    color: var(--gray-light);
    text-align: center;
}

.text-editable:hover {
    background-color: rgba(212, 175, 55, 0.15);
    border-style: solid;
}

/* ===== EXTERNAL LINKS FOOTER ===== */
.main-footer {
    margin-top: auto;
    background-color: #111;
    border-top: 3px solid var(--gold);
}

.external-links-section {
    padding: 50px 40px;
    text-align: center;
}

.links-title {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
}

.links-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background-color: var(--gold);
}

.links-table {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 35px;
    max-width: 1200px;
    margin: 0 auto;
}

.link-item {
    width: 120px;
    transition: transform 0.3s ease;
}

.link-item:hover {
    transform: translateY(-5px);
}

.link-item a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.partner-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    background-color: var(--white);
    border-radius: 50%;
    padding: 10px;
    border: 2px solid var(--gold);
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.link-item:hover .partner-logo {
    transform: scale(1.05);
    border-color: var(--gold-light);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.partner-name {
    color: var(--gray);
    font-size: 0.9rem;
    font-weight: 600;
    transition: color 0.3s;
}

.link-item:hover .partner-name {
    color: var(--gold-light);
}

.links-note {
    margin-top: 40px;
    color: #666;
    font-style: italic;
    font-size: 0.9rem;
}

/* ===== FOOTER BOTTOM ===== */
.footer-bottom {
    padding: 25px;
    background-color: #000;
    text-align: center;
    border-top: 1px solid #333;
}

.footer-bottom p {
    color: var(--gray);
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.footer-links {
    margin: 15px 0;
}

.footer-links a {
    color: var(--gold);
    text-decoration: none;
    margin: 0 15px;
    transition: color 0.3s;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--gold-light);
    text-decoration: underline;
}

/* ===== SEO FOOTER TEXT ===== */
.seo-footer {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid #333;
}

.seo-text {
    font-size: 0.85rem;
    color: #666;
    text-align: center;
    line-height: 1.6;
    font-style: italic;
}

/* ===== PRICE INDICATORS ===== */
.price-indicator {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-right: 5px;
}

.price-premium {
    background-color: #FFD700;
}

.price-standard {
    background-color: #C0C0C0;
}

.price-entry {
    background-color: #CD7F32;
}

/* ===== ACCESSIBILITY ===== */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ===== RESPONSIVE DESIGN ===== */

/* Large Desktop */
@media (min-width: 1400px) {
    .items-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Desktop */
@media (max-width: 1200px) {
    .items-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 30px;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
}

/* Tablet */
@media (max-width: 992px) {
    .header-top {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }
    
    .contact-info {
        text-align: center;
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        gap: 25px;
    }
    
    .contact-item {
        justify-content: center;
    }
    
    .main-nav {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .nav-link {
        min-width: 140px;
        padding: 15px 20px;
        border-right: none;
        border-bottom: 1px solid rgba(212, 175, 55, 0.1);
        flex: 0 0 calc(50% - 2px);
    }
    
    .nav-link:nth-child(even) {
        border-right: none;
    }
    
    .nav-link:nth-child(odd):last-child {
        width: 100%;
    }
    
    .hero-section {
        height: 350px;
    }
    
    .hero-title {
        font-size: 2.4rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .items-section {
        padding: 40px 30px;
    }
    
    .items-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 25px;
    }
}

/* Small Tablet */
@media (max-width: 768px) {
    .header-top {
        padding: 15px 20px;
    }
    
    .logo {
        width: 50px;
        height: 50px;
        font-size: 2rem;
    }
    
    .title-calligraphy {
        font-size: 2.2rem;
    }
    
    .main-nav {
        flex-direction: column;
    }
    
    .nav-link {
        width: 100%;
        padding: 16px 20px;
        border-right: none;
        border-bottom: 1px solid rgba(212, 175, 55, 0.1);
        justify-content: center;
        text-align: center;
    }
    
    .hero-section {
        height: 300px;
        background-attachment: scroll;
    }
    
    .hero-overlay {
        padding: 30px;
        margin: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        letter-spacing: 2px;
    }
    
    .items-section {
        padding: 30px 20px;
    }
    
    .section-header h2 {
        font-size: 2rem;
        flex-direction: column;
        gap: 10px;
    }
    
    .items-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 20px;
    }
    
    .info-section {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 10px;
    }
    
    .text-area {
        padding: 40px 20px;
    }
    
    .text-content h2 {
        font-size: 1.8rem;
    }
    
    .text-content p {
        font-size: 1rem;
        text-align: left;
    }
    
    .external-links-section {
        padding: 40px 20px;
    }
    
    .links-table {
        gap: 25px;
    }
    
    .link-item {
        width: 100px;
    }
    
    .partner-logo {
        width: 70px;
        height: 70px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .header-top {
        padding: 15px;
    }
    
    .logo-container {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .logo {
        margin: 0 auto;
    }
    
    .title-calligraphy {
        font-size: 1.8rem;
    }
    
    .tagline {
        font-size: 0.9rem;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }
    
    .contact-item {
        width: 100%;
        justify-content: center;
    }
    
    .main-nav {
        flex-direction: column;
    }
    
    .nav-link {
        padding: 14px 15px;
        font-size: 0.95rem;
    }
    
    .hero-section {
        height: 250px;
    }
    
    .hero-overlay {
        padding: 20px;
    }
    
    .hero-title {
        font-size: 1.7rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        letter-spacing: 1px;
    }
    
    .items-grid {
        grid-template-columns: 1fr;
        max-width: 320px;
        margin: 0 auto 40px;
    }
    
    .section-header {
        margin-bottom: 30px;
    }
    
    .section-header h2 {
        font-size: 1.6rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        padding: 0 10px;
    }
    
    .item-image-container {
        height: 280px;
    }
    
    .item-info {
        padding: 20px;
    }
    
    .item-title {
        font-size: 1.3rem;
    }
    
    .info-card {
        padding: 20px;
    }
    
    .info-icon {
        font-size: 2rem;
    }
    
    .info-card h3 {
        font-size: 1.2rem;
    }
    
    .seo-keywords {
        padding: 20px;
    }
    
    .keyword-list {
        gap: 8px;
    }
    
    .keyword-list li {
        padding: 6px 12px;
        font-size: 0.85rem;
    }
    
    .links-table {
        gap: 15px;
    }
    
    .link-item {
        width: 80px;
    }
    
    .partner-logo {
        width: 60px;
        height: 60px;
        padding: 8px;
    }
    
    .partner-name {
        font-size: 0.8rem;
    }
    
    .footer-links {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    
    .footer-links a {
        margin: 5px 0;
    }
    
    .seo-text {
        font-size: 0.75rem;
    }
}

/* Very Small Mobile */
@media (max-width: 380px) {
    .nav-link {
        font-size: 0.9rem;
        padding: 12px 10px;
    }
    
    .nav-link i {
        font-size: 0.9rem;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .items-grid {
        gap: 15px;
    }
    
    .item-image-container {
        height: 250px;
    }
    
    .links-table {
        justify-content: space-around;
    }
    
    .link-item {
        width: 70px;
    }
    
    .partner-logo {
        width: 50px;
        height: 50px;
    }
}

/* Print Styles */
@media print {
    .main-header, .main-footer, .nav-link {
        background: white !important;
        color: black !important;
        border: 1px solid #ccc !important;
    }
    
    .hero-section, .item-overlay, .view-details {
        display: none !important;
    }
    
    .items-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10mm !important;
    }
    
    .item-card {
        break-inside: avoid;
        page-break-inside: avoid;
    }
    
    a[href]::after {
        content: " (" attr(href) ")";
        font-size: 0.8em;
        font-weight: normal;
    }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    :root {
        --gold: #FFD700;
        --gold-light: #FFFF00;
        --gold-dark: #B8860B;
        --black: #000000;
        --white: #FFFFFF;
        --gray: #808080;
    }
    
    .item-card {
        border: 3px solid var(--gold);
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Added fro dropping the top head in mobile - 30 Jan2026 */

@media (max-width: 768px) {
    .main-header {
        position: fixed;
        width: 100%;
        top: 0;
        transition: transform 0.3s ease;
    }
    
    /* Collapse header on scroll */
    .main-header.hidden {
        transform: translateY(-100%);
    }
    
    /* Add padding to main content to account for fixed header */
    .main-content {
        padding-top: 120px; /* Adjust based on header height */
    }
}

/* Telegram Icon */
.telegram-icon {
    color: #0088cc;
    margin-left: 3px;
}

.telegram-icon:hover {
    color: #00aced;
}