/* css/style.css */

:root {
    --primary-color: #ff007f;
    /* Vibrant Pink for GenZ party vibe */
    --bg-dark: #000000;
    --bg-darker: #000000;
    --text-light: #ffffff;
    --text-muted: #aaaaaa;
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Jost', sans-serif;
    --transition: all 0.3s ease;
}

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

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.section-padding {
    padding: 80px 0;
}

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

.pb-0 {
    padding-bottom: 0;
}

.pr-5 {
    padding-right: 3rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 500;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    letter-spacing: 1px;
    line-height: 1.2;
}

p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: #fff;
}

.btn-primary:hover {
    background-color: #a88a65;
}

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--text-muted);
    color: var(--text-light);
}

.btn-outline:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/* Header */
.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 100;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.logo-icon {
    width: 30px;
}

.main-nav ul {
    display: flex;
    gap: 30px;
}

.main-nav a {
    font-size: 0.9rem;
    text-transform: capitalize;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--primary-color);
}

.main-nav i {
    font-size: 0.7rem;
    margin-left: 3px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-actions .icon-link {
    font-size: 1.1rem;
}

.header-actions .icon-link:hover {
    color: var(--primary-color);
}

.currency-selector {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 8px 15px;
    font-size: 0.85rem;
    cursor: pointer;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center 20%;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.2) 100%);
    z-index: -1;
}

.hero-left-sidebar {
    position: absolute;
    left: 40px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 80px;
}

