/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

   font-family: "PT Sans", sans-serif;
   font-weight: 400;
   font-style: normal;
   font-size: 1em;
}

body {
   color: #333;
   background-color: #f0f0f0;
}

a {
   font-family: "PT Sans", sans-serif;
   font-weight: 400;
   font-style: normal;
   font-size: 1em;
   color: #333;
   text-decoration: none;
}

a:hover {
   font-weight: 800;
    text-decoration: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    line-height: 1.2;
}

h1 { font-size: 1.8rem; }
h2 { font-size: 1.6em; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.35rem; }
h5 { font-size: 1.2rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
}

ul {
  list-style-type: disc; /* or circle, square, etc. */
  list-style-position: inside; /* default, but explicit for clarity */
  padding-left: 1em; /* Remove default padding */
  padding-bottom: 1em;
  margin-left: 1em;  /* Remove default margin */
}

li {
  text-indent: -1em; /* Pull bullet outside */
  padding-left: 0em; /* Push text back to align with parent */
}

.slogan {
   font-size: 2.5em;
}

.frontpage {
   font-size: 1.25em;
}

.pacifico-regular {
  font-family: "Pacifico", cursive;
  font-weight: 400;
  font-style: normal;
}

.shadows-into-light-two-regular {
  font-family: "Shadows Into Light Two", cursive;
  font-weight: 400;
  font-style: normal;
}

.sedgwick-ave-regular {
  font-family: "Sedgwick Ave", cursive;
  font-weight: 400;
  font-style: normal;
}

.paprika-regular {
  font-family: "Paprika", system-ui;
  font-weight: 400;
  font-style: normal;
}

.satisfy-regular {
  font-family: "Satisfy", cursive;
  font-weight: 400;
  font-style: normal;
}

.lobster-two-regular {
  font-family: "Lobster Two", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.lobster-two-bold {
  font-family: "Lobster Two", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.lobster-two-regular-italic {
  font-family: "Lobster Two", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.lobster-two-bold-italic {
  font-family: "Lobster Two", sans-serif;
  font-weight: 700;
  font-style: italic;
}

.nerko-one-regular {
  font-family: "Nerko One", cursive;
  font-weight: 400;
  font-style: normal;
}

.oregano-regular {
  font-family: "Oregano", cursive;
  font-weight: 400;
  font-style: normal;
}

.oregano-regular-italic {
  font-family: "Oregano", cursive;
  font-weight: 400;
  font-style: italic;
}

/* Layout */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header */
header {
    background-color: #fff;
    color: #333;
    padding: 1rem 0;
}

header h1 {
    font-size: 2rem;
}

/* Navigation */
nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-right: 1rem;
}

nav ul li a {
    color: #fff;
}

/* Main Content */
main {
    padding: 2rem 0;
}

/* Footer */
footer {
    background-color: #fff;
    color: #333;
    text-align: center;
    padding: 1rem 0;
    margin-top: 2rem;
}

/* Utilities */
.text-center {
    text-align: center;
}

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 0.5rem;
    }

    nav ul {
        flex-direction: column;
    }

    nav ul li {
        margin-bottom: 0.5rem;
    }
}

        /* Custom aspect ratio: apply styles when the aspect ratio is wider than 16/9 */
        @media (min-aspect-ratio: 16/9) {
            .content {
                flex-direction: row;
            }

            .sidebar {
                width: 200px;
                order: 0;
            }

            .main {
                order: 1;
            }
        }

        /* Custom aspect ratio: apply styles when the aspect ratio is narrower than 16/9 */
        @media (max-aspect-ratio: 16/9) {
            .content {
                flex-direction: column;
            }

            .sidebar {
                width: 100%;
                order: 1;
            }

            .main {
                order: 2;
            }
        }
/* frontpage layout */
.cover-container {
   display: flex;
   flex-wrap: wrap;
   justify-content: center;
   gap: 50px; /* Optional: space between items */
   position: relative; /* Ensure the container does not interfere with stacking */
   /*background: #FFFFFF;*/
   /*align-items: stretch;*/
   /*align-items: center;*/
   width: 100%;
   height: 100%;
   align-items: center;
   align-content: flex-start;          
}

