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

body, html {
    height: 100%;
    font-family: 'Roboto', sans-serif;
    overflow: hidden;
}

/* Landing Container */
.landing-container {
    position: relative;
    height: 100vh;
    width: 100%;
    background: url('kplusd Landing 2025-BG Img.jpg') no-repeat center center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
}

/* Overlay for better text readability */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

/* Content Container */
.content-container {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end; /* Changed from space-between to flex-end to push content down */
    padding: 5% 5%;
}

/* Footer Content */
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
    margin-top: auto;
}

/* Spacer for left side */
.spacer {
    flex: 1;
}

/* Right side content container */
.right-content {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
}

/* Logo Container */
.logos-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-bottom: 15px; /* Added padding at bottom to move logos down */
}

.logo-box {
    margin-left: 20px;
    height: 130px;
}

.logo-box.k-plus {
    background-color: #d13636; /* Red background for K+ logo */
    padding: 15px; /* Slightly increased padding */
}

.logo-box img {
    height: 100%;
    width: auto;
}

/* Added styling for the clickable logo */
.logo-box.adudy a {
    display: block;
    height: 100%;
    transition: transform 0.2s ease;
}

.logo-box.adudy a:hover {
    transform: scale(1.05); /* Subtle hover effect */
}

/* Contact Info */
.contact-info {
    text-align: right;
    font-size: 1.1rem; /* Slightly increased font size */
    letter-spacing: 0.1rem;
    color: #000000; /* Changed from #e6e6e6 to black */
    font-family: "Grotesque MT Std", "Arial Narrow", sans-serif;
    font-style: condensed; 
    font-weight: 700;
    padding-right: 5px; /* Slight padding alignment */
    font-stretch: condensed; /* Added font-stretch property for condensed style */
    padding-bottom: 15px; /* Added padding to align with logos */
}

/* Light Lines - simulating the linear lighting from the ceiling */
.light-line {
    position: absolute;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.8);
    z-index: 3;
    box-shadow: 0 0 15px 2px rgba(255, 255, 255, 0.7);
}

.line-1 {
    width: 80%;
    top: 30%;
    right: 0;
}

.line-2 {
    width: 65%;
    top: 50%;
    right: 0;
}

.line-3 {
    width: 90%;
    top: 70%;
    right: 0;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .logo-box {
        height: 95px; /* Adjusted for responsiveness */
    }
    
    .footer-content {
        padding-bottom: 1%;
    }
}

@media (max-width: 768px) {
    .logo-box {
        height: 85px; /* Adjusted for responsiveness */
    }
    
    .contact-info {
        font-size: 0.9rem;
    }
    
    .footer-content {
        padding-bottom: 4%;
    }
}

@media (max-width: 576px) {
    .right-content {
        width: 100%;
        align-items: center;
    }
    
    .logos-container {
        justify-content: center;
        padding-bottom: 10px;
    }
    
    .contact-info {
        text-align: center;
        padding-bottom: 10px;
    }
}