@font-face {
    font-family: Neverwinter;
    src: url("/Neverwinter.otf") format("opentype");
}

/* ============ Base page skeleton (site template) ============ */
.page-container {
	font-family: "MV Boli";
    padding: 20px;
    box-sizing: border-box;
	min-width: 500px;
}
.image-container {
    display: flex;
    justify-content: center;
}
.image-container img {
    max-width: 100%;
    height: auto;
}
.social-section {
	width: 250px;
	float: left;
}
.wrapper {
	color: black;
	margin-left: 250px;
}
.navbar {
    display: flex;
    flex-direction: column;
    padding-top: 90px;
}
.nav-button {
    background-color: transparent;
    color: black;
    padding: 10px 0px;
    margin: 8px 0;
    text-align: center;
	font-family: Neverwinter;
	font-size: 15pt;
    text-decoration: none;
    border-radius: 10px;
    transition: 0.3s ease;
    transform: translateY(0);
	width: 112px;
	margin-left: 70px;
}
.nav-button:hover {
    background-color: transparent;
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
    transform: translateY(-5px);
	color: #00f5f7;
	text-shadow: -1px -1px 0 #004C53, 1px -1px 0 #004C53, -1px 1px 0 #004C53, 1px 1px 0 #004C53;
}
h1, h2 {
	font-family: Neverwinter;
	margin-top: 0;
	margin-bottom: 0;
}
body {
    background-color: #81B4A1;
    margin: 0;
    font-family: Arial, sans-serif;
	align-content: center;
	display: flex;
	align-items: center;
	justify-content: center;
}
#navbar {
	background-image: url("/images/contentlisttall.png");
	background-position: top;
	background-repeat: no-repeat;
	height: 645px;
}
#nameh1 {
	text-align: center;
	font-size: 35pt;
	color: black;
}
#thanks {
	text-align: center;
}
#searchwidget {
	display: inline-block;
	float: right;
	margin-top: 15px;
}
#search {
  overflow: hidden;
  background-color: tan;
  border: 5px solid black;
  color: black;
  max-width: 226px;
}
#livesearch {
	position: absolute;
	border: 1px solid black;
	border-radius: 10px;
	width: 226px;
	background-color: tan;
	text-align: center;
	z-index: 1;
}
#box {
	height: 25px;
	background-color: #D7BDA7;
	font-weight: bold;
	font-size: 15pt;
	max-width: 222px;
	text-align: left;
}
#livesearch a, #livesearch a:visited {
	color: black;
}
a {
    color: #8A5A2B;
	text-decoration: none;
}
a:hover {
    color: #C58B3A;
}

/* ============ Today in Felarya ============ */
.today-card {
	background: linear-gradient(135deg, #81B4A1 0%, #D2B48C 100%);
	border: 2px solid #6a9184;
	border-radius: 14px;
	padding: 16px 22px;
	margin: 10px auto 30px;
	max-width: 720px;
	text-align: center;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}
.today-card .today-line {
	font-family: Neverwinter;
	font-size: 17pt;
	margin: 4px 0;
	color: #1e3d33;
}
.today-card .today-sub {
	margin: 4px 0;
	font-size: 12pt;
	color: #3d3325;
}
.today-card .today-earth {
	margin: 6px 0 0;
	font-size: 10pt;
	font-style: italic;
	color: #2f4a3f;
}

/* ============ Dimensional Calendar ============ */
.wheel-intro {
	text-align: center;
	max-width: 720px;
	margin: 0 auto 10px;
}
.wheel-section {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
	align-items: center;
	justify-content: center;
	margin-bottom: 30px;
}
.wheel-box {
	width: 100%;
}

/* =====================================================
   Mobile responsiveness — screens 768 px wide or less
   ===================================================== */
@media (max-width: 768px) {
    body {
        align-items: flex-start;
        padding: 8px;
        box-sizing: border-box;
    }
    .page-container {
        min-width: 0;
    }
    .social-section {
        width: 100%;
        float: none;
        text-align: center;
    }
    .wrapper {
        margin-left: 0;
    }
    .navbar {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        padding-top: 10px;
    }
    .nav-button {
        width: auto;
        margin-left: 4px;
        margin-right: 4px;
        font-size: 14pt;
    }
    #navbar {
        height: auto;
        min-height: 200px;
    }
    #searchwidget {
        margin-right: 0;
    }
    #nameh1 {
        font-size: 24pt;
    }
    .today-card .today-line {
        font-size: 13pt;
    }
}
