/* Reset default margins (Keep this from the previous example) */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: white;
}

.hero-background {
    /* Replace 'crane-image.jpg' with your actual image path or URL */
    background-image: url('crane-image-compressed.jpg'); 
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* 50% Dark Overlay (Keep this) */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9); /* Black at 0.5 opacity */
    z-index: 1;
}

/* Content sitting on top of the overlay (Keep this) */
.content {
    position: relative;
    z-index: 2;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center; /* Ensures everything, including the logo, is centered */
}

/* ============================ */
/* NEW: Logo Specific Styles   */
/* ============================ */
.logo-container {
    margin-bottom: 30px; /* Space between logo and text */
    display: flex;
    justify-content: center; /* Center the image inside the container */
    align-items: center;

    /* --- NEW SEMI-TRANSPARENT WHITE BACKGROUND --- */
    
    background-color: rgba(255, 255, 255, 0.8);
    padding: 20px 40px;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    display: inline-flex;
}

.main-logo {
    max-width: 450px; /* Adjust this value to fit your logo's design */
    height: auto;
    display: block;
}


h1 {
    font-size: 2rem;
    letter-spacing: 8px;
    margin-bottom: 20px;
    border-bottom: 2px solid #092241;
    display: inline-block;
    padding-bottom: 10px;
    text-transform: uppercase;
}

p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.email-placeholders p {
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.9rem;
    margin-bottom: 10px;
    color: #ccc;
}

/* Styling the Email List */
.email-placeholders ul {
    list-style: none;
    padding: 0;
}

.email-placeholders li {
    font-size: 1.1rem;
    margin: 15px 0;
    color: rgba(255, 255, 255, 0.7); /* Slightly dimmed labels for contrast */
}

/* Force the labels (Sales, Support) to be bold and yellow */
.email-placeholders li strong {
    color: #ffcc00; 
    margin-right: 10px;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
}

/* --- THE WHITE LINK CODE --- */
.email-placeholders a {
    color: white !important; /* Forces text to be white */
    text-decoration: none;   /* Removes default blue underline */
    font-weight: 500;
    transition: all 0.3s ease; /* Smooth color transition */
    border-bottom: 1px dotted rgba(255, 255, 255, 0.2); /* Subtle custom underline */
}

/* Hover Effect */
.email-placeholders a:hover {
    color: #ffcc00 !important; /* Turns yellow when hovered */
    border-bottom: 1px solid #ffcc00;
}

.phone-container {
    margin-bottom: 40px; /* Space between phone and emails */
}

.phone-container p {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 5px;
}

.phone-link {
    font-size: 2.2rem; /* Larger than the email addresses */
    font-weight: 700;
    color: white !important;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
}

/* Hover effect for the phone number */
.phone-link:hover {
    color: #ffcc00 !important; /* Matches your industrial yellow accent */
}

/* Mobile adjustment for the large phone text */
@media (max-width: 768px) {
    .phone-link {
        font-size: 1.8rem;
    }
}

ul {
    list-style: none;
}

li {
    font-size: 1.1rem;
    margin: 8px 0;
    opacity: 0.9;
}

/* Responsive adjustments for mobile (Keep this) */
@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    .main-logo { max-width: 180px; } /* Makes the logo smaller on phones */
}