/*
Theme Name: Dressin – Rental Dresses Jaipur
Theme URI: https://yourdomain.com
Author: Your Name
Description: A stylish, SEO-optimized black, gold, and white theme for women's dress rental business in Jaipur. Perfect for "dress on rent in Jaipur".
Version: 1.1
License: GPL v2 or later
Text Domain: dressin
*/

/*---------------------------------------------*/
/* 1. RESET & GLOBAL STYLES (Black & White Base)
/*---------------------------------------------*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: #FFFFFF; /* White background */
    color: #000000; /* Black text */
    line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #000000;
}

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

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 30px;
}

/*---------------------------------------------*/
/* 2. HEADER & NAVIGATION (Gold Accents)
/*---------------------------------------------*/
.site-header {
    background: #FFFFFF;
    border-bottom: 1px solid #EAEAEA;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo a {
    font-size: 28px;
    font-weight: 700;
    color: #000000;
    letter-spacing: -0.5px;
}

.logo a span {
    color: #D4AF37; /* Gold */
}

/* Navigation Menu */
.main-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
}

.main-nav ul li a {
    color: #000000;
    font-weight: 500;
    font-size: 16px;
}

.main-nav ul li a:hover {
    color: #D4AF37; /* Gold hover */
}

.header-icons a {
    color: #000000;
    font-size: 20px;
    margin-left: 20px;
}

.header-icons a:hover {
    color: #D4AF37;
}

/* Mobile Menu Toggle (Hidden by default, basic) */
@media (max-width: 992px) {
    .main-nav ul {
        display: none; /* For a basic theme, we skip mobile menu JS, but you can add later */
    }
}

/*---------------------------------------------*/
/* 3. BUTTONS (Gold & Black)
/*---------------------------------------------*/
.btn, .btn-gold {
    background: #D4AF37; /* Gold */
    color: #000000;
    padding: 14px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn:hover, .btn-gold:hover {
    background: #B8960C; /* Darker gold */
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.btn-outline-gold {
    background: transparent;
    border: 2px solid #D4AF37;
    color: #D4AF37;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-outline-gold:hover {
    background: #D4AF37;
    color: #000000;
}

/*---------------------------------------------*/
/* 4. HERO SECTION (Black Background, Gold Text)
/*---------------------------------------------*/
.hero {
    background: #000000; /* Black background */
    color: #FFFFFF;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #FFFFFF 30%, #D4AF37 80%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    color: #E0E0E0;
    max-width: 700px;
    margin: 0 auto 30px;
}

/*---------------------------------------------*/
/* 5. SECTIONS (Black, White, Gold)
/*---------------------------------------------*/
.section-dark {
    background: #000000;
    color: #FFFFFF;
    padding: 80px 0;
    border-top: 1px solid #222;
    border-bottom: 1px solid #222;
}

.section-light {
    background: #FFFFFF;
    color: #000000;
    padding: 80px 0;
}

.gold-text {
    color: #D4AF37;
}

/*---------------------------------------------*/
/* 6. FEATURE CARDS
/*---------------------------------------------*/
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.feature-card {
    background: #111111; /* Dark card on black sections */
    padding: 40px 25px;
    text-align: center;
    border-radius: 20px;
    transition: transform 0.3s ease;
    border: 1px solid #222;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: #D4AF37;
}

.feature-icon {
    font-size: 50px;
    color: #D4AF37;
    margin-bottom: 20px;
}

/*---------------------------------------------*/
/* 7. PRODUCT GRID (White Cards on Light Background)
/*---------------------------------------------*/
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.product-card {
    background: #FFFFFF;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid #EAEAEA;
}

.product-card:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 35px rgba(212, 175, 55, 0.15);
    border-color: #D4AF37;
}

.product-card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.product-card h3 {
    font-size: 1.3rem;
    margin: 20px 15px 5px;
    color: #000000;
}

.product-card .price {
    color: #D4AF37;
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

/*---------------------------------------------*/
/* 8. TESTIMONIALS
/*---------------------------------------------*/
.testimonial-card {
    background: #000000;
    border-left: 5px solid #D4AF37;
    padding: 30px;
    border-radius: 16px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    text-align: left;
}

.testimonial-card p {
    font-size: 1.2rem;
    font-style: italic;
    color: #E0E0E0;
}

.testimonial-card cite {
    color: #D4AF37;
    font-style: normal;
    font-weight: 500;
    margin-top: 15px;
    display: block;
}

/*---------------------------------------------*/
/* 9. SOCIAL FEED & YOUTUBE SHORTS
/*---------------------------------------------*/
.social-feed, .youtube-shorts {
    padding: 60px 0;
    text-align: center;
}

.instagram-feed, .shorts-grid {
    margin-top: 30px;
}

/*---------------------------------------------*/
/* 10. FOOTER
/*---------------------------------------------*/
.site-footer {
    background: #000000;
    color: #CCCCCC;
    padding: 60px 0 30px;
    margin-top: 60px;
    border-top: 1px solid #222;
}

.footer-grid h3, .footer-grid h4 {
    color: #FFFFFF;
}

.footer-grid a {
    color: #CCCCCC;
}

.footer-grid a:hover {
    color: #D4AF37;
}

/*---------------------------------------------*/
/* 11. RESPONSIVE
/*---------------------------------------------*/
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
    }
    .hero {
        padding: 60px 0;
    }
    .features-grid, .product-grid {
        gap: 20px;
    }
    .btn, .btn-gold {
        padding: 10px 25px;
    }
}

