/*
Theme Name: Msdesign Child
Theme URI: http://underscores.me/
Author: mrsmartweb
Author URI: http://mrsmartweb.com
Description: Msdesign Child Theme
Template: msdesign
Version: 1.0.0
Text Domain: msdesignchild
*/ 

/* =========================
BRAND COLORS
========================= */

:root{
    --navy:#3E5873;
    --sage:#A3B18A;
    --white:#FAF7F2;
    --taupe:#C7B8A3;
    --dark:#1f1f1f;
}

/* =========================
GLOBAL
========================= */
/* IMPORT */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;500;700&display=swap');
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
	font-family: 'Montserrat', sans-serif;
    /*font-family:'Inter',sans-serif;*/
    background:var(--white);
    color:var(--dark);
    overflow-x:hidden;
}

img{
    width:100%;
    display:block;
}

a{
    text-decoration:none;
    color:inherit;
}

ul{
    list-style:none;
}

.container{
    width:90%;
    max-width:1300px;
    margin:auto;
}

section{
    padding:100px 0;
}

.section-title{
    font-size:clamp(34px,5vw,52px);
    margin-bottom:25px;
	 color:var(--navy);
}

/* =========================
HEADER
========================= */

header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:1000;
    transition:0.3s;
}

header.scrolled{
   background:var(--white);
    box-shadow:0 5px 25px rgba(0,0,0,0.06);
}

.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:24px 0;
}

.logo{
    position:relative;
    z-index:1001;
/*background:var(--white);
    padding:18px 24px;
    border-radius:0 0 18px 18px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);*/
    transform:translateY(10px);
}
.logo img{
	width:100%;
	max-width:250px;
	height:auto;
}
.logo h2{
    color:var(--navy);
    font-size:28px;
    letter-spacing:1px;
}

.nav-links{
    display:flex;
    gap:40px;
}

.nav-links a{
    font-weight:500;
	color:var(--sage);
    position:relative;
	font-size:large;
	text-transform: uppercase;
}

.nav-links a::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-6px;
    width:0;
    height:2px;
   background:var(--navy);
    transition:0.3s;
}

.nav-links a:hover::after,
.nav-links a.active::after{
    width:100%;
}

/* =========================
HAMBURGER
========================= */

.hamburger{
    display:none;
    flex-direction:column;
    gap:6px;
    cursor:pointer;
    z-index:2000;
}

.hamburger span{
    width:28px;
    height:3px;
 background:var(--navy);
    transition:0.3s;
}

.hamburger.active span:nth-child(1){
    transform:rotate(45deg) translate(6px,6px);
}

.hamburger.active span:nth-child(2){
    opacity:0;
}

.hamburger.active span:nth-child(3){
    transform:rotate(-45deg) translate(7px,-7px);
}

/* =========================
HERO
========================= */

.hero{
    min-height:100vh;
    display:flex;
    align-items:center;
    background:var(--white);
    padding-top:160px;
}

.hero-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}

.hero-text h1{
    font-size:clamp(48px,7vw,60px);
    line-height:1.05;
    margin-bottom:30px;
	    color:var(--navy);
}

.hero-text p{
    font-size:18px;
    line-height:1.8;
    color:#666;
    max-width:550px;
    margin-bottom:35px;
}

.hero-image img{
    height:700px;
    object-fit:cover;
    border-radius:28px;
}

/* =========================
HAND LINE
========================= */
/*
.line-wrap{
    position:relative;
    display:inline-block;
	padding-bottom:10px;
}

.hand-line{
    position:absolute;
    left:-5px;
    bottom:-8px; 
    width:110%;
    height:40px;
}

.hand-line path{
    fill:none;
stroke:var(--sage);
    stroke-width:10;
    stroke-linecap:round;
    stroke-dasharray:500;
    stroke-dashoffset:500;
    animation:drawLine 2s ease forwards;
}

@keyframes drawLine{
    to{
        stroke-dashoffset:0;
    }
}
*/
/* HERO TITLE */
.hero h1{
    font-size: clamp(2.5rem, 6vw, 3.8rem);
    line-height: 1.1;
    font-weight: 700;
    color: var(--navy);
}

