/*
Theme Name: Izabella Theme 2026
Author: Cristine Eross
Author URI: https://cristine-eross.com/
Version: 2.0
Tested up to: 6.8
Requires at least: 4.4
Requires PHP: 5.2.4
*/

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: sans-serif;
}

:root {
  --color-green: #6ba573;
  --color-cream: #f2cdac;
  --color-grey: #9d9d9d;
  --color-red: #b56b6b;

  /* Optional supporting shades */
  --color-green-dark: #4f7d56;
  --color-green-light: #8fbe96;

  --color-cream-dark: #e2b892;

  --color-grey-dark: #6f6f6f;
  --color-grey-light: #c4c4c4;

  --color-red-dark: #944f4f;
  --color-red-light: #cf8b8b;

  /* Useful neutrals */
  --color-background: #faf7f2;
  --color-text: #3d3d3d;
}

html {
	overflow-x: clip;
	scroll-behavior: smooth;
}

svg.icon {
	width: 1.2rem;
	height: auto;
}

a {
	color: inherit;
	text-decoration: none;
}

.wrap {
	width: 90%;
  max-width: 1400px;
  margin: 0 auto;
}

.accent-btn {
	background-color: var(--color-green);
	color: var(--color-background);
	padding: 0.5rem 2rem;
	border-radius: 2px;
	transition: background-color 0.2s ease;
}

.accent-btn:hover {
	background-color: var(--color-cream);
}

@media (max-width: 1400px) {
	.wrap {
		max-width: 100%;
		padding-inline: 2rem;
	}
}

/* Header css */

.menu-toggle {
  width: 48px;
  height: 48px;
  border: none;
  background: transparent;
  cursor: pointer;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  display: none;
}

.menu-toggle span {
  width: 26px;
  height: 2px;
  background: var(--color-text);
  border-radius: 999px;
  transition: 0.3s ease;
}

/* Active state -> X icon */
.menu-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.header-top {
	background-color: var(--color-green);
}

.contact-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	color: var(--color-background);
	padding-block: 0.5rem;
	font-size: 1rem;
}

.contact-header-text {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 0.5rem;
}

.header-search {
	display: flex;
	align-items: center;
	flex-wrap: nowrap;
	background-color: var(--color-background);
	padding: 0.25rem;
}

.header-search input {
	height: 1.2rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	background-color: transparent;
	outline: none;
	border: none;
	color: var(--color-grey-dark);
}

.header-search button {
	height: 1.2rem;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: transparent;
	outline: none;
	border: none;
	cursor: pointer;
}

.search-icon {
	color: var(--color-green);
	transition: transform 0.2s ease;
}

.header-search button:hover .search-icon {
	transform: scale(1.1);
}

.menu-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-block: 0.5rem;
}

.site-branding img {
	width: 70px;
	height: 70px;
	object-fit: cover;
}

.site-header-menu {
	text-transform: uppercase;
	color: var(--color-green);
	font-size: 0.9rem;
}

.site-header-menu ul {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 1rem;
	list-style: none;
}

.site-header-menu .sub-menu {
	display: none;
}

/* Page Inners */

.site-content {
	background-color: var(--color-grey);
	min-height: 500px;
}