/*---------------------------------------------*/
/* MOBILE MENU STYLES (Black & Gold)
/*---------------------------------------------*/

/* Hide desktop nav on mobile */
@media (max-width: 992px) {
    .desktop-nav {
        display: none;
    }
}

/* Hamburger button */
.mobile-menu-toggle {
    background: transparent;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 24px;
    position: relative;
    margin-left: 20px;
    display: inline-block;
    vertical-align: middle;
}

.mobile-menu-toggle .hamburger {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 2px;
    background: #000;
    transition: all 0.3s ease;
}

.mobile-menu-toggle .hamburger::before,
.mobile-menu-toggle .hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: #000;
    transition: all 0.3s ease;
}

.mobile-menu-toggle .hamburger::before {
    top: -8px;
}

.mobile-menu-toggle .hamburger::after {
    top: 8px;
}

/* When menu is open, transform hamburger to X */
.mobile-menu-toggle.active .hamburger {
    background: transparent;
}

.mobile-menu-toggle.active .hamburger::before {
    transform: rotate(45deg);
    top: 0;
}

.mobile-menu-toggle.active .hamburger::after {
    transform: rotate(-45deg);
    top: 0;
}

/* Mobile navigation panel */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background: #000000; /* Black background */
    z-index: 9999;
    transition: right 0.4s ease;
    box-shadow: -5px 0 30px rgba(0,0,0,0.3);
    overflow-y: auto;
    padding: 80px 30px 40px;
}

.mobile-nav.open {
    right: 0;
}

/* Overlay when menu is open */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 9998;
    display: none;
}

.mobile-nav-overlay.active {
    display: block;
}

/* Mobile menu links */
.mobile-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-menu li {
    margin-bottom: 25px;
    border-bottom: 1px solid #222;
    padding-bottom: 10px;
}

.mobile-menu li a {
    color: #FFFFFF;
    font-size: 1.3rem;
    font-weight: 500;
    text-decoration: none;
    display: block;
    transition: color 0.3s ease;
}

.mobile-menu li a:hover {
    color: #D4AF37;
}

/* Ensure header icons row aligns well */
.header-icons {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* On desktop, hide mobile toggle */
@media (min-width: 993px) {
    .mobile-menu-toggle {
        display: none;
    }
    .mobile-nav,
    .mobile-nav-overlay {
        display: none !important;
    }
}