body{
    font-family: 'Noto Sans', sans-serif;
    font-family: 'Open Sans', sans-serif;
    
   
}
header{
    margin-top: 0px;
    background-color: #D89C66;
}

/* Skip link */

.skip-link {
    position: absolute;
    top: -50px;
    left: 0;
    background: #22636C;
    color: white;
    padding: 8px 15px;
    z-index: 100;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 10px; /* Adjust position as needed */
}

/* Skip link ends */

/* Navbar code */

/*Navbar background set to white */
.bg-body-tertiary{
 background-color: #fff !important;
 margin-top: 0px;
 /* box-shadow: 0 4px 2px -2px #22636C; */

}
.navigation{
    box-shadow: 0 4px 2px -2px #22636C;
}

/*Navbar links, all other links and buttons styling*/
.nav-link, .dropdown-item, a{
    color: #22636C;
    font-size: 18px;
    font-weight: bolder;
    text-decoration: none;
}

    h1,h2,h3,h4,h5,p{
        color: #22636C;
    }
p{
    margin-top: 10px;
    font-size: 16px;
}
.btn-primary{
    background-color: #22636C;
    border: none;
    font-size: 18px;
   
}
a:focus, .nav-link:focus, .dropdown-item:focus, .btn-primary:focus, .btn-primary:hover{
    outline: 2px solid black;
    background-color: #f9dc4a;
    color: #000;
}
.navbar-toggler{
    color: #22636C;
    
}   
.navbar-toggler:focus{
    background-color: #f9dc4a;
}


.navbar .container-fluid {
    display: flex;
    width: 80%;
}

/* To center the collapsed menu as well */
@media (max-width: 991px) {
    .navbar-collapse {
        justify-content: center;
    }
}
/* Spacing using margin */
.navbar-nav .nav-item {
    margin-right: 15px; 
}

/* Remove margin for the last item to maintain alignment */
.navbar-nav .nav-item:last-child {
    margin-right: 0;
}
/*Custom container width */

/* Base styling */
.custom-container {
    width: 80%; /* Default width */
    margin: 0 auto;
}

/* For devices with width less than 768px (mobile devices) */
@media (max-width: 767px) {
  .custom-container {
    width: 90%;
  }
}

/* For devices between 768px (tablet) and 1024px (where 1024px is the lower bound for a 14-inch laptop) */
@media (min-width: 768px) and (max-width: 1023px) {
  .custom-container {
    width: 90%;
  }
  
}

/* For devices between 1024px and a width that approximates 14-inch laptops, assuming 1440px as a breakpoint */
@media (min-width: 1024px) and (max-width: 2000px) {
  .custom-container {
    width: 80%;
  }
}

/* For devices wider than 1440px */
@media (min-width: 2001px) {
  .custom-container {
    width: 70%;
  }
}


/* custom container width ends */

/* Navbar code ends*/

/* Hero Section starts */

.hero {
    width: 100%;
    background-image: url(/images/hero1.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
   
    height: auto;       
    color: #fff;
   
}


.hero h1, p{
    color: #22636C;
}
#new-content {
    background: rgba(255, 255, 255, 0.7); /* Light semi-transparent background */
    border-radius: 10px; /* Rounded corners */
    padding: 20px; /* Spacing around the text */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    backdrop-filter: blur(8px); /* Blur effect */
    max-width: 90%; /* Ensures it doesn't stretch too wide */
    margin-top: 50px;
    margin-bottom: 150px;
}

.order-link {
    text-align: center; /* Center the button inside its container */
    margin: 20px 0; /* Add spacing around the button */
}

.order-link .button {
    display: inline-block; /* Make the link behave like a button */
    background-color: #22636C; /* Button background color */
    color: white; /* Button text color */
    padding: 10px 20px; /* Add padding inside the button */
    font-size: 16px; /* Adjust font size */
    text-decoration: none; /* Remove underline from link */
    border-radius: 5px; /* Rounded corners */
    transition: background-color 0.3s ease, transform 0.2s ease; /* Add smooth hover effects */
}

.order-link .button:hover {
    background-color: #22636C; /* Darken button on hover */
    transform: scale(1.05); /* Slightly enlarge the button */
}
.order-link .button:focus{
    background-color: #f9dc4a;
    color: #22636C;
}

  
/* Hero Section ends */

.card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.card-body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
}

.card-title {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.card-text {
    flex-grow: 1;
    margin-bottom: 1rem;
}

.card .price-button-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

#custom-alert {
    max-width: 400px;
    padding: 1rem;
    text-align: center;
    font-size: 1rem;
    opacity: 1;
}





/* Get started section starts */

/* Get started section ends */


/* Footer startes */
.site-footer {
   background-color: #fff;
    color: #22636C;
    padding: 20px;
    text-align: center;
    margin-top: 100px;
}

.footer-links {
    margin-bottom: 20px;
}

.footer-links a {
    color: #22636C;
    margin: 0 10px;
    text-decoration: none;
}

.footer-social {
    margin-bottom: 20px;
    
}

.footer-social img {
    width: 40px; /* Adjust size as needed */
    height: auto;
    margin: 0 5px;
}

.footer-contact a {
    color:#22636C;
    text-decoration: none;
}

