:root {
    --main-bg: #0a0a23;
    --main-gold: #ffd700;
    --main-white: #f5f5f5;
    --shadow: 0 0 15px rgba(0,0,0,0.6);
}

body{
    margin: 0;
    font-family: "Libre Caslon Display", serif;
    font-weight: 400;
    font-style: normal;
    background: var(--main-bg);
    color: var(--main-white);
}

.navbar{
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(5px);
    box-shadow: var(--shadow);
}

.navbar ul{
    display: flex;
    justify-content: center;
    padding: 10px;
    margin: 0;
    list-style: none;
}

.navbar a{
    color: var(--main-gold);
    text-decoration: none;
    margin: 0 15px;
    transition: color 0.3s ease;
}

.navbar a:hover {
    color: var(--main-white);
}

section{
    padding: 50px 15px;
    text-align: center;
}

h1{
    color: var(--main-gold);
}

h2{
    color: var(--main-gold);
}

.houses .grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}
.hs1 {
    padding: 20px;
    background: rgba(255,255,255,0.1);
    box-shadow: var(--shadow);
    border-radius: 10px;
    transition: transform 0.3s ease, filter 0.3s ease;
}
.hs1:hover {
    transform: scale(1.1);
    filter: brightness(1.2);
    background: rgba(255,0,0,0.5);
}

.hs2 {
    padding: 20px;
    background: rgba(255,255,255,0.1);
    box-shadow: var(--shadow);
    border-radius: 10px;
    transition: transform 0.3s ease, filter 0.3s ease;
}
.hs2:hover {
    transform: scale(1.1);
    filter: brightness(1.2);
    background: rgba(0,225,0,0.5);
}

.hs3 {
    padding: 20px;
    background: rgba(255,255,255,0.1);
    box-shadow: var(--shadow);
    border-radius: 10px;
    transition: transform 0.3s ease, filter 0.3s ease;
}
.hs3:hover {
    transform: scale(1.1);
    filter: brightness(1.2);
    background: rgba(0,0,225,0.5);
}

.hs4 {
    padding: 20px;
    background: rgba(255,255,255,0.1);
    box-shadow: var(--shadow);
    border-radius: 10px;
    transition: transform 0.3s ease, filter 0.3s ease;
}
.hs4:hover {
    transform: scale(1.1);
    filter: brightness(1.2);
    background: rgba(199, 196, 0, 0.753);
}

img{
    height: 200px;
    width: 250px;
    border: 0px solid #000000;
    border-radius: 10px;
}

h1::after {
    content: "✨";
    color: var(--main-gold);
}
h2::after {
    content: "✨";
    color: var(--main-gold);
}
p::first-letter {
    font-size: 1.5em;
    color: var(--main-gold);
}

footer{
    text-align: center;
}
