body {
    font-family: 'Roboto', sans-serif;
    background-color: #000;
    color: #fff;
}

.navbar {
    background-color: #111 !important;
    padding: 15px 0;
    text-transform: uppercase;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 1px;
}
.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
}
.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    padding-left: 15px !important;
    padding-right: 15px !important;
    color: #ccc !important;
}
.nav-link:hover {
    color: #fff !important;
}


.btn-cta-nav {
    background-color: #e50914;
    color: #fff;
    font-weight: bold;
    border-radius: 0;
    padding: 10px 20px;
    border: none;
    text-transform: uppercase;
}
.btn-cta-nav:hover {
    background-color: #b20710;
    color: #fff;
}


.carousel-item {
    height: 600px;
    background-color: #000;
}
.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}
.carousel-caption {
    bottom: 30%;
    text-align: left;
    left: 10%;
    right: 10%;
    max-width: 650px;
}
.caption-sub {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    color: #ccc;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 10px;
}
.caption-title {
    font-family: 'Oswald', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 25px;
}

.btn-danger-custom {
    background-color: #e50914;
    border: none;
    border-radius: 0;
    padding: 12px 35px;
    font-weight: bold;
    text-transform: uppercase;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 1px;
}
.btn-danger-custom:hover {
    background-color: #b20710;
}

.carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: 0 6px;
}
.intro-section {
  background-color: #000;
  color: #fff;
  padding: 60px 0;
}

.intro-text h2 {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.intro-text h4 {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 10px;
  color: #e50914;
}

.intro-text p {
  font-family: 'Roboto', sans-serif;
  line-height: 1.6;
  margin-bottom: 15px;
}

.intro-text .btn {
  border-radius: 0;
  font-weight: bold;
  text-transform: uppercase;
}

.intro-images img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
}
/*FOOTER*/
.main-footer {
    background-color: #111116;
    border-top: 2px solid #2e2e38;
    padding: 60px 0 20px 0;
    margin-top: 80px;
    color: #a4b0be;
    font-size: 0.95rem;
}

.footer-brand {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: 1px;
    background: linear-gradient(45deg, #ffffff, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    display: inline-block;
}

.footer-heading {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: #ff4757;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #a4b0be;
    text-decoration: none;
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-links a:hover {
    color: #ff4757;
    padding-left: 5px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.footer-contact-item i {
    color: #ff4757;
    margin-right: 12px;
    margin-top: 4px;
}

.footer-map {
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #2e2e38;
    width: 100%;
    position: relative;
    padding-top: 100%;
}
.footer-map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.footer-bottom {
    border-top: 1px solid #2e2e38;
    padding-top: 20px;
    margin-top: 50px;
    font-size: 0.85rem;
}

.social-icons a {
    display: inline-block;
    width: 35px;
    height: 35px;
    background-color: #1e1e24;
    color: #ffffff;
    text-align: center;
    line-height: 35px;
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: #ff4757;
    transform: translateY(-3px);
}