@media screen and (max-width: 600px) {
    .footer-links, .footer-social, .footer-contact {
        margin-bottom: 10px;
    }

    .footer-links a, .footer-contact a {
        display: block;
        margin: 10px 0;
    }
}

/* Footer ends */








  /* Common Code */


html,body{
    overflow-x:hidden;
}


@media (min-width: 768px) and (max-width: 1300px) {
    .img-fluid {
        width: auto; 
        max-width: 100%; 
        height: 350px;
        margin-left: 20px;
    }
    .custom-container{
        width: 100%;
    }
    #hero-content{
        margin-left: 10px;
    }
}


@media (min-width: 1300px)  {
    .img-fluid {
        width: auto; 
        max-width: 100%; 
        height: 400PX; 
    }
  
}



@media (min-width: 1200px) {
    .custom-container {
      max-width: 80pc; /* Adjusted as per your requirement */
    }
  }


  pre {
    background-color: #333; /* Dark background */
    color: #fff; /* Light text color */
    border: 1px solid #ccc; /* Light gray border */
    padding: 10px;
    overflow: auto; /* Adds a scrollbar if necessary */
    font-family: monospace; /* Monospace font for code */
}
/* Common code ends */

/* Fix header overlap issue */
body {
    padding-top: 120px; /* Adjust this based on the header height */
}

/* Ensure navbar is always on top */
.fixed-top {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1050;
    background-color: white;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
}


/* Styling the cart section */
#cart-actions {
    margin-top: 20px;
    text-align: left; /* Align text to the left */
}

#customer-email {
    width: 100%; /* Make input full width */
    padding: 10px; /* Add padding for better readability */
    font-size: 16px; /* Adjust font size */
    border: 1px solid #ccc; /* Light border */
    border-radius: 5px; /* Rounded edges */
    margin-bottom: 10px; /* Space before button */
}

#checkout-btn {
    width: 100%; /* Make button full width */
    padding: 12px; /* Increase padding for better visibility */
    font-size: 18px; /* Bigger font for accessibility */
    background-color: #22636C; /* Match theme color */
    color: white; /* White text */
    border: none;
    border-radius: 5px; /* Rounded corners */
    cursor: pointer;
    display: block; /* Ensure it appears below input */
    text-align: center;
}

#checkout-btn:hover {
    background-color: #1A4D52; /* Slightly darker on hover */
}

#checkout-btn:focus {
    outline: 2px solid black;
    background-color: #f9dc4a;
    color: #000;
}
/* Updated Call-to-Action Styling */
.ph-number a {
    font-size: 24px; /* Increase font size */
    font-weight: bold; /* Make it bold */
    color: #ffffff; /* White text for better contrast */
    background: #22636C; /* Dark teal background for contrast */
    padding: 12px 18px; /* Increase padding for better visibility */
    border-radius: 8px; /* Rounded edges */
    text-align: center; /* Center the text */
    display: inline-block; /* Fit content width */
    margin-top: 15px; /* Space above */
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2); /* Subtle shadow */
    text-transform: uppercase; /* Make text more prominent */
}

/* Style the phone number CTA */
.call-to-action {
    font-size: 22px; /* Bigger text */
    font-weight: bold; /* Make it bold */
    color: #ffffff; /* White text for contrast */
    background: #D89C66; /* Warm orange background */
    padding: 12px 18px; /* Add padding */
    border-radius: 8px; /* Rounded edges */
    text-align: center; /* Center the text */
    display: inline-block; /* Prevent full-width stretching */
    margin-top: 15px; /* Add spacing */
    text-decoration: none; /* Remove default underline */
    transition: background-color 0.3s ease-in-out; /* Smooth hover effect */
}

.call-to-action:hover,
.call-to-action:focus {
    background: #22636C; /* Change color on hover */
    color: #ffffff; /* Keep text readable */
    outline: 2px solid #000; /* High contrast focus outline */
}


/* Coming Soon Page Styling */
.coming-soon-box {
    background: rgba(255, 255, 255, 0.8); /* Light transparent background */
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: auto;
}

.coming-soon-box h1 {
    font-size: 36px;
    font-weight: bold;
    color: #22636C; /* Theme color */
}

.coming-soon-box p {
    font-size: 18px;
    color: #333;
    margin-top: 10px;
}

.coming-soon-box .call-to-action {
    color: #D89C66;
    font-weight: bold;
    text-decoration: none;
}

.coming-soon-box .call-to-action:hover {
    color: #22636C;
    text-decoration: underline;
}


/* Cart page style for form padding only for tablet */
@media (min-width: 768px) and (max-width: 1024px) {
    .cart-container form input,
    .cart-container form select,
    .cart-container form button {
        padding: 12px !important; /* Increased padding for better touch experience */
    }

    .cart-container form {
        padding: 20px !important; /* Adds spacing around the form */
    }
}

.form-check-input {
    border: 2px solid #000 !important; /* Solid black outline */
    width: 20px; /* Slightly bigger for visibility */
    height: 20px; /* Keep square proportion */
}

.form-check-input:checked {
    background-color: #22636C !important; /* Matches the theme */
    border-color: #22636C !important; /* Changes outline when checked */
}
