/*
Theme Name: MasaNet
Theme URI: http://makka.test/
Author: MasaNet
Author URI: http://makka.test/
Description: MasaNet is a modern, fast and fully responsive WordPress theme for internet service providers, broadband, fiber optic, ISP, telecom, networking, data center and technology company websites. It ships with a beautiful one-page home layout featuring a hero slider, services, offers, pricing plans, value bundles, promotion video, animated counters, team, testimonials, blog and Instagram gallery sections. The theme is translation ready, RTL friendly, SEO optimized and easy to customize from the WordPress Customizer.
Version: 1.0.0
Tested up to: 6.9
Requires PHP: 7.4
Requires at least: 5.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: masanet
Tags: one-column, two-columns, three-columns, four-columns, right-sidebar, left-sidebar, custom-logo, custom-menu, custom-background, custom-colors, featured-images, full-width-template, sticky-post, theme-options, threaded-comments, translation-ready, blog, portfolio, grid-layout, footer-widgets, block-styles, wide-blocks

MasaNet WordPress Theme, (C) 2026 MasaNet
MasaNet is distributed under the terms of the GNU GPL v2 or later.
*/

/*--------------------------------------------------------------
# 01. CSS Variables
--------------------------------------------------------------*/
:root {
  --theme-color: #f98208;
  --theme-color-rgb: 249, 130, 8;
  --theme-color-dark: #e07006;
  --accent-color: #e410f2;
  --accent-color-rgb: 228, 16, 242;
  --heading-color: #020626;
  --heading-color-rgb: 2, 6, 38;
  --body-color: #6c6c6c;
  --white: #ffffff;
  --black: #000000;
  --light-bg: #f5f4f2;
  --border-color: #e6e7ea;
  --font-body: 'Poppins', sans-serif;
  --font-heading: 'Unbounded', sans-serif;
  --transition: all 0.4s ease;
  --radius: 12px;
  --radius-lg: 30px;
  --shadow: 0 5px 40px rgba(2, 6, 38, 0.08);
  --shadow-hover: 0 15px 50px rgba(2, 6, 38, 0.14);
}

