/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    font-family: Arial, sans-serif;
    height: 100%;
    overflow: hidden;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 10px 20px;
    background: transparent;
    z-index: 10;
}

.logo {
    height: 50px;
    cursor: pointer;
}

/* Landing Page Layout */
.landing-page {
    display: flex;
    height: 100vh;
    width: 100%;
}

/* Work and Shop Panels */
.option {
    flex: 1;
    position: relative;
    overflow: hidden; /* Ensure nothing goes beyond the panel bounds */
    color: white;
    display: flex;
    justify-content: center;
    align-items: flex-end; /* Align the text to the bottom */
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease-in-out;
    cursor: pointer;
    height: 100%;
}

/* Work Background */
#work {
    background-image: url('work-bg.jpg');
}

/* Shop Background */
#shop {
    background-image: url('shop-bg.jpg');
}

/* Zoom Effect on Hover */
.option:hover {
    transform: scale(1.05); /* Slightly reduced zoom effect */
}

/* Dark Overlay Effect */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.overlay-link {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
}

/* Title Text */
h1 {
    position: absolute;
    bottom: 100px; /* Space from the bottom of the panel */
    left: 50%; /* Horizontally center */
    transform: translateX(-50%); /* Correct centering */
    font-size: 3rem;
    letter-spacing: 2px;
    z-index: 3; /* Ensure text is above overlay */
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .landing-page {
        flex-direction: column; /* Stack the panels vertically on small screens */
    }

    .option {
        height: 50vh; /* Make each panel 50% of the screen height on mobile */
    }
}