/* Maximum Outfits - Bold Urban Delhi Men's Store Design */

:root {
    /* Color Palette - Masculine & Urban */
    --black: #0a0a0a;
    --charcoal: #1a1a1a;
    --dark-gray: #2d2d2d;
    --steel: #4a4a4a;
    --accent-red: #dc2626;
    --dark-red: #991b1b;
    --white: #ffffff;
    --off-white: #f8f8f8;
    --light-gray: #e5e5e5;
    --border-gray: #d4d4d4;
    
    /* Typography - Bold & Confident */
    --font-display: 'Oswald', sans-serif;
    --font-body: 'Barlow', -apple-system, sans-serif;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 6rem;
    
    /* Effects */
    --shadow: rgba(10, 10, 10, 0.1);
    --shadow-md: rgba(10, 10, 10, 0.15);
    --shadow-lg: rgba(10, 10, 10, 0.25);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--charcoal);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    position: relative;
}

/* Diagonal Stripes Overlay */
.stripe-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.02;
    background-image: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 20px,
        var(--black) 20px,
        var(--black) 40px
    );
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.1;
    color: var(--black);
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

img {
    max-width: 100%;
    display: block;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--black);
    border-bottom: 3px solid var(--accent-red);
    z-index: 1000;
    box-shadow: 0 4px 20px var(--shadow-lg);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 70px;
}

.nav-logo {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.logo-main {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--white);
    letter-spacing: 0.05em;
}

.logo-hindi {
    font-size: 0.75rem;
    color: var(--accent-red);
    font-weight: 600;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--white);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.nav-menu a {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    padding: 8px 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-red);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--accent-red);
    color: white;
    padding: 10px 24px;
    border-radius: 4px;
}

.nav-cta:hover {
    background: var(--dark-red);
    transform: translateY(-2px);
}

.nav-cta::after {
    display: none;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: calc(70px + var(--space-lg)) var(--space-md) var(--space-lg);
    background: linear-gradient(135deg, var(--off-white) 0%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: -10%;
    width: 60%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(220, 38, 38, 0.03) 100%);
    transform: skewX(-15deg);
    pointer-events: none;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: var(--space-lg);
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    background: var(--black);
    color: var(--accent-red);
    padding: 8px 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-md);
    animation: slideIn 0.8s ease-out 0.2s both;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-title {
    margin-bottom: var(--space-md);
}

.title-en {
    display: block;
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-weight: 900;
    color: var(--black);
    line-height: 0.9;
    animation: slideIn 0.8s ease-out 0.3s both;
}

.title-hi {
    display: block;
    font-size: clamp(1.2rem, 3vw, 2rem);
    font-weight: 600;
    color: var(--accent-red);
    margin-top: 12px;
    text-transform: none;
    letter-spacing: normal;
    animation: slideIn 0.8s ease-out 0.4s both;
}

.hero-tagline {
    font-size: 1.3rem;
    line-height: 1.6;
    color: var(--steel);
    margin-bottom: var(--space-md);
    font-weight: 500;
    animation: slideIn 0.8s ease-out 0.5s both;
}

.hero-rating {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    background: white;
    border: 2px solid var(--light-gray);
    border-radius: 8px;
    width: fit-content;
    margin-bottom: var(--space-md);
    animation: slideIn 0.8s ease-out 0.6s both;
}

.rating-stars {
    display: flex;
    gap: 4px;
}

.rating-stars span {
    color: #fbbf24;
    font-size: 1.5rem;
}

.rating-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.rating-info strong {
    font-size: 1.05rem;
    color: var(--black);
}

.rating-info span {
    font-size: 0.85rem;
    color: var(--steel);
}

.hero-actions {
    display: flex;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
    animation: slideIn 0.8s ease-out 0.7s both;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--accent-red);
    color: white;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.btn-primary:hover {
    background: var(--dark-red);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(220, 38, 38, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--black);
    border-color: var(--black);
}

.btn-secondary:hover {
    background: var(--black);
    color: white;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

.hero-info {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
    animation: slideIn 0.8s ease-out 0.8s both;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--steel);
    font-size: 0.9rem;
}

