@charset "utf-8";
/* CSS Document */

:root
{
	/* Dark Theme */
	--text-color-dark: white;
	--menu-line-color-dark: white;
	--header-text-color-dark: white;
	--header-background-color-dark: black;
	--website-background-color-dark: black;
	--website-main-content-background-dark: linear-gradient(0deg, black, #282828);
	--content-outside-border-dark: red;
	/* Light Theme */
	--text-color-light: black;
	--menu-line-color-light: white;
	--header-text-color-light: white;
	--header-background-color-light: black;
	--website-background-color-light: white;
	--website-main-content-background-light: white; /*linear-gradient(0deg, #C5C5C5, #F9F9F9);*/
	--content-outside-border-light: red;
}


/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	display: block;
}

body {
	line-height: 2.85rem;
}

ol, ul {
	list-style: none;
  line-height: initial;
}

blockquote, q {
	quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
	content: '';
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}


/* General Styles */
html {
    width: 100%;
    overflow-x: hidden;
}
body {
  margin: 0px;
  font-family: Arial, sans-serif;
  color: var(--header-text-color-light);
  background-color: var(--website-background-color-light);
	width: 100%;
	text-rendering: optimizeLegibility;
    overflow-x: hidden; /* Prevents horizontal scrollbars */
}

header {
  display: flex;
  justify-content: space-evenly;
  background-color: var(--header-background-color-light);
  color: var(--header-text-color-light);
  padding: 20px;
  width: 100%;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
  height: auto;
  box-sizing: border-box; /* Ensures padding doesn't add to width */
}

#container{
	justify-content: space-evenly;
	width: 100%;
	height: auto;
	background-color: var(--header-background-color-light);
	padding-top: 20px;
}

/*.header-logo {
  max-width: 50%;
	min-width: 170px;
	height: auto;
	object-fit: contain;
	
}*/
.header-logo {
  width: clamp(100px, 30%, 650px);
	min-width: 100px;
	height: auto;
	/*padding: auto;
	margin: auto;*/
	align-self: center;
  object-fit: contain;
}

.header-title {
	width: auto;
	text-align: center;
	align-self: center;
	font-size: clamp(1.9rem, 5px + 4vw, 75px + 1vw);
	letter-spacing: 3px; /* 3px */
	line-height: normal;
  filter: drop-shadow(0px 0px 2px red);
}

#house-logo {
  width: 10%;
  height: 5%;
  margin-right: 20px;
  align-content: center;
  text-align: center;
  align-items: center;
}

/* Contact Now Section */
.contact-now {
  text-align: center;
  padding: 20px;
  margin-top: 20px;
  background: linear-gradient(0deg, red, lightcoral);
  border-radius: 0px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
  color: var(--text-color-dark);
}

.contact-now h2 {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
}

.contact-now h2 .header-icon {
  width: 32px;
  height: 32px;
  margin-right: 10px;
}

.contact-buttons {
  display: flex;
  flex-direction: column; /* Stack buttons vertically on mobile */
  justify-content: center;
  align-items: center; /* Center buttons horizontally */
  gap: 15px; /* Adjust gap for mobile */
  margin-top: 20px;
}

.contact-buttons button {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  font-size: 16px;
  border: 2px solid white;
  border-radius: 5px;
  background-color: darkred;
  color: var(--text-color-dark);
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  width: 80%; /* Make buttons take up more width on mobile */
  justify-content: center; /* Center text/icon inside button */
}

.contact-buttons button:hover {
  background-color: red;
  border-color: darkred;
}

.contact-buttons button:active {
  transform: scale(0.95);
}

.contact-buttons button .button-icon {
  width: 24px;
  height: 24px;
}

/* MENU STYLES */
.menu-button {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 1001;
    width: 40px;
    height: 30px;
    padding: 0px;
    border: none;
    background: transparent;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.menu-line {
    display: block;
    width: 100%;
    height: 4px; /* Made lines thicker for better visibility */
    background-color: white;
    border-radius: 4px;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
    transform-origin: center;
}

.tangerine-regular {
  font-family: "Tangerine", cursive;
  font-weight: 400;
  font-style: normal;
}

.tangerine-bold {
  font-family: "Tangerine", cursive;
  font-weight: 700;
  font-style: normal;
}
.birthstone-regular {
  font-family: "Birthstone", cursive;
  font-weight: 400;
  font-style: normal;
}

footer {
	position: relative;
	bottom: 0px;
	width: 100%;
}

#main-content {
	background: var(--website-main-content-background-light);
	width: 95%;
	height: 100%;
	margin: 25px auto;
	color: var(--text-color-light);
	text-align: center;
	font-size: 30px;
	border: #B90003 medium solid;
	border-radius: 10px;
	box-shadow: inset 0px 0px 4px 3px lightcoral;
    box-sizing: border-box; /* Include padding in width */
    padding: 20px;
}
#main-content > h1
{
	text-decoration: 2px underline;
	letter-spacing: 4px;
	margin: auto;
	font-size: 2em;
	text-decoration-thickness: 2px;
}

