/* Importing fonts from Google Fonts or a similar service if available.
   NOTE: If these fonts are not available on Google Fonts or you have them as files,
   you will need to use @font-face and link to the font files themselves.
   I will assume for this example they are not easily available and use a similar alternative
   or a more generic font to prevent errors. You can update this later. */
/* For now, let's use some similar-looking Google Fonts as a placeholder */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Roboto:wght@400;700&display=swap');

/* --- Root Variables for Brand Colors --- */
:root {
    --primary-color: #c42c17;
    --secondary-color: #262417;
    --accent-color: #e4c703;
    --text-color-light: #f4f4f4;
    --text-color-dark: #222;
}

/* --- General Body and Typography --- */
body {
    font-family: 'Roboto', sans-serif; /* Placeholder for 'Inlander Rough' */
    margin: 0;
    padding: 0;
    background-color: var(--text-color-light);
    color: var(--text-color-dark);
}

h1, h2, h3 {
    font-family: 'Bebas Neue', cursive; /* Placeholder for 'Sunborn' */
    color: var(--primary-color);
}

/* --- Layout and Structure --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background-color: var(--secondary-color);
    padding: 1rem 0;
    color: var(--text-color-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 60px; /* Adjust as needed */
    vertical-align: middle;
}

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

nav ul li a {
    color: var(--text-color-light);
    text-decoration: none;
    padding: 0.5rem 1rem;
    text-transform: uppercase;
    font-weight: bold;
}

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

/* --- Buttons --- */
.button {
    display: inline-block;
    padding: 12px 24px;
    background-color: var(--primary-color);
    color: var(--text-color-light);
    text-decoration: none;
    text-transform: uppercase;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.button:hover {
    background-color: #e33b2a; /* A slightly lighter primary color */
}

.button.primary {
    background-color: var(--accent-color);
    color: var(--secondary-color);
}

.button.primary:hover {
    background-color: #f0d53c; /* A slightly lighter accent color */
}

/* --- Hero Section --- */
.hero {
    background-image: url('path/to/hero-background.jpg'); /* Placeholder for a hero background image */
    background-size: cover;
    background-position: center;
    color: var(--text-color-light);
    text-align: center;
    padding: 100px 20px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    color: var(--text-color-light); /* Override heading color for better contrast */
}

.hero-content {
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay for readability */
    display: inline-block;
    padding: 2rem;
    border-radius: 10px;
}

/* --- Product Grid --- */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 4rem 20px;
}

.product-card {
    text-align: center;
    background-color: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.product-card img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    margin-bottom: 1rem;
}

/* --- Footer --- */
footer {
    text-align: center;
    padding: 1rem 0;
    background-color: var(--secondary-color);
    color: var(--text-color-light);
}
/* --- About Page Specific Styles --- */
.about-hero {
    background-color: var(--secondary-color);
    color: var(--text-color-light);
    text-align: center;
    padding: 80px 20px;
}

.about-hero h2 {
    color: var(--accent-color);
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.about-hero p {
    font-size: 1.2rem;
}

.about-content {
    padding: 60px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-text h3 {
    margin-top: 0;
    font-size: 2rem;
}

.about-text p {
    line-height: 1.6;
    margin-bottom: 2rem;
}

.about-image .image-placeholder {
    width: 100%;
    height: 400px; /* Adjust height as needed */
    background-color: #ddd;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
}

.about-image .image-placeholder p {
    font-style: italic;
    color: #888;
}

.values-section {
    margin-top: 60px;
    text-align: center;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.value-item {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: left;
    border-left: 5px solid var(--primary-color);
}

.value-item h4 {
    margin-top: 0;
    font-size: 1.2rem;
    color: var(--primary-color);
}

.value-item p {
    font-size: 0.9rem;
}

/* --- Footer Specific Styles --- */
footer {
    background-color: var(--secondary-color);
    color: var(--text-color-light);
    padding: 40px 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 20px;
}

.footer-section h4 {
    color: var(--accent-color);
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li a {
    color: var(--text-color-light);
    text-decoration: none;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #444;
    padding-top: 20px;
}
/* --- Products Page Specific Styles --- */
.products-hero {
    background-color: var(--primary-color);
    color: var(--text-color-light);
    text-align: center;
    padding: 80px 20px;
}

.products-hero h2 {
    color: var(--accent-color);
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.products-hero p {
    font-size: 1.2rem;
}

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

.products-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.products-intro h3 {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.products-intro p {
    line-height: 1.6;
}

/* --- Product Grid and Cards --- */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.product-card {
    background-color: #fff;
    border: 3px solid var(--secondary-color);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.product-image {
    position: relative;
    height: 300px;
    background-color: var(--primary-color);
    overflow: hidden;
}

.product-image .image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 8rem;
}

.product-info {
    padding: 25px;
    text-align: center;
}

.product-info h4 {
    font-size: 1.8rem;
    margin-top: 0;
    color: var(--primary-color);
}

.product-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.5;
}

.product-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--secondary-color);
    margin: 15px 0;
}

/* --- Heat Level Meter --- */
.heat-level {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px 0;
}

.heat-label {
    font-weight: bold;
    font-size: 0.9rem;
    color: var(--secondary-color);
    margin-right: 10px;
}

.heat-meter {
    display: flex;
    gap: 5px;
}

.heat-dot {
    width: 15px;
    height: 15px;
    background-color: #e0e0e0;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.heat-dot.active {
    background-color: var(--primary-color);
}

.heat-text {
    margin-left: 10px;
    font-style: italic;
    font-size: 0.9rem;
    color: #888;
}

/* --- Product Uses & Warning --- */
.product-uses {
    font-size: 0.9rem;
    margin-top: 15px;
    font-style: italic;
    color: #777;
}

.warning-badge {
    background-color: var(--accent-color);
    color: var(--secondary-color);
    font-weight: bold;
    padding: 8px 12px;
    border-radius: 5px;
    display: inline-block;
    margin-top: 15px;
    text-transform: uppercase;
}

/* --- Ordering Info Section --- */
.ordering-info {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background-color: #fff;
    border: 2px dashed var(--accent-color);
    border-radius: 10px;
}

.ordering-info h3 {
    font-size: 2.2rem;
    color: var(--primary-color);
}

.ordering-info p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 15px auto 30px;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: var(--primary-color);
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: var(--secondary-color);
}
@font-face {
  font-family: 'Sunborn';
  src: url('./fonts/Sunborn.woff2') format('woff2'),
       url('./fonts/Sunborn.woff') format('woff'),
       url('./fonts/Sunborn.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

body {
  font-family: 'Sunborn', sans-serif;
}
