* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto Mono', monospace;
  background: #f8f8f8;
  height: 100vh;
}

.noveum-container {
  height: 100vh;
  width: 100vw;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.noveum-milkshake-fullscreen {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.noveum-milkshake-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 0.6s ease;
}

.noveum-container:hover .noveum-milkshake-image {
  transform: scale(1.05);
}

.noveum-title-behind {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  font-size: clamp(5rem, 20vw, 16rem);
  font-weight: 900;
  color: #ff4500;
  line-height: 0.8;
  text-transform: uppercase;
  letter-spacing: -0.05em;
  font-family: 'Archivo Black', sans-serif;
  text-align: center;
  white-space: nowrap;
  opacity: 0.8;
}

.noveum-title-front {
  position: absolute;
  top: 65%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  font-size: clamp(5rem, 20vw, 20rem);
  font-weight: 900;
  color: #ff4500;
  line-height: 0.8;
  text-transform: uppercase;
  letter-spacing: -0.05em;
  font-family: 'Archivo Black', sans-serif;
  text-align: center;
  white-space: nowrap;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.noveum-overlay-effect {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(255, 69, 0, 0.05) 0%, transparent 50%);
  z-index: 2;
  transition: opacity 0.4s ease;
}

.noveum-container:hover .noveum-overlay-effect {
  opacity: 0.7;
}

.noveum-cta-button {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 15;
  background: #ff4500;
  color: white;
  padding: 16px 32px;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(255, 69, 0, 0.3);
}

.noveum-cta-button:hover {
  background: #e63900;
  transform: translateX(-50%) translateY(-3px);
  box-shadow: 0 8px 30px rgba(255, 69, 0, 0.4);
}

.noveum-cta-button:active {
  transform: translateX(-50%) translateY(-1px);
}

@media (max-width: 768px) {
  .noveum-container {
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 40px;
    height: 70svh;
  }

  .noveum-milkshake-fullscreen {
    position: relative;
    height: calc(60vh - 120px);
    margin-top: 60px;
  }

  .noveum-title-behind,
  .noveum-title-front {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    z-index: 15;
    font-size: clamp(3rem, 12vw, 8rem);
    margin-bottom: 5px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  }

  .noveum-title-behind {
    margin-bottom: -5px;
  }

  .noveum-cta-button {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    margin-top: 30px;
    font-size: 1rem;
    padding: 14px 28px;
  }

  .noveum-cta-button:hover {
    transform: none;
    background: #ff4500;
  }

  .noveum-cta-button:active {
    transform: none;
  }
}

@media (max-width: 480px) {
  .noveum-container {
    padding-top: 20px;
  }

  .noveum-milkshake-fullscreen {
    height: calc(50vh - 100px);
    margin-top: -40px;
  }

  .noveum-title-behind,
  .noveum-title-front {
    font-size: clamp(2.5rem, 10vw, 6rem);
  }

  .noveum-cta-button {
    margin-top: 20px;
    font-size: 0.9rem;
    padding: 12px 24px;
  }
}


/* Burguer section */


.noveum-hero-title {
  text-align: center;
  margin-bottom: 40px;
}

.noveum-main-heading {
  padding-top: 24px;
  font-size: clamp(3rem, 8vw, 8rem);
  font-weight: 900;
  color: #2c3e2d;
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  font-family: 'Archivo Black', sans-serif;
  margin-bottom: 30px;
}

.noveum-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: #2c3e2d;
  font-weight: 400;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.4;
  font-family: 'Roboto Mono', monospace;
}

.noveum-content-layout {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 60px;
}

.noveum-info-section {
  display: flex;
  flex-direction: column;
  gap: 40px;
  text-align: center;
}

.noveum-hours-section {
  text-align: center;
}

.noveum-contact-section {
  text-align: center;
}

.noveum-section-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 900;
  color: #2c3e2d;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-family: 'Archivo Black', sans-serif;
}

.noveum-hours-list {
  list-style: none;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: #2c3e2d;
  line-height: 1.6;
  font-family: 'Roboto Mono', monospace;
}

.noveum-contact-info {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: #2c3e2d;
  line-height: 1.8;
  font-family: 'Roboto Mono', monospace;
}

.location-link {
  color: #2c3e2d;
  text-decoration: none;
  transition: all 0.3s ease;
  border-bottom: 1px solid transparent;
}

.location-link:hover {
  color: #ff4500;
  border-bottom: 1px solid #ff4500;
}

