/*

 * Theme Name: St Luke OPM
 * Author: Thea Perih
 * Version: 1.2
 * Description: A custom theme for slugsama made by me for me!
 * 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;
}

@font-face {
  font-family: 'Fascinate';
  src: url('./assets/fonts/Fascinate/Fascinate-Regular.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: #F8F4E3;
--global-color-1: #BE7C4D;
--global-color-2: #7B886B;
--global-color-3: #B92D6E;
--global-color-4: #3b3b3b;
--padding-header-footer: 20px;

--main-font: 'RobotoCondensed';
--title-font: 'Fascinate';
}

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

button {
    background-color: var(--global-color-3);
    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: var(--title-font);

}

p {
    color: var(--global-color-4);
    font-family: var(--main-font);
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 20px; /* Space after each paragraph */
    padding: 0 15px; /* Small padding on the sides */
    text-align: left;
}

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

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

a:hover {
    color: var(--global-color-3);
}

ol, ul {
    padding: 20px;
}

.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-0);
}

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

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

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

.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-3);
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.site__header--navigation a:hover, .site__footer--navigation a:hover {
    color: var(--global-color-4);
    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: 10px;
    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);
    color: var(--global-color-0);
}

.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-0);
    color: var(--global-color-3);
    padding: var(--padding-header-footer);
}

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

.site__footer-social-menu {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  padding: 1rem 0;
}

.site__footer-social-menu li {
  list-style: none;
}

.site__footer-social-menu a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1); /* tweak */
  display: flex;
  align-items: center;
  justify-content: center;
  color: inherit;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.site__footer-social-menu a:hover {
  background: rgba(255,255,255,0.25);
  transform: translateY(-2px);
}

/* Hide link text */
.site__footer-social-menu a span {
  display: none;
}

.site__footer-social-menu a::before {
  font-family: "Font Awesome Brands";
  font-weight: 400;
  font-size: 18px;
  content: "";
}

.site__footer-social-menu .menu-item-instagram a::before { content: "\f16d"; }
.site__footer-social-menu .menu-item-facebook a::before  { content: "\f09a"; }
.site__footer-social-menu .menu-item-twitter a::before   { content: "\f099"; }
.site__footer-social-menu .menu-item-x a::before         { content: "\f61b"; }
.site__footer-social-menu .menu-item-youtube a::before   { content: "\f167"; }
.site__footer-social-menu .menu-item-tiktok a::before    { content: "\f3c5"; }

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

.site-footer__copyright {
    color: var(--global-color-1);
    font-family: var(--title-font);
    font-size: x-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%;
    }
    
}