/*
Theme Name: Pomodoro Focus Timer
Theme URI: https://pomodorofocustimer.com
Author: Muhammad Usman
Author URI: http://devusman.vercel.app
Description: A premium, study-focused Pomodoro theme with Elementor integration.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: pomodoro-focus-timer
*/

/* Reset & Base */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.6;
    font-family: 'Kumbh Sans', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    transition: var(--theme-transition);
}

/* Typography Perfection */
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 1.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-color);
}

p {
    margin: 0 0 1.5rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    opacity: 0.8;
}

/* Container & Layout */
.site-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    width: 100%;
    min-height: 60vh;
}

/* Elementor Specific Overrides for Premium feel */
.elementor-widget-pomodoro_timer {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

/* Scrollbar Perfection */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-color);
}

::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

/* Selection */
::selection {
    background: var(--primary-color);
    color: #fff;
}

/* WordPress Core Classes */
.aligncenter {
    display: block;
    margin: 0 auto;
}

.alignleft {
    float: left;
    margin: 0 1.5rem 1.5rem 0;
}

.alignright {
    float: right;
    margin: 0 0 1.5rem 1.5rem;
}

.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}