@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Raleway:wght@400;700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Raleway", sans-serif;
  color: #132646;
  background-color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.1;
}

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

ul {
  list-style: none;
}

.gold-rule {
  background-color: #ad832f;
  height: 1px;
  width: 80px;
  margin: 20px 0;
}
.gold-rule.white {
  background-color: rgba(255, 255, 255, 0.5);
}

.btn {
  display: inline-block;
  padding: 16px 32px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 15px;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}
.btn.btn-ghost-primary {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #ad832f;
}
.btn.btn-ghost-primary:hover {
  background-color: transparent;
  color: #ffffff;
}
.btn.btn-solid-accent {
  background-color: #ad832f;
  border-color: #ad832f;
  color: #ffffff;
}
.btn.btn-solid-accent:hover {
  background-color: transparent;
  color: #ad832f;
}
.btn.btn-ghost-accent {
  background-color: transparent;
  border-color: #ad832f;
  color: #ad832f;
}
.btn.btn-ghost-accent:hover {
  background-color: #ad832f;
  color: #ffffff;
}

/* Navigation */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 80px;
  height: 116px;
  background-color: #ffffff;
  position: relative;
  z-index: 100;
}
.navbar .logo img {
  height: 88px;
  object-fit: contain;
}
.navbar .nav-links {
  display: flex;
  gap: 40px;
}
.navbar .nav-links li a {
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
}
.navbar .hamburger {
  display: none;
  font-size: 24px;
  cursor: pointer;
  padding: 10px;
}

/* Fixed Badge */
.fixed-badge {
  position: fixed;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
  width: 151px;
  height: 151px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  pointer-events: auto;
}
.fixed-badge img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  animation: spin 10s linear infinite;
}
.fixed-badge span {
  position: relative;
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  text-align: center;
  color: #132646;
  z-index: 2;
  max-width: 110px;
  line-height: 1.2;
}

/* Sections */
.section-hero {
  background-color: #132646;
  color: #ffffff;
  padding-top: 104px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.section-hero .hero-content {
  max-width: 800px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  padding: 0 20px;
}
.section-hero .hero-content h1 {
  font-size: 49px;
}
.section-hero .hero-content p {
  font-size: 18px;
  opacity: 0.7;
  max-width: 600px;
}
.section-hero .hero-content p strong {
  font-weight: 700;
  opacity: 1;
}
.section-hero .hero-content .hero-buttons {
  display: flex;
  gap: 16px;
}
.section-hero .hero-image-wrapper {
  width: 100%;
  margin-top: 80px;
  position: relative;
}
.section-hero .hero-image-wrapper .main-img {
  width: 100%;
  height: 640px;
  object-fit: cover;
}

@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}
.section-aanbod {
  padding: 120px 80px;
  background-color: #ffffff;
}
.section-aanbod .container {
  display: flex;
  gap: 80px;
  max-width: 1360px;
  margin: 0 auto;
  align-items: center;
}
.section-aanbod .container .content {
  flex: 1;
}
.section-aanbod .container .content h2 {
  font-size: 35px;
  color: #132646;
}
.section-aanbod .container .content .text {
  font-size: 18px;
  color: rgba(19, 38, 70, 0.7);
  margin-bottom: 35px;
}
.section-aanbod .container .content .text ul {
  list-style-type: disc;
  margin-left: 20px;
  margin-top: 20px;
}
.section-aanbod .container .content .text ul li {
  margin-bottom: 10px;
}
.section-aanbod .container .images {
  flex: 1;
  position: relative;
  height: 519px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 20px;
}
.section-aanbod .container .images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}
.section-aanbod .container .images img:first-child {
  grid-row: span 2;
}
.section-aanbod.reverse .container {
  flex-direction: row-reverse;
}

.section-full-image {
  height: 786px;
  width: 100%;
}
.section-full-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-features {
  background-color: #132646;
  padding: 120px 80px;
}
.section-features .container {
  display: flex;
  justify-content: space-between;
  max-width: 1360px;
  margin: 0 auto;
  gap: 40px;
}
.section-features .container .feature-item {
  flex: 1;
  color: #ffffff;
}
.section-features .container .feature-item .icon {
  width: 35px;
  height: 35px;
  margin-bottom: 24px;
}
.section-features .container .feature-item h3 {
  font-size: 20px;
  margin-bottom: 12px;
}
.section-features .container .feature-item p {
  font-size: 16px;
  opacity: 0.6;
}

