/* Brand Layout Styles - Inspired by Premium E-commerce */

/* Topbar Marquee */
.topbar-marquee {
    background: #00a551;
    color: #ffffff;
    padding: 0.75rem 0;
    overflow: hidden;
    position: relative;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1001;
}

.marquee-container {
    display: flex;
    width: 200%;
    animation: marquee-scroll 30s linear infinite;
    will-change: transform;
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    white-space: nowrap;
    flex-shrink: 0;
    width: 50%;
    padding: 0 1rem;
}

.marquee-text {
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    color: #ffffff;
}

.marquee-separator {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.6rem;
    margin: 0 0.5rem;
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Pause on hover for better UX */
.topbar-marquee:hover .marquee-container {
    animation-play-state: paused;
}

/* Smooth scrolling */
.marquee-container {
    transition: animation-play-state 0.3s ease;
}

/* Ensure topbar is above header */
.site-header {
    position: relative;
    z-index: 1000;
}

/* Hero Brand Section */
.hero-section-brand {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #00a551 0%, #00a551 50%, #00a551 100%);
    position: relative;
    overflow: hidden;
    padding: 4rem 2rem;
}

.hero-section-brand::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 40%, rgba(201, 169, 97, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(139, 115, 85, 0.15) 0%, transparent 50%);
    opacity: 0.8;
}

.hero-brand-container {
    position: relative;
    z-index: 2;
    text-align: center;
}

.brand-title-large {
    font-size: clamp(4rem, 12vw, 10rem);
    font-weight: 900;
    line-height: 0.9;
    margin: 0;
    color: white;
    letter-spacing: -3px;
    text-transform: uppercase;
    position: relative;
}

.brand-title-large .brand-accent {
    color: #ffa8c5;
    display: block;
    margin-top: -0.1em;
}

.brand-tagline {
    margin-top: 2rem;
}

.tagline-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Products Showcase Section */
.products-showcase-section {
    padding: 6rem 0;
    background: white;
}

.products-showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.product-showcase-item {
    background: white;
    border-radius: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: 1px solid #e0e0e0;
}

.product-showcase-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: var(--secondary-color);
}

.product-showcase-image {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    background: #00a551;
}

.product-img,
.product-placeholder-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-showcase-item:hover .product-img,
.product-showcase-item:hover .product-placeholder-img {
    transform: scale(1.1);
}

.product-overlay-showcase {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 165, 81, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-showcase-item:hover .product-overlay-showcase {
    opacity: 1;
}

.btn-showcase {
    background: #ffa8c5;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 0;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    border: 2px solid #ffa8c5;
}

.btn-showcase:hover {
    background: transparent;
    color: #ffa8c5;
    transform: scale(1.05);
}

.product-showcase-info {
    padding: 2rem;
    background: white;
}

.product-showcase-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-showcase-category {
    font-size: 0.85rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

.showcase-cta {
    text-align: center;
    margin-top: 3rem;
}

/* About Showcase Section */
.about-showcase-section {
    padding: 8rem 0;
    background: #f8f9fa;
}

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

.about-text-content {
    padding-right: 3rem;
}

.section-title-large {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    margin-bottom: 2rem;
    line-height: 1.1;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: -2px;
}

.about-description {
    font-size: 1.15rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.about-image-showcase {
    position: relative;
}

.about-image-placeholder-large,
.about-image-large {
    width: 100%;
    height: 600px;
    border-radius: 0;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
    object-fit: cover;
}

/* Features Showcase Section */
.features-showcase-section {
    padding: 8rem 0;
    background: white;
}

.section-header-center {
    text-align: center;
    margin-bottom: 4rem;
}

.features-showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.feature-showcase-item {
    text-align: center;
    padding: 3rem 2rem;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.feature-showcase-item:hover {
    transform: translateY(-10px);
    border-color: #e0e0e0;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.feature-icon-large {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: block;
}

.feature-showcase-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.feature-showcase-item p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1rem;
}

/* CTA Showcase Section */
.cta-showcase-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #ffa8c5 0%, #ff8fb3 50%, #ffa8c5 100%);
    color: white;
    text-align: center;
}

.cta-showcase-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title-large {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    margin-bottom: 1.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -2px;
    line-height: 1.1;
}

.cta-description {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    color: white;
    opacity: 1;
    line-height: 1.7;
}

.cta-buttons-large {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary-large {
    background: #00a551;
    color: white;
    padding: 1.5rem 3.5rem;
    border-radius: 0;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 2px solid #00a551;
    text-decoration: none;
    display: inline-block;
}

.btn-primary-large:hover {
    background: transparent;
    color: #00a551;
    border-color: #00a551;
    transform: translateY(-3px);
        box-shadow: 0 10px 30px rgba(0, 165, 81, 0.3);
}

.btn-secondary-large {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 1.5rem 3.5rem;
    border-radius: 0;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 2px solid white;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary-large:hover {
    background: white;
    color: #ffa8c5;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

/* Responsive */
@media (max-width: 968px) {
    .about-showcase-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-text-content {
        padding-right: 0;
    }
    
    .products-showcase-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .features-showcase-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 2rem;
    }
}

/* Mobile Responsive for Topbar */
@media (max-width: 768px) {
    .topbar-marquee {
        padding: 0.5rem 0;
    }
    
    .marquee-text {
        font-size: 0.65rem;
        letter-spacing: 1px;
    }
    
    .marquee-separator {
        font-size: 0.5rem;
        margin: 0 0.25rem;
    }
    
    .marquee-content {
        gap: 1rem;
        padding: 0 0.5rem;
    }
}

@media (max-width: 480px) {
    .topbar-marquee {
        padding: 0.4rem 0;
    }
    
    .marquee-text {
        font-size: 0.6rem;
        letter-spacing: 0.5px;
    }
    
    .marquee-content {
        gap: 0.75rem;
        padding: 0 0.25rem;
    }
}

@media (max-width: 768px) {
    .brand-title-large {
        font-size: 4rem;
    }
    
    .cta-buttons-large {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary-large,
    .btn-secondary-large {
        width: 100%;
        max-width: 300px;
    }
    
    .products-showcase-grid {
        grid-template-columns: 1fr;
    }
    
    .product-showcase-image {
        height: 300px;
    }
}

/* Animation Classes */
[data-animate="fade-in-scale"] {
    opacity: 0;
    transform: scale(0.8);
}

[data-animate="slide-down"] {
    opacity: 0;
    transform: translateY(-20px);
}

