

:root {
  --brand-red: #C1272D;
  --brand-red-dark: #9B1B22;
  --brand-gray-dark: #333;
  --brand-gray-light: #f9f9f9;
  --font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  font-family: var(--font-family);
  background-color: var(--brand-gray-light);
  color: var(--brand-gray-dark);
  margin: 0;
  padding: 0; /* Changed from 2rem */
}

.confirmation-box {
  background-color: white;
  padding: 3rem 2rem;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  max-width: 480px;
  width: 100%;
}

h1 {
  color: var(--brand-red);
  margin-bottom: 1rem;
  font-size: 2.5rem;
}

p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

a.button {
  display: inline-block;
  background-color: var(--brand-red);
  color: white;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  font-size: 1.1rem;
  transition: background-color 0.3s ease;
}

a.button:hover {
  background-color: var(--brand-red-dark);
}
/* Menu Bar Styles */
header {
  background-color: white;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  height: 60px;
}

nav {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
}
nav a {
  text-decoration: none;
  color: var(--brand-gray-dark);
  font-weight: bold;
  font-size: 1.1rem;
  transition: color 0.2s ease-in-out;
}

nav a:hover {
  color: var(--brand-red);
}
header {
  background-color: white;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  gap: 2rem; /* adds spacing between logo and nav */
}t-align: center;

.hero {
  padding: 4rem 1rem;
  background-color: var(--brand-gray-light);
}

.features {
  display: flex;
  justify-content: space-around;
  padding: 3rem 2rem;
  background-color: #eeeeee; /* Light gray background */
  border-top: 2px solid #ddd;
}

.feature-box {
  max-width: 280px;
  text-align: center;
}

.gallery-preview {
  text-align: center;
  padding: 2rem;
}

.gallery-thumbnails {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 1rem 0;
}

.gallery-thumbnails img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.about {
  padding: 3rem 2rem;
  text-align: center;
  background-color: #eeeeee; /* Same light gray as features */
  border-top: 2px solid #ddd;
  line-height: 1.8;
}

.shop-gallery {
  padding: 2rem;
  display: block; /* stack children vertically */
  text-align: center; /* centers text like the header */
}
.product-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* only affects the product cards */
  gap: 2rem;
}
.product-card {
  background-color: white;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  max-width: 500px; /* increased from 280px */
  width: 100%;
  text-align: center;
}

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

.price {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0.5rem 0;
}

.order-container {
  display: block;      /* ensures natural stacking */
  max-width: 600px;
  margin: 0 auto;      /* center horizontally */
  padding: 20px;
  text-align: center;
}

#checkout-button {
  background-color: var(--brand-red);
  color: white;
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-top: 2rem;
}

#checkout-button:hover {
  background-color: var(--brand-red-dark);
}



.hero-description {
  font-size: 1.4rem;
  color: var(--brand-gray-dark);
  line-height: 1.6;
  margin: 1.5rem auto;
  max-width: 700px;
}