.info-item svg {
    color: var(--accent-red);
    flex-shrink: 0;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeIn 1s ease-out 0.9s both;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.visual-box {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 1;
    background: var(--black);
    border: 4px solid var(--accent-red);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.box-decoration {
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 15px,
        rgba(220, 38, 38, 0.1) 15px,
        rgba(220, 38, 38, 0.1) 30px
    );
}

.visual-box svg {
    position: relative;
    z-index: 1;
    color: var(--accent-red);
    opacity: 0.8;
}

/* Section Styling */
.section-header {
    text-align: center;
    margin-bottom: var(--space-lg);
}

.section-tag {
    display: inline-block;
    background: var(--accent-red);
    color: white;
    padding: 6px 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-sm);
}

.section-header h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: var(--space-sm);
}

.header-line {
    width: 80px;
    height: 4px;
    background: var(--accent-red);
    margin: var(--space-sm) auto;
}

/* Why Us Section */
.why-us {
    padding: var(--space-xl) var(--space-md);
    background: var(--off-white);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-md);
}

.why-card {
    background: white;
    padding: var(--space-md);
    border: 2px solid var(--light-gray);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.why-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-red);
    box-shadow: 0 12px 32px var(--shadow-md);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-red);
    margin-bottom: var(--space-sm);
}

.why-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.why-card p {
    color: var(--steel);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Products Section */
.products {
    padding: var(--space-xl) var(--space-md);
    background: white;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-md);
}

.product-card {
    background: var(--off-white);
    border: 2px solid var(--light-gray);
    border-radius: 8px;
    padding: var(--space-md);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px var(--shadow-md);
}

.product-card.featured {
    border-color: var(--accent-red);
    background: linear-gradient(135deg, var(--off-white) 0%, white 100%);
}

.featured-badge {
    position: absolute;
    top: -12px;
    right: var(--space-md);
    background: var(--accent-red);
    color: white;
    padding: 6px 16px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.product-visual {
    margin-bottom: var(--space-sm);
}

.visual-placeholder {
    width: 120px;
    height: 120px;
    background: white;
    border: 2px solid var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.visual-placeholder svg {
    color: var(--steel);
    opacity: 0.6;
}

.product-card h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.product-card p {
    color: var(--steel);
    font-size: 0.9rem;
}

/* Reviews Section */
.reviews {
    padding: var(--space-xl) var(--space-md);
    background: var(--off-white);
}

.rating-display {
    margin-top: var(--space-sm);
}

.stars-large {
    color: #fbbf24;
    font-size: 2.5rem;
    letter-spacing: 6px;
    margin-bottom: 12px;
}

.rating-display p {
    font-size: 1.1rem;
    color: var(--steel);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: var(--space-md);
}

.review-card {
    background: white;
    padding: var(--space-md);
    border: 2px solid var(--light-gray);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px var(--shadow);
}

.review-stars {
    color: #fbbf24;
    font-size: 1.2rem;
    letter-spacing: 3px;
    margin-bottom: var(--space-sm);
}

.review-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--charcoal);
    margin-bottom: var(--space-md);
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: var(--space-sm);
    border-top: 2px solid var(--light-gray);
}

.author-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--black);
    color: var(--accent-red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.author-name {
    font-weight: 700;
    color: var(--black);
    margin-bottom: 2px;
}

.author-location {
    font-size: 0.85rem;
    color: var(--steel);
}

/* Location Section */
.location {
    padding: var(--space-xl) var(--space-md);
    background: white;
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--space-lg);
}

.location-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.info-box {
    background: var(--off-white);
    padding: var(--space-md);
    border: 2px solid var(--light-gray);
    border-radius: 8px;
    display: flex;
    gap: var(--space-sm);
}

.info-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-red);
}

.info-box h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.info-box p {
    color: var(--steel);
    line-height: 1.7;
    margin-bottom: 6px;
}

