/* Fonts */
.font-neue-haas-grotesk-55-roman {
  font-family: "NeueHaasGroteskTextPro", Helvetica, Arial, sans-serif;
  font-style: normal;
  font-stretch: normal;
  font-weight: 400;
  color: #24272a;
}

.font-neue-haas-grotesk-56-italian {

  font-family: "NeueHaasGroteskTextPro", Helvetica, Arial, sans-serif;
  font-style: italic;
  font-stretch: normal;
  font-weight: 400;
  color: #24272a;
}

.font-neue-haas-grotesk-65-medium {

  font-family: "NeueHaasGroteskTextPro", Helvetica, Arial, sans-serif;
  font-style: normal;
  font-stretch: normal;
  font-weight: 500;
  color: #24272a;
}

.font-neue-haas-grotesk-66-medium-italic {

  font-family: "NeueHaasGroteskTextPro", Helvetica, Arial, sans-serif;
  font-style: italic;
  font-stretch: normal;
  font-weight: 500;
  color: #24272a;
}

/* Title */

.title {
  font-family: "NeueHaasGroteskTextPro", Helvetica, Arial, sans-serif;
  font-style: normal;
  font-stretch: normal;
  font-weight: 500;
  font-size: 36px;
  line-height: 1.3;
  color: #24272a;
  margin-top: 60px;
}

/* Background image/logo */

.cover-photo {
    background-image: url("../img/background.jpg");
    background-size: cover;
    background-position: center;
}

.logo {
    display: block;
    width: 260px;
}

.logo img {
    max-width: 100%;
    height: auto;
}

.action {
    margin-top: 2.5rem;
}

/* GO button styling */
#go.btn-primary {
    background-color: #ffffff;
    border: 1px solid #24272a;
    color: #24272a;
    border-radius: 2px;
    line-height: 2;
    transition: all 0.2s ease;
    font-family: "NeueHaasGroteskTextPro", Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-stretch: normal;
    font-size: 16px;
}

#go.btn-primary:not(:disabled):hover {
    background-color: #24272a;
    color: #ffffff;
    border-color: #24272a;
    cursor: pointer;
}

/* Disabled state - clear visual feedback */
#go.btn-primary:disabled,
#go.btn-primary:disabled:hover {
    background-color: #ffffff;
    border-color: #cccccc;
    color: #999999;
    cursor: not-allowed;
    opacity: 0.7;
}

#go.btn-primary:disabled:hover {
    background-color: #f8f8f8;
}

/* App store buttons */
.btn-app {
    border: 1px solid #636363;
    color: #fff;
    background-color: #636363;
    margin-right: 15px;
    margin-bottom: 15px;
    padding: 10px 15px;
    width: 250px;
    display: inline-block;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    border-radius: 2px;
    font-family: "NeueHaasGroteskTextPro", Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-stretch: normal;
    font-size: 16px;
}

.btn-app:hover {
    background-color: #777777;
    border-color: #888888;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-app:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(99, 99, 99, 0.4);
}

.btn-app:active {
    transform: scale(0.98);
    background-color: #555555;
}

/* Custom select styling */
select {
    width: 100%;
    padding: 10px 14px;
    font-size: 16px;
    border: 1px solid #24272a !important;
    border-radius: 2px;
    background-color: #fff;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.select-wrapper {
    position: relative;
    margin-bottom: 15px;
}

.select-wrapper::after {
    content: "▾";
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #666;
    font-size: 14px;
}

.form-control {
    height: 42px;
    padding-top: 10px !important;
    padding-bottom: 6px !important;
    line-height: 1.3;
    font-family: "NeueHaasGroteskTextPro", Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-stretch: normal;
}

/* Mobile adjustments */

@media (max-width: 575.98px) {
    .content .title {
        font-size: 2rem;
    }

    .action {
        display: flex;
        flex-direction: column;
        align-items: stretch;
    }

    .btn-app {
        width: 100%;
        margin-right: 0;
        margin-bottom: 12px;
        font-family: "NeueHaasGroteskTextPro", Helvetica, Arial, sans-serif;
        font-weight: 400;
        font-style: normal;
        font-stretch: normal;
        font-size: 20px;
    }

    .btn-app:last-child {
        margin-bottom: 0;
    }

    #go.btn-primary {
        padding: 12px 20px;
    }
}

/* Desktop-only adjustments */
@media (min-width: 992px) {
    .left-column {
        padding: 3rem 3rem 0;
    }
}