/* Homepage Styles - Gaurav Gupta Fashion */

/* CSS Variables for Gaurav Gupta Theme */
: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: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-secondary: 'Playfair Display', Georgia, serif;
}

/* Hero Section */
.gg-hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: #000;
}

.gg-hero__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.gg-hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.gg-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.4) 100%);
    z-index: 2;
}

.gg-hero__content {
    position: relative;
    z-index: 3;
    width: 100%;
    color: #fff;
}

.gg-hero__main {
    max-width: 800px;
    margin: 0 auto;
}

.gg-hero__subtitle {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.gg-hero__title {
    font-family: var(--font-secondary);
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: 2px;
}

.gg-hero__description {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 3rem;
    font-weight: 300;
    line-height: 1.6;
    opacity: 0.9;
}

/* Highlight Cards */
.gg-highlight {
    padding: 4rem 0;
    background-color: #fff;
}

.gg-highlight-card {
    position: relative;
    overflow: hidden;
    border-radius: 1px;
}

.gg-highlight-card__link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.gg-highlight-card__media {
    min-height: 320px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.gg-highlight-card__media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(3,3,3,0.05) 0%, rgba(3,3,3,0.8) 100%);
}

.gg-highlight-card__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    transition: opacity 0.3s ease;
}

.gg-highlight-card__media:hover .gg-highlight-card__overlay {
    opacity: 0.2;
}

.gg-highlight-card__label-group {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    z-index: 2;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.gg-highlight-card__label {
    font-size: 0.9rem;
    font-weight: 300;
    display: block;
}

.gg-highlight-card__cta {
    font-size: 0.75rem;
    margin-top: 0.35rem;
    letter-spacing: 4px;
}

.gg-highlight-card--view-all .gg-highlight-card__media {
    background: #111;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gg-highlight-card__media--solid {
    min-height: 320px;
    background: linear-gradient(120deg, rgba(197,40,47,0.9), rgba(0,0,0,0.75));
}

/* Grid Layout */
.gg-grid {
    display: grid;
    gap: 1.75rem;
}

.gg-grid--4 {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.gg-featured-carousel {
    position: relative;
}

.gg-featured-carousel .gg-product-card {
    min-height: 450px;
    border: 0;
    border-radius: 0;
}

.gg-featured-carousel .gg-product-card__content {
    padding: 1.35rem;
}

.gg-product-card__tag {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    padding: 0.25rem 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    background: rgba(0, 0, 0, 0.35);
    border-radius: 999px;
    align-self: flex-start;
}

.gg-featured-carousel .gg-product-card__image {
    min-height: 320px;
}

.gg-featured-carousel .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    pointer-events: none;
}

.gg-featured-carousel .owl-nav button {
    pointer-events: all;
    background: rgba(0, 0, 0, 0.6);
    border: none;
    color: #fff;
    padding: 0.35rem 0.75rem;
    border-radius: 0;
    font-size: 1.3rem;
    transition: background 0.2s ease;
}

.gg-featured-carousel .owl-nav button:hover {
    background: rgba(0, 0, 0, 0.85);
}

.gg-experience {
    padding: 5rem 0 3rem;
}

.gg-experience__media {
    position: relative;
    min-height: 420px;
    overflow: hidden;
}

.gg-experience__image {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1487412720507-e7ab37603c6f?w=1200&h=800&fit=crop');
    background-size: cover;
    background-position: center;
    filter: saturate(0.8) brightness(0.7);
}

.gg-experience__cards {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    z-index: 2;
}

.gg-experience-card {
    background: rgba(255, 255, 255, 0.92);
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: #111;
    display: flex;
    gap: 0.75rem;
    min-height: 120px;
}

.gg-experience-card__icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #111;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.gg-experience-card h6 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gg-experience-card p {
    margin: 0;
    font-size: 0.85rem;
    line-height: 1.4;
    color: rgba(0, 0, 0, 0.7);
}

