/* James Gerard Construction - Main Stylesheet */

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

body {
    font-family: 'Segoe UI Variable', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #ffffff;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Fixed Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/James_Gerard_Construction_bak.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
}

/* Main Container */
.main-container {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px 20px 40px;
    overflow-y: auto;
}

/* Logo Section */
.logo-section {
    text-align: center;
    margin-bottom: 30px;
}

.logo {
    max-width: 250px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Business Name Section */
.business-name {
    text-align: center;
    margin-bottom: 50px;
}

.business-name h1 {
    font-size: 3rem;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.business-subtitle {
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 16px;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    display: inline-block;
}

/* Content Section */
.content-section {
    max-width: 900px;
    width: 100%;
    text-align: center;
    padding: 0 20px;
}

.content-section p {
	line-height: 1.8;
	text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
	margin-bottom: 20px;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .business-name h1 {
        font-size: 2rem;
    }
    
    .business-subtitle {
        font-size: 0.8rem;
        letter-spacing: 6px;
    }
    
    .logo {
        max-width: 180px;
    }
    
    .content-section p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .main-container {
        padding: 40px 15px 30px;
    }
}

@media screen and (max-width: 480px) {
    .business-name h1 {
        font-size: 1.5rem;
    }
    
    .business-subtitle {
        font-size: 0.7rem;
        letter-spacing: 4px;
    }
    
    .logo {
        max-width: 150px;
    }
    
    .content-section p {
        font-size: 0.95rem;
    }
}

@media screen and (min-width: 1200px) {
    .business-name h1 {
        font-size: 3.5rem;
    }
    
    .business-subtitle {
        font-size: 1.2rem;
    }
    
    .logo {
        max-width: 300px;
    }
}





.coming-soon-text-block {
    font-size: 5em; /* 3 times the size of the parent element's font size */
    color: #fff;
}



