
@font-face {
  font-family: 'Heavitas';
  src: url('../fonts/heavitas.ttf') format('truetype'); /* Adjust the path based on your structure */
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Helvetica';
  src: url('../fonts/Helvetica.ttf') format('truetype'); /* Adjust the path based on your structure */
  font-weight: normal;
  font-style: normal;
}


@font-face {
  font-family:"motor";
  src:url("https://use.typekit.net/af/007e89/00000000000000007735a0b1/31/l?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n4&v=3") format("woff2"),url("https://use.typekit.net/af/007e89/00000000000000007735a0b1/31/d?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n4&v=3") format("woff"),url("https://use.typekit.net/af/007e89/00000000000000007735a0b1/31/a?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n4&v=3") format("opentype");
  font-display:auto;font-style:normal;font-weight:400;font-stretch:normal;
  }
body{
  background-color: #ffffff;
  font-family: motor, monospace;
  
  font-style: normal;
  font-weight: 400;
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
  font-family: motor, monospace;
  font-style: normal;
  font-weight: 400;
  position: relative;
}


.nav-logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-logo img {
  height: 150px;
  width: auto;
  margin-top: 20px;
}

.main-section{
  display: flex;
  flex-direction: column; /* Stack items vertically */
  align-items: center; /* Center horizontally */
  justify-content: center; /* Center vertically if needed */
  text-align: center; /* Center text within the .main-section-address */
  gap: 20px; /* Add some space between the address and image if desired */
  padding: 20px; /* Optional: add padding around the section */
  margin-top: 100px;
  
}

@media (max-width: 600px) {
  nav a {
      font-size: 1.1rem;
  }

  .nav-logo img {
      max-height: 115px;
      margin-top: 20px;
  }
}



/* BUTTON STYLING */

/* From Uiverse.io by cssbuttons-io */ 
button {
  appearance: button;
  background-color: #0a0004;
  border: solid transparent;
  border-radius: 16px;
  border-width: 0 0 4px;
  box-sizing: border-box;
  color: #FFFFFF;
  cursor: pointer;
  display: inline-block;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .8px;
  line-height: 20px;
  margin: 0;
  outline: none;
  overflow: visible;
  padding: 13px 19px;
  text-align: center;
  text-transform: uppercase;
  touch-action: manipulation;
  transform: translateZ(0);
  transition: filter .2s;
  user-select: none;
  -webkit-user-select: none;
  vertical-align: middle;
  white-space: nowrap;
 }
 
 button:after {
  background-clip: padding-box;
  background-color: #ffffff;
  border: solid transparent;
  border-radius: 16px;
  border-width: 0 0 4px;
  bottom: -4px;
  content: "";
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
 }

 
 button:main, button:focus {
  user-select: auto;
 }
 
 button:hover:not(:disabled) {
  filter: brightness(1.1);
 }
 
 button:disabled {
  cursor: auto;
 }
 
 button:active:after {
  border-width: 0 0 0px;
 }
 
 button:active {
  padding-bottom: 10px;
 }


 /* SOCIAL MEDIA STYLING */



.wrapper {
  display: inline-flex;
  list-style: none;
  
  width: 100%;
  
  font-family: "Poppins", sans-serif;
  justify-content: center;
}

.wrapper .icon {
  position: relative;
  background: #fff;
  border-radius: 50%;
  margin: 10px;
  width: 50px;
  height: 50px;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  /* box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1); */
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wrapper .tooltip {
  position: absolute;
  top: 0;
  font-size: 14px;
  background: #fff;
  color: #fff;
  padding: 5px 8px;
  border-radius: 5px;
  /* box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1); */
  opacity: 0;
  pointer-events: none;
  
}


.wrapper .icon:hover .tooltip {
  top: -45px;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.wrapper .icon:hover span,
.wrapper .icon:hover .tooltip {
  text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.1);
}

.wrapper .yelp:hover,
.wrapper .yelp:hover .tooltip,
.wrapper .yelp:hover .tooltip::before {
  background: #b3282d;
  color: #fff;
}

.wrapper .twitter:hover,
.wrapper .twitter:hover .tooltip,
.wrapper .twitter:hover .tooltip::before {
  background: #1da1f2;
  color: #fff;
}

.wrapper .instagram:hover,
.wrapper .instagram:hover .tooltip,
.wrapper .instagram:hover .tooltip::before {
  background: #fe1263;
  color: #fff;
}


.wrapper .icon a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  text-decoration: none;
}


/* ADDRESS STYLING */

/* Base style for the link */
.address-link {
  color: #000000; /* Default link color */
  text-decoration: none !important; /* Remove underline */
  font-weight: bold; /* Make the text bold */
}

/* Style for unvisited links */
.address-link:link {
  color: #010008;
}

/* Style for visited links */
.address-link:visited {
  color: #000000;
}

/* Style when the link is hovered over */
.address-link:hover {
  color: #00000065;
  text-decoration: none; /* Underline on hover */
}