.gg-product-card {
    background: var(--gg-white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gg-product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

.gg-product-card__link {
    display: block;
}

.gg-product-card__image {
    min-height: 280px;
    background-size: cover;
    background-position: center;
}

.gg-product-card__content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.gg-product-card__title {
    font-family: var(--font-secondary);
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 1px;
}

.gg-product-card__description {
    font-size: 0.9rem;
    color: var(--gg-secondary);
    min-height: 48px;
}

.gg-product-card__price {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

.gg-product-card__price-original {
    text-decoration: line-through;
    color: var(--gg-gray);
    font-size: 0.8rem;
}

/* Signature Experience Section */
.gg-experience {
    padding: 5rem 0;
}

.gg-experience__image {
    min-height: 320px;
    border-radius: 0;
    background-image: url('https://images.unsplash.com/photo-1487412720507-e7ab37603c6f?w=1200&h=800&fit=crop');
    background-size: cover;
    background-position: center;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
}

/* Buttons */
.gg-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 0;
    cursor: pointer;
}

.gg-btn--primary {
    background-color: #fff;
    color: #000;
    border: 1px solid #fff;
}

.gg-btn--primary:hover {
    background-color: transparent;
    color: #fff;
}

.gg-btn--light {
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
}

.gg-btn--light:hover {
    background-color: #fff;
    color: #000;
}

.gg-btn--large {
    padding: 1.2rem 3.5rem;
}

/* Collection Showcase */
.collection-showcase {
    padding: 6rem 0;
    background-color: var(--gg-white);
}

.collection-item {
    position: relative;
    overflow: hidden;
    margin-bottom: 2rem;
    aspect-ratio: 3/4;
}

.collection-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.collection-item:hover .collection-image {
    transform: scale(1.05);
}

.collection-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.collection-item:hover .collection-overlay {
    opacity: 1;
}

.collection-info {
    text-align: center;
    color: var(--gg-white);
}

.collection-title {
    font-family: var(--font-secondary);
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.collection-subtitle {
    font-size: 0.9rem;
    font-weight: 300;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.9;
}

/* Category Navigation Menu */
.category-nav {
    position: absolute;
    top: 50%;
    left: 2rem;
    transform: translateY(-50%);
    z-index: 4;
    background: rgba(0, 0, 0, 0.7);
    padding: 2rem 0;
    border-radius: 0;
}

.category-nav h4 {
    color: var(--gg-white);
    font-size: 1.1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    padding: 0 1.5rem;
}

.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-list li {
    margin-bottom: 0.5rem;
}

.category-list a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 300;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.category-list a:hover {
    color: var(--gg-white);
    background-color: rgba(255, 255, 255, 0.1);
    text-decoration: none;
}

/* Collections Grid Menu */
.collections-menu {
    position: absolute;
    top: 50%;
    right: 2rem;
    transform: translateY(-50%);
    z-index: 4;
    background: rgba(0, 0, 0, 0.7);
    padding: 2rem 0;
    border-radius: 0;
}

.collections-menu h4 {
    color: var(--gg-white);
    font-size: 1.1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    padding: 0 1.5rem;
}

.collections-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.collections-list li {
    margin-bottom: 0.5rem;
}

.collections-list a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 300;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.collections-list a:hover {
    color: var(--gg-white);
    background-color: rgba(255, 255, 255, 0.1);
    text-decoration: none;
}

/* Featured Products Section */
.featured-products {
    padding: 6rem 0;
    background-color: var(--gg-light);
}

.section-title {
    text-align: center;
    font-family: var(--font-secondary);
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 2px;
    color: var(--gg-primary);
    margin-bottom: 3rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1rem;
    color: var(--gg-secondary);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* About Section */
.about-section {
    padding: 6rem 0;
    background-color: var(--gg-white);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-title {
    font-family: var(--font-secondary);
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 2px;
    color: var(--gg-primary);
    margin-bottom: 2rem;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gg-secondary);
    margin-bottom: 2rem;
}

/* Testimonials/Reviews Section */
.testimonials-section {
    padding: 6rem 0;
    background-color: var(--gg-light);
}

.testimonial-card {
    background-color: var(--gg-white);
    padding: 2rem;
    text-align: center;
    border: none;
    box-shadow: none;
    transition: box-shadow 0.3s ease;
}

.testimonial-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-text {
    font-size: 1rem;
    font-style: italic;
    line-height: 1.6;
    color: var(--gg-secondary);
    margin-bottom: 1.5rem;
}

.testimonial-author {
    font-weight: 500;
    color: var(--gg-primary);
}

/* Responsive Hero */
@media (max-width: 992px) {
    .gg-hero {
        min-height: 70vh;
    }

    .gg-hero__main {
        padding: 0 1rem;
    }

    .gg-btn--large {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .gg-hero__title {
        font-size: 2.3rem;
        letter-spacing: 1px;
    }

    .gg-hero__subtitle,
    .gg-hero__description {
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .gg-hero {
        min-height: 60vh;
    }

    .gg-hero__title {
        font-size: 2rem;
        letter-spacing: 0.6px;
    }

    .gg-hero__description {
        font-size: 0.9rem;
    }
}