* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Lato', sans-serif;
    background: #000;
    color: #fff;
    overflow-x: hidden;
    height: 100vh;
}
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}
#preloader .preloader-logo {
    width: 200px;
    height: auto;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}
#content {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    justify-content: center;
    align-items: stretch;
    background: #000;
    z-index: 9998;
}
.split-container {
    display: flex;
    width: 100%;
    height: 100%;
}
.left-pane, .right-pane {
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    box-sizing: border-box;
}
.left-pane {
    background: #000;
}
.right-pane {
    position: relative;
    overflow: hidden;
}
.logo-img {
    width: 195px; /* Increased by 30% from 150px */
    height: auto;
    margin-bottom: 1rem;
}
.by-line {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    margin: 0.5rem 0;
    color: #ccc;
    font-style: italic;
}
.coming-soon {
    font-family: 'Great Vibes', cursive;
    font-size: 2.2rem; /* Adjusted size */
    margin: 1.5rem 0;
    letter-spacing: 2px;
    color: #fff;
    font-weight: 400; /* Great Vibes is usually regular weight */
}
.image-slider {
    position: relative;
    width: 100%;
    height: 100%;
}
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.slide.active {
    opacity: 1;
}
footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    padding: 1rem;
    font-size: 0.9rem;
    color: #777;
    background: #000;
    z-index: 1000;
}
@media (max-width: 768px) {
    .split-container {
        flex-direction: column;
    }
    .left-pane, .right-pane {
        width: 100%;
        height: 50%;
    }
    .logo-img {
        width: 150px; /* Slightly smaller for mobile */
    }
    .coming-soon {
        font-size: 1.8rem; /* Smaller for mobile */
    }
    .by-line {
        font-size: 1rem;
    }
    footer {
        font-size: 0.8rem;
        padding: 0.5rem;
    }
}