.cover-item {
   background: #345678;
   border: 1px solid blue;
   padding: 100px;
   text-align: center;
/* flex: 1 1 calc(33.333% - 20px); */
/*            width: 300px;*/
/*            height: 200px;*/
/*            box-sizing: border-box;*/
   position: relative; /* Establish a new stacking context */
   z-index: 1;
}

.cover-background {
      background-image: url('{{ theme_url }}/images/room new centered 2.svg');
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      width: 100%;
      height: 100%;
      opacity: 0.8;
   }

.cover-image {
   width: 100%;
   aspect-ratio: 16 / 9; /* 16:9 Aspect Ratio */
   border: 1px solid red;
   background-image: url('{{ theme_url }}/images/room new centered 2.svg');
   background-size: cover;
   background-position: center;
   background-repeat: no-repeat;
} 

.title {
/*
  font-family: "Special Gothic Expanded One", sans-serif;
  font-weight: 400;
  font-style: normal;
*/
/*
   font-family: "Raleway", sans-serif;
   font-optical-sizing: auto;
   font-weight: 800;
   font-style: normal;
*/
   font-size: 66px;
   color: #fff;
/*
   text-shadow:
         -2px -2px 2px #000,
         2px -2px 2px #000,
         -2px 2px 2px #000,
         2px 2px 2px #000;
*/
   display: inline-block;
   transform: translateY(-20px);
}

.layout-container {
   width: 100%;
   height: 100%;
   margin: auto;
   padding-top: 10px;
   padding-bottom: 10px;
}
.layout-columns {
   overflow-y: auto;
}
.layout-footer {
   border: 1px solid red;
}

.layout-page {
   max-width: 800px;
   text-align: left;
   padding: 30px;
   margin: auto;
}
/* layout topbar ------------------------------------ */
.layout-topbar-container {
   height: 35px;
   display: grid;
   grid-template-columns: auto 1fr auto;
   grid-template-rows: 100%;
   background: #fff;
}
.layout-topbar-logo {
   padding: 6px;
}
.layout-topbar-controls {
   float: right;
   padding: 6px;
}


/* dropdown menu ------------------------------------- */
/* Menu Icon */
.menu-icon {
    /* position: fixed; 
    top: 10px;
    right: 10px;*/
    font-size: 20px;
    cursor: pointer;
    padding: 0px 10px;
    z-index: 2000;
}

/* Dropdown Menu */
.dropdown-menu {
    position: fixed;
    top: 50px;
    right: 20px;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    width: 200px;
    z-index: 1000;
    display: none;
    text-align: center;
    border-radius: 4px;
}

.dropdown-menu a {
    display: block;
    padding: 5px 0px;
    color: #333;
    text-decoration: none;
}

.dropdown-menu a:hover {
    background-color: #f4f4f4;
}

div.frontpage_columns_container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 0px;
            position: relative;
            /*background: #FFFFFF;*/
            align-items: stretch;
            /*align-items: center;*/
            /*height: 100%;*/
            justify-content: center;
            /*align-items: center;*/
            align-content: flex-start;
            padding: 10px 0px;
}

div.frontpage_columns_item {
            padding: 20px;
            min-width: min-content;
            /*min-width: 180px;*/
            text-align: left;
            /*border: 1px solid red;*/
            /* flex: 1 1 calc(33.333% - 20px); */
/*            width: 300px;*/

/*            height: 200px;*/
/*            box-sizing: border-box;*/
            position: relative; /* Establish a new stacking context */
            z-index: 1;
}

div.page_frame {
    width: 90%;
    max-width: 1500px;
    min-height: 300px;
    background: #fff;
    border: 0px solid #ccc;
    border-radius: 10px;
    /*transform: translateY(-450px);*/
    padding: 5%;
    /*box-shadow: 0px 0px 5px 5px #f2eeeb;*/
    text-align: left;
}

/* no-spacing table -----------------------------------------*/

.no-spacing-table {
  border-collapse: collapse; /* Removes spacing between table cells */
  border-spacing: 0;        /* Removes extra spacing (for some browsers) */
  padding: 0;               /* Removes padding around the table */
  margin: 0;                /* Removes margin around the table */
}

