/***********************************************************
 * Color Variables
 ***********************************************************/
:root {
  /* Base backgrounds */
  --color-bg-main: #ffffff;
  --color-bg-secondary: #333;
  --color-bg-accent: #141554;
  --color-bg-overlay: rgba(0, 0, 0, 0.8);

  /* Text */
  --color-text-primary: #2598d5;
  --color-text-secondary: #fff;
  --color-text-muted: #888;

  /* Accent / brand */
  --color-accent-primary: #4b0082;
  --color-accent-secondary: #340058;
  --color-accent-highlight: #0077cc;

  /* UI */
  --color-border-default: #2598d5;
  --color-border-light: #888;
  --color-thumb-active: #333;

  /* Buttons */
  --color-button-bg: #ddd;
  --color-button-text: #340058;

  /* Effects */
  --shadow-dark: rgba(0, 0, 0, 0.1);
  --shadow-light: rgba(255, 255, 255, 0.498);
}

/***********************************************************
 * Base Page Styling
 ***********************************************************/
body {
  margin: 0 auto;
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  background-color: var(--color-bg-main);
  color: var(--color-text-primary);
  width: 90%;
  min-width: 320px;
  max-width: 1100px;
}

img,
video {
  max-width: 100%;
  height: auto;
  display: block;
}

main {
  padding: 0px 20px;
  background-color: var(--color-bg-main);
}

hr {
  border-color: var(--color-border-default);
  width: 100%;
  margin-bottom: 10px;
}

/***********************************************************
 * Header Styles
 ***********************************************************/
header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 20px 20px 0;
  background-color: var(--color-bg-main);
}

header h1 {
  font-size: 38px;
  font-weight: bold;
  color: var(--color-text-primary);
  margin-right: 20px;
}

header img {
  width: 75px;
  margin: 15px;
}

/***********************************************************
 * Footer Styles
 ***********************************************************/
footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background-color: var(--color-bg-main);
  color: var(--color-text-primary);
}

footer img {
  width: 45px;
  margin: 15px;
}

footer .links {
  font-size: small;
  display: flex;
  gap: 10px;
  justify-content: center;
  color: var(--color-text-primary);
}

footer .links a {
  color: var(--color-text-primary);
  text-decoration: none;
}

footer .links a:hover {
  color: var(--color-text-secondary);
}

footer .signature {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: flex-start;
}

/* Utility no-style links */
.no-style,
.no-style:hover {
  text-decoration: none;
  color: inherit;
}

/***********************************************************
 * Heading & Section Headings
 ***********************************************************/
h2 {
  font-size: 30px;
  color: var(--color-text-primary);
  font-weight: lighter;
  margin-bottom: 10px;
}

h3 {
  font-size: 28px;
  color: var(--color-text-primary);
  font-weight: normal;
  margin-bottom: 5px;
}

/***********************************************************
 * Navigation / Dropdown
 ***********************************************************/
nav {
  position: relative;
  margin-left: 35px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

nav ul li {
  position: relative;
}

nav ul li a {
  text-decoration: none;
  color: var(--color-text-primary);
}

nav ul li a:hover {
  color: var(--color-text-secondary);
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: var(--color-bg-main);
  right: 0;
  min-width: 150px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.dropdown-content a {
  color: var(--color-text-primary);
  padding: 10px;
  text-decoration: none;
  display: block;
  transition: background 0.3s ease;
}

.dropdown-content a:hover {
  background-color: rgba(255, 255, 255, 0.02);
}

.dropdown:hover .dropdown-content {
  display: block;
}

/***********************************************************
 * Hamburger Menu
 ***********************************************************/
.hamburger {
  display: none;
  font-size: 30px;
  cursor: pointer;
  color: var(--color-text-primary);
  margin-left: 0;
}

.hamburger:hover,
.hamburger:focus {
  color: var(--color-text-primary);
  background: none;
}

#menu-toggle {
  display: none;
}

/***********************************************************
 * Product Section
 ***********************************************************/
.product-section {
  background-color: var(--color-bg-accent);
  padding: 3% 5%;
  border-radius: 0px;
  color: var(--color-text-primary);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

.product-section img {
  max-width: 300px;
  border-radius: 7px;
  box-shadow: 0 0 4px var(--shadow-dark);
}

.product-section img:hover {
  box-shadow: 0 0 4px var(--shadow-light);
}

button {
  background-color: var(--color-button-bg);
  color: var(--color-button-text);
  padding: 10px 20px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  box-shadow: 0 0 4px var(--shadow-dark);
  transition: all 0.3s ease;
  font-weight: bold;
  margin: 20px 0 15px;
}

button:hover {
  box-shadow: 0 0 4px var(--shadow-light);
}

/***********************************************************
 * Headings & Layout
 ***********************************************************/
.product-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 150px;
}

.heading-content {
  display: flex;
  align-items: center;
  gap: 20px;
}

.heading-logo {
  width: 40px;
  height: 40px;
  margin-left: 15px;
}

.heading-text h2,
.heading-text p,
.vertical-text p {
  color: var(--color-text-primary);
}

.heading-text h2 {
  font-size: 38px;
}

.heading-text p {
  font-size: 20px;
}

.vertical-text {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.vertical-text p {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 12px;
}

.wp-block-video video {
  min-width: 200px;
  max-width: 300px;
  border-radius: 5px;
}

.video-link {
  text-decoration: none;
  color: inherit;
}

.video-link:hover {
  color: var(--color-text-secondary);
}

/***********************************************************
 * Language Switch
 ***********************************************************/
.lang-switch a {
  text-decoration: none;
  color: var(--color-text-primary);
}

.lang-switch a.active {
  background-color: var(--color-accent-primary);
  color: var(--color-text-secondary);
}

/***********************************************************
 * Checkbox
 ***********************************************************/
input[type="checkbox"] {
  appearance: none;
  background-color: var(--color-text-secondary);
  border: 1.5px solid var(--color-border-light);
}

input[type="checkbox"]:checked {
  background-color: var(--color-accent-highlight);
  border-color: var(--color-accent-highlight);
}

/***********************************************************
 * Gallery
 ***********************************************************/
.thumb.active {
  border-color: var(--color-thumb-active);
}

#lightbox {
  background: var(--color-bg-overlay);
}

#close-lightbox {
  color: var(--color-text-secondary);
}

/***********************************************************
 * Responsive
 ***********************************************************/
@media (max-width: 950px) {
  nav ul {
    background-color: var(--color-bg-main);
  }
}