/* Add this once in your CSS file (probably near the bottom) */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.hero p {
  font-size: 1.5rem; /* bump up from 1.25rem */
  color: var(--brand-gray-dark);
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero .button {
  background-color: var(--brand-red);
  color: white;
  padding: 0.9rem 2rem;
  border-radius: 8px;
  font-weight: bold;
  font-size: 1.1rem;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.hero .button:hover {
  background-color: var(--brand-red-dark);
}

.hero-image {
  width: 90%;
  max-width: 1000px;
  height: auto;
  display: block;
  margin: 2rem auto;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  margin-bottom: 3rem;
}


.hero h1 {
  font-size: 3.5rem;
  color: var(--brand-red);
  margin-bottom: 1rem;
}

.gallery-hero {
  text-align: center;
  margin-bottom: 2rem;
}

.gallery-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.gallery-banner {
  width: 75%;
  height: auto;
  display: block;
  object-fit: cover;
  margin:0 auto
}
.footer {
  background-color: rgb(76, 74, 74);
  color: grey(60, 59, 59);
  display: flex;
  justify-content: space-around; /* <-- updated from space-between */
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-section {
  flex: 1 1 200px;
}

.footer-section h3 {
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.footer-section p,
.footer-section a {
  font-size: 1rem;
  color: rgb(66, 64, 64);
  text-decoration: none;
}

.footer-section a:hover {
  text-decoration: underline;
}

.social-icons {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.social-icon {
  width: 40px;
  height: 40px;
  transition: transform 0.2s ease;
}

.social-icon:hover {
  transform: scale(1.1);
}

.contact-info a:hover {
  text-decoration: underline;
}

.footer-container {
  display: flex;
  justify-content: space-between; /* Even spacing between & at edges */
  flex-wrap: wrap;
  max-width: 1000px;
  padding: 0 5rem; /* same padding as the gap between them */
  margin: 0 auto;
  width: 100%;
}

.hero-buttons {
  display: flex;
  gap: 8rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.custom-tagline {
  text-align: center;
  margin-top: 2rem; /* optional spacing */
}

.custom-tagline h1 {
  font-size: 2.5rem; /* adjust as needed */
  color: var(--brand-red); /* use your brand red */
}





.navbar {
  display: flex;
  justify-content: flex-start; /* aligns all items left */
  align-items: center;
  background-color: #C1272D;
  padding: 10px 20px;
  color: white;
  width: 100%;
}



}





@media (max-width: 768px) {
  .footer {
    overflow-x: auto;
    padding: 1rem;
  }

  .footer-container {
    display: flex;
    flex-wrap: nowrap;        /* 🚨 Prevent stacking */
    gap: 1rem;
    width: max-content;       /* Let it scroll if needed */
  }

  .footer-section {
    flex: 0 0 150px;
    text-align: center;
  }

  .footer-section h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }

  .footer-section p,
  .footer-section a {
    font-size: 0.85rem;
    line-height: 1.3;
  }

  .social-icons {
    justify-content: center;
  }

  .social-icon {
    width: 30px;
    height: 30px;
  }

  .hero-buttons {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 1rem;
    flex-wrap: nowrap;
  }
  
  .hero-buttons .button {
    flex: 1 1 auto;
    padding: 0.8rem 1rem;
    font-size: 1rem;
    white-space: nowrap; /* prevents buttons from wrapping */
  }
}

.sub-nav {
  display: flex;
  justify-content: center;
  gap: 2rem;
  background-color: #f3f3f3;
  padding: 1rem;
  border-bottom: 2px solid #ddd;
}

.sub-nav-link {
  text-decoration: none;
  color: var(--brand-gray-dark);
  font-weight: bold;
  padding-bottom: 0.3rem;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s, color 0.3s;
}

.sub-nav-link:hover {
  color: var(--brand-red);
  border-color: var(--brand-red);
}

.sub-nav-link.active {
  color: var(--brand-red);
  border-color: var(--brand-red);
}

.nav-link.active {
  color: var(--brand-red);
  border-color: var(--brand-red);
}

.gallery-categories {
  padding: 3rem 1rem;
  text-align: center; /* center the header */
}

.gallery-categories h1 {
  font-size: 2.5rem;
  color: var(--brand-red);
  margin-bottom: 2rem;
}

.category-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* keep cards centered */
  gap: 2rem;
  margin-top: 2rem; /* optional spacing below header */
}

.category-card {
  text-decoration: none;
  color: var(--brand-gray-dark);
  width: 280px;
  transition: transform 0.3s;
}

.category-card img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: box-shadow 0.3s;
}

.category-card h2 {
  margin-top: 0.8rem;
  font-size: 1.3rem;
  color: var(--brand-red);
}

.category-card:hover {
  transform: translateY(-5px);
}

.category-card:hover img {
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

:root {
  --brand-red: #C1272D;
  --brand-red-dark: #9B1B22;
  --brand-gray-light: #f9f9f9;
  --brand-gray-dark: #333;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: var(--brand-gray-light);
  color: var(--brand-gray-dark);
  margin: 0;
  padding: 0;
}

header {
  background-color: white;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.logo { height: 60px; }

nav {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
}
nav a {
  text-decoration: none;
  color: var(--brand-gray-dark);
  font-weight: bold;
  font-size: 1.1rem;
  transition: color 0.2s ease-in-out;
}
nav a:hover { color: var(--brand-red); }

main {
  padding: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 80vh;
}

.custom-quote-container {
  background: white;
  max-width: 600px;
  width: 100%;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
}

h1 {
  text-align: center;
  color: var(--brand-red);
  margin-bottom: 2rem;
  font-weight: 700;
  font-size: 2rem;
}

label {
  display: block;
  margin-bottom: 1rem;
  font-weight: 600;
}

input[type="text"],
input[type="email"],
textarea,
input[type="file"] {
  width: 100%;
  padding: 0.75rem 1rem;
  margin-top: 0.5rem;
  border: 2px solid var(--brand-red);
  border-radius: 6px;
  font-size: 1rem;
  resize: vertical;
  transition: border-color 0.3s ease;
  box-sizing: border-box;
  background: #fff;
}

input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus,
input[type="file"]:focus {
  outline: none;
  border-color: var(--brand-red-dark);
}

button {
  background-color: var(--brand-red);
  color: white;
  border: none;
  padding: 0.9rem 2rem;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-top: 1.5rem;
  width: 100%;
  display: block;
}
button:hover { background-color: var(--brand-red-dark); }

.confirmation-message {
  text-align: center;
  font-weight: 600;
  color: var(--brand-red);
  font-size: 1.3rem;
}

.footer {
  background: #fff;
  padding: 2rem 0;
  border-top: 1px solid #eee;
}
.footer-container {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  padding: 0 1rem;
}
.footer-section h3 { margin-top: 0; }
.social-icons { display: flex; gap: 1rem; align-items: center; }
.social-icon { width: 28px; height: 28px; }
.social-handle { margin: 0.5rem 0 0; }

.shop-header {
  width: 100%;
  text-align: center; /* centers the header above cards */
  margin-bottom: 2rem;
}

@media (max-width: 600px) {
  .sub-nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 columns */
    gap: 1rem;
    background-color: #f3f3f3;
    padding: 1rem;
  }

  .sub-nav-link {
    text-align: center;
    font-size: 0.9rem; /* shrink text slightly for fit */
    padding: 0.5rem;
  }
}

.sub-nav-shop {
  display: flex;
  justify-content: center;
  gap: 2rem;
  background-color: #f3f3f3;
  padding: 1rem;
  border-bottom: 2px solid #ddd;
}

html, body {
  overflow-x: hidden;
}

