/* =========================================================
   Business Theme: Mustard & Slate
   ========================================================= */

:root {
  /* Theme Colors */
  --mustard-dark: #c59b27;
  --mustard-light: #f4d068;
  --brand-dark: #2c3e50; /* Slate / Navy for professional contrast */
  --text-main: #333333;
  --text-light: #ffffff;
  --bg-content: rgba(255, 255, 255, 0.95);

  /* Fonts */
  --font-heading: "Montserrat", "Helvetica Neue", sans-serif;
  --font-body: "Open Sans", "Arial", sans-serif;
}

/* Animations */

@keyframes blink {
  0%,
  100% {
    opacity: 1; /* Fully visible */
  }
  50% {
    opacity: 0; /* Fully invisible */
  }
}

/* Base Body Styles */
body {
  margin: 0;
  padding: 0;
  font-family: var(--font-body);
  color: var(--text-main);
  /* Mustard Themed 2-Colored Gradient Background */
  background: linear-gradient(
    135deg,
    var(--mustard-dark),
    var(--mustard-light)
  );
  background-attachment: fixed;
  line-height: 1.6;
}

/* Header Styling */
header {
  background-color: var(--brand-dark);
  color: var(--text-light);
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
}

header h1 {
  font-family: var(--font-heading);
  margin: 0 0 1rem 0;
  font-size: 2.5rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.underconstruction {
  animation: blink 1.5s linear infinite; /*remove this later*/
}

/* Navigation */
nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: larger;
}

nav a {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  transition:
    background-color 0.3s ease,
    color 0.3s ease;
}

nav a:hover {
  background-color: var(--mustard-light);
  color: var(--brand-dark);
}

/* Main Content Container */
main {
  max-width: 1100px;
  margin: 3rem auto;
  padding: 2.5rem;
  background-color: var(--bg-content);
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Headings */
h2,
h3 {
  font-family: var(--font-heading);
  color: var(--brand-dark);
}

h3 {
  font-size: 25px;
}

h2 {
  border-bottom: 3px solid var(--mustard-dark);
  padding-bottom: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 30px;
}

/* Lists and Text */
ul {
  padding-left: 20px;
}

li {
  margin-bottom: 10px;
  font-size: 20px;
}

ul p {
  font-size: 22px;
}

.extra_emphasis_1 {
  font-size: 20px;
}

.no_space {
  list-style-type: none;
}

p {
  font-size: 1.2rem;
}

.company_name {
  font-weight: bolder;
}

address {
  font-style: normal;
  font-size: 1.5rem;
  background-color: #f9f9f9;
  padding: 1rem;
  line-height: 3rem;
  border: 4px solid #c59b27;
  border-radius: 5px;
}

/* Form Styling */
/* form div {
  margin-bottom: 1.2rem;
}

label {
  font-weight: 600;
  color: var(--brand-dark);
}

input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: 12px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: var(--font-body);
  box-sizing: border-box;
  transition: border-color 0.3s;
}

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

button {
  background-color: var(--mustard-dark);
  color: white;
  border: none;
  padding: 12px 25px;
  font-size: 1rem;
  font-weight: bold;
  font-family: var(--font-heading);
  border-radius: 4px;
  cursor: pointer;
  transition:
    background-color 0.3s,
    transform 0.1s;
}

button:hover {
  background-color: #a67c1e;
  transform: translateY(-2px);
} */

/* Footer */
footer {
  background-color: var(--brand-dark);
  color: var(--text-light);
  text-align: center;
  padding: 2rem;
  margin-top: 3rem;
}

footer nav ul {
  margin-bottom: 1.5rem;
}

footer nav a {
  font-size: 1.1rem;
}

footer p {
  margin: 0;
  font-size: 0.85rem;
  opacity: 0.8;
}

/* Hide default HTML horizontal rules */
hr {
  display: none;
}

/* =========================================================
   Homepage Hero Image & Floating Text
   ========================================================= */
/* .hero-container {
  width: 100%;
  margin-bottom: 2rem;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  position: relative; 
}

.hero-img {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  display: block;
} */

/* The Text Overlay */
/* .hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  color: #ffffff;
  font-size: 2.1rem;
  text-align: center;
  margin: 0;

  width: 80%;
  max-width: 900px;
  padding: 25px 30px;

  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 8px;
  backdrop-filter: blur(4px);

  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.8);

  animation: float 4s ease-in-out infinite;
} */

/* Mobile responsive font size */
/* @media (max-width: 600px) {
  .hero-text {
    font-size: 2rem;
  }
}

@keyframes float {
  0% {
    transform: translate(-50%, -50%);
  }
  50% {
    transform: translate(-50%, -65%);
  }
  100% {
    transform: translate(-50%, -50%);
  }
} */

/* The grid layout (Responsive) */
/* .gallery-container-Rice {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin: 2rem 0;
} */

/* Individual image container */
/* .gallery-item {
  border: #f4d068;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  background-color: var(--brand-dark);
}

.gallery-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
} */

/* .gallery-item:hover .gallery-img {
  transform: scale(1.08);
}
 */
/* =========================================================
   The Modal (Popup Window for Clicked Images)
   ========================================================= */
/* .modal {
  display: none; 
  position: fixed;
  z-index: 1000; 
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85); 
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
 */
/* Modal Image */
/* .modal-content {
  max-width: 90%;
  max-height: 80vh;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  animation: zoomIn 0.3s ease;
} */

/* Image Description/Caption */
/* #imageCaption {
  margin-top: 15px;
  color: var(--text-light);
  font-size: 1.1rem;
  font-family: var(--font-heading);
  text-align: center;
} */

/* Close Button (The 'X') */
/* .close-btn {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #ffffff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s;
}
 */
/* .close-btn:hover {
  color: var(--mustard-light);
} */

/* Smooth zoom animation when modal opens */
/* @keyframes zoomIn {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
} */
