/* ===========================================
   BREASCO - Custom CSS
   =========================================== */
/* Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
}

body {
  font-family: "Jura", "Helvetica Neue", Helvetica, Arial, sans-serif;
  background-color: #1c1c1a;
  color: #ffffff;
  line-height: 1.5;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  list-style: none;
}

main {
  flex: 1;
}

/* ===========================================
   NAVBAR
   =========================================== */
.navbar {
  background-color: #1c1c1a;
  padding: 10px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.navbar-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.navbar-brand .logo {
  width: 45px;
  height: 45px;
  margin-right: 10px;
}

.navbar-brand .brand-text {
  display: flex;
  flex-direction: column;
}

.navbar-brand .brand-name {
  font-family: "Jura", sans-serif;
  font-size: 26px;
  font-weight: 300;
  letter-spacing: 3px;
  color: #d2d2cf;
}

.navbar-brand .brand-phone {
  font-size: 12px;
  color: #d2d2cf;
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 5px;
}

.navbar-nav a {
  font-family: "Jura", sans-serif;
  padding: 8px 20px;
  border-radius: 20px;
  border: 1px solid #852a0c;
  font-size: 14px;
  color: #ffffff;
  transition: all 0.3s ease;
  background: transparent;
}

.navbar-nav a:hover {
  border-color: #fc6000;
}

.navbar-nav a.nav-contact {
  background-color: #852a0c;
  border-color: #852a0c;
}

.navbar-nav a.nav-contact:hover {
  background-color: #fc6000;
  border-color: #fc6000;
}

/* Mobile nav toggle */
.navbar-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.navbar-toggle span {
  width: 25px;
  height: 2px;
  background-color: #ffffff;
}

@media (max-width: 900px) {
  .navbar {
    padding: 10px 20px;
  }
  .navbar-toggle {
    display: flex;
  }
  .navbar-nav {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background-color: #1c1c1a;
    flex-direction: column;
    padding: 20px;
    z-index: 100;
  }
  .navbar-nav.active {
    display: flex;
  }
}
/* ===========================================
   FOOTER
   =========================================== */
.site-footer {
  background-color: #1c1c1a;
  padding: 15px 40px;
  border-top: 1px solid #494947;
}

.footer-content {
  font-size: 12px;
  color: #a4a4a1;
}

.footer-content a {
  color: #5bbcb3;
}

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

/* ===========================================
   PAGE TITLES
   =========================================== */
.page-title {
  font-family: "Jura", sans-serif;
  font-size: 45px;
  font-weight: 300;
  color: #ffffff;
  margin-bottom: 5px;
}

.page-subtitle {
  font-family: "Jura", sans-serif;
  font-size: 24px;
  font-weight: 400;
  color: #fc6000;
  font-style: italic;
}

/* ===========================================
   HOME PAGE - HERO
   =========================================== */
.hero {
  position: relative;
  height: 400px;
  overflow: hidden;
}

.hero > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.2));
  display: flex;
  align-items: flex-end;
  padding: 40px;
  z-index: 1;
}

.hero-title {
  font-family: "Jura", sans-serif;
  font-size: 42px;
  font-weight: 300;
  color: #ffffff;
}

/* ===========================================
   HOME PAGE - FEATURE BOXES
   =========================================== */
.feature-boxes {
  display: flex;
  width: 100%;
}

@media (max-width: 768px) {
  .feature-boxes {
    flex-direction: column;
  }
}
.feature-box {
  flex: 1;
  position: relative;
  height: 350px;
  overflow: hidden;
}

.feature-box > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-box .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.85));
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  z-index: 1;
}

.feature-box .feature-title {
  font-family: "Jura", sans-serif;
  color: #fc6000;
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 12px;
}

.feature-box .feature-text {
  font-family: "Jura", sans-serif;
  color: #d2d2cf;
  font-size: 12px;
  line-height: 1.7;
}

/* ===========================================
   CONTENT SECTIONS
   =========================================== */
.section {
  padding: 50px 40px;
  background-color: #1c1c1a;
}

.section .container {
  max-width: 1200px;
  margin: 0 auto;
}

/* ===========================================
   ABOUT PAGE
   =========================================== */
.about-layout {
  display: flex;
  gap: 40px;
  margin-top: 30px;
}

@media (max-width: 900px) {
  .about-layout {
    flex-direction: column;
  }
}
.about-text {
  flex: 1;
}

.about-text p {
  font-family: "Jura", sans-serif;
  color: #d2d2cf;
  font-size: 12px;
  line-height: 1.8;
  margin-bottom: 15px;
}

.about-image {
  flex: 1;
}

.about-image img {
  width: 100%;
  height: auto;
}

/* ===========================================
   SERVICES PAGE
   =========================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}

@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}
.service-card {
  background-color: #1c1c1a;
}

.service-card .card-image {
  height: 200px;
  overflow: hidden;
}

.service-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card .card-content {
  padding: 20px;
}

.service-card .card-title {
  font-family: "Jura", sans-serif;
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
}

.service-card .card-subtitle {
  font-family: "Jura", sans-serif;
  color: #fc6000;
  font-size: 11px;
  margin-bottom: 10px;
}

.service-card .card-text {
  font-family: "Jura", sans-serif;
  color: #a4a4a1;
  font-size: 11px;
  line-height: 1.6;
}

/* ===========================================
   SOLUTIONS PAGE
   =========================================== */
.solutions-list {
  margin-top: 40px;
}

.solution-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 35px;
  gap: 25px;
}

.solution-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
}

.solution-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.solution-content h3 {
  font-family: "Jura", sans-serif;
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 8px;
}

.solution-content p {
  font-family: "Jura", sans-serif;
  color: #a4a4a1;
  font-size: 12px;
  line-height: 1.7;
}

.solutions-images {
  display: flex;
  gap: 15px;
  margin-top: 50px;
}

@media (max-width: 768px) {
  .solutions-images {
    flex-direction: column;
  }
}
.solutions-images .image-item {
  flex: 1;
  height: 200px;
  overflow: hidden;
}

.solutions-images .image-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===========================================
   QUALITY PAGE
   =========================================== */
.quality-layout {
  position: relative;
  min-height: 400px;
}

.quality-bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 55%;
  background-size: cover;
  background-position: center;
  opacity: 0.2;
}

.quality-content {
  position: relative;
  z-index: 1;
  max-width: 500px;
}

.quality-content p {
  font-family: "Jura", sans-serif;
  color: #d2d2cf;
  font-size: 12px;
  line-height: 1.8;
  margin-top: 20px;
}

.quality-content a {
  color: #5bbcb3;
}

.quality-content a:hover {
  text-decoration: underline;
}

/* ===========================================
   CONTACT PAGE
   =========================================== */
.contact-layout {
  display: flex;
  gap: 40px;
  margin-top: 30px;
}

@media (max-width: 768px) {
  .contact-layout {
    flex-direction: column;
  }
}
.contact-info {
  flex: 0 0 250px;
}

.contact-info h3 {
  font-family: "Jura", sans-serif;
  color: #5bbcb3;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 20px;
}

.contact-info p {
  font-family: "Jura", sans-serif;
  color: #5bbcb3;
  font-size: 13px;
  margin-bottom: 5px;
}

.contact-info a {
  color: #5bbcb3;
}

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

.contact-map {
  flex: 1;
  min-height: 400px;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: 0;
}
