@charset "UTF-8";

* {
  box-sizing: border-box;
}


body {
  margin: 0;
  font-family: "Roboto", sans-serif;
  background-image: url("images/cloudboba-background.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}


.navbar {
  background-color: #2D498E;
  width: 100%;
  height: 100px;
}

.nav-inner {
  max-width: 1280px;
  height: 100%;
  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: space-between;
}


.logo {
  height: 80px;
  display: block;
}
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 25px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background: white;
  border-radius: 2px;
}


.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
  padding: 0;
  margin: 0;
}

.nav-links li {
  border-right: 3px solid #FFFFFF;
  padding-right: 20px;
}

.nav-links li:last-child {
  border-right: none;
}

.nav-links a {
  font-family: "Cherry Bomb One", system-ui;
  font-size: 24px;
  color: #FFFFFF;
  text-decoration: none;
}

.nav-links a:hover {
  color: #ACD7F2;
}


.page-wrapper {
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px;
}


.hiring-callout {
  text-align: center;
  margin: 40px 0;
}


.hiring-image {
  width: 200px;
  height: auto;
  margin-bottom: 15px;
}


.hiring-text {
  font-family: "Cherry Bomb One", system-ui;
  font-size: 26px;
  color: #2D498E;
}


.row {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
}


.halfCol {
  flex: 1;
  background: #FFFFFF;
  min-height: 400px;
border-radius: 40px; 
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
 
}
.halfCol h1 {
	font-family: "Cherry Bomb One", system-ui;
  font-size: 55px;
 color: #2D498E;
	
}

.halfCol p {
	font-family: "Cherry Bomb One", system-ui;
  font-size: 24px;
 color: #2D498E;
	padding-left: 20px;
	padding-right: 20px;
}


.halfCol img {
  max-width: 100%;
  width: 80%;
  height: auto;
}
.map-link {
  color: #2D498E;
  text-decoration: none;
  font-weight: 500;
}



.no-bg {
  background: transparent;
}

.cta-btn {
  font-family: "Cherry Bomb One", system-ui;
  font-size: 22px;
  color: #FFFFFF;
  text-decoration: none;
  background: #2D498E;
  padding: 10px;
  border-radius: 40px;
  margin-top: 20px;
	  margin-bottom: 20px;
  transition: all 0.3s ease;
}
.cta-btn:hover {
  background: #ACD7F2;
  color: #2D498E;
}

.oneThirdCol {
  flex: 1;
  background: #ACD7F2;
  min-height: 350px;
  display: flex;
	flex-direction: column; 
  align-items: center;
  justify-content: center;
  font-family: "Cherry Bomb One", system-ui;
  font-size: 28px;
	border-radius: 20px; 
	padding-top: 10px;
	gap: 20px;
}
.drink-btn {
  font-family: "Cherry Bomb One", system-ui;
  font-size: 20px;
  color: #2D498E;
  text-decoration: none;

  background: #FFFFFF;
  padding: 10px 24px;
  border-radius: 30px;
margin-bottom: 12px;
  transition: all 0.3s ease;
}

.drink-btn:hover {
  background: #2D498E;
  color: #FFFFFF;
}

footer {
  height: 100px;
  background-color: #ACD7F2;
	font-family: "Cherry Bomb One", system-ui;
  font-size: 20px;
  color: #2D498E;
	text-decoration: none;
}


@media (max-width: 768px) {


   .hamburger {
    display: flex;
  }

  
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: #2D498E;
    flex-direction: column;
    width: 200px;
    padding: 10px 0;
    border-radius: 0 0 10px 10px;
  }

  .nav-links li {
    border: none;
    padding: 10px 20px;
  }


  
  .row {
    flex-direction: column;
  }

  .halfCol,
  .oneThirdCol {
    min-height: auto;
    padding: 40px 20px;
  }

  .halfCol img {
    width: 100%;
  }

  .hiring-text {
    font-size: 22px;
  }
}
  .cta-btn {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }


