/*
Theme Name: Hello Elementor Child
Theme URI: http://example.com/
Description: Child theme for Hello Elementor
Author: Antonio
Author URI: http://example.com/
Template: hello-elementor
Version: 1.0.0
*/

/* Reset CSS */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

/* Links */
a {
    color: #0073e6;
    text-decoration: none;
}

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

/* Headings */
h1, h2, h3, h4, h5, h6 {
  color: #222;
  font-family: "Martian Mono", serif;
  font-weight: 600;
  text-transform: none;
  text-decoration: none;
  line-height: 50px;
  letter-spacing: -1.6px;
  word-spacing: 0px;
  margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
}

h2 {
  font-size: 30px;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1rem;
}

/* Paragraphs */
p {
 
}

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

li {
    margin-bottom: 0.5rem;
}

/* Buttons */
button,
input[type="submit"],
input[type="button"] {
    background-color: #000;
    color: #fff;
    border: none;
    padding: 0.75rem 1.25rem;
    cursor: pointer;
    font-size: 1rem;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

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

/* Forms */
input[type="text"],
input[type="email"],
input[type="password"],
textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

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

/* Utility Classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.text-center {
    text-align: center;
}

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.pt-1 { padding-top: 1rem; }
.pt-2 { padding-top: 2rem; }
.pt-3 { padding-top: 3rem; }

.pb-1 { padding-bottom: 1rem; }
.pb-2 { padding-bottom: 2rem; }
.pb-3 { padding-bottom: 3rem; }
