/* Hero Banner Styles - Matching Premium Layout */

/* Import Gen Z Modern Fonts */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700;800;900&family=Outfit:wght@400;500;600;700;800;900&family=Inter:wght@400;500;600;700;800;900&display=swap');

/* Hero Section with Large Brand - Full Width with Rounded Bottom Only */
.hero-section-brand-large {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
        background: 
            linear-gradient(135deg, #00a551 0%, #00a551 25%, #00a551 50%, #00a551 75%, #00a551 100%),
            linear-gradient(45deg, #00a551 0%, #00a551 50%, #00a551 100%);
    background-size: 100% 100%, 200% 200%;
    background-position: 0% 0%, 0% 0%;
    animation: gradient-move 15s ease infinite;
    position: relative;
    overflow: hidden;
    padding: 8rem 2rem 12rem;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    border-radius: 0;
    margin-bottom: -50px;
    z-index: 2;
}

@keyframes gradient-move {
    0%, 100% {
        background-position: 0% 0%, 0% 0%;
    }
    25% {
        background-position: 0% 0%, 25% 25%;
    }
    50% {
        background-position: 0% 0%, 50% 50%;
    }
    75% {
        background-position: 0% 0%, 25% 25%;
    }
}

/* Modern gradient overlay for Home 1 */
.hero-section-brand-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
        background: 
            radial-gradient(circle at 20% 30%, rgba(0, 165, 81, 0.2) 0%, transparent 50%),
            radial-gradient(circle at 80% 70%, rgba(0, 165, 81, 0.15) 0%, transparent 50%),
        repeating-linear-gradient(45deg, transparent, transparent 50px, rgba(255, 255, 255, 0.03) 50px, rgba(255, 255, 255, 0.03) 100px);
    pointer-events: none;
    z-index: 1;
    animation: overlay-pulse 8s ease-in-out infinite;
}

@keyframes overlay-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Subtle Decorative Circular Elements */
.hero-decorative-circle {
    position: absolute;
    border-radius: 50%;
    z-index: 1;
    animation: float 8s ease-in-out infinite;
    pointer-events: none;
    opacity: 0.4;
}

.circle-1 {
    width: 500px;
    height: 500px;
    top: -10%;
    left: -8%;
    background: radial-gradient(circle, rgba(255, 168, 197, 0.12) 0%, transparent 60%);
    border: none;
    animation-delay: 0s;
}

.circle-2 {
    width: 400px;
    height: 400px;
    bottom: -5%;
    right: -5%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 60%);
    border: none;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 0.4;
    }
    50% {
        transform: translateY(-15px) scale(1.02);
        opacity: 0.5;
    }
}

.hero-brand-wrapper {
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    padding: 2rem 0;
}

/* Ensure decorative elements stay behind content */
.hero-brand-wrapper > * {
    position: relative;
    z-index: 3;
}

.brand-title-extra-large {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: clamp(4.5rem, 13vw, 11rem);
    font-weight: 800;
    line-height: 1;
    margin: 0;
    color: #001f3f;
    letter-spacing: -2px;
    text-transform: uppercase;
    position: relative;
    z-index: 3;
    text-align: center;
    font-feature-settings: "liga" 1, "kern" 1;
    text-shadow: 0 4px 20px rgba(255, 255, 255, 0.2);
    word-spacing: 0.05em;
}

.brand-star {
    color: #001f3f;
    font-size: 0.6em;
    display: inline-block;
    margin: 0 0.1em;
    transform: rotate(0deg);
    animation: star-rotate 3s ease-in-out infinite;
}

@keyframes star-rotate {
    0%, 100% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.1); }
}

/* Modern Home 1 Styles */
.brand-title-modern {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #001f3f;
    font-weight: 800;
    letter-spacing: -2px;
}

.brand-icon-modern {
    display: inline-block;
    margin: 0 0.3em;
    vertical-align: middle;
    animation: icon-float 3s ease-in-out infinite;
    filter: drop-shadow(0 4px 15px rgba(255, 168, 197, 0.5));
}

.brand-icon-modern svg {
    width: 60px;
    height: 60px;
    transition: transform 0.3s ease;
}

.brand-icon-modern:hover svg {
    transform: rotate(180deg) scale(1.1);
}

@keyframes icon-float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(5deg); }
}

.hero-slogan-modern {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #001f3f;
    letter-spacing: 6px;
    font-weight: 600;
    text-shadow: 0 2px 15px rgba(255, 255, 255, 0.4);
    opacity: 0.95;
}

.slogan-icon-modern {
    display: inline-block;
    margin: 0 0.3em;
    vertical-align: middle;
    animation: icon-pulse 2s ease-in-out infinite;
}

.slogan-icon-modern svg {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.slogan-icon-modern:hover svg {
    transform: scale(1.3) rotate(90deg);
}

@keyframes icon-pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.9; }
}

/* Hero Slogan Text - Integrated into Banner */
.hero-slogan-text {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: clamp(1.5rem, 4vw, 2.8rem);
    font-weight: 600;
    line-height: 1.4;
    margin: 1rem 0 0;
    color: #001f3f;
    text-transform: uppercase;
    letter-spacing: 6px;
    text-align: center;
    position: relative;
    z-index: 3;
    text-shadow: 0 2px 15px rgba(255, 255, 255, 0.4);
    font-feature-settings: "kern" 1, "liga" 1;
    opacity: 0.95;
}

