/* =========================================
   PROJECT PEGASUS - PREMIUM STREETWEAR
   ========================================= */

:root {
    --bg-dark: #000000;
    --bg-light: #0a0a0a;
    --bg-white: #ffffff;
    --text-main: #ffffff;
    --text-muted: #999999;
    --text-dark: #000000;
    --accent: #ffffff; /* Black and White focus */
    --accent-hover: #cccccc;
    
    --font-heading: 'Syncopate', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition-slow: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-med: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: 0.2s ease;
}

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

html {
    scroll-behavior: auto; /* Handled by Lenis */
}

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

/* =========================================
   TYPOGRAPHY
   ========================================= */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-weight: 700;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-tag {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--accent);
    margin-bottom: 1.5rem;
    display: inline-block;
}

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

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

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

/* =========================================
   CUSTOM CURSOR (Disabled for user-friendliness)
   ========================================= */
.cursor, .cursor-follower {
    display: none !important;
}

/* =========================================
   NAVIGATION
   ========================================= */
.top-banner {
    background-color: var(--bg-white);
    color: var(--text-dark);
    text-align: center;
    padding: 0.5rem 0;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    position: relative;
    z-index: 1001;
}

.navbar {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.2rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background-color: var(--bg-dark);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: background-color 0.3s;
}

.navbar.scrolled {
    background-color: rgba(0, 0, 0, 0.95);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    position: relative;
}

.hover-underline::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -4px;
    left: 0;
    background-color: var(--text-main);
    transition: width var(--transition-med);
}

.hover-underline:hover::after {
    width: 100%;
}

.logo-container {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-logo {
    height: 50px;
    filter: invert(1); /* Assuming black logo on dark bg */
    transition: transform 0.3s;
}

.nav-logo:hover {
    transform: scale(1.05);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-btn span {
    width: 30px;
    height: 2px;
    background-color: var(--text-main);
    transition: var(--transition-fast);
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%; /* For parallax */
    z-index: -1;
}

.hero-bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(5,5,5,0.3) 0%, rgba(5,5,5,0.8) 100%);
}

.hero-content {
    text-align: center;
    z-index: 2;
    padding: 0 5%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.overflow-hidden {
    overflow: hidden;
}

.hero-subtitle {
    display: inline-block;
    font-size: 1rem;
    letter-spacing: 0.3em;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 1rem;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 8rem);
    line-height: 1;
    margin-bottom: 1.5rem;
}

.outline-text {
    color: transparent;
    -webkit-text-stroke: 1px var(--text-main);
}

.hero-desc {
    max-width: 600px;
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-muted);
    margin: 0 auto 2.5rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--bg-white);
    color: var(--text-dark);
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: 0.1em;
    border-radius: 0;
    position: relative;
    overflow: hidden;
    transition: background-color 0.3s, color 0.3s;
}

.cta-button:hover {
    background-color: var(--text-muted);
    color: var(--bg-white);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 2;
}

.scroll-indicator span {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background-color: rgba(255,255,255,0.2);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background-color: var(--accent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(200%); }
}

/* =========================================
   MARQUEE
   ========================================= */
.marquee-container {
    width: 100%;
    padding: 2rem 0;
    background-color: var(--accent);
    overflow: hidden;
    white-space: nowrap;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.marquee-content {
    display: inline-block;
    animation: marquee 20s linear infinite;
}

.marquee-content span {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--bg-dark);
    margin: 0 1rem;
}

.marquee-content .dot {
    font-size: 1.5rem;
    color: var(--text-main);
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } /* Translate by half since content is duplicated */
}

/* =========================================
   ABOUT SECTION
   ========================================= */
.about {
    padding: 10rem 0;
    background-color: var(--bg-light);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-text {
    padding-right: 2rem;
}

.about-para {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 2rem;
    position: relative;
    padding-bottom: 5px;
}

.link-arrow::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--text-main);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--transition-med);
}

.link-arrow:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.link-arrow span {
    transition: transform 0.3s;
}

.link-arrow:hover span {
    transform: translateX(5px);
}

.about-image-container {
    position: relative;
    height: 700px;
    overflow: hidden;
}

.image-reveal {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-dark);
    z-index: 2;
}

.about-img {
    width: 100%;
    height: 120%; /* For parallax */
    object-fit: cover;
}

/* =========================================
   COLLECTION SECTION
   ========================================= */
.collection {
    padding: 10rem 0;
}

.collection-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 5rem;
}

.view-all-btn {
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    border-bottom: 1px solid var(--text-muted);
    padding-bottom: 5px;
    transition: color 0.3s, border-color 0.3s;
}

