/*
Theme Name:  TEST THEME
Description: Custom WordPress theme for Galactic Escapes.
Author: Anirudh Trivedi
Author URI: https://galacticescapes.in
Description: Custom WordPress theme for Galactic Escapes.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 7.0
Text Domain: galactic-escapes
*/

/* ==========================================================
   Base Reset
========================================================== */

*,
*::before,
*::after {
    box-sizing: border-box;
}

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

body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
    color: #222;
    background: #fff;
}

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

a {
    color: inherit;
    text-decoration: none;
}

ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none;
}