/*--------------------------------------------------------------
# 02. Reset & Base
--------------------------------------------------------------*/
*, *::before, *::after { -webkit-box-sizing: border-box; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  padding: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.8;
  color: var(--body-color);
  background-color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body.masanet-no-scroll { overflow: hidden; }

h1, h2, h3, h4, h5, h6 {
  margin: 0 0 15px;
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.25;
  color: var(--heading-color);
  word-wrap: break-word;
}
h1 { font-size: 48px; }
h2 { font-size: 38px; }
h3 { font-size: 28px; }
h4 { font-size: 22px; }
h5 { font-size: 18px; }
h6 { font-size: 15px; }

p { margin: 0 0 18px; }
p:last-child { margin-bottom: 0; }

a { color: var(--theme-color); text-decoration: none; -webkit-transition: var(--transition); transition: var(--transition); }
a:hover, a:focus { color: var(--heading-color); }
a:focus-visible { outline: 2px dashed var(--theme-color); outline-offset: 3px; }

img { max-width: 100%; height: auto; border: 0; vertical-align: middle; }
figure { margin: 0; }
ul, ol { margin: 0 0 18px; padding-left: 20px; }
blockquote {
  margin: 25px 0;
  padding: 25px 30px;
  background: var(--light-bg);
  border-left: 5px solid var(--theme-color);
  font-size: 18px;
  font-style: italic;
  color: var(--heading-color);
}
table { width: 100%; margin-bottom: 25px; border-collapse: collapse; }
th, td { padding: 12px 15px; border: 1px solid var(--border-color); text-align: left; }
th { background: var(--light-bg); color: var(--heading-color); }
pre, code { font-family: Menlo, Consolas, monospace; font-size: 14px; }
pre { padding: 20px; overflow: auto; background: var(--heading-color); color: var(--white); border-radius: var(--radius); }

input[type="text"], input[type="email"], input[type="url"], input[type="password"],
input[type="search"], input[type="number"], input[type="tel"], input[type="date"],
select, textarea {
  width: 100%;
  padding: 13px 20px;
  font-family: inherit;
  font-size: 15px;
  color: var(--body-color);
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 60px;
  -webkit-appearance: none;
  appearance: none;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}
textarea { border-radius: var(--radius); min-height: 150px; }
input:focus, select:focus, textarea:focus {
  outline: 0;
  border-color: var(--theme-color);
  box-shadow: 0 0 0 3px rgba(var(--theme-color-rgb), 0.12);
}
select {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23f98208' d='M8 11L2 5h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  background-size: 14px;
  padding-right: 45px;
}
button, input[type="submit"], input[type="button"] { font-family: inherit; cursor: pointer; }

.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.screen-reader-text:focus {
  display: block;
  top: 10px;
  left: 10px;
  width: auto;
  height: auto;
  padding: 15px 25px;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  background: var(--heading-color);
  border-radius: 5px;
  clip: auto !important;
  z-index: 100000;
}
.skip-link { position: absolute; }

.alignleft { float: left; margin: 0 25px 20px 0; }
.alignright { float: right; margin: 0 0 20px 25px; }
.aligncenter { display: block; margin: 0 auto 20px; }
.wp-caption { max-width: 100%; margin-bottom: 25px; }
.wp-caption-text { padding: 10px 0; font-size: 14px; font-style: italic; text-align: center; color: #8b8b8b; }
.sticky { display: block; }
.gallery-caption { font-size: 14px; }
.bypostauthor { display: block; }

table.wp-block-calendar caption, .wp-block-table figcaption { font-size: 14px; text-align: center; }
.wp-block-button__link { background: var(--theme-color); border-radius: 60px; color: var(--white); }
.wp-block-quote { border-left: 5px solid var(--theme-color); padding-left: 25px; }
embed, iframe, object, video { max-width: 100%; }

/*--------------------------------------------------------------
# 03. Grid, Layout & Helpers
--------------------------------------------------------------*/
.masanet-container {
  width: 100%;
  max-width: 1290px;
  margin: 0 auto;
  padding: 0 15px;
}
.masanet-container-fluid { width: 100%; padding: 0 25px; margin: 0 auto; }
.masanet-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}
.masanet-col, [class*="masanet-col-"] { padding: 0 15px; width: 100%; }
.masanet-col-3 { -webkit-box-flex: 0; -ms-flex: 0 0 25%; flex: 0 0 25%; max-width: 25%; }
.masanet-col-4 { -webkit-box-flex: 0; -ms-flex: 0 0 33.333333%; flex: 0 0 33.333333%; max-width: 33.333333%; }
.masanet-col-5 { -webkit-box-flex: 0; -ms-flex: 0 0 41.666667%; flex: 0 0 41.666667%; max-width: 41.666667%; }
.masanet-col-6 { -webkit-box-flex: 0; -ms-flex: 0 0 50%; flex: 0 0 50%; max-width: 50%; }
.masanet-col-7 { -webkit-box-flex: 0; -ms-flex: 0 0 58.333333%; flex: 0 0 58.333333%; max-width: 58.333333%; }
.masanet-col-8 { -webkit-box-flex: 0; -ms-flex: 0 0 66.666667%; flex: 0 0 66.666667%; max-width: 66.666667%; }
.masanet-col-9 { -webkit-box-flex: 0; -ms-flex: 0 0 75%; flex: 0 0 75%; max-width: 75%; }

.masanet-d-flex { display: -webkit-box; display: -ms-flexbox; display: flex; }
.masanet-align-center { -ms-flex-item-align: center; align-self: center; }
.masanet-align-items-center { -webkit-box-align: center; -ms-flex-align: center; align-items: center; }
.masanet-justify-between { -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; }
.masanet-justify-center { -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; }
.masanet-flex-wrap { -ms-flex-wrap: wrap; flex-wrap: wrap; }
.masanet-text-center { text-align: center; }
.masanet-text-right { text-align: right; }
.masanet-text-white { color: var(--white) !important; }
.masanet-text-theme { color: var(--theme-color) !important; }
.masanet-position-relative { position: relative; }
.masanet-z1 { position: relative; z-index: 1; }
.masanet-w-100 { width: 100%; }
.masanet-overflow-hidden { overflow: hidden; }
.masanet-mb-0 { margin-bottom: 0 !important; }
.masanet-mt-15 { margin-top: 15px; }
.masanet-mt-20 { margin-top: 20px; }
.masanet-mt-30 { margin-top: 30px; }
.masanet-mt-40 { margin-top: 40px; }
.masanet-mb-20 { margin-bottom: 20px; }
.masanet-mb-30 { margin-bottom: 30px; }
.masanet-mb-40 { margin-bottom: 40px; }
.masanet-mb-50 { margin-bottom: 50px; }
.masanet-bg-light { background: var(--light-bg); }
.masanet-bg-heading { background: var(--heading-color); }
.masanet-radius { border-radius: var(--radius); }
.masanet-radius-lg { border-radius: var(--radius-lg); }
.masanet-radius-50 { border-radius: 50%; }
.masanet-section { padding: 110px 0; }
.masanet-section--pt { padding-top: 110px; }
.masanet-section--pb { padding-bottom: 110px; }
.masanet-overlay { position: relative; z-index: 1; }
.masanet-overlay::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--heading-color);
  opacity: 0.6;
  z-index: -1;
}

