/*
Theme Name: Landing Theme For Lago Arima

Author: Kostia

Version: 1.0.0

Text Domain: lago-arima

*/

/* CSS Reset */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
    display: block;
}

body {
    line-height: 1;
}

ol, ul {
    list-style: none;
}

blockquote, q {
    quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* Additional Base Resets */
* {
    box-sizing: border-box;
}

a {
    text-decoration: none;
}

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

button,
input,
select,
textarea {
    font-family: inherit;
    font-size: 100%;
    margin: 0;
}

/* End CSS Reset */

/* WordPress Content Styling Override - to ensure content styles from WordPress are preserved */
.wp-block-content {
    /* Cancel out our reset for WordPress content */
    line-height: 1.5;
    font-size: 16px;
}

/* Allow WordPress to control styling inside content */
.wp-block-content h1, 
.wp-block-content h2, 
.wp-block-content h3, 
.wp-block-content h4, 
.wp-block-content h5, 
.wp-block-content h6 {
    margin: 0.5em 0;
    font-weight: bold;
    line-height: 1.2;
}

.wp-block-content h1 {
    font-size: 2em;
}

.wp-block-content h2 {
    font-size: 1.5em;
}

.wp-block-content h3 {
    font-size: 1.3em;
}

.wp-block-content p {
    margin-bottom: 1em;
}

.wp-block-content ul, 
.wp-block-content ol {
    list-style: initial;
    margin: 1em 0;
    padding-left: 2em;
}

.wp-block-content ol {
    list-style: decimal;
}

.wp-block-content a {
    color: #0073aa;
    text-decoration: underline;
}

.wp-block-content blockquote {
    margin: 1em 0;
    padding: 0.5em 1em;
    border-left: 4px solid #ddd;
    font-style: italic;
}

.wp-block-content table {
    border-collapse: collapse;
    width: 100%;
    margin: 1em 0;
}

.wp-block-content table th,
.wp-block-content table td {
    border: 1px solid #ddd;
    padding: 0.5em;
}

.wp-block-content img {
    height: auto;
}

.wp-block-content figure {
    margin: 1em 0;
}

.wp-block-content figcaption {
    font-size: 0.8em;
    text-align: center;
    color: #555;
}

/* Support for WordPress blocks */
.wp-block-content .wp-block-gallery,
.wp-block-content .blocks-gallery-grid {
    display: flex;
    flex-wrap: wrap;
    list-style-type: none;
    padding: 0;
    margin: 0;
}

/* Custom Tailwind Overrides */
.container {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 640px) {
    .container {
        max-width: 640px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 768px;
    }
}

@media (min-width: 1024px) {
    .container {
        max-width: 1024px;
    }
}

@media (min-width: 1280px) {
    .container {
        max-width: 1280px;
    }
}

@media (min-width: 1536px) {
    .container {
        max-width: 1536px;
    }
}

