:root {
  --color-primary: #8a2be2; /* BlueViolet - Mystery & Gourmet */
  --color-secondary: #ffc107; /* Amber - Culinary highlight */
  --color-dark: #1a1a2e; /* Dark Blue - Deep mystery background */
  --color-light: #f4f4f9; /* Light Gray - Clean text background */
  --color-text-light: #f4f4f9;
  --color-text-dark: #1a1a2e;
  --font-heading: "Georgia", serif; /* Classic, elegant look */
  --font-body: "Helvetica Neue", sans-serif; /* Clean, modern body */
  --padding-section: 120px 0;
  --gap-elements: 40px;
}

/* Global Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  color: var(--color-text-dark);
  line-height: 1.6;
  background-color: var(--color-light);
  overflow-x: hidden;
}

h1,
h2,
h3 {
  font-family: var(--font-heading);
  color: var(--color-dark);
  margin-bottom: 20px;
  line-height: 1.2;
}

h1 {
  font-size: 3.5rem;
}
h2 {
  font-size: 2.5rem;
  color: var(--color-primary);
}
h3 {
  font-size: 1.75rem;
  color: var(--color-dark);
}

a {
  text-decoration: none;
  color: var(--color-primary);
  transition: color 0.3s ease, transform 0.2s ease;
}

a:hover {
  color: var(--color-secondary);
  transform: translateY(-2px);
}

.elementor-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.elementor-section {
  padding: var(--padding-section);
  width: 100%;
}

.elementor-widget-wrap {
  padding: 20px;
}

/* Header & Navigation */
.nominosot-header-section {
  background-color: var(--color-dark);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.nominosot-logo-link {
  display: flex;
  align-items: center;
  color: var(--color-text-light);
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: 1px;
}

.nominosot-logo {
  width: 40px;
  height: 40px;
  margin-right: 10px;
  border-radius: 50%;
  border: 2px solid var(--color-secondary);
}

.nominosot-main-menu ul {
  list-style: none;
  display: flex;
  justify-content: flex-end;
}

.nominosot-main-menu .elementor-item {
  color: var(--color-text-light);
  padding: 10px 15px;
  margin-left: 10px;
  font-weight: 500;
}

.nominosot-main-menu .elementor-item:hover {
  color: var(--color-secondary);
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 5px;
}

.menu-item-button .elementor-button {
  background-color: var(--color-secondary);
  color: var(--color-dark);
  padding: 8px 20px;
  border-radius: 25px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.menu-item-button .elementor-button:hover {
  background-color: #ffdb58; /* Lighter Amber */
  color: var(--color-dark);
  transform: none;
}

/* Hero Section */
.elementor-section-nominosot-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8)),
    url(/src/img/header_chef_detective.webp) no-repeat center center;
  background-size: cover;
  min-height: 80vh;
  display: flex;
  align-items: center;
  text-align: center;
  color: var(--color-text-light);
  padding: var(--padding-section);
}

.elementor-section-nominosot-hero h1 {
  color: var(--color-text-light);
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
  margin-bottom: 30px;
}

.elementor-section-nominosot-hero p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.elementor-section-nominosot-hero .elementor-image {
  display: none; /* Hide image in text for cleaner hero */
}

.elementor-button-primary {
  background-color: var(--color-secondary);
  color: var(--color-dark);
  padding: 15px 40px;
  font-size: 1.2rem;
  border-radius: 50px;
  font-weight: bold;
  letter-spacing: 1px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: none;
  display: inline-block;
}

.elementor-button-primary:hover {
  background-color: var(--color-primary);
  color: var(--color-text-light);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
  transform: translateY(-4px);
}

/* General Section Styling */
.nominosot-story-section,
.nominosot-detective-section,
.nominosot-renovation-levels-section {
  background-color: var(--color-light);
}

/* Alternating background for visual separation */
.nominosot-cooking-section,
.nominosot-testimonials-section {
  background-color: #e9e9f3;
}

/* Image + Text Columns */
.nominosot-story-section .elementor-container,
.nominosot-cooking-section .elementor-container,
.nominosot-detective-section .elementor-container {
  align-items: flex-start;
  padding: var(--gap-elements) 20px;
}

.elementor-col-50 {
  width: 50%;
  padding: 0 30px;
}

.elementor-col-33 {
  width: 33.33%;
  padding: 0 20px;
}

.elementor-image img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.5s ease;
}

.elementor-image img:hover {
  transform: scale(1.03);
}

.elementor-image-caption {
  text-align: center;
  font-style: italic;
  margin-top: 10px;
  color: #666;
}

