/*
Theme Name: Indeginus Elementor Theme
Theme URI: https://indeginus.com
Author: indeginus.com
Author URI: https://indeginus.com
Description: A basic WordPress theme fully compatible with Elementor.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: indeginus-elementor-theme
Tags: elementor, responsive, flexible-header, custom-colors, custom-menu, custom-logo, featured-images, footer-widgets, theme-options

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.
*/

/* Responsive Typography */
html {
    font-size: 16px;
}

@media screen and (min-width: 768px) {
    html {
        font-size: 18px;
    }
}

@media screen and (min-width: 1200px) {
    html {
        font-size: 20px;
    }
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
}

.site-title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.site-description {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
}

strong {
    font-weight: 600;
}

/* High-resolution displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    body {
        font-weight: 300;
    }
}

/* Flexible images and embeds */
img,
embed,
iframe,
object,
video {
    max-width: 100%;
    height: auto;
}

/* Responsive layout */
.site-content {
    padding: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

@media screen and (min-width: 768px) {
    .site-content {
        padding: 2rem;
    }
}

.site-header {
    background-color: #f4f4f4;
    padding: 1rem;
}

.site-footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 1rem;
}

/* OLED-friendly dark mode */
@media (prefers-color-scheme: dark) {
    body {
        background-color: #000;
        color: #f0f0f0;
    }

    .site-header {
        background-color: #111;
    }

    .site-footer {
        background-color: #111;
    }

    a {
        color: #4da6ff;
    }
}

/* Safe area insets for notched displays */
.site-header,
.site-footer {
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
}

.site-header {
    padding-top: env(safe-area-inset-top);
}

.site-footer {
    padding-bottom: env(safe-area-inset-bottom);
}

/* Navigation */
.main-navigation {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}

/* Responsive navigation */
@media screen and (max-width: 767px) {
    .main-navigation ul {
        display: none;
    }

    .main-navigation.toggled ul {
        display: block;
    }
}

/* Buttons */
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}

/* Forms */
input,
select,
textarea {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}
