.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    max-height: 800px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #ffffff;
  
}

.full-width-section {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #8b5d33;
    background-image: url('../img/patternw.png');
    background-size: cover;
    background-position: bottom;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(139, 93, 51, 0.9) 0%, rgba(139, 93, 51, 0.7) 100%);
    z-index: 1;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-text-container {
    flex: 0 0 50%;
    max-width: 600px;
    padding-right: 40px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.1;
    letter-spacing: -0.5px;
    animation: fadeInUp 0.8s ease forwards;
    color: #ffffff;
}

.hero-title .highlight {
    color: #ffffff;
    position: relative;
    display: inline-block;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 5px;
    width: 100%;
    height: 10px;
    background-color: rgba(255, 255, 255, 0.3);
    z-index: -1;
}

.hero-subtitle {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.4;
    color: #ffffff;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.2s;
    opacity: 0;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.4s;
    opacity: 0;
    color: #e7e7e7;
}

.hero-cta {
    display: flex;
    gap: 20px;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.6s;
    opacity: 0;
}

.hero-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.hero-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: transform 0.4s cubic-bezier(0.7, 0, 0.3, 1);
    transform: skewX(-20deg);
}

.hero-button:hover::before {
    transform: translateX(100%) skewX(-20deg);
}

.hero-button.primary {
    background-color: #ffffff;
    color: #8b5d33;
    box-shadow: var(--shadow-md);
}

.hero-button.primary:hover {
    background-color: #e7e7e7;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.hero-button.secondary {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.hero-button.secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.hero-image-container {
    flex: 0 0 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
    animation: floatAnimation 6s ease-in-out infinite;
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    animation: fadeIn 1s ease forwards;
    animation-delay: 0.8s;
    opacity: 0;
}


.floating-badge {
    position: absolute;
    display: flex;
    align-items: center;
    width: auto;
    height: 44px;
    background: #ffffff;
    border-radius: 50px;
    box-shadow: var(--shadow-md);
    padding: 8px 16px;
    text-align: left;
    opacity: 0;
}

.badge-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    color: #8b5d33;
    margin-right: 8px;
}

.badge-text {
    display: flex;
    flex-direction: column;
}

.badge-text span:first-child {
    font-weight: 700;
    font-size: 0.9rem;
    color: #4a3b24;
    line-height: 1.1;
}

.badge-text span:last-child {
    font-size: 0.75rem;
    color: #857259;
    line-height: 1.1;
}

.floating-badge.quality {
    top: -5%;
    left: -15%;
    animation: fadeInBadge 0.8s ease forwards, floatBadge 5s ease-in-out infinite;
    animation-delay: 1s;
}

.floating-badge.organic {
    top: 30%;
    right: -15%;
    animation: fadeInBadge 0.8s ease forwards, floatBadge 5s ease-in-out infinite;
    animation-delay: 1.3s;
}

.floating-badge.health {
    bottom: 10%;
    left: -10%;
    animation: fadeInBadge 0.8s ease forwards, floatBadge 5s ease-in-out infinite;
    animation-delay: 1.6s;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    z-index: 5;
    animation: fadeIn 1s ease forwards;
    animation-delay: 2s;
    opacity: 0;
}

.hero-scroll-indicator span {
    font-size: 0.9rem;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

.scroll-arrow {
    animation: scrollBounce 2s infinite;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

@keyframes fadeInBadge {
    from {
        opacity: 0;
        transform: scale(0.8) translateX(-20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateX(0);
    }
}

@keyframes floatAnimation {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

@keyframes floatBadge {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(8px);
    }
}

@keyframes scrollBounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}


@media screen and (max-width: 1200px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.6rem;
    }
}

@media screen and (max-width: 992px) {
    .hero-content {
      
        text-align: center;
    }
	
	.floating-badge.quality{
		display: none;
	}
	
	.floating-badge.health{
		display: none;
	}
    
    .hero-text-container {
        flex: 0 0 100%;
        max-width: 100%;
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-image-container {
        flex: 0 0 100%;
    }
    
    .hero-image-wrapper {
        max-width: 400px;
    }
}

@media screen and (max-width: 768px) {
    .hero-section {
        min-height: 600px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-button {
        padding: 12px 24px;
    }
    
    .floating-badge {
        height: 36px;
        padding: 6px 12px;
    }
    
    .badge-icon {
        width: 22px;
        height: 22px;
    }
    
    .badge-icon svg {
        width: 18px;
        height: 18px;
    }
}

@media screen and (max-width: 576px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-button {
        width: 100%;
    }
    
    .floating-badge {
        height: 32px;
        padding: 4px 10px;
    }
    
    .badge-icon {
        width: 20px;
        height: 20px;
        margin-right: 6px;
    }
    
    .badge-icon svg {
        width: 16px;
        height: 16px;
    }
    
    .badge-text span:first-child {
        font-size: 0.8rem;
    }
    
    .badge-text span:last-child {
        font-size: 0.65rem;
    }
}