/* General Body Styling */
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-family: "DM Sans", sans-serif;
}

/* Header Styling */
header {
  display: flex;
  align-items: center;
  height: 140px;
  border-bottom: 5px solid #000;
  background-color: #FFFFFF;
  padding: 0 30px;
}

header img {
  max-width: 100%;
}

nav {
  margin-left: auto;
  font-family: "DM Sans", sans-serif;
  font-size: 18px;
  text-transform: uppercase;
}

nav a {
  margin-left: 30px;
  text-decoration: none;
  color: #000;
}

nav a:hover,
nav a.current {
  color: #E6D9D9;
}

/* Row Styling */
.container-fluid {
  padding: 0;
}

.row.g-0 {
  margin: 0;
  display: flex;
}

.col-md-3 {
  
  max-width: 50%;
  overflow: hidden;
  position: relative; /* Ensures the overlay is positioned relative to this container */
}

.col-md-3 img {
  width: 100%;
  height: auto;
  display: block;
}

.row {
  margin: 0; /* Removes any vertical margin between rows */
}

figure {
  margin: 0; /* Ensures no spacing between figures */
}

/* Overlay Styling */
.overlay {
  position: absolute; /* Positions the overlay within the .col-md-4 */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease;
  background-color: rgba(20, 20, 20, 0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  cursor: default; /* Default cursor when not hovered */
}

.col-md-3:hover .overlay {
  opacity: 0.95;
  pointer-events: auto;
  cursor: pointer; /* Show pointer cursor on hover */
}

.overlay .text {
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

/* Modal Styling */
.modal-right .modal-dialog {
  position: fixed;
  top: 0;
  right: 0;
  margin: 0;
  width: 100%;
  height: 100%;
  transform: translateX(100%);
  transition: transform 0.3s ease-out, opacity 0.3s linear;
}

.modal-right.fade .modal-dialog {
  transform: translateX(100%);
}

.modal-right.fade.show .modal-dialog {
  transform: translateX(0);
}

.modal-content {
  height: 100%;
  border-radius: 0;
  border: none;
}

.modal-header {
  border-bottom: 1px solid #EEEEEE;
  background-color: #FAFAFA;
  
}

.modal-body {
  padding: 15px;
  overflow-y: auto;
}

.modal-body p{
  margin-bottom: 70px;
  font-size: 20px;
  padding: 20px;
  font-size: 15px;
  color: #343434;
 
}

.modal-body ul{
  margin-bottom: 70px;
  font-size: 16px;
  padding: 20px;
  list-style-type: none;
  font-weight: 300;
  color: #A9A9A9;
}


.modal-body img {
  margin: 15px;
  width: 98%;
}

.col-12 img {
  Width: 70%;
 display: block;
  margin-left: auto;
  margin-right: auto;
}

.modal-title {
  font-weight: 1000;
  font-size: 30px;
  padding-left: 30px;
}



/* Zoom Modal Styling */
.zoom-modal {
  display: none; /* Hidden by default */
  position: fixed;
  z-index: 1055; /* Higher than Bootstrap modals */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9); /* Black background with transparency */
  overflow: hidden;
  text-align: center;
}

.zoom-modal-content {
  max-width: 90%;
  max-height: 90%;
  margin: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: grab; /* Indicate that the image is draggable */
  transition: transform 0.3s ease; /* Smooth zooming effect */
}

.zoom-modal-content:active {
  cursor: grabbing; /* Show grabbing cursor when dragging */
}

#contact_fields{
	margin-left: auto;
	margin-right: auto;
	width: 85%;
	margin-top: 100px;
	margin-bottom: 65px;

}

textarea:focus, input:focus{
    outline: 0 !important;
}

.form-control:focus {
  border-color: inherit;
  -webkit-box-shadow: none;
  box-shadow: none;
  background-color: white;
}

.form-control{
	background-color: #ededed;
	font-family: "chaparral-pro", "Georgia", serif;
	font-size: 1.0rem !important;
}

.input-group{
	margin-bottom: 20px;
	border-radius: 0px;

}

.input-group-addon, .form-control{
	height: 40px;
	border-radius: 0px;
	border-color: black;
}

.input-group-addon {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-family: "Arial", sans-serif;
    background-color: black;
    font-size: 0.7rem;
    font-weight: bold;
    letter-spacing: 1px;
    min-width: 75px;
    color: #a8a6a6;
}

.form-group{
	margin-bottom: 20px;
}

.btn-primary{
	font-family: "Arial", sans-serif;
	background-color: black;
	color: #a8a6a6;
	font-size: 0.9rem;
	font-weight: bold;
    letter-spacing: 1px;
	border: none;
	border-radius: 0px;
	height: 50px;
	width: 95px;
}

.btn-primary:hover{
	background-color: #121212;
}

#contact h1{
	font-family: "alternate-gothic-no-3-d", "Oswald", sans-serif;
	line-height: 80px;
	font-size: 5.4rem;
	color: black;
	padding-left: 0;
}

.alert{
	font-family: "alternate-gothic-no-3-d", "Oswald", sans-serif;
	font-size: 2rem !important;
	text-transform: uppercase;
	border: none;
	border-radius: 0px;
}

.alert-success{
	background-color: #3E89D4;
	color: #d6e8f9;
}


#success-msg{
	margin-bottom: 175px;
}

#success-msg h1{
	color: #3E89D4!important;
	text-transform: uppercase;
}

.zoom-modal .close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}

.zoom-modal .close:hover {
  color: #f00;
}

/* Fade and Zoom Effect */
@keyframes fadeInZoom {
  from {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0;
  }
  to {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
}


@media (max-width: 599px) {
  .logo {
    width: 70px; /* Smaller size for mobile */
     /* Center it */
  }
  
  nav {
    display: flex;
    align-items: center;
  }

  nav a {
    padding: 0.1px;
    text-align: right;
	font-size: 9px;
    width: 100%; /* Full width */
  }

  .modal-body p{
  margin-bottom: 70px;
  font-size: 12px;
  padding: 20px;
  color: #343434;
 
}

.modal-body ul{
  margin-bottom: 70px;
  font-size: 10px;
  padding: 12px;
  padding-top: 20px;
  list-style-type: none;
  font-weight: 300;
  color: #A9A9A9;
}

}

/* Medium screens: Slightly larger logo */
@media (min-width: 600px) and (max-width: 1023px) {
  .logo {
    width: 80%;
  }
  
  nav {
    flex-direction: row; /* Horizontal links */
    justify-content: space-between;
  }

  nav a {
    padding: 0 15px;
    width: auto; /* Reset width */
  }
}
 

/* Large screens: Default size */
@media (min-width: 1024px) {
  .logo {
    width: 200px;
  }
}