/*--------------------------------------------------------------
# 04. Buttons
--------------------------------------------------------------*/
.masanet-button {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  border: 0;
  border-radius: 60px;
  overflow: hidden;
  z-index: 1;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}
.masanet-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--heading-color);
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transform-origin: right center;
  transform-origin: right center;
  -webkit-transition: -webkit-transform 0.45s ease;
  transition: transform 0.45s ease;
  z-index: -1;
}
.masanet-button:hover::before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transform-origin: left center;
  transform-origin: left center;
}
.masanet-button--theme { background: var(--theme-color); color: var(--white); }
.masanet-button--theme:hover { color: var(--white); }
.masanet-button--dark { background: var(--heading-color); color: var(--white); }
.masanet-button--dark::before { background: var(--theme-color); }
.masanet-button--dark:hover { color: var(--white); }
.masanet-button--white { background: var(--white); color: var(--heading-color); }
.masanet-button--white::before { background: var(--theme-color); }
.masanet-button--white:hover { color: var(--white); }
.masanet-button--outline { background: transparent; color: var(--heading-color); box-shadow: inset 0 0 0 2px var(--border-color); }
.masanet-button--outline:hover { color: var(--white); }
.masanet-button--sm { padding: 12px 28px; font-size: 14px; }
.masanet-button--lg { padding: 19px 44px; font-size: 16px; }

.masanet-link-arrow {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  color: var(--heading-color);
}
.masanet-link-arrow i { font-size: 12px; -webkit-transition: var(--transition); transition: var(--transition); }
.masanet-link-arrow:hover { color: var(--theme-color); }
.masanet-link-arrow:hover i { -webkit-transform: translateX(5px); transform: translateX(5px); }

/*--------------------------------------------------------------
# 05. Section Heading
--------------------------------------------------------------*/
.masanet-section-head { position: relative; margin-bottom: 55px; }
.masanet-section-head--center { max-width: 760px; margin-left: auto; margin-right: auto; text-align: center; }
.masanet-sub-heading {
  display: inline-block;
  margin-bottom: 14px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--theme-color);
}
.masanet-sub-heading::before {
  content: "";
  display: inline-block;
  width: 26px;
  height: 2px;
  margin-right: 10px;
  vertical-align: middle;
  background: var(--theme-color);
}
.masanet-section-head--center .masanet-sub-heading::after {
  content: "";
  display: inline-block;
  width: 26px;
  height: 2px;
  margin-left: 10px;
  vertical-align: middle;
  background: var(--theme-color);
}
.masanet-section-title {
  margin-bottom: 0;
  font-size: 46px;
  font-weight: 700;
  line-height: 1.22;
}
.masanet-section-title span { color: var(--theme-color); }
.masanet-section-desc { max-width: 680px; margin-top: 18px; }
.masanet-section-head--center .masanet-section-desc { margin-left: auto; margin-right: auto; }

/*--------------------------------------------------------------
# 06. Preloader
--------------------------------------------------------------*/
#masanet-preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: var(--heading-color);
  z-index: 100000;
  -webkit-transition: opacity 0.6s ease, visibility 0.6s ease;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#masanet-preloader.is-hidden { opacity: 0; visibility: hidden; }
.masanet-loader {
  width: 62px;
  height: 62px;
  border: 4px solid rgba(255, 255, 255, 0.15);
  border-top-color: var(--theme-color);
  border-radius: 50%;
  -webkit-animation: masanet-spin 0.9s linear infinite;
  animation: masanet-spin 0.9s linear infinite;
}
@-webkit-keyframes masanet-spin { to { -webkit-transform: rotate(360deg); } }
@keyframes masanet-spin { to { transform: rotate(360deg); } }

/*--------------------------------------------------------------
# 07. Utilities
--------------------------------------------------------------*/
body.masanet-offcanvas-open { overflow: hidden; }

/* Reveal on scroll */
[data-masanet-reveal] { opacity: 0; -webkit-transform: translateY(35px); transform: translateY(35px); -webkit-transition: opacity 0.7s ease, -webkit-transform 0.7s ease; transition: opacity 0.7s ease, transform 0.7s ease; }
[data-masanet-reveal].is-revealed { opacity: 1; -webkit-transform: translateY(0); transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  [data-masanet-reveal] { opacity: 1; -webkit-transform: none; transform: none; }
}

/* Alignment helpers for the classic editor */
.masanet-align-wide { display: block; width: 100%; }
.masanet-clearfix::after { content: ""; display: table; clear: both; }
.masanet-hidden { display: none !important; }

