/* Gaurav Gupta Fashion - Custom Bootstrap CSS */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Mulish:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap');

/* Custom Color Scheme */
:root {
    --gg-primary: #000000;
    --gg-secondary: #666666;
    --gg-accent: #C5282F;
    --gg-light: #F8F9FA;
    --gg-dark: #212529;
    --gg-gold: #B8860B;
    --gg-white: #FFFFFF;
    --gg-gray: #6C757D;
    --gg-light-gray: #E9ECEF;
    --font-primary: 'Mulish', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-secondary: 'Playfair Display', Georgia, serif;
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--gg-dark);
    overflow-x: hidden;
    font-size: 13px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 400;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

/* Enforce tighter heading sizes per design */
.h1,
.h2,
h1,
h2 {
    font-size: 16px !important;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

/* Buttons */
.btn {
    border: none;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border-radius: 0;
    padding: 0.75rem 2rem;
}

.btn-primary {
    background-color: var(--gg-primary);
    border-color: var(--gg-primary);
    color: var(--gg-white);
}

.btn-primary:hover {
    background-color: var(--gg-secondary);
    border-color: var(--gg-secondary);
}

.btn-outline-primary {
    color: var(--gg-primary);
    border-color: var(--gg-primary);
}

.btn-outline-primary:hover {
    background-color: var(--gg-primary);
    border-color: var(--gg-primary);
    color: var(--gg-white);
}

/* Links */
a {
    color: var(--gg-primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--gg-secondary);
    text-decoration: none;
}

/* Containers */
.container-fluid {
    padding-left: 0;
    padding-right: 0;
}

.container-wide {
    width: 100%;
    padding-left: 50px;
    padding-right: 50px;
    margin-left: auto;
    margin-right: auto;
}

/* Custom Spacing */
.py-section { padding: 4rem 0; }
.py-section-lg { padding: 6rem 0; }
.py-section-sm { padding: 2rem 0; }

/* Background Colors */
.bg-gg-primary { background-color: var(--gg-primary); }
.bg-gg-secondary { background-color: var(--gg-secondary); }
.bg-gg-light { background-color: var(--gg-light); }
.bg-gg-accent { background-color: var(--gg-accent); }

/* Text Colors */
.text-gg-primary { color: var(--gg-primary); }
.text-gg-secondary { color: var(--gg-secondary); }
.text-gg-accent { color: var(--gg-accent); }
.text-gg-gold { color: var(--gg-gold); }

/* Image Styles */
.img-hover {
    transition: transform 0.3s ease;
}

.img-hover:hover {
    transform: scale(1.05);
}

/* Card Styles */
.card {
    border: none;
    border-radius: 0;
    box-shadow: none;
    transition: all 0.3s ease;
}

/* Forms */
.form-control {
    border-radius: 0;
    border: 1px solid var(--gg-light-gray);
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
}

.form-control:focus {
    border-color: var(--gg-primary);
    box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.1);
}

/* Navbar Overrides */
.navbar {
    border-bottom: 1px solid var(--gg-light-gray);
}

.navbar-brand {
    font-family: var(--font-secondary);
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: 2px;
}

/* Dropdown Menus */
.dropdown-menu {
    border: none;
    border-radius: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-top: 2px solid var(--gg-primary);
}

.dropdown-item {
    font-size: 0.9rem;
    padding: 0.5rem 1.5rem;
}

.dropdown-item:hover {
    background-color: var(--gg-light);
    color: var(--gg-primary);
}

/* Breadcrumbs */
.breadcrumb {
    background-color: transparent;
    padding: 1rem 0;
    margin-bottom: 0;
}

.breadcrumb-item {
    font-size: var(--base-fontsize);
    letter-spacing: 0.5px;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "/";
    color: var(--gg-gray);
}

/* Modal Overrides */
.modal-content {
    border-radius: 0;
    border: none;
}

.modal-header {
    border-bottom: 1px solid var(--gg-light-gray);
    padding: 1.5rem;
}

.modal-footer {
    border-top: 1px solid var(--gg-light-gray);
    padding: 1.5rem;
}

/* Alert Overrides */
.alert {
    border-radius: 0;
    border: none;
    border-left: 4px solid;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border-left-color: #28a745;
}

.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
    border-left-color: #dc3545;
}

/* Pagination */
.pagination {
    margin: 0;
}

.page-link {
    border-radius: 0;
    border: 1px solid var(--gg-light-gray);
    color: var(--gg-primary);
    padding: 0.5rem 0.75rem;
}

.page-link:hover {
    background-color: var(--gg-primary);
    border-color: var(--gg-primary);
    color: var(--gg-white);
}

.page-item.active .page-link {
    background-color: var(--gg-primary);
    border-color: var(--gg-primary);
}

/* Responsive Utilities */
@media (max-width: 768px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .container-wide {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }
    
    .py-section { padding: 2rem 0; }
    .py-section-lg { padding: 3rem 0; }
}

@media (max-width: 576px) {
    .btn {
        font-size: 0.85rem;
        padding: 0.6rem 1.5rem;
    }
}