/* styles.css */


/* Hero Section */
.hero-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}
/* Bigger h1 and p ONLY in the hero section */
.hero-section h1 {
  font-size: 2.3rem;         /* adjust as needed */
  font-family: 'Alta Caption', sans-serif;
}

.hero-section p {
  font-size: 1rem; /* default (mobile) */
  font-family: 'Alta Regular', sans-serif;
  line-height: 1.4;
}

@media (min-width: 992px) {
  .hero-section p {
    font-size: 1.5rem !important;  /* force size change */
    line-height: 1.5;
  }
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  z-index: -1;
}

.hero-overlay {
  background: rgba(0, 0, 0, 0.7);
  padding: 2rem;
  border-radius: 0px;
}

/* Section Padding */
.section-padding {
  padding: 80px 20px;
}

@font-face {
  font-family: 'Alta Caption';
  src: url('/fonts/Alta_caption.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Alta Light';
  src: url('/fonts/Alta_light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'Alta Regular';
  src: url('/fonts/Alta_regular.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

.hero-title {
  font-family: 'Alta Caption', sans-serif;
}

body {
  font-family: 'Alta Regular', sans-serif;
}

/* Default size for navbar links (mobile) */
.navbar .nav-link span {
  font-family: 'Alta Regular', sans-serif;
  font-size: 1.15rem; /* normal size on mobile */
  font-weight: 500;
  color: inherit;
}

/* Larger font size on desktop (min-width 992px) */
@media (min-width: 992px) {
  .navbar .nav-link span {
    font-size: 1.4rem; /* bigger size on desktop */
  }
}

p {
  font-family: 'Alta Regular', sans-serif;
  font-size: 20px;
}

h1 {
    font-family: 'Alta Caption', sans-serif;
}
/* About Section Banner (full-width background) */
.about-banner {
  width: 100%;
  height: 300px;
  background-image: url('./images/about-bg.jpg'); /* Replace with your actual image or color */
  background-size: cover;
  background-position: center;
}

/* About Content Below Banner */
.about-content {
  padding: 60px 20px;
  max-width: 800px;
  margin: 0 auto;
}

.about-content h2 {
  font-family: 'Alta Caption', sans-serif;
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.about-content p {
  font-family: 'Alta Regular', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
}

#contact h2 {
  font-family: 'Alta Caption', sans-serif;
  font-size: 2.5rem;
}

#contact p {
  font-family: 'Alta Regular', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
}

video {
  object-fit: cover;
  display: block;
}

/* Desktop: default */
.navbar-brand {
  width: 20%;
  padding: 2px;
  flex: 0 0 auto; /* auto width */
}

/* Mobile: logo takes exactly 50% width */
@media (max-width: 991.98px) {
  .navbar-brand {
    flex: 0 0 50%;  /* fixed 50% width */
    max-width: 40%; /* ensure it doesn’t grow bigger */
  }


  /* Make sure image fills container width */
  .navbar-brand img {
    width: 100%;
    height: 100%;
    max-height: 60px; /* or whatever max height you want */
    object-fit: contain;
  }
}

#services article {
  background: #fff;
  padding: 1rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
}


.hamburger {
  width: 40px;
  height: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 999;
  transform: scale(0.7); /* 70% size */
}

.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: #000; /* or #fff for dark mode */
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

/* Animate to X when active */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(9px, 9px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(9px, -9px);
}
/* Hide hamburger button on larger screens */
@media (min-width: 992px) {
  .hamburger {
    display: none;
  }
}

/* Show hamburger button on smaller screens */
@media (max-width: 991.98px) {
  .hamburger {
    display: flex; /* or inline-flex */
  }
}

body p {
  font-size: 1rem !important;
  line-height: 1.1 !important;
}


.btn-babulis {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background-color: #425B76;
  color: white;
  border: none;
  border-radius: 0.25rem;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.btn-babulis:hover {
  background-color: #2e445c;
  color: white;
  text-decoration: none;
}

  @media (min-width: 768px) {
    video.desktop-tall {
      height: 500px !important;
    }
  }


  .contact-link {
  color: #425B76; /* replace this with your btn-babulis color */
  font-weight: 600; /* optional, to match button text style */
}
.contact-link:hover {
  color: #2e445c; /* darker shade on hover */
  text-decoration: underline; /* optional hover effect */
}

section {
  
  border-bottom: 2px solid rgba(0, 0, 0, 0.05);
}

footer {
  border-top: 2px solid rgba(0, 0, 0, 0.05);       /* Optional subtle border */
}
