html {
  font-size: 14px;
}

.container {
    max-width: 1440px;
}

/* Add to Cart page*/
.card {
    border-radius: 10px;
    transition: transform 0.2s, box-shadow 0.2s;
}

    .card:hover {
        transform: translateY(-5px);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }

.card-title {
    font-weight: bold;
}

.bg-light {
    background-color: #f8f9fa !important;
}

.text-primary {
    color: #007bff !important;
}

.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
}

    .btn-primary:hover {
        background-color: #0056b3;
        border-color: #004085;
    }

.btn-success {
    background-color: #28a745;
    border-color: #28a745;
}

    .btn-success:hover {
        background-color: #218838;
        border-color: #1e7e34;
    }

/* Shopping Cart Icon - Top */
.badge {
    font-size: 0.75rem;
    padding: 0.25em 0.5em;
}

.position-relative {
    position: relative;
}

.position-absolute {
    position: absolute;
}

/* TourismSites Heading */
.card-bg {
    background-size: cover;
    background-position: center;
    color: white;
    margin: 0;
    margin-top: -17px;
    padding: 0;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1), 0 6px 20px rgba(0, 0, 0, 0.1);
}

.card-overlay {
    background-color: rgba(0, 0, 0, 0.6); /* Dark overlay for better text readability */
    padding: 50px;
    text-align: center;
    border-radius: 15px;
}

/* Required Items */
.required::after {
    content: "*";
    font-weight: bold;
    color: red;
}

.code-of-conduct-link:hover {
    color: black !important;
    background-color: #8eef80 !important;
    border-color: #8eef80 !important;
}
.code-of-conduct-link1 {
    color: black !important;
    background-color: #8eef80 !important;
    border-color: #8eef80 !important;
    width:100%;
}

/* Custom Card Styling */
.custom-card {
    border: none;
    border-radius: 10px;
}

    /* Custom Card Hover Effect */
    .custom-card:hover {
        transform: translateY(-5px);
        transition: transform 0.3s ease;
    }

    /* Custom Card Title */
    .custom-card .card-title {
        font-size: 1.25rem;
        font-weight: 600;
    }

/* Custom Form Label */
.custom-label {
    font-weight: 500;
}

/* Custom Input Styling */
.custom-input {
    border-radius: 5px;
    border: 1px solid #ced4da;
}

    .custom-input:focus {
        border-color: #80bdff;
        box-shadow: 0 0 0 0.2rem rgba(0,123,255,.25);
    }

/* Custom Button Styling */
.custom-button {
    background-color: #0069d9;
    border-color: #0062cc;
}

    .custom-button:hover {
        background-color: #0056b3;
        border-color: #004085;
    }

/* Custom Checkout Button */
.custom-checkout-button {
    background-color: #28a745;
    border-color: #28a745;
}

    .custom-checkout-button:hover {
        background-color: #218838;
        border-color: #1e7e34;
    }

/* Increase navbar padding to make it taller */
.navbar {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

/* Increase the font size of navbar links */
.navbar-nav .nav-link {
    font-size: 1.25rem;
}

/* Increase the size of the shopping cart icon */
.navbar .fa-shopping-cart {
    font-size: 1.5rem;
}

/* Optional: Ensure the cart icon container allows for larger icons */
.navbar-nav .nav-item .nav-link {
    line-height: normal;
}

/* Increase the font size of the navbar brand text (if applicable) */
.navbar-brand span {
    font-size: 1.5rem;
    color: #fff;
}

.main-logo {
    height: 40px;
}

.purchase-button {
    background-color: #8eef80;
    /* background-color: #FF9900; */
}

  
.buy-sitepass {
    margin-bottom: 40px;
}

/* Adjustments for Responsiveness */
@media (max-width: 576px) {
    .custom-card .card-title {
        font-size: 1rem;
    }

    .custom-card .card-subtitle {
        font-size: 0.9rem;
    }
    .custom-checkout-button.btn-lg {
        width: 100%;
    }
    .main-logo {
        height: 30px;
    }
}


