/*
Theme Name: LinkWithTutors
Theme URI: https://example.com
Author: Kashif Ali
Author URI: mailto:dev.kashifali@gmail.com
Description: Custom WordPress theme converted from HTML template
Version: 1.0.0
Template: twentytwentyfive
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: linkwithtutors
Tags: custom, education, responsive, modern

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/

/* 
 * Fonts are loaded via separate CSS files in functions.php
 * CSS files (custom.css, header.css, footer.css) are enqueued separately in functions.php
 * Do not use @import here as it causes loading issues
 */

/* CSS Variables for Color Scheme */
:root {
    --font-size: 16px;
    --font-weight-normal: 400;
    --font-weight-bold: 700;
    --font-weight-semibold: 600;
    --font-weight-medium: 500;
    --letter-spacing: 0em;
    --text-color: #616161;
    --top-color: #20906A;
    --primary-color: #516E8E;
    --Secondary-color: #ff853f;
    --tertiary-color: #15c1fa;
    --fourtiary-color: #a64cf9;
    --box-bg: #fdf7f3;
    --box-bg2: #f0fbf8;
    --title-color: #1e1e1e;
    --theme-color: #1ec28e;
    --bg-white: #ffffff;
    --color-white: #ffffff;
    --btn-color: #1ec28e;
    --btn-border: #1ec28e;
    --btn-bg: #1ec28e;
    --btn-white-color: #000;
    --btn-white-border: #212121;
    --btn-white-bg: #ffffff;
    --btn-color-hover: #000;
    --btn-border-hover: #212121;
    --btn-bg-hover: #ffffff;
    --btn-white-color-hover: #ffffff;
    --btn-white-border-hover: #D46C20;
    --btn-white-bg-hover: #D46C20;
    --new-label-color: #ffffff;
    --new-label-bg: #D46C20;
    --coming-soon-label-color: #ffffff;
    --coming-soon-label-bg: #f94c30;
    --theme-orange-color: #f94c30;
    --section-background-1: #D46C20;
    --section-background-2: #fff;
    --transition-effect: 500ms ease-in-out;
    --box-shadow: 0px 10px 25px 0px rgb(0, 0, 0, .2);
    --letter-spacing-0: 0em;
    --letter-spacing--25: -0.025em;
    --letter-spacing--2: -0.02em;
}

/* Basic body styles */
html,
body {
    overflow-x: hidden;
}

body {
    font-size: var(--font-size);
    line-height: 26px;
    color: var(--text-color);
    font-weight: var(--font-weight-normal);
    font-family: "Open Sans", serif;
    margin: 0;
}

p {
    font-size: var(--font-size);
    line-height: 26px;
    color: var(--text-color);
    font-weight: var(--font-weight-normal);
    font-family: "Open Sans";
    margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: 42px;
    line-height: 52px;
    color: var(--title-color);
    font-weight: var(--font-weight-semibold);
    font-family: "Outfit", serif;
    font-style: normal;
    -webkit-transition: .5s;
    transition: .5s;
    margin: 0;
}

h1 {
    font-size: 50px;
}

h2 {
    font-size: 35px;
}

h3 {
    font-size: 30px;
}

h4 {
    font-size: 24px;
}

h5 {
    font-size: 20px;
}

h6 {
    font-size: 18px;
}

a {
    text-decoration: none;
    -webkit-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    color: var(--text-color);
}
.header-menu {
    margin: 0px;
}