/* Text alignment for alternating layout */
.nominosot-cooking-section .elementor-text-editor,
.nominosot-detective-section .elementor-text-editor {
  text-align: left;
}

/* Renovation Section */
.nominosot-renovation-levels-section h2 {
  min-height: 75px; /* Ensure similar heights for headings */
}

/* Testimonials */
.nominosot-testimonials-section {
  text-align: center;
  background-color: var(--color-primary);
  color: var(--color-text-light);
  padding: 80px 0;
}

.nominosot-testimonials-section h2 {
  color: var(--color-secondary);
  margin-bottom: 50px;
}

.elementor-testimonial-box {
  background-color: rgba(255, 255, 255, 0.1);
  border-left: 5px solid var(--color-secondary);
  padding: 30px;
  margin: 30px auto;
  max-width: 800px;
  border-radius: 10px;
  font-style: italic;
  font-size: 1.1rem;
}

.elementor-testimonial-quote {
  margin: 0;
}

/* FAQ Section */
.nominosot-faq-download-section {
  padding-bottom: 120px;
}

.elementor-accordion {
  border: 1px solid #ccc;
  border-radius: 8px;
  overflow: hidden;
}

.elementor-accordion-item {
  border-bottom: 1px solid #ddd;
}

.elementor-accordion-item:last-child {
  border-bottom: none;
}

.elementor-accordion-title {
  padding: 15px 20px;
  background-color: #fff;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: bold;
  color: var(--color-primary);
  margin: 0;
  transition: background-color 0.3s;
}

.elementor-accordion-title:hover {
  background-color: #f0f0f5;
}

.elementor-accordion-content {
  padding: 20px;
  background-color: #fff;
  border-top: 1px solid #eee;
}

/* Download Buttons */
.elementor-button-group {
  display: flex;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.elementor-button-appstore,
.elementor-button-googleplay {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 10px;
  font-weight: bold;
  font-size: 1.1rem;
  min-width: 200px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.elementor-button-appstore {
  background-color: var(--color-dark);
  color: var(--color-text-light);
}

.elementor-button-googleplay {
  background-color: #4285f4; /* Google Blue */
  color: var(--color-text-light);
}

.elementor-button-appstore:hover,
.elementor-button-googleplay:hover {
  transform: translateY(-3px);
  opacity: 0.9;
  color: var(--color-text-light);
}

/* Footer */
.nominosot-footer {
  background-color: var(--color-dark);
  color: var(--color-text-light);
  padding: 40px 0;
  text-align: center;
}

.nominosot-footer p {
  margin-bottom: 15px;
  font-size: 0.9rem;
}

.nominosot-footer-menu ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.nominosot-footer-menu a {
  color: var(--color-text-light);
  font-size: 0.9rem;
}

.nominosot-footer-menu a:hover {
  color: var(--color-secondary);
}

/* Responsiveness */
@media (max-width: 1024px) {
  h1 {
    font-size: 3rem;
  }
  h2 {
    font-size: 2rem;
  }
  h3 {
    font-size: 1.5rem;
  }

  .elementor-section {
    padding: 80px 0;
  }

  .elementor-col-50 {
    width: 100%;
    padding: 0 20px;
    margin-bottom: 40px;
  }

  .elementor-col-33 {
    width: 100%;
    padding: 0 20px;
    margin-bottom: 40px;
  }

  .nominosot-main-menu ul {
    justify-content: center;
    margin-top: 10px;
  }

  .elementor-section-nominosot-hero {
    min-height: 60vh;
  }

  .nominosot-story-section .elementor-container,
  .nominosot-cooking-section .elementor-container,
  .nominosot-detective-section .elementor-container {
    flex-direction: column;
  }

  .nominosot-cooking-section .elementor-container,
  .nominosot-detective-section .elementor-container {
    flex-direction: column-reverse; /* Flip content for alternating mobile view */
  }

  .elementor-button-group {
    justify-content: center;
  }

  .elementor-button-appstore,
  .elementor-button-googleplay {
    min-width: 160px;
    padding: 12px 20px;
  }

  .nominosot-header-section .elementor-container {
    flex-direction: column;
    text-align: center;
  }

  .elementor-column.elementor-col-75 {
    width: 100%;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.2rem;
  }
  h2 {
    font-size: 1.75rem;
  }

  .elementor-section {
    padding: 60px 0;
  }

  .nominosot-main-menu ul {
    flex-wrap: wrap;
    gap: 5px;
  }

  .elementor-button-primary {
    padding: 12px 30px;
    font-size: 1rem;
  }

  .elementor-col-50,
  .elementor-col-33 {
    padding: 0 10px;
  }
}
