/*
Theme Name: Northland One
Description: Bootstrap-based WP theme with Hero Slider, 4-column footer widgets, 3-column blog grid, and page templates.
Version: 2.1
Author: L Custom theme
*/

body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}
/* Header */
.site-header {
    background: #222;
    padding: 15px 20px;
}

.header-inner {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.logo a {
    color: #fff;
    font-size: 22px;
    font-weight: 600;
    text-decoration: none;
}

/* Menu */
.menu {
    list-style: none;
    display: flex;
    gap: 25px;
    margin: 0;
    padding: 0;
}

.menu li a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
}

.menu li a:hover {
    color: #f4b400;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 4px 0;
}

/* Mobile */
@media (max-width: 768px) {
    .main-nav {
        position: absolute;
        top: 65px;
        left: 0;
        width: 100%;
        background: #222;
        display: none;
        padding: 20px 0;
    }

    .main-nav.active {
        display: block;
    }

    .menu {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .hamburger {
        display: flex;
    }
}
/* footer */
.site-footer {
  background: #0f172a;
  color: #e5e7eb;
  padding: 35px 20px 20px;
  font-size: 14px;
 
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.site-footer h4 {
  color: #ffffff;
  margin-bottom: 15px;
  font-size: 16px;
}

.site-footer a {
  color: #cbd5f5;
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 8px;
}

.footer-bottom {
  border-top: 1px solid #1e293b;
  margin-top: 20px;
  padding-top: 15px;
  text-align: center;
  font-size: 13px;
}

.footer-seo {
  font-size: 10px;
  color: #0f172a;
  height: 0;
  overflow: hidden;
}
/* form  */
form input,
form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 15px;
}

form textarea {
    min-height: 140px;
}

form input[type="submit"] {
    background: #000;
    color: #fff;
    border: none;
    padding: 12px 20px;
    cursor: pointer;
    border-radius: 6px;
}

form input[type="submit"]:hover {
    background: #444;
}
textarea {
    min-height: auto;
    height: auto;
}
.contact-section {
    width: 100%;
/*     margin-left: calc(-50vw + 50%); */
    background: #f9f9f9;
    padding: 10px 20px;
    border: 1px solid #ddd;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
	border-radius: 15px;
}

.cf-heading {
    text-align: center;
    font-size: 32px;
    font-weight: 600;
    margin: 0;
   
}
.wpcf7 textarea {
    height: 150px !important;
}
/* popup  */


/* #thankyou-popup {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 9999;
}

.popup-box {
    background: #fff;
    padding: 25px;
    max-width: 360px;
    margin: 15% auto;
    text-align: center;
    border: 1px solid #ddd;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    border-radius: 8px;
}

.popup-box button {
    margin-top: 15px;
    padding: 8px 20px;
    border: none;
    background: #000;
    color: #fff;
    cursor: pointer;
    border-radius: 4px;
}
.wpcf7-response-output {
    display: none;
}
.wpcf7-not-valid-tip {
    font-size: 13px;
    color: #d32f2f;
    margin-top: 4px;
}

 */