:root {
    --light-orange: #f5a623;
    --light-orange-dark: #e5941e;
}

/* Example: Custom global font */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f8f9fa; 
    color: #343a40; 
    margin-top: 130px;
}

.navbar {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    background-color: white;
}

.navbar .nav-link {
    margin-right: 2rem;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    color: #4d4d4d;
}

.navbar .nav-link:hover {
    color: #a16750; /* Bootstrap's primary color */
}

header {
    background-image: url('/images/backdrop.png');
    background-size: cover;
    padding: 1.5rem 0; 
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    color: white;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 150px;
}

.form-label {
    font-weight: bold;
}

.table {
    margin-bottom: 50px;
}

.copy-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    color: #abd2f5;
    padding: 0;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
}

.copy-btn:focus {
    outline: none;
}

.input-group {
    position: relative;
}

.input-group input {
    padding-right: 35px; /* Leave space for the icon */
}

.input-group input:focus {
    outline: none;
    box-shadow: none;
}

.input-group .copy-btn:hover {
    color: #72abff;
}

.message {
    display: none;
    color: rgb(82, 160, 184);
    font-size: 0.9rem;
    margin-top: 5px;
}

.container {
    margin-top: 0; 
    margin-bottom: 0; 
    padding: 15px;
}

.intro-background {
    background-image: url('/images/aproposimage.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 400px;
    box-sizing: border-box;
    margin-top: 60px;
    margin-bottom: 60px;
    box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.3), 0 4px 8px rgba(0, 0, 0, 0.3);
}

.contact-heading {
    font-size: 3.5rem;
    font-weight: bold;
    color: #c96d4f;
    margin-bottom: 50px;
}

.contact-info p {
    color: #333; 
    font-weight: bold;
}

.contact-info i {
    color: #333; 
}

.contact-info .info-text {
    color: #000;
    font-weight: 400;
    margin-top: 0.5rem;
    margin-bottom: 100px;
    font-size: 0.875rem;
}

.custom-head {
    font-family: 'Playwrite CU', sans-serif;
    white-space: nowrap;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.25);
    color: #e66c3c;
    font-size: 48px;
}

.custom-font {
    font-family: 'Reenie Beanie', cursive;
    white-space: nowrap;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    color: white;
    font-size: 8rem;
}

.btn {
    padding: 0.5rem 1rem !important;
    border: 1px solid transparent !important;
    font-family: Verdana, sans-serif !important;
    font-size: 1rem;
    line-height: 1.2;
}

.btn-primary {
    font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif !important;
    background-color: #c07150 !important;
    border-color: var(--light-orange) !important;
    border-radius: 0.25rem !important;
    transition: background-color 0.3s, border-color 0.3s !important;
    text-transform: uppercase;
    font-size: 1rem !important;
    margin-top: 35px;
}

.btn-secondary {
    font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif !important;
    background-color: #a5a5a5 !important;
    border-color:#e6af0b !important; 
    border-radius: 0.25rem !important;
    transition: background-color 0.3s, border-color 0.3s !important;
    text-transform: uppercase;
    font-size: 1rem !important;
    margin-top: 35px;
}

.btn-primary:hover {
    background-color: #db7f51 !important;
    border-color: var(--light-orange-dark) !important;
}

h2 {
    font-family: 'Arial Black', sans-serif !important; 
    font-size: 2rem; 
    font-weight: 400; 
    line-height: 1.2;
    margin-bottom: 20px;
}

.intro-text {
    color: #333;
    padding: 20px;
    max-width: 80%;
    text-align: center;
    margin: 20px auto;
    max-width: 80%;
}

.lead {
    font-size: 1.5rem;
    font-weight: 600;
    font-family: Courier New, Courier, monospace;
}

.card-title {
    font-family: Courier New, Courier, monospace;
    font-weight: 600;
}

.card-texts {
    font-size: 1.5rem;
}

#homeCarousel .carousel-item {
    position: relative !important;
    height: 250px !important;
}

#homeCarousel .carousel-item img {
    height: 250px;
    object-fit: cover;
    width: 100%;
}

@media (max-width: 768px) {
    #homeCarousel .carousel-item,
    #homeCarousel .carousel-item img {
        height: 300px;
    }
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100vw;
    display: flex;
    flex-direction: column;
    justify-content: center; /* vertical centering */
    align-items: center;     /* horizontal centering */
    background-color: rgba(0, 0, 0, 0.4); /* optional dark overlay */
    text-align: center;
    padding: 10px;
    box-sizing: border-box;
}

.carousel-overlay h2 {

    overflow: hidden;
    text-overflow: ellipsis;
    text-align: center; /* Ensures the text stays centered */
    max-width: 100%; /* Adjusts the maximum width to prevent overflow */
    margin: 0 auto; /* Centers the text horizontally */
    font-size: 1.5rem;
}

/* Optional: Add media queries to adjust the font size for smaller screens */
@media (max-width: 768px) {
    .carousel-overlay h2 {
        font-size: 1.2rem; /* Adjust font size as needed */
        max-width: 80%; /* Reduce max-width for smaller screens */
    }
}

.product-banner-img {
    width: 120px;
    height: auto;
    border: 2px solid #fff;
    border-radius: 5px;
    transition: transform 0.3s ease;
}

.btn-gotoshop {
    background-color: rgba(255, 255, 255, 0.2); /* transparent white background */
    color: #fff; /* white text */
    border: 2px solid #fff; /* white border */
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 10px;
    margin-top: 20px;
    transition: all 0.2s ease;
    font-family: Courier New, Courier, monospace !important;
}

.btn-gotoshop:hover {
    background-color: rgba(255, 255, 255, 0.4); /* slightly more opaque on hover */
    color: #fff; /* change text color on hover */
    text-shadow: 0 0 1px white, 0 0 2.5px white, 0 0 5px white;
    border-color: #fa8955; /* change border color on hover */
    transform: scale(1.05); /* slightly enlarge on hover */
}

.btn-checkout {
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif !important;
    background-color: #0d6efd;
    color: #fff;
    border-color: var(--light-orange) !important;
    border-radius: 0.25rem !important;
    transition: background-color 0.3s, border-color 0.3s !important;
    text-transform: uppercase;
    font-size: 1rem !important;
}

.btn-checkout:hover {
    background-color: #db7f51 !important;
    border-color: var(--light-orange-dark) !important;
    color: #fff;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px; 
    height: 50px; 
    border-radius: 50%;
    color: white; 
    font-size: 24px; 
    margin: 0 10px; 
    transition: background-color 0.3s, color 0.3s;
    text-decoration: none;
}

.social-icon:hover {
    color: black;
    background-color: #fff;
}