.noveum-burger-showcase {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.noveum-burger-placeholder {
  width: 400px;
  height: 400px;
  background: #ddd;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #666;
  border: 3px dashed #999;
}

.noveum-menu-badge {
  position: absolute;
  top: -20px;
  right: -30px;
  background: #ff6b35;
  color: white;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 8px solid #ff6b35;
  box-shadow: 0 4px 20px rgba(255, 107, 53, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}

.noveum-menu-badge:hover {
  transform: rotate(10deg) scale(1.1);
  box-shadow: 0 8px 30px rgba(255, 107, 53, 0.4);
}

.noveum-badge-text {
  text-align: center;
  line-height: 1.2;
  font-family: 'Roboto Mono', monospace;
}

.noveum-badge-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.noveum-burger-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

@media (max-width: 968px) {
  .noveum-content-layout {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .noveum-hours-section,
  .noveum-contact-section {
    text-align: center;
  }

  .noveum-burger-showcase {
    order: -1;
  }

  .noveum-burger-placeholder {
    width: 600px;
    height: 600px;
  }

  .noveum-menu-badge {
    top: -15px;
    right: -25px;
    width: 100px;
    height: 100px;
    font-size: 0.8rem;
  }
}

@media (max-width: 768px) {
  body {
    padding: 20px 0;
  }

  .noveum-burger-container {
    min-height: auto;
    padding: 20px 15px;
  }

  .noveum-content-layout {
    gap: 30px;
    margin-top: 40px;
  }

  .noveum-burger-placeholder {
    width: 250px;
    height: 250px;
    font-size: 1rem;
  }

  .noveum-menu-badge {
    width: 80px;
    height: 80px;
    font-size: 0.7rem;
    top: -10px;
    right: -20px;
  }

  .noveum-info-section {
    gap: 30px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .noveum-burger-placeholder {
    width: 200px;
    height: 200px;
  }

  .noveum-menu-badge {
    width: 70px;
    height: 70px;
    font-size: 0.6rem;
    top: -5px;
    right: -15px;
  }
}

/* About Section */
.noveum-about-container {
  min-height: 100vh;
  background: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 0;
}

.noveum-about-content {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 0 40px;
}

.noveum-about-text {
  color: #ffffff;
}

.noveum-about-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 30px;
  font-family: 'Archivo Black', sans-serif;
  letter-spacing: -0.02em;
}

.noveum-about-description {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: #ffffff;
  line-height: 1.8;
  margin-bottom: 20px;
  opacity: 0.9;
  font-family: 'Roboto Mono', monospace;
}

.noveum-about-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.noveum-about-img {
  width: 100%;
  height: auto;
  max-width: 600px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.noveum-about-img:hover {
  transform: scale(1.02);
}

/* Mobile responsive styles for about section */
@media (max-width: 968px) {
  .noveum-about-content {
    grid-template-columns: 1fr;
    gap: 60px;
    padding: 0 30px;
  }

  .noveum-about-text {
    order: 2;
    text-align: center;
  }

  .noveum-about-image {
    order: 1;
  }

  .noveum-about-img {
    max-width: 500px;
  }
}

@media (max-width: 768px) {
  .noveum-about-container {
    padding: 60px 0;
  }

  .noveum-about-content {
    gap: 40px;
    padding: 0 20px;
  }

  .noveum-about-title {
    margin-bottom: 25px;
  }

  .noveum-about-description {
    margin-bottom: 15px;
  }

  .noveum-about-img {
    max-width: 400px;
  }
}

@media (max-width: 480px) {
  .noveum-about-container {
    padding: 40px 0;
  }

  .noveum-about-content {
    padding: 0 15px;
    gap: 30px;
  }

  .noveum-about-img {
    max-width: 300px;
  }
}

button {
  font-size: 1.4em;
  padding: 0.6em 0.8em;
  border-radius: 0.5em;
  border: none;
  background-color: #000;
  color: #fff;
  cursor: pointer;
  box-shadow: 2px 2px 3px #000000b4;
}

.noveum-whatsapp-button {
  position: relative;
  padding: 3px;
  background: linear-gradient(90deg, #03a9f4, #f441a5);
  border-radius: 0.9em;
  transition: all 0.4s ease;
}

.noveum-whatsapp-button::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  border-radius: 0.9em;
  z-index: -10;
  filter: blur(0);
  transition: filter 0.4s ease;
}

.noveum-whatsapp-button:hover::before {
  background: linear-gradient(90deg, #03a9f4, #f441a5);
  filter: blur(1.2em);
}

.noveum-whatsapp-button:active::before {
  filter: blur(0.2em);
}

/* Footer Styles */
.noveum-footer {
  background: #000000 !important;
  color: #ffffff;
  padding: 60px 0 30px;
}

.noveum-footer .footer-wrapper {
  max-width: 1400px;
  margin: 0 auto;
}

.noveum-footer .footer-top-wrapper {
  margin-bottom: 40px;
}

.noveum-footer-title {
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 900;
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-family: 'Archivo Black', sans-serif;
  letter-spacing: -0.02em;
}

/* WhatsApp Section */
.noveum-whatsapp-section {
  text-align: center;
  padding: 20px;
}

.noveum-whatsapp-button {
  position: relative;
  padding: 3px;
  background: linear-gradient(90deg, #25D366, #128C7E);
  border-radius: 12px;
  transition: all 0.4s ease;
  display: inline-block;
}

.noveum-whatsapp-button::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  border-radius: 12px;
  z-index: -10;
  filter: blur(0);
  transition: filter 0.4s ease;
}

.noveum-whatsapp-button:hover::before {
  background: linear-gradient(90deg, #25D366, #128C7E);
  filter: blur(15px);
}

.noveum-whatsapp-button button {
  background: #000000;
  color: #ffffff;
  border: none;
  padding: 15px 30px;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  justify-content: center;
  font-family: 'Roboto Mono', monospace;
}

.noveum-whatsapp-button button:hover {
  background: #1a1a1a;
  transform: translateY(-2px);
}

.whatsapp-icon {
  font-size: 1.3rem;
}

/* Instagram Section */
.noveum-instagram-section {
  text-align: center;
  padding: 20px;
}

.noveum-instagram-button {
  position: relative;
  padding: 3px;
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  border-radius: 12px;
  transition: all 0.4s ease;
  display: inline-block;
}

.noveum-instagram-button::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  border-radius: 12px;
  z-index: -10;
  filter: blur(0);
  transition: filter 0.4s ease;
}

.noveum-instagram-button:hover::before {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  filter: blur(15px);
}

.noveum-instagram-button a {
  background: #000000;
  color: #ffffff;
  text-decoration: none;
  padding: 15px 30px;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  font-family: 'Roboto Mono', monospace;
}

.noveum-instagram-button a:hover {
  background: #1a1a1a;
  transform: translateY(-2px);
}

.instagram-icon {
  font-size: 1.3rem;
}

/* Locations Section */
.noveum-locations-section {
  text-align: center;
  padding: 20px;
}

.noveum-locations {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.noveum-location {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.noveum-location:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(5px);
}

.location-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.location-info {
  text-align: left;
  flex: 1;
}

.location-info h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 5px;
  text-transform: uppercase;
  font-family: 'Archivo Black', sans-serif;
}

.location-info p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  line-height: 1.4;
  font-family: 'Roboto Mono', monospace;
}

/* Footer Bottom */
.noveum-footer .footer-bottom-wrapper {
  padding-top: 20px;
}

.noveum-footer .footer-bottom-wrapper .text-wrapper {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  font-family: 'Roboto Mono', monospace;
}

.noveum-footer .footer-bottom-wrapper .text-wrapper.align-right {
  text-align: right;
}

.noveum-footer .footer-bottom-wrapper .c-col-6:first-child {
  text-align: left;
}

.noveum-footer .footer-bottom-wrapper .c-col-6:last-child {
  text-align: right;
}

.salt-and-mango-logo {
  width: 100px;
  height: 100px;
  object-fit: contain;
}

.salt-and-mango-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
  justify-content: flex-end;
  font-family: 'Roboto Mono', monospace;
}

.salt-and-mango-link:hover {
  color: rgba(255, 255, 255, 0.9);
}

/* Mobile Responsive Footer */
@media (max-width: 768px) {
  .noveum-footer {
    padding: 40px 0 20px;
  }

  .noveum-footer .footer-top-wrapper {
    margin-bottom: 30px;
  }

  .noveum-whatsapp-section,
  .noveum-instagram-section,
  .noveum-locations-section {
    padding: 15px;
    margin-bottom: 20px;
  }

  .noveum-whatsapp-button button,
  .noveum-instagram-button a {
    padding: 12px 25px;
    font-size: 1rem;
  }

  .noveum-location {
    padding: 12px;
    gap: 12px;
  }

  .location-info h4 {
    font-size: 1rem;
  }

  .location-info p {
    font-size: 0.9rem;
  }

  .noveum-footer .footer-bottom-wrapper {
    text-align: center;
    flex-direction: column;
    gap: 15px;
  }

  .noveum-footer .footer-bottom-wrapper .c-col-6 {
    margin-bottom: 10px;
    width: 100%;
    text-align: center !important;
  }

  .noveum-footer .footer-bottom-wrapper .text-wrapper.align-right {
    text-align: center;
  }

  .salt-and-mango-link {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .noveum-footer {
    padding: 30px 0 15px;
  }

  .noveum-whatsapp-section,
  .noveum-instagram-section,
  .noveum-locations-section {
    padding: 10px;
  }

  .noveum-whatsapp-button button,
  .noveum-instagram-button a {
    padding: 10px 20px;
    font-size: 0.95rem;
  }

  .noveum-location {
    padding: 10px;
    gap: 10px;
  }

  .location-icon {
    font-size: 1.3rem;
  }

  .location-info h4 {
    font-size: 0.95rem;
  }

  .location-info p {
    font-size: 0.85rem;
  }
}

.noveum-footer-text {
  font-size: 0.7rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
}

/* First H1 - Noveum Title */
.project-title h1 {
  font-family: 'Archivo Black', sans-serif !important;
}

/* Mobile responsive styles for first section */