.section-news {
  padding: 0;
}
.section-news .news-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 800px;
  position: relative;
}
.section-news .news-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section-news .news-grid .controls {
  position: absolute;
  bottom: 40px;
  right: 80px;
  display: flex;
  gap: 16px;
}
.section-news .news-grid .controls .control-btn {
  width: 60px;
  height: 60px;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s ease;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: none;
}
.section-news .news-grid .controls .control-btn:hover {
  transform: scale(1.1);
}
.section-news .news-grid .controls .control-btn img {
  width: 24px;
  height: 24px;
}

.footer {
  background-color: #132646;
  padding: 120px 80px 40px;
  color: #ffffff;
}
.footer .footer-top {
  display: flex;
  justify-content: space-between;
  max-width: 1440px;
  margin: 0 auto 80px;
  flex-wrap: wrap;
  gap: 40px;
}
.footer .footer-top .footer-cta {
  max-width: 405px;
}
.footer .footer-top .footer-cta h2 {
  font-size: 38px;
  margin-bottom: 32px;
  line-height: 1.2;
}
.footer .footer-top .footer-cta p {
  opacity: 0.6;
  margin-bottom: 45px;
}
.footer .footer-top .footer-cta .vybros-logo {
  display: flex;
  align-items: center;
  gap: 15px;
}
.footer .footer-top .footer-cta .vybros-logo img {
  height: 32px;
}
.footer .footer-top .footer-cta .vybros-logo span {
  opacity: 0.6;
  font-size: 16px;
  white-space: nowrap;
}
.footer .footer-top .footer-info {
  display: flex;
  gap: 80px;
}
.footer .footer-top .footer-info .info-block h4 {
  color: #ad832f;
  font-size: 16px;
  margin-bottom: 24px;
}
.footer .footer-top .footer-info .info-block p {
  font-size: 18px;
  margin-bottom: 8px;
}
.footer .footer-bottom {
  border-top: 1px solid #ad832f;
  padding-top: 20px;
  text-align: center;
}
.footer .footer-bottom p {
  opacity: 0.4;
  font-size: 13px;
}

/* Responsive */
@media (max-width: 900px) {
  .navbar {
    padding: 0 40px;
  }
  .section-hero {
    padding-top: 80px;
  }
  .section-aanbod, .section-features, .footer {
    padding: 80px 40px;
  }
  .section-aanbod .container {
    flex-direction: column;
    gap: 40px;
  }
  .section-aanbod.reverse .container {
    flex-direction: column;
  }
  .section-features .container {
    flex-direction: column;
  }
  .footer .footer-top {
    flex-direction: column;
    gap: 60px;
  }
  .footer .footer-top .footer-cta {
    max-width: 100%;
  }
  .footer .footer-top .footer-info {
    gap: 40px;
  }
  .section-news .news-grid {
    height: auto;
  }
}
@media (max-width: 768px) {
  .navbar {
    padding: 0 20px;
  }
  .navbar .logo img {
    height: 50px;
  }
  .navbar .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #ffffff;
    flex-direction: column;
    padding: 20px;
    text-align: center;
    border-top: 1px solid #eee;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  }
  .navbar .nav-links.active {
    display: flex;
  }
  .navbar .hamburger {
    display: block;
  }
  .section-hero {
    padding-top: 60px;
  }
  .section-hero .hero-content {
    width: 100%;
  }
  .section-hero .hero-content h1 {
    font-size: 26px;
    word-wrap: break-word;
    hyphens: auto;
  }
  .section-hero .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  .section-hero .hero-buttons .btn {
    width: 100%;
    text-align: center;
    padding: 16px 10px;
    font-size: 14px;
  }
  .section-hero .hero-image-wrapper {
    margin-top: 40px;
  }
  .section-hero .hero-image-wrapper .main-img {
    height: 400px;
  }
  .section-aanbod, .section-features, .footer {
    padding: 60px 20px;
  }
  .section-aanbod .container .images {
    height: auto;
    grid-template-columns: 1fr;
  }
  .section-aanbod .container .images img:first-child {
    grid-row: span 1;
  }
  .section-full-image {
    height: 400px;
  }
  .footer .footer-top .footer-info {
    flex-direction: column;
    gap: 40px;
  }
  .section-news .news-grid {
    grid-template-columns: 1fr;
    height: auto;
  }
  .section-news .news-grid .controls {
    bottom: 20px;
    right: 20px;
  }
  .fixed-badge {
    width: 100px;
    height: 100px;
    right: 10px;
    top: auto;
    bottom: 20px;
    transform: none;
  }
  .fixed-badge span {
    font-size: 10px;
  }
}

/*# sourceMappingURL=style.css.map */
