/* ==============================================
   ONE HERO - BASE STYLES
   ============================================== */
.oe-hero-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.oe-hero-inner {
    display: flex;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

/* ==============================================
   CONTENT SECTION
   ============================================== */
.oe-hero-content {
    position: relative;
    z-index: 10;
    padding-right: 40px;
}

.oe-hero-main-title {
    font-size: 72px;
    font-weight: 700;
    line-height: 1.1;
    margin: 0 0 20px 0;
}

.oe-hero-subtitle {
    font-size: 24px;
    font-weight: 500;
    margin: 0 0 20px 0;
}

.oe-hero-description {
    font-size: 18px;
    line-height: 1.6;
    margin: 0 0 30px 0;
    font-style: italic;
}

/* ==============================================
   BUTTONS
   ============================================== */
.oe-hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.oe-hero-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.oe-hero-button-icon {
    display: flex;
    align-items: center;
}

.oe-hero-button.primary {
    background-color: #2d5f3f;
    color: #ffffff;
}

.oe-hero-button.primary:hover {
    background-color: #1e3f2a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(45, 95, 63, 0.3);
}

.oe-hero-button.secondary {
    background-color: #2d5f3f;
    color: #ffffff;
}

.oe-hero-button.secondary:hover {
    background-color: #1e3f2a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(45, 95, 63, 0.3);
}

.oe-hero-button.outline {
    background-color: transparent;
    color: #2d5f3f;
    border-color: #2d5f3f;
}

.oe-hero-button.outline:hover {
    background-color: #2d5f3f;
    color: #ffffff;
    transform: translateY(-2px);
}

/* ==============================================
   IMAGES SECTION
   ============================================== */
.oe-hero-images {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.oe-hero-image {
    position: absolute;
}

.oe-hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* ==============================================
   ANIMATIONS
   ============================================== */
.oe-hero-animate {
    opacity: 0;
}

.oe-hero-animate.animated {
    opacity: 1;
}

/* Fade Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

/* Zoom Animation */
@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Bounce Animations */
@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes bounceInUp {
    0% {
        opacity: 0;
        transform: translateY(100px);
    }
    60% {
        opacity: 1;
        transform: translateY(-10px);
    }
    80% {
        transform: translateY(5px);
    }
    100% {
        transform: translateY(0);
    }
}

@keyframes bounceInDown {
    0% {
        opacity: 0;
        transform: translateY(-100px);
    }
    60% {
        opacity: 1;
        transform: translateY(10px);
    }
    80% {
        transform: translateY(-5px);
    }
    100% {
        transform: translateY(0);
    }
}

/* Slide Animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(100%);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-100%);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Rotate Animation */
@keyframes rotateIn {
    from {
        opacity: 0;
        transform: rotate(-180deg);
    }
    to {
        opacity: 1;
        transform: rotate(0);
    }
}

/* Loop Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

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

@keyframes swing {
    20% {
        transform: rotate(15deg);
    }
    40% {
        transform: rotate(-10deg);
    }
    60% {
        transform: rotate(5deg);
    }
    80% {
        transform: rotate(-5deg);
    }
    100% {
        transform: rotate(0deg);
    }
}

/* Apply animations */
.oe-hero-animate[data-animation="fadeIn"].animated {
    animation-name: fadeIn;
}

.oe-hero-animate[data-animation="fadeInUp"].animated {
    animation-name: fadeInUp;
}

.oe-hero-animate[data-animation="fadeInDown"].animated {
    animation-name: fadeInDown;
}

.oe-hero-animate[data-animation="fadeInLeft"].animated {
    animation-name: fadeInLeft;
}

.oe-hero-animate[data-animation="fadeInRight"].animated {
    animation-name: fadeInRight;
}

.oe-hero-animate[data-animation="zoomIn"].animated {
    animation-name: zoomIn;
}

.oe-hero-animate[data-animation="bounceIn"].animated {
    animation-name: bounceIn;
}

.oe-hero-animate[data-animation="bounceInUp"].animated {
    animation-name: bounceInUp;
}

.oe-hero-animate[data-animation="bounceInDown"].animated {
    animation-name: bounceInDown;
}

.oe-hero-animate[data-animation="slideInUp"].animated {
    animation-name: slideInUp;
}

.oe-hero-animate[data-animation="slideInDown"].animated {
    animation-name: slideInDown;
}

.oe-hero-animate[data-animation="slideInLeft"].animated {
    animation-name: slideInLeft;
}

.oe-hero-animate[data-animation="slideInRight"].animated {
    animation-name: slideInRight;
}

.oe-hero-animate[data-animation="rotateIn"].animated {
    animation-name: rotateIn;
}

/* Loop animations */
.oe-hero-animate[data-animation="float"].animated {
    animation-name: float;
    animation-iteration-count: infinite;
}

.oe-hero-animate[data-animation="pulse"].animated {
    animation-name: pulse;
    animation-iteration-count: infinite;
}

.oe-hero-animate[data-animation="swing"].animated {
    animation-name: swing;
    animation-iteration-count: infinite;
}

/* Animation fill mode */
.oe-hero-animate.animated {
    animation-fill-mode: both;
}

/* ==============================================
   RESPONSIVE
   ============================================== */
@media (max-width: 1024px) {
    .oe-hero-inner {
        flex-direction: column;
        text-align: center;
    }

    .oe-hero-content {
        width: 100% !important;
        padding-right: 0;
        margin-bottom: 40px;
    }

    .oe-hero-images {
        width: 100% !important;
        min-height: 400px;
    }

    .oe-hero-main-title {
        font-size: 48px;
    }

    .oe-hero-subtitle {
        font-size: 20px;
    }

    .oe-hero-buttons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .oe-hero-main-title {
        font-size: 36px;
    }

    .oe-hero-subtitle {
        font-size: 18px;
    }

    .oe-hero-description {
        font-size: 16px;
    }

    .oe-hero-button {
        padding: 12px 24px;
        font-size: 14px;
    }

    .oe-hero-images {
        min-height: 300px;
    }

    .oe-hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .oe-hero-button {
        justify-content: center;
        width: 100%;
    }
}