/*

 * Theme Name: St Honoratus OPM
 * Author: Thea Perih
 * Version: 1.0
 * Description: Stylesheet for Just A Spoon and A Spatula
 * Copyright: © 2025 Thea Perih. All rights reserved.

*/

@font-face {
    font-family: 'RobotoCondensed';
    src: url('./assets/fonts/Roboto_Condensed/RobotoCondensed-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
    font-display: swap;
}

@font-face {
  font-family: 'RobotoCondensed';
  src: url('./assets/fonts/Roboto_Condensed/RobotoCondensed-Italic-VariableFont_wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'DancingScript';
  src: url('./assets/fonts/Dancing_Script/DancingScript-VariableFont_wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
--global-color-0: #f4efeb;
--global-color-1: #a97959;
--global-color-2: #406163;
--global-color-3: #000000;
--global-color-4: #3b3b3b;
--padding-header-footer: 20px;
}

html, body {
    background: var(--global-color-0);
    color:var(--global-color-3);
    font-family: 'RobotoCondensed';
  font-weight: 500;
  font-size: 15px;
  font-size: 1rem;
    height: 100%;
}

button {
    background-color: var(--global-color-2);
    border-radius: 50px;
    color: var(--global-color-0);
    font-weight: bold;
    padding: 10px 20px;
    text-decoration:none;
    text-transform: uppercase;
    transition: background 0.3s;
}

.menu {
    text-decoration: none;
}

button:hover {
    background-color: var(--global-color-4);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'DancingScript';

}

.title-class-1 {
    text-align:center;
    font-size: xxx-large;
    padding-bottom: 3%;
    border-bottom: 1px solid;
}

a {
    color: var(--global-color-2);
}

.site__wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site__content {
  flex: 1;
  max-width: 100vw;
  width: 100vw;
}

.site__content--main {
    padding-top: 5%;
    padding-bottom: 5%;
    padding-left: 1.1%;
    padding-right: 1.1%;
	max-width: 1200px;
    margin: auto auto;
}

.site__content--content {
    margin-left: 10%;
    margin-right: 10%;
    padding-top: 5%;
    padding-bottom: 5%;
}

#site__header {
    min-width:100vw;
    background: var(--global-color-1);
}

.site__header--branding {
    color: var(--global-color-0);
    flex-grow: 1;
    text-align:center;
}

.site__header--navigation {
    color: var(--global-color-0);
    align-content: center;
}

.site__header--navigation ul {
    display: flex;
    justify-content: center;
    list-style: none;
}

.site__footer--navigation ul {
    list-style: none;
}
.site__header--navigation li {
    margin-right: 15px;
}

.site__header--navigation a, .site__footer--navigation a {
    text-decoration: none;
    color: var(--global-color-0);
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.site__header--navigation a:hover, .site__footer--navigation a:hover {
    color: var(--global-color-2);
    transform: scale(1.1);
    opacity: 1;
}

.site__header--button {
    align-content:center;
    flex-grow: 1;
    text-align: center;
}

.header-cta-btn {
    background-color: var(--global-color-2);
    border-radius: 50px;
    color: var(--global-color-0);
    font-weight: bold;
    padding: 10px 20px;
    text-decoration:none;
    text-transform: uppercase;
    transition: background 0.3s;
}

.header-cta-btn:hover {
    background-color: var(--global-color-4);
}

.site__header--container, .site__footer--container {
    align-content:center;
    display: flex;
    max-width:1200px;
    margin: auto auto;
    padding: var(--padding-header-footer);
}

.site__footer--container {
    flex-flow: column;
    justify-content: space-evenly;
}

#site__footer {
    align-content:center;
    background: var(--global-color-1);
    color: var(--global-color-0);
    padding: var(--padding-header-footer);
}

.site__footer--main {
    display: flex;
    justify-content:space-evenly;
    padding: var(--padding-header-footer);
}

.site__footer--footer-payments-icons {
    display: flex;
    gap: 12px;
    margin-top: 10px;
    font-size: 2rem; /* adjust as needed */
}

.site__footer--footer-payments-icons i {
    color: var(--font);
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.site__footer--footer-payments-icons i:hover {
    transform: scale(1.1);
    opacity: 1;
}


.site__footer--secondary {
    display: flex;
    justify-content:space-evenly;
    padding: var(--padding-header-footer);
    font-size:small;
}

.hero__banner {
    position: relative;
    width: 100%;
    height: 400px; /* adjust if you want a taller hero */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero__banner--overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35); /* subtle dark overlay */
}

.hero__banner--content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--global-color-0);
    max-width: 700px;
    padding: 20px;
}

.hero__banner--content h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.hero__banner--content p {
    font-size: 1.25rem;
}

@media only screen and (max-width: 600px) {
    .site__header--container, .site__footer--main, .site__footer--secondary {
        flex-direction: column;

    }

    .site__header--button, .site__header--branding {
        margin-top:5%;
    }
    
}