
/* Basic Reset and Font Setup */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif; /* Uses the Google Font linked in HTML */
    color: #ffffff; /* White text for contrast against the background */
    line-height: 1.6;
    overflow: hidden; /* Prevents scrollbars if content is perfectly sized */
}

/* ---------------------------------- */
/* Background Image and Main Layout */
/* ---------------------------------- */

.coming-soon-container {
    /* Full screen dimensions */
    min-height: 100vh;
    width: 100vw;

    /* Background image setup */
    background: url('/img/background.jpg') no-repeat center center fixed; 
    /* IMPORTANT: Replace 'your-background-image.jpg' with your image file path */
    
    background-size: cover; /* **Covers the whole browser screen (responsive)** */

    /* Flexbox for centering and layout organization */
    display: flex;
    flex-direction: column; /* Stacks header, main, footer vertically */
    justify-content: space-between; /* Puts logo at top, contact at bottom, content in the middle */
    align-items: center;
    padding: 20px; /* Padding on all sides for small screens */
    text-align: center;
}

/* ---------------------------------- */
/* Logo Styling */
/* ---------------------------------- */

.logo img {
    max-width: 350px; /* Maximum size for the logo */
    height: auto;
    margin-top: 20px;
    opacity: 0.9; /* Slightly transparent for effect */
}

/* ---------------------------------- */
/* Headline/Main Content Styling */
/* ---------------------------------- */

.content {
    flex-grow: 1; /* Allows this section to take up available vertical space and push footer down */
    display: flex;
    flex-direction: column;
    justify-content: center; /* Vertically center the text within the content area */
    align-items: center;
    max-width: 90%;
}

.content h1 {
    font-size: 3.5em;
    line-height: 1.4em;
    margin-bottom: 0.25em;
    font-weight: 700;
    color:#f6b8a1;
    text-transform: normal;
    letter-spacing: 0px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.content .subtitle {
    font-size: 1.2em;
    color:#FFF;
    font-weight: 400;
    max-width: 600px;
}

.fa-envelope {
    color:#ffce6e;
}

/* Footer */

footer 

/* ---------------------------------- */
/* Contact Info Styling */
/* ---------------------------------- */

.contact-info {
    margin-bottom: 20px;
    background-color: #b5926b; /* Semi-transparent background for readability */
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 0.9em;
    line-height: 1.35em;
    width:50%;
}

.contact-info a {
    color: #FFFFFF; /* Accent color for links */
    text-decoration: none;
    transition: color 0.3s;
}

.contact-info a:hover {
    color: #ffda79;
    text-decoration: underline;
}

/* Basic styling */

        /* Container for the image and tooltip */
        .image-container {
            display: block;
            padding:0px 0 0;
            margin:20px 0 50px;
            float:none;
        }
        

        /* Styling for the tooltip */
        .tooltip {
            visibility: hidden;
            width: 180px;
            background-color: #333;
            color: #fff;
            text-align: center;
            border-radius: 5px;
            padding: 10px;
            position: absolute;
            bottom: 110%;
             left: calc(100% - 10px); 
            transform: translateX(-50%);
            z-index: 1;
            opacity: 0;
            transition: opacity 0.3s;
        }

        /* Show the tooltip on hover */
        .image-container:hover .tooltip {
            visibility: visible;
            opacity: 1;
        }

        /* Tooltip arrow */
        .tooltip::after {
            content: '';
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%);
            border-width: 5px;
            border-style: solid;
            border-color: #333 transparent transparent transparent;
        }

        /* Image styling */
        .image-container img {
            width: 42px;
            border-radius: 10px;
            cursor: pointer;
            opacity: 0.5;
            margin-top: 25px;
                    }

        /* Link styling within the tooltip */
        .tooltip a {
            color: orange;
            text-decoration: none;
        }

        .tooltip a:hover {
            text-decoration: underline;
        }

/* ---------------------------------- */
/* Responsive Adjustments (for smaller screens) */
/* ---------------------------------- */

@media (max-width: 768px) {
    .logo img {
        max-width: 280px; /* Smaller logo on small screens */
    }
    
    .content h1 {
        font-size: 2em; /* Smaller headline on small screens */
        letter-spacing: 3px;
    }

    .content .subtitle {
        font-size: 1em;
    }

    .contact-info {
        font-size: 0.8em;
        width: 90%;
        
    }

    .contact-info p {
        /* Stack email and phone number on tiny screens */
        display: flex;
        flex-direction: column;
        gap: 5px;
    }

    .image-container {
            margin-bottom: 40px;
         } 

    .image-container img {
            width: 36px;
         }  
         
      .tooltip {
            visibility: hidden;
            width: 180px;
            left: calc(100% - 0px); /* Adjust based on tooltip width */
            transform: translateX(-50%);
    }
}