.no-spacing-table td {
  padding: 0;               /* Removes padding inside table cells */
  margin: 0;                /* Removes margin inside table cells */
  line-height: 0;           /* Prevents extra space below images due to text line height */
}

.no-spacing-table img {
  display: block;           /* Removes extra space below images (inline elements) */
  margin: 0;                /* Removes margin around images */
  padding: 0;               /* Removes padding around images */
}


/* action button -----------------------------------------*/

div.action-button {
    width: min-content;
    color: #000;
    background: #fff;
    border: 2px solid #0000;
    border-radius: 10px;
    /*transform: translateY(-430px); */
    padding: 10px 30px 10px 30px;
    /*box-shadow: 0px 0px 16px 16px #fff; */
    font-size: 1.3rem; 
    font-weight: bold;
}

div.action-button:hover {
    color: #000;
    background: #fff;
    border: 2px solid #000f;
}


/* contact form ----------------------------------------- */
div.recaptcha-contact {}
.container {}

div.row {}

div.recaptcha-form-container {}
form.recaptcha

legend.legend {
   display: none;
}

/*
   <div><div id="contact" class="recaptcha-contact container">
    <div class="row">

<div class="recaptcha-form-container" id="contact-form">         <form action="contact" method="post" id="recaptchacontact" class="recaptcha-form">
        <fieldset>
            <h3>
                <legend class="legend">Contact me</legend>
            </h3>

                        <div id="recaptchacontact-messages"></div>

            <div class="recaptcha-form-group form-group">
                <label class="control-label" for="name" class="recaptcha-label">Name</label>
                <input id="name" name="name" type="text" placeholder="Add your name" class="recaptcha-field form-control" value=""/>
            </div>

            <div class="recaptcha-form-group form-group">
                <label class="recaptcha-label control-label" for="email">Email</label>
                <input id="email" name="email" type="text" placeholder="Add your email" class="recaptcha-field form-control" value=""/>
            </div>

            <div class="recaptcha-form-group form-group">
                <label class="recaptcha-label control-label" for="message">Message</label>
                <textarea class="recaptcha-textarea form-control" id="message" name="message" placeholder="Add your message" rows="5"></textarea>
            </div>

            <div class="g-recaptcha" data-sitekey=your reCAPTCHA site key></div>

            <div class="recaptcha-hidden form-group antispam-div">
                <label class="control-label" for="antispam">Antispam</label>
                <input id="antispam" name="antispam" type="text" placeholder="Please leave this field empty for Antispam" class="form-control" />
            </div>

            <div class="recaptcha-submit form-group">
                <div class="text-right">
                    <button type="submit" class="recaptcha-submit-button button">Submit</button>
                </div>
            </div>
        </fieldset>
    </form>
*/

.error {
   font-style: bold;
   color: #f33;
}

.form-field   {
   width: 100%;
   /*border: 2px solid green;*/
   display: flex;
   /*flex-wrap: nowrap;*/
}

.form-label   {
   width: 120px;
   min-width: 120px;
   padding: 4px;
}

.form-input-wrapper   {
   flex-grow: 1;
   display: flex;
   gap: 4px;
   width: 600px;
   /*border: 2px solid blue;*/
   padding: 4px;
}
.form-textarea-wrapper   {
   flex-grow: 1;
   width: 600px;
   /*border: 2px solid red;*/
   padding: 4px;
}

input {
   width: 100%;
}

textarea {
   width: 100%;
   height: 200px;
   max-width: 100%;
}

button {
   background: #ddd;
   border: none;
   border-radius: 4px;
   padding: 6px 10px;
   cursor: pointer;
}

.form-input-addon > button {
   display: none;
}







.form-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-input, .form-textarea, .form-select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.form-textarea {
    height: 150px;
}

.form-checkbox, .form-radio {
    margin-right: 10px;
}

.form-button {
    background-color: #007BFF;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.form-button:hover {
    background-color: #0056b3;
}



.image-full-width {
   width: 100%;
}

.image-half-width {
   width: 50%;
}

.image-third-width {
   width: 33.3%;
}