/* Style when the link is active (being clicked) */
.address-link:active {
  color: #000000;
}

.test-logo {
  display: flex;
  justify-content: center; /* Centers horizontally */
  align-items: center; /* Centers vertically */
  padding: 20px;
  margin-top: 50px;
}

.test-logo img {
  max-width: 100%; /* Ensures the image width adjusts based on its container */
  height: auto; /* Maintains the aspect ratio */
  
  
}

.alt-logo{
  display: flex;
  justify-content: center; /* Centers horizontally */
  align-items: center; /* Centers vertically */
}
.alt-logo img{
  max-width: 100%; /* Ensures the image width adjusts based on its container */
  
}


/* Base Navbar Styles */
.navbar {
/* display: flex;
justify-content: space-between;
align-items: center;
padding: 10px 20px;
background-color: #fff;
border-bottom: 1px solid #ddd; */
display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
  font-family: motor, monospace;
  font-style: normal;
  font-weight: 200;
  position: relative;
  z-index: 10000;
}


.nav-links {
  display: flex;
  align-items: center;
  

}

.nav-links a {
color: rgb(0, 0, 0);
  text-decoration: none;
  
  position: relative; /* Needed for the ::after pseudo-element */
  display: inline-block; /* Ensure the underline applies only to the text */
  padding: 0; /* Remove padding from the link */
  margin: 14px 20px; /* Use margin for spacing instead of padding */
}

.social-links a {
color: rgb(0, 0, 0);

}

.social-links{
  align-items: center;
  justify-content: flex-end !important; /* Push the social links to the right */
  margin-left: auto !important;
}

.social-links ul{
display: flex;
  list-style: none;
  padding: 0;
  margin: 0;

}

/* Hamburger Menu Styles */
.hamburger {
display: none;
flex-direction: column;
gap: 5px;
border: none;
background: none;
cursor: pointer;
position: absolute;
background-color: #000000; /* Button background color */
  color: rgba(255, 255, 255, 0); /* Text color */
right: 20px; /* Position the button to the right */
top: 20px; /* Adjust vertical alignment */

  

}



.hamburger span {
width: 25px;
height: 3px;
background-color: black;
border-radius: 2px;
transition: all 0.3s ease;
}



/* Phone number button styling */

#call-button {
  background-color: white; /* White background */
  color: black; /* Black text */
  
  padding: 10px 20px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}

#call-button:hover {
  border: 2px solid rgb(134, 130, 130); /* Black border */
  border-radius: 5px; /* Rounded edges */
  
  color: rgb(0, 0, 0); /* White text on hover */
}

#call-button:active {
  /* Slightly dimmed background when clicked */
  color: rgba(0, 0, 0, 0.562);
  transform: scale(0.98); /* Slight shrink effect */
}


.vertical-gallery {
  display: flex;
  flex-direction: column; /* Ensures images stack vertically */
    align-items: center; /* Centers images */
    
    
    padding: 10px;
    gap: 20px;
  min-height: 100vh;
  padding-top:75px;
}

/* Each image section takes up most of the viewport */


/* Styling for Images */
.gallery-item img {
  width: 100%;  /* Adjusts width to fit the container */
  height: 600px; /* Fixed height */
  object-fit: cover; /* Ensures images maintain aspect ratio and fill the space */
  display: block; /* Removes bottom spacing from inline images */
  margin: auto; /* Centers images */
}


/* footer styling */

footer {
  margin-top:200px;
  background-color: #ffffff
  ; /* Dark background for contrast */
  color: rgb(0, 0, 0);
  text-align: center;
  padding: 30px 0;
  /* font-family: motor, monospace; */
  font-family: motor;
  position:relative;
  font-weight: 200;

  
}

.footer-hours {
  display: flex;
  flex-direction: column;
  align-items: center; /* centers the entire block */
  text-align: left;    /* keeps day and time left-aligned inside the rows */
  margin: 0 auto;      /* horizontally centers the container */
}

.footer-hours .hour-row {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 320px; /* control overall width */
  padding: 2px 0;
}



.footer-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.footer-info, .footer-hours, .footer-links, .footer-social {
  flex: 1;
  margin: 10px;
  min-width: 200px;
}

.footer-info h2 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #000000; /* Gold color for elegance */
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin: 5px 0;
}

.footer-links a, .footer-social a {
  color: rgb(0, 0, 0);
  text-decoration: none;
}

.footer-links a:hover, .footer-social a:hover {
  text-decoration: underline;
}

.footer-copyright {
  margin-top: 20px;
  font-size: 14px;
  
  padding-top: 10px;
}


.gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 columns */
    grid-template-rows: repeat(2, auto); /* 2 rows */
    gap: 10px; /* Space between items */
    max-width: 900px; /* Adjust as needed */
    margin: auto; /* Center the gallery */
}