/* UNDERLINED WORD WRAPPER */
.line-wrap{
    position: relative;
    display: inline-block;
    padding-bottom: 0.20em;
}
.line-wrap br {
	display:none;
}
/* SVG UNDERLINE */
.hand-line{
    position: absolute;
    left: -2%;
    bottom: -0.15em;
    width: 104%;
    height: 0.55em;

    overflow: visible;
    pointer-events: none;
}

/* SVG PATH */
.hand-line path{
    fill: none;
    stroke: var(--sage);
    stroke-width: 8;
    stroke-linecap: round;
    stroke-linejoin: round;

    stroke-dasharray: 500;
    stroke-dashoffset: 500;

    animation: drawLine 2s ease forwards;
}

/* DRAW ANIMATION */
@keyframes drawLine{
    to{
        stroke-dashoffset: 0;
    }
}

/* LARGE DESKTOP */
@media (min-width: 1400px){

    .hand-line{
        height: 0.65em;
    }

    .hand-line path{
        stroke-width: 9;
    }

}

/* TABLET */
@media (max-width: 992px){

    .hero h1{
        font-size: clamp(2.2rem, 7vw, 4rem);
    }

    .hand-line{
        height: 0.65em;
        bottom: -0.12em;
    }

    .hand-line path{
        stroke-width: 7;
    }

}

/* MOBILE */
@media (max-width: 768px){

    .hero h1{
        font-size: clamp(2rem, 9vw, 3rem);
        line-height: 1.15;
    }

    .line-wrap{
        padding-bottom: 0.15em;
    }

    .hand-line{
        width: 102%;
        left: -1%;
        height: 0.65em;
        bottom: -0.10em;
    }

    .hand-line path{
        stroke-width: 6;
    }

}

/* SMALL MOBILE */
@media (max-width: 480px){

    .hero h1{
        font-size: clamp(1.8rem, 10vw, 2.4rem);
    }

    .hand-line{
        height: 0.65em;
    }

    .hand-line path{
        stroke-width: 5;
    }

}

/* =========================
BUTTON
========================= */

.btn{
    display:inline-block;
    background:var(--navy);
    color:var(--white);
    padding:16px 32px;
    border-radius:50px;
    transition:0.3s;
}

.btn:hover{
	    background:var(--sage);
    transform:translateY(-3px);
}

.btn2{
    display:inline-block;
    background:var(--sage);
    color:var(--white);
    padding:16px 32px;
    border-radius:50px;
    transition:0.3s;
}

.btn2:hover{
	    background:var(--navy);
	border: 1px solid var(--sage);
    transform:translateY(-3px);
}

/* =========================
INTRO SECTION
========================= */

.intro-grid{
    display:grid;
    grid-template-columns:420px 1fr;
    gap:70px;
    align-items:center;
}

.intro-image img{
    width:100%;
    height:620px;
    object-fit:cover;
    border-radius:28px;
    box-shadow:0 20px 40px rgba(0,0,0,0.08);
}

.intro-content p{
    max-width:100%;
    line-height:1.9;
    color:#666;
    font-size:18px;
    margin-bottom:20px;
}
.highlight {
	font-size:24px;
	color: var(--navy);
}
.highlight2 {
	font-size:22px;
    font-weight:500;
	color: var(--sage);
}
/* =========================
RESPONSIVE
========================= */

@media(max-width:991px){

    .intro-grid{
        grid-template-columns:1fr;
        gap:50px;
    }

    .intro-image img{
        height:500px;
    }

}

/* =========================
CARDS
========================= */

.priority-grid,
.news-grid,
.values-grid,
.team-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.priority-card,
.value-card,
.news-card,
.team-card{
    background:var(--white);
    border-radius:24px;
    overflow:hidden;
    transition:0.3s;
}

.priority-card:hover,
.news-card:hover{
    transform:translateY(-8px);
}

.priority-card,
.value-card{
    padding:40px;
}

.priority-icon
{
    width:70px;
    height:70px;
    border-radius:50%;
    background:var(--navy);
  
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    margin-bottom:25px;
}
.icon {
    width: 30px !important;
    height: 30px !important;

}
.icon svg {
    fill: var(--white);
}
.priority-card h3,
.value-card h3{
    margin-bottom:15px;
    font-size:24px;
	 color:var(--navy);
}

.priority-card p,
.value-card p{
    color:#666;
    line-height:1.7;
}

.news-card img,
.team-card img{
    height:280px;
    object-fit:cover;
}

.news-content,
.team-content{
    padding:30px;
}