.hero-slogan-text .slogan-star {
    color: #001f3f;
    font-size: 0.8em;
    display: inline-block;
    margin: 0 0.2em;
    animation: star-pulse 2s ease-in-out infinite;
}

@keyframes star-pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.8; }
}

/* Hero Products Overlay */
.hero-products-overlay {
    position: relative;
    display: flex;
    gap: 1.5rem;
    align-items: center;
    justify-content: center;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    flex-wrap: wrap;
    margin: 0.5rem 0;
}

/* Collection Preview in Hero */
.hero-collection-preview {
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 3rem auto 0;
    z-index: 3;
}

.collection-preview-section-title {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.collection-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    padding: 0 1rem;
}

.collection-preview-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1;
    transition: transform 0.3s ease;
}

.collection-preview-item:hover {
    transform: translateY(-5px);
}

.collection-preview-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    position: relative;
}

.collection-preview-image,
.collection-preview-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.collection-preview-item:hover .collection-preview-image {
    transform: scale(1.05);
}

.collection-preview-placeholder {
    background: linear-gradient(135deg, #00a551 0%, #00a551 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.collection-preview-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
    padding: 1rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.collection-preview-item:hover .collection-preview-overlay {
    transform: translateY(0);
}

.collection-preview-title {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: white;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

/* Hero Values Section - Styled like reference image with curved banner */
.hero-values {
    position: relative;
    display: flex;
    gap: 0;
    align-items: center;
    justify-content: center;
    z-index: 3;
    width: 100%;
    max-width: 1400px;
    margin: 2rem auto 0;
    background: linear-gradient(135deg, #00a551 0%, #00a551 100%);
    border-radius: 80px;
    padding: 2.5rem 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out 0.6s forwards;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.hero-values:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-value-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 1.5rem;
    position: relative;
    opacity: 0;
    transform: scale(0.8);
    animation: scaleIn 0.6s ease-out forwards;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.hero-value-item:nth-child(1) {
    animation-delay: 0.7s;
}

.hero-value-item:nth-child(2) {
    animation-delay: 0.8s;
}

.hero-value-item:nth-child(3) {
    animation-delay: 0.9s;
}

.hero-value-item:nth-child(4) {
    animation-delay: 1s;
}

.hero-value-item:hover {
    transform: scale(1.05);
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.hero-value-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60%;
    background: rgba(255, 255, 255, 0.2);
}

.value-star-icon {
    font-size: 2.5rem;
    color: #f5f5dc;
    display: block;
    margin-bottom: 1rem;
    font-weight: 300;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.3);
    line-height: 1;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
    transition: transform 0.3s ease, color 0.3s ease;
    animation: starPulse 2s ease-in-out infinite;
}

.hero-value-item:hover .value-star-icon {
    transform: rotate(180deg) scale(1.2);
    color: #ffffff;
}

@keyframes starPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.value-text-line1,
.value-text-line2 {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #f5f5dc;
    display: block;
    line-height: 1.3;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    font-feature-settings: "kern" 1, "liga" 1;
    transition: transform 0.3s ease, color 0.3s ease;
}

.hero-value-item:hover .value-text-line1,
.hero-value-item:hover .value-text-line2 {
    transform: translateY(-2px);
    color: #ffffff;
}

.value-text-line1 {
    margin-bottom: 0.2rem;
}

.value-text-line2 {
    margin-top: 0;
}

.hero-product-item {
    width: 200px;
    height: 300px;
    position: relative;
    transform: rotate(-5deg);
    transition: transform 0.4s ease;
}

.hero-product-item:nth-child(even) {
    transform: rotate(5deg);
    margin-top: -2rem;
}

.hero-product-item:hover {
    transform: rotate(0deg) scale(1.1);
    z-index: 10;
}

.hero-product-image,
.hero-product-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    border: 3px solid rgba(255, 255, 255, 0.1);
}

.hero-product-placeholder {
    background: linear-gradient(135deg, #2c3e50 0%, #8b7355 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Star Badge - Subtle Circular Ring */
.hero-star-badge {
    position: absolute;
    top: 18%;
    right: 10%;
    z-index: 4;
    width: 180px;
    height: 180px;
    opacity: 0.85;
}

.badge-ring {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
}

.badge-ring-circle {
    stroke: rgba(255, 255, 255, 0.7);
    stroke-width: 1.5;
    fill: none;
}

.badge-ring-text {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    fill: rgba(255, 255, 255, 0.9);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.badge-star-center {
    font-size: 28px;
    fill: #ffa8c5;
    font-weight: normal;
    opacity: 0.9;
}

/* Slogan Section - Removed, now integrated into hero */

/* Featured Products Display */
.featured-products-display {
    padding: 6rem 0;
    background: white;
}

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

.product-display-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border: 2px solid #ffa8c5;
    border-radius: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    background: white;
}

.product-display-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(255, 168, 197, 0.3);
}

.product-card-left {
    background: #ffa8c5;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-display-image,
.product-display-placeholder {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 4px;
}

.product-display-placeholder {
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.product-card-right {
    background: #00a551;
    color: white;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-display-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: white;
}

.product-display-location {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-display-tags {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.product-tag {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.product-display-description {
    font-size: 0.9rem;
    line-height: 1.6;
    opacity: 0.9;
    margin: 0;
}

/* Shop All Button */
.shop-all-button-wrapper {
    text-align: center;
    margin-top: 3rem;
}

.btn-shop-all {
    background: #ffa8c5;
    color: white;
    padding: 1.2rem 4rem;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    border: 2px solid #ffa8c5;
}

.btn-shop-all:hover {
    background: transparent;
    color: #ffa8c5;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 168, 197, 0.4);
}

/* Responsive */
@media (max-width: 968px) {
    .hero-section-brand-large {
        border-radius: 0;
    }
    
    .hero-products-overlay {
        gap: 1rem;
    }
    
    .hero-product-item {
        width: 150px;
        height: 220px;
    }
    
    .products-display-grid {
        grid-template-columns: 1fr;
    }
    
    .product-display-card {
        grid-template-columns: 1fr;
    }
    
    .product-card-left {
        min-height: 200px;
    }
}

@media (max-width: 768px) {
    .hero-section-brand-large {
        min-height: 100vh;
        border-radius: 0;
        padding: 4rem 1rem 8rem;
        margin-bottom: -30px;
    }
    
    .brand-title-extra-large {
        font-size: clamp(2.5rem, 10vw, 4rem);
        line-height: 1.1;
    }
    
    .hero-brand-wrapper {
        padding: 0 0.5rem;
    }
    
    .brand-icon-modern svg {
        width: 40px;
        height: 40px;
    }
    
    .slogan-icon-modern svg {
        width: 18px;
        height: 18px;
    }
    
    .hero-products-overlay {
        flex-direction: column;
        gap: 0.5rem;
        margin: 0.5rem 0;
    }
    
    .collection-preview-section-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
        letter-spacing: 2px;
    }
    
    .collection-preview-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 1rem;
    }
    
    .hero-values {
        padding: 1.5rem 1rem;
        border-radius: 40px;
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-value-item {
        flex: 1;
    }
}

/* Extra Small Mobile Devices */
@media (max-width: 480px) {
    .hero-section-brand-large {
        padding: 3rem 0.75rem 6rem;
        min-height: 80vh;
    }
    
    .brand-title-extra-large {
        font-size: clamp(2rem, 12vw, 3rem);
        line-height: 1.1;
    }
    
    .hero-slogan-text {
        font-size: clamp(0.85rem, 4vw, 1rem);
        margin-top: 1rem;
    }
    
    .hero-star-badge {
        margin-top: 1rem;
        padding: 0.4rem 1rem;
    }
    
    .star-badge-text {
        font-size: 0.65rem;
    }
    
    .hero-products-overlay {
        margin: 1rem 0;
        gap: 0.5rem;
    }
    
    .hero-product-item {
        width: 100px;
        height: 150px;
    }
    
    .collection-preview-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .collection-preview-section-title {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .hero-values {
        padding: 1rem 0.75rem;
        gap: 0.75rem;
    }
    
    .hero-value-item {
        padding: 0.75rem;
    }
    
    .value-star-icon {
        font-size: 1.2rem;
    }
    
    .value-text-line1,
    .value-text-line2 {
        font-size: 0.75rem;
    }
    
    .hero-value-item {
        flex: 1;
        width: 100%;
        padding: 0.8rem 0;
    }
    
    .hero-value-item:not(:last-child)::after {
        display: block;
        right: auto;
        bottom: 0;
        top: auto;
        left: 50%;
        transform: translateX(-50%);
        width: 60%;
        height: 1px;
    }
    
    .value-star-icon {
        font-size: 1.8rem;
        margin-bottom: 0.6rem;
    }
    
    .value-text-line1,
    .value-text-line2 {
        font-size: 0.85rem;
        letter-spacing: 2px;
    }
    
    .hero-product-item {
        width: 120px;
        height: 180px;
    }
    
    .hero-product-item:nth-child(even) {
        margin-top: 0;
    }
    
    .hero-star-badge {
        top: 10%;
        right: 5%;
        width: 150px;
        height: 150px;
    }
    
    .hero-star-badge {
        width: 140px;
        height: 140px;
        top: 12%;
        right: 8%;
    }
    
    .badge-ring-text {
        font-size: 8px;
        letter-spacing: 3px;
    }
    
    .badge-star-center {
        font-size: 20px;
    }
    
    .hero-slogan-text {
        font-size: 1.5rem;
        margin: 1.5rem 0 0;
    }
    
    /* Reduce decorative elements on mobile */
    .circle-1 {
        width: 300px;
        height: 300px;
        opacity: 0.2;
    }
    
    .circle-2 {
        width: 250px;
        height: 250px;
        opacity: 0.15;
    }
}

/* Animation Classes */
[data-animate="slide-in"] {
    opacity: 0;
    transform: translateX(-50px);
}

