/* Fonts */
@import url(https://fonts.googleapis.com/css?family=Raleway:300);
@import url(https://fonts.googleapis.com/css?family=Lusitana:400,700);

/* Helpers */
.custom-align-center {
    text-align: center;
}


/* Grid */
.custom-row {
    display: flex;
    flex-wrap: wrap;
    margin: -20px 0;
}
.custom-col {
    padding: 0 20px;
    box-sizing: border-box;
}
.custom-x-50 {
    flex: 0 0 50%;
}
.custom-x-100 {
    flex: 0 0 100%;
}


/* Move label when input is focused or has content */
.custom-input-text:focus + .custom-label,
.custom-input-text.custom-not-empty + .custom-label {
    transform: translateY(-24px);
    color: #f9c956;
}

/* Default label style */
.custom-label {
    transition: transform 0.2s ease-in-out, color 0.2s ease-in-out;
}


.custom-label.invalid {
    color: red;
}

.custom-input-text:focus + .custom-label.invalid {
    transform: translateY(-24px);
}

.custom-get-in-touch {
   max-width: 650px;
   margin: -238px auto;
   padding-bottom: 7%; /* Add margin for spacing */
  /* Add padding if necessary */
}

.custom-title {
    text-align: center;
    font-family: Raleway, sans-serif;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 36px;
    line-height: 48px;
    padding-bottom: 48px;
}

/* Form Fields */
.custom-contact-form {
    display: flex;
    flex-direction: column;
}
.custom-form-field {
    position: relative;
    margin: 32px 0;
}
.custom-input-text {
    display: block;
    width: 100%;
    height: 36px;
    border-width: 0 0 2px 0;
    border-color: #f9c956;
    font-family: Lusitana, serif;
    font-size: 18px;
    line-height: 26px;
    font-weight: 400;
    background-color: transparent;
}
.custom-input-text:focus {
    outline: none;
}
.custom-input-text:focus,
.custom-input-text.custom-not-empty {
    + .custom-label {
        transform: translateY(-24px);
    }
}
.custom-label {
    position: absolute;
    left: 20px;
    bottom: 11px;
    font-family: Lusitana, serif;
    font-size: 18px;
    line-height: 26px;
    font-weight: 400;
    color: #888;
    cursor: text;
    transition: transform 0.2s ease-in-out;
}


button {
    position: relative;
    display: inline-block;
    cursor: pointer;
    outline: none;
    border: 0;
    vertical-align: middle;
    text-decoration: none;
    font-size: inherit;
    font-family: inherit;
  }
  
  button.learn-more {
    font-weight: 600;
    color: var(--text);
    text-transform: uppercase;
    padding: 1.25em 2em;
    background: #f9c956;
    border: 2px solid #f9c956;
    border-radius: 0.75em;
    transform-style: preserve-3d;
    transition: transform 150ms cubic-bezier(0, 0, 0.58, 1), background 150ms cubic-bezier(0, 0, 0.58, 1);
  }
  
  button.learn-more::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    color: white;
    background: #f9c956;
    border-radius: inherit;
    box-shadow: 0 0 0 2px var(#f9c956), 0 0.625em 0 0 var(#f9c956);
    transform: translate3d(0, 0.75em, -1em);
    transition: transform 150ms cubic-bezier(0, 0, 0.58, 1), box-shadow 150ms cubic-bezier(0, 0, 0.58, 1);
  }
  
  button.learn-more:hover {
    background: #121212;
    transform: translate(0, 0.25em);
    color: white;
  
  }
  
  button.learn-more:hover::before {
    box-shadow: 0 0 0 2px var(#f9c956), 0 0.5em 0 0 var(#f9c956);
    transform: translate3d(0, 0.5em, -1em);
  }
  
  button.learn-more:active {
    background: var(#121212);
    transform: translate(0em, 0.75em);
    color: white;
  
  }
  
  button.learn-more:active::before {
    box-shadow: 0 0 0 2px var(#f9c956), 0 0 var(#f9c956);
    transform: translate3d(0, 0, -1em);
  }
  

.contact-info {
   display: flex;
   flex-direction: column;
   gap: 10px;
   font-family: Arial, sans-serif;
   font-size: 16px;
   color: #fff;
}

.location {
   font-weight: normal;
   text-align: left;
}

.details {
   display: flex;
   flex-direction: column;
   gap: 5px;
}

.label {
   font-weight: bold;
}

.info {
   font-weight: bold;
   color: #fff;
}

input{
    color: white;
}
