/*
 Theme Name: Cafes De PR
 Theme URI:  https://cafesdepr.com/
 Author:      Cafes De PR
 Author URI:  https://cafesdepr.com/
 Description: Custom bilingual WooCommerce theme for Cafes De PR (Ponce, Puerto Rico).
 Version:     1.0
 Text Domain: cafesdepr
*/

:root {
  --color-primary: #D70000; /* Red */
  --color-secondary: #000000; /* Black */
  --color-accent: #FFD700; /* Yellow */
  --color-background: #FFFFFF; /* White */
  --color-text: #000000; /* Black */
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  background-color: var(--color-background);
  color: var(--color-text);
}

/* Basic container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Menu style (simple example) */
.nav {
  list-style: none;
  padding: 0;
  display: flex;
  /* Allow items to wrap to a new line if needed */
  flex-wrap: wrap;
  /* Gap between items to avoid collision */
  gap: 1rem;
}

.nav li {
  display: inline-block;
  /* Keep menu text on one line, preventing words from breaking */
  white-space: nowrap;
}

.nav a {
  color: var(--color-background);
  text-decoration: none;
  padding: 0.5rem 1rem;
  background-color: var(--color-primary);
}

.nav a:hover {
  background-color: var(--color-accent);
  color: var(--color-secondary);
}

/* Responsive example: stack items vertically on smaller screens */
@media (max-width: 768px) {
  .nav {
    flex-direction: column;
  }
}
