/* Global Styles */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Arimo', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    color: #333;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header */
header {
    background-color: #B12459;
    color: #fff;
    display: flex;
    align-items: center; /* Align items vertically */
    justify-content: space-between; /* Space between logo and right section */
    padding: 10px 20px;
    box-sizing: border-box;
    flex-wrap: wrap; /* Allow items to wrap */
    z-index: 10; /* Ensure the header stays on top of the sidebar */
    position: fixed; /* Make header fixed to the top */
    top: 0; /* Position it at the top */
    left: 0; /* Make sure it starts at the left edge */
    width: 100%; /* Ensure it spans the entire width */
    padding-top: 10px; /* Adjust padding to compensate for fixed position */
}

.logo {
    flex: 0 0 auto; /* Keep logo fixed on the left */
}

.logo img {
    height: 50px;
}

nav ul {
    list-style-type: none;
    display: flex;
    margin: 0;
    padding: 0;
}

/* Main Content */
main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
    min-height: calc(100vh - 140px);
}

.hero-section {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.content-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    min-height: 500px;
}

/* Left Content */
.left-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    padding-right: 20px;
}

.main-heading {
    font-size: 3.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}

.sub-heading {
    font-size: 1.4rem;
    font-weight: 400;
    color: #5a6c7d;
    margin-bottom: 20px;
    line-height: 1.4;
}

.description {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 40px;
    line-height: 1.7;
    max-width: 90%;
}

.cta-section {
    margin-top: 20px;
}

.enter-button {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
}

.enter-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.enter-button:hover::before {
    left: 100%;
}

.enter-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
}

.enter-button:active {
    transform: translateY(-1px);
}

/* Right Content */
.right-content {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 20px;
}

.image-container {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.image-container img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.15),
        0 12px 25px rgba(0, 0, 0, 0.1),
        0 6px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    object-fit: cover;
    aspect-ratio: 4/3;
}

.image-container::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    border-radius: 20px;
    z-index: -1;
}

.image-container:hover img {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 35px 70px rgba(0, 0, 0, 0.2),
        0 15px 35px rgba(0, 0, 0, 0.15),
        0 8px 15px rgba(0, 0, 0, 0.1);
}

/* Footer */
footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 20px 0;
    margin-top: auto;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

footer p {
    font-size: 0.9rem;
    margin: 0;
}

#siteseal {
    display: flex;
    align-items: center;
}

/* Animations */
.fade-slide-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-slide-in.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .content-container {
        gap: 40px;
    }
    
    .main-heading {
        font-size: 3rem;
    }
    
    .sub-heading {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .content-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .left-content {
        padding-right: 0;
        order: 2;
    }
    
    .right-content {
        padding-left: 0;
        order: 1;
    }
    
    .main-heading {
        font-size: 2.5rem;
    }
    
    .sub-heading {
        font-size: 1.2rem;
    }
    
    .description {
        max-width: 100%;
        margin-bottom: 30px;
    }
    
    .image-container {
        max-width: 400px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    main {
        padding-top: 100px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 20px;
    }
    
    .main-heading {
        font-size: 2rem;
    }
    
    .sub-heading {
        font-size: 1.1rem;
    }
    
    .description {
        font-size: 1rem;
    }
    
    .enter-button {
        padding: 14px 28px;
        font-size: 1rem;
    }
    
    .image-container {
        max-width: 300px;
    }
}