/* Landing Container */
.landing-container {
    max-width: 1200px;
    margin: 10vh auto;
    padding: 4rem 2rem;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Two-column layout */
.landing-columns {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 4rem;
    /* width: 100%; */
}

/* Initial Animation Keyframes */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes contentAppear {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Left column - Rounded image */
.landing-left {
    flex: 0 0 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.rounded-image-container {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 5px solid #3498db;
    opacity: 0;
    animation: slideInLeft 0.8s ease 0.2s forwards;
}

.rounded-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.rounded-image-container:hover .rounded-image {
    transform: scale(1.1);
}

.rounded-image-container:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border-color: #2980b9;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Right column - Three rows */
.landing-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    opacity: 0;
    animation: slideInRight 0.8s ease 0.4s forwards;
}

/* Row 1: Title big bold */
.landing-title-row {
    margin-bottom: 0.5rem;
}

.landing-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #2c3e50;
    margin: 0;
    line-height: 1.2;
    text-align: center;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.6s forwards;
}

/* Row 2: Description normal */
.landing-description-row {
    margin-bottom: 0.5rem;
}

.landing-description {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #4a5568;
    text-align: center;
    margin: 0;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.8s forwards;
}

/* Row 3: Dynamic text - CSS styling only */
.landing-dynamic-row {
    margin-top: 1rem;
    padding-top: 1.5rem;
    border-top: 2px solid #ecf0f1;
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.landing-line1 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #3498db;
    text-align: center;
    margin: 0;
    opacity: 0;
    /* animation: fadeInUp 0.8s ease 1s forwards; */
    transition: color 0.3s ease, transform 0.3s ease;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.landing-line1:hover {
    color: #2980b9;
    transform: translateY(-2px);
}

/* Text classes */
.big-bold-text {
    font-size: 3.5rem;
    font-weight: 800;
    animation: slideDown 0.5s ease forwards;
}

.normal-text {
    font-size: 1.3rem;
    line-height: 1.8;
    animation: fadeIn 0.6s ease-out forwards;
}

.dynamic-text {
    font-size: 1.8rem;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .landing-columns {
        gap: 3rem;
    }
    
    .landing-left {
        flex: 0 0 250px;
    }
    
    .rounded-image-container {
        width: 250px;
        height: 250px;
    }
    
    .landing-title,
    .big-bold-text {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .landing-container {
        padding: 3rem 1.5rem;
    }
    
    .landing-columns {
        flex-direction: column;
        gap: 3rem;
        text-align: center;
    }
    
    .landing-left {
        flex: 0 0 auto;
    }
    
    .rounded-image-container {
        width: 200px;
        height: 200px;
        animation: fadeInUp 0.8s ease 0.2s forwards;
    }
    
    .landing-right {
        animation: fadeInUp 0.8s ease 0.4s forwards;
        text-align: center;
    }
    
    .landing-title,
    .landing-description,
    .landing-line1 {
        text-align: center;
    }
    
    .landing-title,
    .big-bold-text {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .landing-container {
        padding: 2rem 1rem;
    }
    
    .rounded-image-container {
        width: 180px;
        height: 180px;
        border-width: 3px;
    }
    
    .landing-title,
    .big-bold-text {
        font-size: 2rem;
    }
    
    .landing-description,
    .normal-text {
        font-size: 1.1rem;
    }
    
    .landing-line1 {
        font-size: 1.5rem;
        min-height: 50px;
    }
}

/* RTL support */

[dir="rtl"] .rounded-image-container {
    animation-name: slideInRight;
}

[dir="rtl"] .landing-right {
    animation-name: slideInLeft;
}

