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

body {
    font-family: 'Roboto', sans-serif; /* Clean, modern sans-serif */
    background-color: #000; /* Fallback color */
    color: #fff;
    overflow: hidden; /* Prevents scrollbars for a clean landing page */
}

/* --- Main Container & Background --- */
.landing-container {
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    
    /* BACKGROUND IMAGE SETTINGS */
    /* Replace 'your-image.jpg' with your actual file path */
    background-image: 
        linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.7)), /* Dark overlay for readability */
        url('ing.jpg'); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* --- Content Wrapper --- */
.content-wrapper {
    max-width: 900px;
    padding: 2rem;
    z-index: 10;
    
    /* Animation: Fade in and slide up */
    animation: fadeInUp 1.5s ease-out forwards;
    opacity: 0; /* Starts invisible */
}

/* --- Typography Styling --- */

/* 1. The Headline: Bold & Glowing */
.headline {
    font-weight: 900; /* Black weight */
    text-transform: uppercase;
    line-height: 1.1;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    
    /* Responsive Font Size: Scales between 2.5rem and 5rem based on screen width */
    font-size: clamp(2.5rem, 6vw, 5.5rem); 
    
    /* The "Glow" Effect (Purple/Cyan tint) */
    text-shadow: 0 0 30px rgba(100, 200, 255, 0.3);
}

/* 2. The Hook: Cyan Accent */
/* --- The "ING" Hook Styling --- */
.ing-hook {
    font-family: 'Roboto', sans-serif;
    font-weight: 400; 
    
    /* Base color for "Train", "Packag", "Perform" is White */
    color: #ffffff; 
    
    font-size: clamp(1rem, 2vw, 1.5rem);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 2rem;
}

/* The Special "ING" Branding */
.brand-ing {
    color: #00f0ff; /* Electric Cyan */
    font-weight: 900; /* Extra Bold to make it stand out */
    
    /* The "Super Glow" Effect */
    text-shadow: 
        0 0 10px rgba(0, 240, 255, 0.8),
        0 0 20px rgba(0, 240, 255, 0.4);
}

/* The dots between words */
.dot {
    color: #555; /* Dimmed down so they don't compete with the text */
    margin: 0 12px;
}

/* --- Mobile Adjustment --- */
@media (max-width: 768px) {
    .ing-hook {
        letter-spacing: 2px;
        display: flex;
        flex-direction: column; 
        gap: 8px;
    }
    
    .dot {
        display: none; 
    }
}

/* 3. The Sub-text: Clean & Readable */
.sub-text {
    font-size: 1.1rem;
    font-weight: 300; /* Light weight */
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85); /* Slightly transparent white */
    max-width: 600px;
    margin: 0 auto; /* Centers the text block */
}

/* --- Animation Keyframes --- */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Mobile Adjustments --- */
@media (max-width: 768px) {
    .headline {
        letter-spacing: 1px;
    }
    
    .ing-hook {
        letter-spacing: 2px;
        display: flex;
        flex-direction: column; /* Stacks the words vertically on mobile */
        gap: 5px;
    }
    
    .dot {
        display: none; /* Hides dots on mobile */
    }
}

/* --- Contact Section --- */
.contact-section {
    margin-top: 4rem;                 /* Increased distance from paragraph above */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;                         /* Space between elements */
    text-align: center;

    /* Position tweak: pushes it slightly lower visually, 
       but still scales well with small screens */
    transform: translateY(3vh);

    opacity: 0;
    animation: fadeInUp 1.4s ease-out 0.5s forwards;
}

/* "Contact us below" label */
.contact-label {
    font-size: 1rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.90);
    letter-spacing: 1px;
}

/* QR Code styling */
.contact-qr {
    width: 130px;
    height: auto;
    border-radius: 12px;
    padding: 6px;
    background: #fff; /* ensures contrast with dark background */
    box-shadow: 0 6px 20px rgba(0,0,0,0.5);
}

/* Phone number */
.contact-phone {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 300;
    letter-spacing: 0.7px;
}

/* --- Mobile Responsive --- */
@media (max-width: 768px) {
    .contact-section {
        margin-top: 3rem;             /* Slightly reduced but still clear spacing */
        transform: translateY(2vh);   /* Slight vertical push for small screens */
        gap: 10px;
    }

    .contact-label {
        font-size: 0.9rem;
    }

    .contact-qr {
        width: 100px;
        padding: 5px;
    }

    .contact-phone {
        font-size: 0.9rem;
    }
}
