/* General Styles */
@font-face {
    font-family: 'Avenir';
    src: url('fonts/AvenirLTProLight.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Avenir';
    src: url('fonts/AvenirLTProHeavy.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Avenir';
    src: url('fonts/AvenirLTProLightOblique.otf') format('opentype');
    font-weight: normal;
    font-style: italic;
}


body {
    font-family: 'Avenir', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #ffffff; /* White background */
    color: #333;
  }
  
  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
	position: sticky;
	top: 0;
	z-index: 10;
    padding: 20px ;
    background-color: #ffffff;
	border:1px  solid #ddd;
    
  }
  
  .logo img {
    margin-left: 50px;
    height: 40px;
  }
  .auth-buttons{
	display: flex;
  }
  .auth-buttons .btn {
    margin-left: 10px;
    padding: 10px 20px;
   /* border: none;*/
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
  }
  
  .login-btn {
    background-color: white;
    color: #03012b;
	font-weight: 600;
	padding: 10px;
	border: 2px solid #010747;
	
  }

  
  .login-btn:hover {
    background-color: #010747;
    color: #ffffff;
  }
  
  .staff-login{
    
    background-color: white;
    color: #010747;
    font-weight: 700;
    padding: 10px;
	font-size: 16px;
	border: none;
	
	transition: all 0.3s ease;

  }
  .staff-login:hover{
	transform: scale(1.03);
	color: #9b3118;
  }
  
  .hero {
    background: linear-gradient(135deg, #0a1f44, rgb(0, 0, 64)); /* Dark blue gradient */
    color: #fff;
    padding: 200px 10%;
	position: relative; /* Needed for absolute positioning of children */
	height: 500px; /* Adjust as needed */
	overflow: hidden; 
    text-align: center;
  }
  .hero video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover; /* Maintain aspect ratio and cover the container */
    z-index: 1; /* Place video behind the overlay and text */
  }

  .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6); /* Adjust color and opacity for contrast */
    z-index: 2; /* Place overlay above the video */
  }
  .hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
	width: 70%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white; /* Adjust text color for visibility */
    z-index: 3; /* Place text above the overlay */
  }

  .hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
  }
  
  .hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
  }
  
  .cta-btn {
    background-color: #9b3118; /* Accent color */
    color: #fff;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .cta-btn:hover {
    background-color: #9b3118; /* Darker shade for hover */
  }
  
  .how-it-works {
    padding: 80px 3%;
    text-align: center;
    background-color: #ffffff; /* White background */
  }
  
  .how-it-works h2 {
    font-size: 2rem;
    margin-bottom: 40px;
    color: #0a1f44; /* Very dark blue */
  }
  .how-it-works #start-note{
    padding: 10px;
    font-size: 1.2rem;
    color: #0a1f44; /* Very dark blue */
  }
  .steps {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
  }
  
  .step {
    flex: 1;
    margin: 20px;
    max-width: 300px;
    background-color: #f9f9f9; /* Light gray background for steps */
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
  }
  
  .step:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
  }
  
  .step img {
    height: 60px;
    margin-bottom: 20px;
  }
  
  .step h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #0a1f44; /* Very dark blue */
  }
  
  .step p {
    font-size: 1rem;
    color: #666;
  }
  
  footer {
    background-color: rgb(0, 0, 64); /* Very dark blue */
    color: #fff;
    padding: 40px 10%;
    text-align: center;
  }
  
  .footer-links a {
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
    transition: all 0.3s ease;
  }
  
  .footer-links a:hover {
    color: #9b3118; /* Accent color */
  }
  .giftyfy-logo{
  max-width: 60%;
  margin: 2px 50px
  }
  .contact-info {
    margin-top: 20px;
    font-size: 0.9rem;
  }
  /* Generic Modal Styling */
  .vendor-modal, .login-modal {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
	  z-index: 12;
      background: rgba(0, 0, 0, 0.5);
      justify-content: center;
      align-items: center;
  }

  .modal-content {
	background: white;
   padding: 20px;
   border-radius: 10px;
   box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
   text-align: center;
   position: relative;
  }
  .modal-content img {
      width: 140px;
      margin-bottom: 20px;
  	align-self: center;
  }
  .modal-content h3{
  	text-align: left;
  	color: rgb(0, 0, 64);
      
  }
  .modal-content p{
  	text-align: left;
  	width: 320px;
  	font-size: 14px;
  	margin-bottom: 40px;
  }
  .input-container {
      position: relative;
      margin: 20px 0;
  }

  /* Close button */
  .close {
      position: absolute;
      right: 15px;
      top: 10px;
      font-size: 24px;
      cursor: pointer;
  }

  /* Form layout */
  .form-group {
	position: relative;
	margin: 20px 0;
  }

  .form-group input {
      width: 320px;
      padding: 16px;
      border: 1px solid #ccc;
  	
      border-radius: 4px;
      outline: none;
      font-size: 16px;
      transition: all 0.3s;
  }
  .form-group label {
      position: absolute;
      top: 50%;
      left: 10px;
      transform: translateY(-50%);
      font-size: 16px;
      color: #777;
      transition: all 0.3s;
      pointer-events: none;
      background: white;
      padding: 0 5px;
  }
  .form-group input:focus{
  	border: 2px solid rgb(0, 0, 64);
  }
  .form-group input:focus + label,
  .form-group input:not(:placeholder-shown) + label {
      top: 0;
      font-size: 12px;
      color: rgb(0, 0, 64);
  	
  }

  /* Buttons */
  .forgot-password {
	     text-align: right;
	     font-size: 14px;
	     color: rgb(0, 0, 64);
	     cursor: pointer;
	     margin-bottom: 20px;
	 }
  .confirm-btn {
	width: 100%;
    padding: 16px;
    background: rgb(0, 0, 64);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
	font-weight: bold;
    transition: 0.3s;
	box-shadow: 0 0 10px 0px rgba(0, 0, 0, 0.6);
  }

  .confirm-btn:hover {
      background: rgb(0, 0, 160);
  }

  .cancel-btn {
      background: rgb(0, 0, 64);
      color: white;
  }

  .cancel-btn:hover {
      background: rgb(0, 0, 160);
  }