/* --- Mobile First Grid Container Styling --- */
.grid-container {
    display: grid;
    grid-template-columns: 1fr; /* Default to a single column for mobile */
    gap: 10px; /* Space between grid items */
    width: auto;
    box-sizing: border-box;
    padding: 1rem;
}

/* Grid Item Styling */
.grid-item {
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
    padding: 1rem;
    padding-bottom: 10px;
    line-height: 2.5rem;
	background: linear-gradient(0deg, #ebebeb 0%, #fbfbfb 100%);
}

.grid-container hr {
	width: 80%;
}

.grid-item h4 {
	font-size: 40px;
	margin-bottom: 0;
}
.grid-item h6 {
	font-size: 30px;
	margin-top: auto;
}

.satisfy-regular {
  font-family: "Satisfy", cursive;
  font-weight: 400;
  font-style: normal;
	font-size: 30px;
}


.circle-container {
  width: 200px;
  height: 200px;
  border-radius: 50%;
	overflow: hidden;
  border-color: white;
	border-width: 3px;
	border-style: solid;
	margin: 0 auto 20px auto; /* Centered the circle container */
}

.circle-container img {
  width: 100%;
  height: 100%;
	display: block;
	object-fit: cover; /* Changed to cover for better scaling */
}

#main-content h5
{
	font-size: 45px !important;
}


/* --- Media Queries for Responsive Design --- */

/* For Small Phones */
@media (max-width: 480px)
{
	/*.header-title
	{
		font-size: 1.8rem; /* Smaller font size for header */
        /*letter-spacing: 2px;
	}*/
	#main-content > h1
	{
		font-size: 40px;
	}
	#main-content h5
	{
		font-size: 28px !important;
        line-height: 1.5;
	}
    .grid-item h4
	{
		font-size: 28px;
		line-height: normal;
	}
	.grid-item h6
	{
		font-size: 20px;
		line-height: normal;
	}
    .item-4 h4 {
        font-size: 24px;
    }
    .item-4 h6 {
        font-size: 16px;
        line-height: 1.4;
    }
}

/* For Tablets and larger devices (768px and up) */
@media (min-width: 733px) {
    /* Restore horizontal buttons for contact section */
    .contact-buttons {
      flex-direction: row;
      gap: 20px;
    }

    .contact-buttons button {
        width: auto; /* Revert button width */
    }

    /* --- Activate 3-column grid layout --- */
    .grid-container {
        grid-template-columns: repeat(auto-fit, minmax(50%, 50%));
    }

    /* --- Restore specific item placements for the 3-column layout --- */
    .item-1 {
        grid-column: 1 / 1;
        grid-row: 1;
    }

    .item-2 {
        grid-column: 2 / 3;
        grid-row: 1;
    }

    .item-3 {
        grid-column: 3 / 4;
        grid-row: 1;
    }
    
    .item-4 {
        grid-column: 1 / 4; /* Span all 3 columns */
        grid-row: 2;
    }
	
	/*#upper-header {
		margin-top: 10px;
	}*/
}
@media (max-width: 412px), (max-width: 425px), (max-width: 426px)
{
	#upper-header {
		margin-top: 10px;
	}
}

@media print
{
	/* Edit Styles to Adjust Entire Page for Printers */
	h1 {
		font-size: 10px !important;
	}
    body {
        background-color: white;
        color: black;
    }
    #main-content {
        border: 1px solid black;
        box-shadow: none;
    }
}

.grid-container
{
	justify-content: center;
	/*margin-top: 16px;*/
	object-fit: contain;
}

* {
    -webkit-tap-highlight-color: transparent;
    -moz-highlight: none;
}

.copyright-notice p {
	text-align: center;
	font-size: 0.7rem;
	color: rgba(255, 255, 255, 0.85);
	margin-top: 20px;
	margin-bottom: 0px;
}

.created-by-notice {
	display: none;
	text-align: center;
	font-size: 12px;
	color: rgba(255, 255, 255, 0.6);
	margin-top: 5px;
	margin-bottom: 20px;
}
.created-by-notice a {
	color: rgba(255, 255, 255, 0.75);
	text-decoration: wavy underline;
	transition: all 0.3s ease-in-out;
}
.created-by-notice a:hover {
	color: rgba(255, 255, 255, 0.85);
	text-decoration: wavy underline;
}

#main-content
{
    word-break: auto-phrase;
}