/* CSS Variables & Global Settings */
:root {
  --primary-blue: #768fca;
  --bg-grey: #a1a1a1;
  --content-bg: #fafafa;
  --text-dark: #333333;
  --text-light: #ffffff;
  --font-main: 'Droid Sans', 'Helvetica Neue', Arial, sans-serif;
  --font-heading: 'Oswald', 'Arial Narrow', sans-serif; /* Approximation for the condensed font */
  --container-width: 980px;
}

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

body {
  background-color: var(--bg-grey);
  background-image: url('../assets/images/jeans_pattern.png');
  background-repeat: repeat;
  font-family: var(--font-main);
  color: var(--text-dark);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

ul {
  list-style: none;
}

/* Layout Utilities */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  background-color: var(--content-bg);
  background-image: url('../assets/images/bg_pattern.png');
  min-height: 100vh;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
}

/* Header */
header {
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #eee;
}

.logo {
  font-size: 24px;
  font-weight: bold;
  color: #444;
}

.logo span {
  color: var(--primary-blue);
}

.contact-phone {
  font-size: 18px;
  font-weight: bold;
  color: #666;
}

/* Navigation */
nav {
  background-color: #fff;
  border-bottom: 4px solid var(--primary-blue);
}

nav ul {
  display: flex;
  justify-content: center;
}

nav li {
  margin: 0;
}

nav a {
  display: block;
  padding: 15px 25px;
  font-size: 16px;
  font-weight: bold;
  color: #555;
  text-transform: uppercase;
}

nav a:hover,
nav a.active {
  background-color: var(--primary-blue);
  color: white;
}

/* Hero Slider */
.hero-slider {
  position: relative;
  height: 400px;
  overflow: hidden;
  background-color: #eee;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
}

.slide.active {
  opacity: 1;
}

.slide-content {
  text-align: center;
  background: rgba(255, 255, 255, 0.85);
  padding: 30px 50px;
  border-radius: 4px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.slide-content h2 {
  font-family: var(--font-heading);
  font-size: 36px;
  color: var(--primary-blue);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.3);
  color: white;
  border: none;
  font-size: 24px;
  padding: 10px 15px;
  cursor: pointer;
  transition: background 0.3s;
}

.slider-btn:hover {
  background: rgba(0, 0, 0, 0.6);
}

.slider-btn.prev {
  left: 10px;
  background-image: url('../assets/images/slider_prev.png');
  background-repeat: no-repeat;
  background-position: center;
  font-size: 0; /* Hide text arrow */
  width: 30px;
  height: 30px;
  background-color: transparent;
}
.slider-btn.next {
  right: 10px;
  background-image: url('../assets/images/slider_next.png');
  background-repeat: no-repeat;
  background-position: center;
  font-size: 0; /* Hide text arrow */
  width: 30px;
  height: 30px;
  background-color: transparent;
}

.slider-btn:hover {
  background-color: transparent;
  opacity: 0.8;
}

/* CTA Bar */
.cta-bar {
  background-color: var(--primary-blue);
  color: white;
  padding: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.cta-bar h3 {
  font-weight: 400;
  font-size: 20px;
}

.cta-button {
  background-color: #444;
  color: white;
  padding: 12px 30px;
  border-radius: 4px;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 14px;
}

.cta-button:hover {
  background-color: #222;
}

/* Footer */
footer {
  margin-top: auto; /* Push to bottom */
  background-color: #333;
  color: #999;
  padding: 20px;
  text-align: center;
  font-size: 14px;
}