.view-all-btn:hover {
    color: var(--accent);
    border-color: var(--accent);
}

.collection-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.product-card {
    position: relative;
}

.product-image-wrap {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    margin-bottom: 1.5rem;
    background-color: var(--bg-light);
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.mockup-bg {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle, #222 0%, #111 100%);
}

.tee-img {
    width: 60%;
    height: auto;
    object-fit: contain;
    filter: invert(1);
}

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

.product-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background-color: var(--accent);
    color: var(--text-main);
    padding: 0.3rem 0.8rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.add-to-cart-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1rem;
    background-color: rgba(5,5,5,0.9);
    backdrop-filter: blur(5px);
    transform: translateY(100%);
    transition: transform var(--transition-med);
    text-align: center;
}

.add-to-cart-overlay span {
    font-weight: 600;
    letter-spacing: 0.1em;
    font-size: 0.9rem;
}

.product-card:hover .add-to-cart-overlay {
    transform: translateY(0);
}

.product-info {
    text-align: left;
}

.product-name {
    font-family: var(--font-body);
    font-size: 1.1rem;
    text-transform: none;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.product-price {
    color: var(--text-muted);
    font-weight: 400;
}

/* =========================================
   SEO / CULTURE SECTION
   ========================================= */
.seo-culture {
    padding: 8rem 0;
    background-color: var(--bg-light);
    border-top: 1px solid rgba(255,255,255,0.05);
}

.seo-header {
    margin-bottom: 5rem;
}

.seo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.seo-card {
    padding: 3rem 2rem;
    background-color: var(--bg-dark);
    border: 1px solid rgba(255,255,255,0.05);
    transition: transform 0.3s, border-color 0.3s;
}

.seo-card:hover {
    transform: translateY(-10px);
    border-color: rgba(230, 0, 0, 0.3);
}

.seo-icon {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255,255,255,0.2);
    margin-bottom: 1.5rem;
    transition: color 0.3s, -webkit-text-stroke 0.3s;
}

.seo-card:hover .seo-icon {
    color: var(--accent);
    -webkit-text-stroke: 1px var(--accent);
}

.seo-title {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    letter-spacing: 0;
}

.seo-text {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
    background-color: var(--bg-dark);
    padding: 6rem 0 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 4rem;
    margin-bottom: 5rem;
}

.footer-logo {
    height: 40px;
    filter: invert(1);
    margin-bottom: 1.5rem;
}

.footer-desc {
    color: var(--text-muted);
    font-size: 1rem;
}

.footer-links-group {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    color: var(--text-main);
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.8rem;
}

.footer-column ul a {
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-column ul a:hover {
    color: var(--accent);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.8rem;
    color: var(--text-muted);
}

.seo-footer-keywords span {
    margin: 0 0.5rem;
}

/* =========================================
   MOBILE MENU OVERLAY
   ========================================= */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(15px);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-100%);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-menu-overlay.active {
    transform: translateY(0);
}

.mobile-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
}

.mobile-link {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-main);
    text-transform: uppercase;
    transition: color 0.3s;
}

.mobile-link:hover {
    color: var(--accent);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* =========================================
   WHY CHOOSE US SECTION
   ========================================= */
.why-us {
    padding: 10rem 0;
    background-color: var(--bg-dark);
}

.why-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.features-list {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.feature-icon {
    font-size: 1.5rem;
    color: var(--accent);
    margin-top: -5px;
}

.feature-text h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
}

.feature-text p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.why-us-image {
    position: relative;
    height: 600px;
    border-radius: 4px;
    overflow: hidden;
}

.why-us-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* =========================================
   FAQ SECTION
   ========================================= */
.faq {
    padding: 8rem 0;
    background-color: var(--bg-light);
}

.faq-header {
    margin-bottom: 4rem;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.faq-item {
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 2rem 0;
    background: transparent;
    border: none;
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 1.2rem;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s;
}

.faq-question:hover {
    color: var(--accent);
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.4s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: var(--accent);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding-bottom: 2rem;
}

.faq-answer p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
}

/* =========================================
   RESPONSIVE DESIGN
   ========================================= */
@media (max-width: 1024px) {
    .about-grid, .collection-grid, .seo-grid, .why-us-grid {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none; /* Can be handled via JS for mobile menu */
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .about-grid, .why-us-grid {
        grid-template-columns: 1fr;
    }
    
    .about-text, .why-us-content {
        padding-right: 0;
        margin-bottom: 3rem;
    }
    
    .about-image-container, .why-us-image {
        height: 400px;
    }
    
    .collection-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .collection-grid {
        grid-template-columns: 1fr;
    }
    
    .seo-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
    }
    
    .footer-links-group {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}
