/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    position: relative;
    background-image: url('bg.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Dark Overlay for better text contrast if needed (optional, keeping it light to match reference) */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Slight darkening to match the moody look */
    z-index: 1;
}

/* Logo Section */
.logo-container {
    position: absolute;
    top: 40px;
    left: 40px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    /* Removed border and radius as the image contains the design */
    padding: 0;
    width: auto; 
    height: auto;
}

.logo-icon {
    height: 120px; /* Increased size to show the full logo clearly */
    width: auto;
    object-fit: contain;
    /* Removed translate as we don't need to make room for text manually */
}

/* Removed logo-text-group styles and pseudo-elements as the image has text */


.company-details {
    margin-top: 10px;
    color: #F37021;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    padding-left: 5px;
}

/* Main Hero Text */
.main-content {
    z-index: 10;
    text-align: center;
    width: 100%;
    padding: 0 20px;
}

.hero-text {
    color: #F37021; /* Orange Color */
    font-size: 3.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    /* Soft shadow to lift it off the background */
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

/* Footer */
.footer {
    position: absolute;
    bottom: 30px;
    z-index: 10;
}

.website-link {
    color: #F37021;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    opacity: 0.9;
    transition: opacity 0.3s;
}

.website-link:hover {
    opacity: 1;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-text {
        font-size: 2rem;
    }
    
    .logo-container {
        top: 20px;
        left: 20px;
    }
    
    .logo-circle {
        width: 80px;
        height: 80px;
    }
    
    .logo-circle::after {
        font-size: 1rem;
        top: 20px;
    }
    
    .logo-circle::before {
        font-size: 0.5rem;
        bottom: 20px;
    }
}