.pagination {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.page-numbers {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: var(--font-heading);
}

.page-numbers .current {
    font-size: 2rem;
    color: var(--primary-color);
    line-height: 1;
}

.page-numbers .separator {
    color: var(--text-muted);
    font-size: 1rem;
    margin: 5px 0;
    transform: rotate(15deg);
}

.page-numbers .total {
    font-size: 1rem;
    color: var(--text-muted);
}

.pagination .arrow i {
    font-size: 1.2rem;
}

.social-vertical {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.social-vertical a:hover {
    color: var(--primary-color);
}

.follow-text {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 20px;
}

.vertical-line {
    width: 1px;
    height: 50px;
    background-color: var(--text-muted);
}

.hero-content-container {
    width: 100%;
    padding-left: 100px;
}

.hero-text {
    max-width: 500px;
}

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.hero-text p {
    font-size: 1rem;
    margin-bottom: 30px;
}

/* Branded Suits */
.branded-suits {
    background-color: var(--bg-dark);
}

.branded-grid {
    display: flex;
    align-items: center;
    gap: 40px;
}

.branded-left-images {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.img-bottom-wrap {
    display: flex;
    gap: 15px;
}

.img-bottom-left {
    flex: 1;
    background-color: var(--bg-darker);
    min-height: 200px;
    /* Empty dark area */
}

.img-bottom-right {
    flex: 1;
}

.branded-text-center {
    flex: 1;
    padding: 0 20px;
}

.branded-text-center h2 {
    font-size: 2rem;
}

.branded-right-image {
    flex: 0.8;
}

/* Services */
.services-section {
    background-color: var(--bg-darker);
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.service-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

.service-box .icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-box h3 {
    font-size: 1.1rem;
    letter-spacing: 1px;
}

/* Split Rows (Custom Made, Timeless Style, Latest Jacket) */
.split-row {
    display: flex;
    align-items: center;
    gap: 50px;
}

.split-row.reverse {
    flex-direction: row-reverse;
}

.split-row .text-col {
    flex: 1;
}

.split-row .text-col h2 {
    font-size: 2.5rem;
}

.split-row .image-col {
    flex: 1.2;
}

/* Formal Suits */
.formal-suits-section h2 {
    margin-bottom: 50px;
}

.products-row {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.product-card {
    flex: 1;
    text-align: center;
}

.product-img {
    margin-bottom: 20px;
    overflow: hidden;
    background-color: #333;
}

.product-img img {
    width: 100%;
    transition: transform 0.5s ease;
}

.product-card:hover .product-img img {
    transform: scale(1.05);
}

.product-info h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.product-info .price {
    color: var(--text-light);
    font-size: 1rem;
}

/* Video Section */
.video-section {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* Parallax effect */
    z-index: -1;
}

.play-btn {
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: var(--transition);
}

.play-btn:hover {
    color: #fff;
    transform: scale(1.1);
}

/* Testimonial Section */
.testimonial-section {
    position: relative;
}

.testimonial-bg {
    background-size: cover;
    background-position: center;
    padding: 80px 40px;
    display: flex;
    position: relative;
}

.testimonial-content {
    display: flex;
    align-items: center;
    gap: 60px;
    width: 100%;
}

.author-img-wrapper {
    position: relative;
    flex-shrink: 0;
}

.author-img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    filter: grayscale(100%);
}

.quote-icon {
    position: absolute;
    bottom: -15px;
    right: -15px;
    font-size: 3rem;
    color: var(--text-light);
    background-color: #111;
    padding: 10px;
}

.testimonial-text-wrapper {
    flex: 1;
}

.testimonial-text-wrapper h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.quote-text {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 20px;
}

.author-name {
    color: var(--primary-color);
    font-weight: 500;
}

.author-title {
    color: var(--text-muted);
}

.testimonial-nav {
    flex-shrink: 0;
    align-self: flex-end;
}

.next-btn {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.next-btn i {
    font-size: 1.5rem;
    margin-top: 5px;
}

/* Subscribe */
.subscribe-section {
    background-color: var(--bg-darker);
}

.subscribe-form {
    max-width: 500px;
    margin: 30px auto 15px;
    display: flex;
}

.subscribe-form input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    background-color: #fff;
    font-family: var(--font-body);
}

.subscribe-form button {
    padding: 15px 40px;
}

.sub-text {
    font-size: 0.85rem;
}

/* Blogs */
.blogs-row {
    display: flex;
    align-items: stretch;
    gap: 50px;
}

.blogs-grid {
    flex: 1.2;
    display: flex;
    gap: 30px;
}

.blog-card {
    flex: 1;
    background-color: var(--bg-darker);
}

.blog-info {
    padding: 20px;
}

.blog-info .date {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.blog-info h3 {
    font-size: 1.2rem;
    font-family: var(--font-heading);
}

.blogs-text {
    flex: 0.8;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.blogs-text h2 {
    font-size: 2.5rem;
}

/* Footer */
.footer {
    background-color: var(--bg-darker);
    border-top: 1px solid #333;
}

.footer-top .logo {
    justify-content: center;
    margin-bottom: 30px;
}

.footer-middle {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 30px 15px;
}

.contact-info {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px 40px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    color: var(--text-muted);
    font-size: 1.2rem;
}

.social-links a:hover {
    color: var(--primary-color);
}

.border-top {
    border-top: 1px solid #333;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 15px;
    font-size: 0.85rem;
    color: var(--text-muted);
    position: relative;
    flex-wrap: wrap;
}

.payment-icons {
    display: flex;
    gap: 10px;
    font-size: 1.5rem;
}

.footer-links a {
    margin: 0 5px;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.back-to-top {
    position: absolute;
    right: 15px;
    top: -20px;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.back-to-top:hover {
    background-color: #a88a65;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.8rem;
    cursor: pointer;
    z-index: 101;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-text h1 {
        font-size: 2.5rem;
    }

    .branded-grid {
        flex-direction: column;
        text-align: center;
    }

    .branded-left-images,
    .branded-text-center,
    .branded-right-image {
        width: 100%;
        flex: none;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .split-row {
        flex-direction: column;
        text-align: center;
    }

    .split-row.reverse {
        flex-direction: column;
        text-align: center;
    }

    .split-row .text-col {
        padding-right: 0;
        margin-bottom: 30px;
    }

    .blogs-row {
        flex-direction: column;
    }

    .testimonial-content {
        flex-direction: column;
        text-align: center;
    }

    .testimonial-nav {
        align-self: center;
    }

    .hero-left-sidebar {
        display: none;
    }

    .hero-content-container {
        padding-left: 15px;
        padding-right: 15px;
        text-align: center;
    }

    .hero-text {
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 50px 0;
    }

    /* Reduce large gaps on mobile */
    .hero-section {
        min-height: auto;
        padding: 120px 0 60px;
        height: auto;
    }

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

    .hero-text p {
        font-size: 0.9rem;
    }

    .split-row .text-col h2,
    .branded-text-center h2,
    .blogs-text h2,
    .formal-suits-section h2,
    .testimonial-text-wrapper h2,
    .subscribe-section h2 {
        font-size: 1.8rem;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background-color: var(--bg-darker);
        padding: 100px 30px 30px;
        transition: right 0.3s ease;
        z-index: 100;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
    }

    .main-nav.active {
        right: 0;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 25px;
    }

    .main-nav a {
        font-size: 1.3rem;
    }

    .header-actions {
        display: none;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    /* Make products act as a scrollable carousel on mobile */
    .products-row {
        flex-direction: row;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 15px;
        padding-bottom: 20px;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .products-row::-webkit-scrollbar {
        display: none;
    }

    .product-card {
        flex: 0 0 85%;
        scroll-snap-align: center;
    }

    /* Make blogs act as a scrollable carousel on mobile */
    .blogs-grid {
        flex-direction: row;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 15px;
        padding-bottom: 20px;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .blogs-grid::-webkit-scrollbar {
        display: none;
    }

    .blog-card {
        flex: 0 0 85%;
        scroll-snap-align: center;
    }

    .subscribe-form {
        flex-direction: column;
        gap: 10px;
    }

    .subscribe-form button {
        width: 100%;
    }

    .contact-info {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .back-to-top {
        position: relative;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        margin-top: 15px;
    }
}