/*
Theme Name: EssayFusion Coming Soon
Theme URI: https://yourwebsite.com/
Author: Your Name
Description: Custom Coming Soon theme for EssayFusion.
Version: 1.0
*/
body {
    margin: 0;
    padding: 0;
    font-family: 'Munro', 'Inter';
/*     min-height: 100vh; */
    position: relative;
    overflow-x: hidden;
}

.bg-image {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('https://www.essayfusion.com/wp-content/uploads/2025/06/usa-banner.jpg') center center/cover no-repeat;
    z-index: 0;
	transform: scaleX(-1);
}
.overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
/*     background: rgba(44, 62, 80, 0.72); */
    z-index: 1;
}

.navbar {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 32px 60px 0 60px;
}
.logo-area {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 1.3rem;
    font-family: 'Munro', 'Inter';
    font-weight: 700;
}
.logo-text {
    font-family: 'Munro', 'Inter';
    font-weight: 700;
    letter-spacing: 1px;
}
.nav-links a {
    color: #fff;
    text-decoration: none;
    margin-left: 28px;
    font-size: 1.1rem;
    font-family: 'Munro', 'Inter';
    font-weight: 500;
    opacity: 0.85;
    transition: opacity 0.2s, font-weight 0.2s;
}
.nav-links a.active, .nav-links a:hover {
    font-weight: 700;
    opacity: 1;
}

.main-content {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
    padding: 0 60px;
}
.left {
	text-shadow: 0.05px 0.05px white;
    flex: 1.2;
    display: flex;    
    justify-content: flex-end;
    flex-direction: column;
}
.left h1 {
    color: #fff;
    font-family: 'Munro', 'Inter';
    font-size: 2.5vw;
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 1.1;
    text-transform: uppercase;
    margin: 0;
    position: relative;
}
.left h1 span {
    background: rgba(255,255,255,0.18);
    padding: 0 18px 0 0;
    display: inline-block;
}
.right {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding-left: 60px;
}
.desc {
    color: #fff;
    font-size: 1.15rem;
    margin-bottom: 18px;
    font-family: 'Munro', 'Inter', Arial, sans-serif;
    opacity: 0.97;
    max-width: 420px;
    background: rgba(44, 62, 80, 0.45);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    padding: 18px 22px;
    border-radius: 16px;
}
.social-proof {
    background: rgba(255,255,255,0.92);
    color: #2980b9;
    font-weight: 600;
    border-radius: 18px;
    padding: 10px 18px;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    box-shadow: 0 2px 8px rgba(44,62,80,0.07);
}
#contactForm {
    display: flex;
    flex-direction: column;
    gap: 13px;
    width: 100%;
    margin-bottom: 0;
}
#contactForm input, #contactForm textarea, #contactForm select {
    padding: 11px 13px;
    border: 1px solid #cbd5e1;
    border-radius: 5px;
    font-size: 1rem;
    outline: none;
    font-family: 'Munro', 'Inter';
    background: #f8fafc;
}
#contactForm select {
    color: #2980b9;
    font-weight: 500;
}
#contactForm input:focus, #contactForm textarea:focus, #contactForm select:focus {
    border-color: #2980b9;
}
#contactForm button {
    background: linear-gradient(90deg, #2980b9 0%, #6dd5fa 100%);
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 11px 0;
    font-size: 1.08rem;
    cursor: pointer;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(44,62,80,0.07);
    transition: background 0.2s, box-shadow 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
#contactForm button:hover {
    background: linear-gradient(90deg, #6dd5fa 0%, #2980b9 100%);
    box-shadow: 0 4px 16px rgba(44,62,80,0.13);
}
#thankYou {
    margin-top: 18px;
    color: #232526;
}
#thankYou h3 {
    color: #2980b9;
    font-size: 1.1rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 7px;
    justify-content: center;
}
.social-icons {
    display: flex;
    gap: 16px;
    margin-top: 18px;
}
.social-icons a {
    color: #fff;
    border: 1.5px solid #fff;
    border-radius: 2px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    opacity: 0.85;
    transition: background 0.2s, color 0.2s, opacity 0.2s;
}
.social-icons a:hover {
    background: #fff;
    color: #2980b9;
    opacity: 1;
}
.hidden {
    display: none;
}
@media (max-width: 900px) {
    .main-content {
        flex-direction: column;
        padding: 0 10vw;
        min-height: 70vh;
    }
    .left, .right {
        justify-content: center;
        padding: 0;
        text-align: center;
    }
    .right {
        align-items: center;
        padding-left: 0;
        margin-top: 32px;
    }
    .left h1 {
        font-size: 2.1rem;
    }
}
@media (max-width: 600px) {
    .navbar {
        padding: 18px 10px 0 10px;
    }
    .main-content {
        padding: 0 2vw;
    }
    .left h1 {
        font-size: 1.2rem;
    }
    .modal-content {
        padding: 18px 4vw 18px 4vw;
    }
}

.intro-paragraph {
    color: #fff;
    margin-top: 10px;
    font-size: 1.05rem;
    line-height: 1.7;
    font-family: 'Munro', 'Inter';
    opacity: 0.97;
}

.wpcf7 input,
.wpcf7 textarea,
.wpcf7 select {
    padding: 11px 13px;
    border: 1px solid #cbd5e1;
    border-radius: 5px;
    font-size: 1rem;
    outline: none;
    font-family: 'Munro', 'Inter';
    background: #f8fafc;
    margin-bottom: 13px;
	    width: 100%;
}
.wpcf7 input[type="submit"] {
    background: linear-gradient(90deg, #2980b9 0%, #6dd5fa 100%);
    color: #fff;
    border: none;
    border-radius: 5px;
        padding: 11px 30px;
    font-size: 1.08rem;
    cursor: pointer;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(44,62,80,0.07);
    transition: background 0.2s, box-shadow 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
	width: fit-content;
}
.wpcf7 textarea {
    min-height: 60px;
    max-height: 100px;
    resize: vertical;
	    width: 100%;

} 
.wpcf7 input[type="submit"]:hover {
    background: linear-gradient(90deg, #6dd5fa 0%, #2980b9 100%);
    box-shadow: 0 4px 16px rgba(44,62,80,0.13);
} 