.news-content span,
.team-content span{
    color:#777;
}

.news-content h3{
    margin:15px 0;
    line-height:1.4;
}

.news-content p{
    color:#666;
    line-height:1.7;
}

/* =========================
KEY PRIORITY
========================= */
/* FLEX WRAPPER */
.key-priorities-flex {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* FULL WIDTH CARD */
.key-card {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 25px;

    padding: 20px 25px;
    background: #f4f4f4;
    border-radius: 10px;

    transition: all 0.3s ease;
}

/* ICON */
.key-icon {
    font-size: 28px;
    width: 50px;
    height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--navy);
    color:var(--white);
    border-radius: 50%;
    flex-shrink: 0;
}

/* TEXT */
.key-card h3 {
    margin: 0;
    min-width: 160px;
    color: var(--navy);
}

.key-card p {
    margin: 0;
    color: #555;
	line-height:26px;
}
.key-card p::after{
    content:"";
    display:block;
    margin-top:20px;
}

.key-text {
	display:flex;
	width:100%;
	flex-direction:column;
}
/* HOVER */
.key-card:hover {
    transform: translateX(6px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

@media (max-width: 768px) {
    .key-card {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .key-card h3 {
        min-width: auto;
    }
}

/* =========================
ABOUT
========================= */

.page-hero{
    padding:180px 0 0px;
      background:var(--white);
}

.page-hero h1{
    font-size:clamp(54px,8vw,85px);
    margin-bottom:20px;
	    color:var(--navy);
}

.page-hero p{
    max-width:700px;
    line-height:1.8;
    color:#666;
    font-size:18px;
}

.about-grid,
.contact-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}

.about-image img{
    height:650px;
    object-fit:cover;
    border-radius:28px;
}

.about-content h2{
    font-size:46px;
    margin-bottom:25px;
	 color:var(--navy);
}

.about-content p{
    line-height:1.9;
    color:#666;
    margin-bottom:20px;
}

/* =========================
SIGNUP
========================= */

.signup{
    background:var(--navy);
    color:var(--white);
    border-radius:30px;
    padding:70px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:40px;
    flex-wrap:wrap;
	font-family: 'Montserrat', sans-serif;
}

.signup h2{
    font-size:42px;
    margin-bottom:15px;
}

.signup p{
    color:#ccc;
    max-width:500px;
}

.signup-form{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
	
}

.signup-form input[type="email"] {
    padding:16px 20px;
    border:none;
    border-radius:50px;
    min-width:280px;
	font-family: 'Montserrat', sans-serif;
	margin-bottom:15px;
	
}

.signup-form input[type="submit"] {
	font-family: 'Montserrat', sans-serif;
	background:var(--sage);
	color: var(--white);
	  padding:16px 20px;
    border:none;
    border-radius:50px;
    min-width:146px;
}

input[type="submit"]:hover {
    background: var(--navy);
	border: 1px solid var(--sage);
    color: #fff;
}

.signup-form button{
    background:var(--sage);
    color:var(--navy);
    padding:16px 28px;
    border-radius:50px;
    font-weight:600;
    cursor:pointer;
	font-family: 'Montserrat', sans-serif;
}

/* =========================
CONTACT
========================= */

.contact-info{
  background:var(--navy);
    color:var(--white);
    padding:50px;
    border-radius:30px;
}

.contact-info h2{
    font-size:42px;
    margin-bottom:30px;
}

.contact-info p{
    color:#ccc;
    line-height:1.8;
    margin-bottom:20px;
}

.contact-form{
 background:var(--white);
    padding:50px;
    border-radius:30px;
}

.form-group{
    margin-bottom:25px;
}

.form-group input,
.form-group textarea{
    width:100%;
    padding:16px 20px;
    border:1px solid #ddd;
    border-radius:14px;
    font-size:16px;
	font-family: 'Montserrat', sans-serif;
}

.form-group textarea{
    min-height:180px;
    resize:none;
}
.form-group input[type="submit"]{
	 font-family: 'Montserrat', sans-serif;
	background:var(--sage);
	color: var(--white);
	  padding:16px 20px;
    border:none;
    border-radius:50px;

	
}
button{
    background:#111;
    color:#fff;
    border:none;
    padding:16px 30px;
    border-radius:50px;
    cursor:pointer;
}

/* =========================
SOCIALS
========================= */

.socials{
    display:flex;
    gap:16px;
    margin-top:25px;
}

.socials a{
    width:45px;
    height:45px;
    border-radius:50%;
    border:1px solid rgba(255,255,255,0.3);
    display:flex;
    align-items:center;
    justify-content:center;
}
/* =========================
LAWN SIGN
========================= */
.lawn-sign-cta {
	width:100%;
    margin: 50px 0 0 0;
}
.container2{
    width:100%;
    margin:auto;
}

.lawn-sign-box {
    background: var(--navy);
    color: #fff;
    text-align: center;
    padding: 60px 40px;
}

.lawn-sign-box h2 {
    font-size: 38px;
    margin-bottom: 15px;
}

.lawn-sign-box p {
    max-width: 720px;
    margin: 0 auto 25px;
    line-height: 1.7;
}

.lawn-form {
    max-width: 900px;

}

.form-row {
    display: flex;
    gap: 25px;
}

.form-row label,
.lawn-form label {
    width: 100%;
    display: block;
    margin-bottom: 20px;
    font-weight: 600;
}

.lawn-form input[type="text"],
.lawn-form input[type="email"],
.lawn-form input[type="tel"] {
    width: 100%;
    padding: 14px;
    margin-top: 8px;
    border: 1px solid #ddd;
	font-family: 'Montserrat', sans-serif;
	font-size:16px;
}

.confirm-box {
    background: #f4f4f4;
    padding: 25px;
    margin: 25px 0;
    border-left: 5px solid #0c2d57;
}

.lawn-form input[type="submit"] {
    background: var(--sage);
    color: #fff;
    border: none;
  padding:16px 32px;
    cursor: pointer;
	border-radius: 50px;
	font-family: 'Montserrat', sans-serif;
	font-size:16px;
}

.lawn-form input[type="submit"]:hover {
    background: var(--navy);
}
@media(max-width:768px) {
    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .lawn-sign-box h2 {
        font-size: 30px;
    }
}

/* =========================
FOOTER
========================= */

footer{
    background:var(--taupe);
    color:var(--navy);
    text-align:center;
    padding:40px 20px;
	display:flex;
	justify-content:center;
	width:100%;
flex-direction:column;
	align-items:center;
}

footer img {
	width:100%;
	height:auto;
	max-width:220px;
	margin-bottom:20px;
}
/* =========================
RESPONSIVE
========================= */

@media(max-width:991px){

    .hero-grid,
    .priority-grid,
    .news-grid,
    .values-grid,
    .team-grid,
    .about-grid,
    .contact-grid{
        grid-template-columns:1fr;
    }

    .hero-image img{
        height:500px;
    }

    .about-image img{
        height:500px;
    }

}

@media(max-width:768px){

    .hamburger{
        display:flex;
    }

    .nav-links{
        position:fixed;
        top:0;
        right:-100%;
        width:100%;
        height:100vh;
        background:#fff;
        flex-direction:column;
        justify-content:center;
        align-items:center;
        transition:0.4s;
        gap:40px;
    }

    .nav-links.active{
        right:0;
    }

    .signup{
        padding:50px 30px;
    }

    .signup-form input{
        min-width:100%;
    }

}

/* =========================
MAINTENANCE
========================= */
.maintenance-page {
    margin: 0;
    font-family: 'Montserrat', Arial, sans-serif;
    background: var(--sage);
    color: #fff;
}

.maintenance-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.maintenance-card {
    max-width: 650px;
    text-align: center;
    background: var(--navy);
    padding: 60px 40px;
    border-radius: 18px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}

.maintenance-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    border-radius: 50%;
    background: var(--sage);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 38px;
}

.maintenance-card h1 {
    font-size: 46px;
    margin-bottom: 20px;
}

.maintenance-card p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 30px;
}

.maintenance-btn {
    display: inline-block;
    background: var(--sage);
    color: #fff;
    padding: 14px 28px;
    text-decoration: none;
    font-weight: 700;
   border-radius:50px;
}

.maintenance-btn:hover {
    background: var(--navy);
	border: 1px solid var(--sage);
}

@media(max-width: 768px) {
    .maintenance-card {
        padding: 45px 25px;
    }

    .maintenance-card h1 {
        font-size: 34px;
    }

    .maintenance-card p {
        font-size: 16px;
    }
}
#comments, #secondary {
	display:none;
}