/* Hero.css */
.hero-section {
    height: 93.5vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.col-full{
    max-width: 100% !important;
    padding: 0px !important;
    margin: 0px !important;
}
.hero-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    z-index: 1;
    height: 100%;
    width: 100%;
    gap: 130px;
}

.hero-content {
    flex: 0 0 45%;
    max-width: 45%;
    z-index: 2;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    margin-bottom: 0;
    opacity: 0.9;
    max-width: 100%;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-buttons-container {
    display: none;
}

.hero-image-container {
    flex: 0 0 50%;
    max-width: 50%;
    height: 100%;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bag-image {
    position: absolute;
    width: auto;
    height: auto;
    max-width: min(40vw, 400px);
    max-height: min(60vh, 500px);
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
    transition: transform 3s ease-in-out;
}

.bag-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.scrolling-features {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 15px 0;
    z-index: 2;
}

.scrolling-content {
    display: flex;
    align-items: center;
    white-space: nowrap;
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    font-weight: 500;
    will-change: transform;
}

.scrolling-content span {
    margin: 0 clamp(15px, 2vw, 30px);
}

.gold-text {
    color: #D4AF37;
}

/* Button styles */
.hero-button {
    padding: clamp(10px, 1.5vw, 12px) clamp(20px, 2.5vw, 30px);
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    background-color: #D4AF37;
    color: #000;
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    transition: all 0.3s ease;
    margin: 0 10px;
}

.hero-button.outline {
    background-color: #1976d2;
    color: #D4AF37 !important;
}

/* Responsive styles */
@media (max-width: 1200px) {
    .hero-container {
        gap: 30px;
    }
    .bag-image {
        max-width: min(45vw, 350px);
    }
}

@media (max-width: 1035px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
        padding-top: 80px;
        justify-content: flex-start;
        gap: 30px;
    }
    .hero-content {
        flex: 0;
        max-width: 100%;
        padding-right: 0;
        order: 1;
    }
    .hero-image-container {
        flex: 0;
        max-width: 100%;
        height: auto;
        min-height: 300px;
        order: 2;
        margin: 20px 0;
    }
    .bag-image {
        position: relative;
        max-width: min(70vw, 350px);
        max-height: min(50vh, 400px);
    }
    .hero-buttons-container {
        display: flex;
        justify-content: center;
        margin-top: 20px;
        order: 3;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .hero-container {
        padding-top: 60px;
        gap: 20px;
    }
    .hero-image-container {
        min-height: 250px;
    }
    .bag-image {
        max-width: min(80vw, 300px);
    }
    .hero-buttons-container {
        flex-direction: row;
        gap: 15px;
    }
}

@media (max-width: 576px) {
    .hero-container {
        padding: 60px 20px 0;
    }
    .hero-image-container {
        min-height: 200px;
    }
    .bag-image {
        max-width: min(90vw, 280px);
    }
    .hero-buttons-container {
        flex-direction: column;
        gap: 10px;
    }
}

.hero-image-container.single {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.hero-image-container.single .bag-image {
    position: relative;
    max-width: 400px;
    max-height: 400px;
    margin: 0 auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}

@media (max-width: 1035px) {
    .hero-container {
        flex-direction: column;
        align-items: center;
        padding-top: 80px;
        gap: 130px;
    }
    .hero-container h1 {
        font-size: 30px;
    }
    .hero-image-container.single {
        order: 2;
        width: 100%;
        margin: 0 auto;
        height: auto;
    }
    .hero-image-container.single .bag-image {
        max-width: 300px;
    }
}

.hero-buttons-desktop {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

@media (max-width: 1035px) {
    .hero-buttons-desktop {
        display: none;
    }
}

@media screen and (max-width: 555px) {
    .hero-content h1 {
        font-size: 1.6rem;
        line-height: 1.3;
    }
    .hero-content p {
        display: none;
    }
    .hero-buttons-container {
        flex-direction: column;
        gap: 12px;
    }
}

@media screen and (max-height: 850px) {
    .hero-container {
        gap: 80px;
    }
}

@media screen and (max-height: 760px) {
    .hero-container {
        gap: 50px;
    }
}

@media screen and (max-height: 690px) {
    .hero-container {
        gap: 30px;
    }
}

@media screen and (max-height: 650px) {
    .hero-container {
        gap: 10px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        background-position: top;
    }
}
@media (max-width: 992px) {
    .hero-section {
        height: 87vh;
    }
    .hero-container{
        gap: 80px;
    }
}

@media (max-height: 813px) and (max-width: 768px) {
    .hero-buttons-container {
        flex-direction: row !important;
        gap: 15px;
        justify-content: center;
    }
    .hero-button {
        max-width: none !important; /* Remove the 40% limit */
        width: auto !important;
        min-width: 140px;
        padding: 10px 20px !important;
        font-size: 0.9rem !important;
    }
}

@media (max-height: 867px) and (max-width:500px) {
    .hero-section{
        height: 75vh !important;
    }
    .hero-container {
        padding-top:30px;
        gap: 30px;
    }
    
}
/*@media (max-height: 817px) and (max-width: 768px) {*/
/*    .hero-section{*/
/*        height: 85vw;*/
/*    }*/
    
/*}*/
.hero-button:focus,
.hero-button:active {
    outline: none !important;
    box-shadow: none !important;
    border-color: inherit !important;
}

.hero-button.outline:focus,
.hero-button.outline:active {
    border: 2px solid black !important;
    background-color: transparent !important;
    color: black !important;
    padding: 0 5px;
}

/* Remove any transform effects on buttons */
.hero-button {
    transform: none !important;
}
/* Add these styles to your existing hero.css */

.bag-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bag-image-container img {
    position: absolute;
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: all 0.8s ease;
    max-width: min(40vw, 400px);
    max-height: min(60vh, 500px);
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}

.bag-image-new {
    opacity: 0;
    transform: translateX(100px);
}

.bag-image-active {
    opacity: 1;
    transform: translateX(0);
}

.bag-image-exit {
    opacity: 0;
    transform: translateX(-100px);
}

/* Update the existing bag-image styles */
.bag-image {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Responsive adjustments */
@media (max-width: 1035px) {
    .bag-image-container img {
        max-width: min(70vw, 350px);
        max-height: min(50vh, 400px);
    }
}

@media (max-width: 768px) {
    .bag-image-container img {
        max-width: min(80vw, 300px);
    }
}

@media (max-width: 576px) {
    .bag-image-container img {
        max-width: min(90vw, 280px);
    }
}