.plus-code {
    font-size: 0.8rem;
    color: var(--steel);
    font-family: monospace;
    background: white;
    padding: 6px 12px;
    border-radius: 4px;
    display: inline-block;
    margin-top: 8px;
}

.phone-number {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--accent-red);
    display: block;
    margin-bottom: 6px;
    font-family: var(--font-display);
}

.phone-number:hover {
    color: var(--dark-red);
}

.phone-note {
    font-size: 0.85rem;
    color: var(--steel);
}

.hours-table {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 2px solid var(--light-gray);
    font-size: 0.95rem;
}

.hours-row span:first-child {
    font-weight: 700;
    color: var(--black);
}

.hours-row span:last-child {
    color: var(--steel);
}

.hours-row.closed span:last-child {
    color: var(--accent-red);
    font-weight: 700;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.services-list li {
    color: var(--charcoal);
    font-size: 0.95rem;
    font-weight: 500;
}

/* Maps Wrapper */
.maps-wrapper {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.map-box {
    background: var(--off-white);
    border: 2px solid var(--light-gray);
    border-radius: 8px;
    overflow: hidden;
}

.map-box h4 {
    background: var(--black);
    color: white;
    padding: var(--space-sm) var(--space-md);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.view-toggle {
    background: var(--accent-red);
    color: white;
    border: none;
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.view-toggle:hover {
    background: var(--dark-red);
}

.map-embed {
    width: 100%;
    height: 350px;
    position: relative;
}

.map-embed iframe {
    width: 100%;
    height: 100%;
}

/* FAQ Section */
.faq {
    padding: var(--space-xl) var(--space-md);
    background: var(--off-white);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-md);
}

.faq-item {
    background: white;
    padding: var(--space-md);
    border-left: 4px solid var(--accent-red);
    border-radius: 6px;
}

.faq-item h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.faq-item p {
    color: var(--steel);
    line-height: 1.7;
}

/* Footer */
.footer {
    background: var(--black);
    color: var(--light-gray);
    padding: var(--space-lg) var(--space-md) var(--space-md);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.footer-brand h3 {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 8px;
}

.footer-hindi {
    font-size: 0.9rem;
    color: var(--accent-red);
    margin-bottom: 12px;
    font-weight: 600;
}

.footer-brand p {
    color: var(--light-gray);
    margin-bottom: var(--space-sm);
}

.footer-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

.footer-rating .stars {
    color: #fbbf24;
    letter-spacing: 2px;
}

.footer-links h4,
.footer-contact h4,
.footer-hours h4 {
    font-size: 1rem;
    color: var(--accent-red);
    margin-bottom: var(--space-sm);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links a {
    color: var(--light-gray);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-red);
    padding-left: 6px;
}

.footer-contact p,
.footer-hours p {
    color: var(--light-gray);
    line-height: 1.7;
    font-size: 0.9rem;
}

.footer-contact a {
    color: var(--accent-red);
    font-weight: 700;
    display: block;
    margin-top: 8px;
}

.footer-contact a:hover {
    color: white;
}

.footer-bottom {
    border-top: 2px solid var(--dark-gray);
    padding-top: var(--space-md);
    text-align: center;
}

.demo-notice {
    font-size: 0.85rem;
    color: var(--steel);
    margin-bottom: 8px;
    font-style: italic;
}

.footer-bottom p {
    color: var(--steel);
    font-size: 0.85rem;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-container,
    .location-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .hero-visual {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--black);
        flex-direction: column;
        padding: var(--space-md);
        box-shadow: 0 4px 12px var(--shadow-lg);
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: all 0.3s ease;
        gap: 0;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
    
    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid var(--dark-gray);
    }
    
    .nav-menu a {
        display: block;
        padding: var(--space-sm) 0;
    }
    
    .nav-cta {
        margin-top: var(--space-sm);
        text-align: center;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-info {
        flex-direction: column;
    }
    
    .why-grid,
    .products-grid,
    .reviews-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    :root {
        --space-lg: 3rem;
        --space-xl: 4rem;
    }
    
    .title-en {
        font-size: 2.2rem;
    }
}
