/*
Theme Name: SignMeUp Theme 2025
Author: Aprilred
Author URI: https://aprilred.com/
Description: SignMeUp streamlines attendance management by making records easy to complete, edit, and access in real time.
Version: 1.0
Tested up to: 6.8
Requires at least: 4.4
Requires PHP: 5.2.4
*/


/**
 * Table of Contents
 *
 * 1.0 - Normalize
 * 2.0 - Genericons
 * 3.0 - Typography
 * 4.0 - Elements
 * 5.0 - Forms
 * 6.0 - Navigation
 *   6.1 - Links
 *   6.2 - Menus
 * 7.0 - Accessibility
 * 8.0 - Alignments
 * 9.0 - Clearings
 * 10.0 - Widgets
 * 11.0 - Content
 *    11.1 - Header
 *    11.2 - Posts and pages
 *    11.3 - Post Formats
 *    11.4 - Comments
 *    11.5 - Sidebar
 *    11.6 - Footer
 * 12.0 - Media
 *    12.1 - Captions
 *    12.2 - Galleries
 * 13.0 - Multisite
 * 14.0 - Media Queries
 *    14.1 - >= 710px
 *    14.2 - >= 783px
 *    14.3 - >= 910px
 *    14.4 - >= 985px
 *    14.5 - >= 1200px
 * 15.0 - Print
 */


/**
 * 1.0 - Normalize
 *
 * Normalizing styles have been helped along thanks to the fine work of
 * Nicolas Gallagher and Jonathan Neal http://necolas.github.com/normalize.css/
 */

html {
	font-family: "Patrick Hand SC", cursive;
  font-weight: 400;
  font-style: normal;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}

body {
	margin: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
	display: block;
}

audio,
canvas,
progress,
video {
	display: inline-block;
	vertical-align: baseline;
}

audio:not([controls]) {
	display: none;
	height: 0;
}

[hidden],
template {
	display: none;
}

a {
	background-color: transparent;
}

abbr[title] {
	border-bottom: 1px dotted;
}

b,
strong {
	font-weight: 700;
}

small {
	font-size: 80%;
}

sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sup {
	top: -0.5em;
}

sub {
	bottom: -0.25em;
}

img {
	border: 0;
}

svg:not(:root) {
	overflow: hidden;
}

figure {
	margin: 0;
}

hr {
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;
}

code,
kbd,
pre,
samp {
	font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
	color: inherit;
	font: inherit;
	margin: 0;
}

select {
	text-transform: none;
}

button {
	overflow: visible;
}

button,
input,
select,
textarea {
	max-width: 100%;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
	-webkit-appearance: button;
	cursor: pointer;
}

button[disabled],
html input[disabled] {
	cursor: default;
	opacity: .5;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
	border: 0;
	padding: 0;
}

input[type="checkbox"],
input[type="radio"] {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	margin-right: 0.4375em;
	padding: 0;
}

input[type="date"]::-webkit-inner-spin-button,
input[type="date"]::-webkit-outer-spin-button,
input[type="time"]::-webkit-inner-spin-button,
input[type="time"]::-webkit-outer-spin-button,
input[type="datetime-local"]::-webkit-inner-spin-button,
input[type="datetime-local"]::-webkit-outer-spin-button,
input[type="week"]::-webkit-inner-spin-button,
input[type="week"]::-webkit-outer-spin-button,
input[type="month"]::-webkit-inner-spin-button,
input[type="month"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
	height: auto;
}

input[type="search"] {
	-webkit-appearance: textfield;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

fieldset {
	border: 1px solid #d1d1d1;
	margin: 0 0 1.75em;
	min-width: inherit;
	padding: 0.875em;
}

fieldset > :last-child {
	margin-bottom: 0;
}

legend {
	border: 0;
	padding: 0;
}

textarea {
	overflow: auto;
	vertical-align: top;
}

optgroup {
	font-weight: bold;
}

/* General font and background */
body {
    font-family: "Segoe UI", sans-serif;
    background: #f7f9fb;
    color: #1e2a38;
    margin: 0;
    padding: 0;
}

/* Centered section content wrapper */
.content-area {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Fixed CTA button at top-right */
.fixed {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
}

.fixed button {
    background: #b6362e;
    color: #fff;
    border: none;
    padding: 12px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s ease;
}

.fixed button:hover {
    background: #2f4054;
}

select {
    padding: 8px 14px;
}

/* Section styling */

/* Text blocks */
.mission, .values, .functionalities, .selling-points {
    font-size: 1.1em;
    line-height: 1.6;
}

/* Optional headings inside content */
section div h2, section div h3 {
    margin-top: 0;
    font-weight: 700;
}

/* Links / buttons inside content */
section div a {
    color: #1e2a38;
    text-decoration: none;
}

section div a:hover {
    text-decoration: underline;
}

/* Site Header Container */
.site-header {
    background: #1e2a38;
    color: #fff;
    padding: 30px 20px;
    text-align: center;
    font-family: "Segoe UI", sans-serif;
    position: relative;
    z-index: 100;
}

/* Site Branding (Title + Description) */
.site-header .site-title {
    font-size: 2em;
    font-weight: 700;
    margin: 0;
}

.site-header .site-title a {
    color: #fff;
    text-decoration: none;
}

.site-header .site-title a:hover {
    color: #cfd8dc;
}

.site-header .site-description {
    font-size: 1.2em;
    margin: 5px 0 0;
    font-weight: 400;
    color: #d0d0d0;
}

/* Primary Menu Button (Mobile) */
.menu-toggle {
    display: none; /* Hide on desktop */
    background: #2f4054;
    color: #fff;
    border: none;
    padding: 10px 15px;
    font-size: 0.9em;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 10px;
}

/* Primary Menu Container */
.site-header-menu {
    margin-top: 15px;
}

/* Primary Menu Items */
.primary-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: inline-flex;
    gap: 20px;
}

.primary-menu li {
    position: relative;
}

.primary-menu li a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    padding: 5px 0;
}

.primary-menu li a:hover {
    color: #cfd8dc;
}

.widget-title {
    display: none;
}

.widget_polylang nav ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    list-style: none;
}

li a {
    color: inherit;
    cursor: pointer;
    text-decoration: none;
}

.widget_polylang nav ul li {
    color: white;
}

/* Responsive: Show menu toggle on small screens */
@media screen and (max-width: 768px) {
    .primary-menu {
        display: none;
        flex-direction: column;
        gap: 10px;
    }

    .menu-toggle {
        display: inline-block;
    }
}