.gallery-items img {
    width: 100%;
    height: auto;
    display: block;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .footer-container {
      flex-direction: column;
      text-align: center;
  }

  .footer-info, .footer-hours, .footer-links, .footer-social {
      margin-bottom: 20px;
  }
  .footer-links{
    display: none;
  }

  .gallery-item img{
    overflow-x: hidden; /* Hides horizontal overflow */
    overflow-y: hidden;
  }
}





/* Mobile Adjustments */
@media screen and (max-width: 768px) {
  
  .gallery-container img {
    width: 95vw; /* Slightly smaller width for better fit */
    max-height: 85vh; /* Reduce height slightly */
    
  }
  .vertical-gallery{
    margin-top:50px !important;
  }

 footer{
    margin-top: 100px !important;
  }

  .footer-container{
    margin-top: 0px !important;
  }

  .gallery-item img {
   
    height: 450px; /* Fixed height */
    
  }
}




/* Mobile Styles */
@media screen and (max-width: 768px) {
.nav-links {
    display: none; /* Hide the menu by default */
    flex-direction: column;
    position: absolute;
    top: 70px;
    right: 20px;
    background-color: white;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.social-links{
  display:none;
}

.nav-links.show {
    display: flex; /* Show menu when active */
    margin-top: 40px;
}

.nav-links a {
  margin-bottom: 10px;
  text-align: right; /* Align text in the dropdown to the right */
}

.nav-logo{


display: flex;
justify-content: center; /* Centers horizontally */
align-items: center;
padding-top: 50px;
padding-right: 50px;
margin-top: 40px;



}



.hamburger {
    display: flex; /* Show hamburger on mobile */
    background-color:white;
    color:black;
    margin-top: 15px;
}

.hamburger:after {
    
    background-color:rgb(255, 255, 255);
    color:black;
    margin-top: 40px;
}




.test-logo {
  display: flex;
  justify-content: center; /* Centers horizontally */
  align-items: center; /* Centers vertically */
  padding-top: 75px;
  
}

.test-logo img {
  max-width: 100%; /* Ensures the image width adjusts based on its container */
   /* Maintains the aspect ratio */
  object-fit: contain; /* Ensures the image doesn't stretch */
  
  height: 50% !important; 
}

.homepage-image{
display: flex;
justify-content: center; /* Centers horizontally */
align-items: center; /* Centers vertically */
}

.homepage-image img {
max-width: 100%; /* Ensures the image width adjusts based on its container */
 /* Maintains the aspect ratio */
object-fit: contain; /* Ensures the image doesn't stretch */

height: 50% !important; 
}

}














/* the middle logo in the navbar between these ranges covers the left section of the navbar */
@media screen and (min-width: 769px) and (max-width: 919px) {
/* Your styles go here */
.nav-logo img{
  padding-left: 275px;
  height: 100px !important;
  width: auto;
  
}


footer{
  margin-top: 0px !important;
}

.footer-container{
  margin-top: 0px !important;
}

}

@media screen and (min-width: 920px) and (max-width: 1279px) {
/* Your styles go here */
.nav-logo{
  padding-left: 150px;
}

.nav-logo img{
  padding-left: 150px;
  height: 150px !important;
  width: auto;
  
}



.gallery-container img {
  width: 95vw; /* Slightly smaller width for better fit */
  max-height: 85vh; /* Reduce height slightly */
  
}
.vertical-gallery{
  margin-top:50px !important;
}

footer{
  margin-top: 600px !important;
}

}

@media screen and (min-width: 1280px) and (max-width: 1680px) {
/* Your styles go here */
.nav-logo{
  padding-left: 150px;
}

.nav-logo img{
  padding-left: 150px;
  height: 150px !important;
  width: auto;
  
}

}
@media screen and (min-width: 1921px) {
    
    .test-logo img{
    width: 55%;  /* Adjusts width to fit the container */
  height: 600px; /* Fixed height */
  object-fit:fill;/* Ensures images maintain aspect ratio and fill the space */
  display: block; /* Removes bottom spacing from inline images */
  margin: auto; /* Centers images */
}

body{
    font-size: 1.1rem;
}

    

}



@media screen and (max-width: 400px) {
    
    .nav-logo img {
      max-height: 105px;
      max-width:200px;
      margin-top: 25px;
  }
  
  .gallery-item img {
  width: 80%;  /* Adjusts width to fit the container */
  height: 285px; /* Fixed height */
  
}

.hamburger {
    display: flex; /* Show hamburger on mobile */
    background-color:white;
    color:black;
    margin-top: 15px;
}

}

@media screen and (max-width: 340px) {
    
    .nav-logo img {
      max-height: 85px;
      max-width:200px;
      margin-top: 0px;
  }
  
  .gallery-item img {
  width: 80%;  /* Adjusts width to fit the container */
  height: 285px; /* Fixed height */
  
}

.hamburger {
    display: flex; /* Show hamburger on mobile */
    background-color:white;
    color:black;
    margin-top: 15px;
}

}