/*
Theme Name: MRD
Theme URI: https://mohanrajdavala.com/
Author: Sagar Radadiya
Author URI: http://example.com
Description: Minimal WordPress Parent Theme
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: mrd
*/

/* Reset some default browser styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    font-weight: 600;
    color: #222;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

/* Paragraphs */
p {
    margin-bottom: 1rem;
}

/* Links */
a {
    color: #0073aa;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #005177;
    text-decoration: underline;
}

/* Lists */
ul, ol {
    margin-bottom: 1rem;
    padding-left: 2rem;
}

li {
    margin-bottom: 0.5rem;
}

/* Images */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Buttons */
button, input[type="button"], input[type="submit"] {
    padding: 0.6rem 1.2rem;
    border: none;
    background-color: #0073aa;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
}

button:hover, input[type="button"]:hover, input[type="submit"]:hover {
    background-color: #005177;
}

/* Container */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Utility classes */
.text-center {
    text-align: center;
}

.mt-1 { margin-top: 1rem; }
.mb-1 { margin-bottom: 1rem; }

.mt-2 { margin-top: 2rem; }
.mb-2 { margin-bottom: 2rem; }

.hidden {
    display: none !important;
}



