/*
Theme Name: Luma Retail
Theme URI: https://luma-retail.com/
Author: Luma Retail Solutions
Author URI: https://luma-retail.com/
Description: Lean classic WordPress theme for Luma Retail with WooCommerce-ready defaults and block editor support.
Version: 1.0.0
Requires at least: 6.5
Tested up to: 6.7
Requires PHP: 8.0
Text Domain: luma-retail
Tags: custom-logo, custom-menu, featured-images, block-styles, wide-blocks, ecommerce
*/

:root {
  --luma-teal-900: #0B2F30;
  --luma-teal-800: #0F3D3E;
  --luma-teal-700: #145151;
  --luma-teal-600: #1E6262;
  --luma-teal-500: #2C7A7A;
  --luma-teal-200: #BFE4E1;
  --luma-teal-100: #DFF2F0;

  --luma-amber-700: #B36B12;
  --luma-amber-600: #E89C2C;
  --luma-amber-500: #F0A83A;
  --luma-amber-200: #F8E0B4;
  --luma-amber-100: #FDF1DA;

  --luma-bg: #F3F7F6;
  --luma-surface: #FFFFFF;
  --luma-border: #D6E5E3;

  --luma-info-600: #256B6A;
  --luma-info-100: #DDF2F0;
  --luma-success-600: #177A5A;
  --luma-success-100: #DDF3EA;
  --luma-error-600: #B23A2F;
  --luma-error-100: #F7D9D6;

  --luma-text: #102A2A;
  --luma-muted: #4E6A68;
}

html {
  box-sizing: border-box;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

body {
  margin: 0;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--luma-text);
  background: var(--luma-surface);
}

a {
  color: var(--luma-teal-600);
  text-decoration: none;
}

a:hover,
a:focus {
  color: var(--luma-teal-800);
}

img {
  max-width: 100%;
  height: auto;
}

.site-wrap {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-main {
  flex: 1;
}

.luma-container {
  width: min(1100px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.site-header {
  border-bottom: 1px solid var(--luma-border);
  background: var(--luma-surface);
  position: sticky;
  top: 0;
  z-index: 20;
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.branding {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.custom-logo-link img {
  width: 288px;
  height: 79px;
  max-width: 100%;
}

.main-navigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.main-navigation a {
  display: inline-flex;
  align-items: center;
  min-height: 2.5rem;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  color: var(--luma-muted);
  font-weight: 550;
  font-size: 0.95rem;
}

.main-navigation .current-menu-item > a,
.main-navigation a:hover,
.main-navigation a:focus {
  color: var(--luma-teal-800);
  background: var(--luma-teal-100);
}

.section {
  padding: 3.5rem 0;
}

.section + .section {
  border-top: 1px solid var(--luma-border);
}

.hero {
  background: linear-gradient(0deg, var(--luma-bg), var(--luma-surface));
  position: relative;
  overflow: hidden;
  min-height: 290px;
  display: flex;
  align-items: center;
}

.hero .hero-media {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  filter: brightness(0.68) saturate(0.9);
}

.hero.has-hero-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11, 47, 48, 0.84) 0%, rgba(11, 47, 48, 0.66) 45%, rgba(11, 47, 48, 0.38) 100%);
}

.hero .hero-inner {
  position: relative;
  z-index: 1;
  padding: 2.2rem 0;
}

.hero.has-hero-image h1,
.hero.has-hero-image p {
  color: var(--luma-amber-100);
}

.hero.has-hero-image h1 {
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.28);
}

.hero.has-hero-image p {
  color: var(--luma-amber-200);
  max-width: 62ch;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.hero p {
  margin-top: 1rem;
  max-width: 70ch;
  color: var(--luma-muted);
}

.grid-two {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

@media (max-width: 860px) {
  .grid-two {
    grid-template-columns: 1fr;
  }

  .site-header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    min-height: 250px;
  }
}

.card,
.wp-block-group.is-style-luma-card,
.luma-card {
  border: 1px solid var(--luma-border);
  border-radius: 16px;
  background: var(--luma-surface);
  padding: 1.25rem;
}

.section h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.25rem, 2.2vw, 1.75rem);
  letter-spacing: -0.02em;
}

.section h3 {
  margin: 0 0 0.8rem;
  font-size: 1.1rem;
  font-weight: 650;
}

.section p {
  margin: 0.8rem 0 0;
  color: var(--luma-text);
}

.section ul {
  margin: 0.6rem 0 0;
  padding-left: 1.2rem;
}

.section li {
  margin-bottom: 0.35rem;
}

.button,
.wp-block-button__link,
button,
input[type="submit"],
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  border: 1px solid var(--luma-teal-800);
  border-radius: 999px;
  background: var(--luma-teal-800);
  color: #fff;
  padding: 0.68rem 1.05rem;
  font-weight: 600;
  line-height: 1;
}

.button:hover,
.wp-block-button__link:hover,
button:hover,
input[type="submit"]:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
  background: var(--luma-teal-700);
  border-color: var(--luma-teal-700);
  color: #fff;
}

.wp-block-button.is-style-luma-outline .wp-block-button__link,
.button-outline {
  background: transparent;
  color: var(--luma-teal-800);
}

.wp-block-button.is-style-luma-outline .wp-block-button__link:hover,
.button-outline:hover {
  background: var(--luma-teal-100);
  color: var(--luma-teal-800);
}

.contact-list {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.4rem;
}

.contact-list span {
  color: var(--luma-muted);
  min-width: 4.8rem;
  display: inline-block;
}

.site-footer {
  border-top: 1px solid var(--luma-border);
  background: var(--luma-bg);
  margin-top: 2rem;
}

.site-footer-inner {
  padding: 1rem 0;
  font-size: 0.9rem;
  color: var(--luma-muted);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.site-footer a {
  color: inherit;
}

.editor-styles-wrapper .is-style-luma-card {
  border: 1px solid var(--luma-border);
  border-radius: 16px;
  padding: 1.25rem;
  background: var(--luma-surface);
}

.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal;
}

.alignwide {
  margin-left: auto;
  margin-right: auto;
  max-width: 1200px;
}

.alignfull {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  max-width: 100vw;
  width: 100vw;
}
