html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
    margin-bottom: 60px;
    background-color: #fbf8f1;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}
.wide-tooltip .tooltip-inner {
    text-align: left !important;
    max-width: 450px;
}

.brand-title {
    font-family: 'Pacifico', cursive;
    color: #6a11cb;
    font-weight: 500;
}

.brand-title_2 {
    font-family: 'Pacifico', cursive;
    color: #6a11cb;
    font-weight: 500;
    font-size: 2rem;
}

.brand-sub {
    font-weight: 500;
    color: #6a11cb; /* purple accent */
    font-family: Calibri; /* example custom font */
}

.no-gutters {
    --bs-gutter-x: 0;
}

.text-col {
    max-width: 600px; /* adjust as needed */
}

.half-img {
    width: 50%;
}

.quarter-img {
    width: 25%;
}

.section-header {
    color: #800000; /* deep maroon */
    font-weight: 600; /* optional: makes it stand out */
}


.pattern-block {
    white-space: pre-wrap;
    word-wrap: break-word;
    margin-top: 0;
    font-family: "Calibri", "Segoe UI", Arial, sans-serif;
    font-size: 1.25rem;
    font-weight: normal; /* ensures bold works */
}

    .pattern-block strong {
        font-weight: bold;
    }
.design-section.hidden {
    display: none;
}

.design-section.visible {
    display: block;
}

.section-header.completed::after {
    content: " ✓";
    color: green;
    font-weight: bold;
    margin-left: 8px;
}


.h3-link-block {
    font-size: 1.75rem; /* same as <h3> */
    color: #0d6efd; /* Bootstrap primary blue */
    text-decoration: none;
    cursor: pointer;
    font-weight: 500; /* matches Bootstrap <h3> */
    line-height: 1.2; /* matches Bootstrap <h3> */
}

    .h3-link-block a {
        color: #0d6efd;
        text-decoration: none;
    }

        .h3-link-block a:hover {
            text-decoration: underline;
            color: #0a58ca;
        }

.or-text {
    color: black;
}

.size-btn {
    padding: 0.25rem 0.5rem;
    font-size: 0.8rem;
}
.btn-primary:disabled,
.btn-primary.disabled {
    background-color: #d3d3d3 !important;
    border-color: #c0c0c0 !important;
    color: #6c757d !important;
    opacity: 1 !important; /* override Bootstrap fade */
    cursor: not-allowed;
}

.size-btn.selected {
    background-color: #0d6efd;
    color: white;
}

.gender-btn.selected {
    background-color: #0d6efd;
    color: white;
}

.hidden {
    display: none !important;
}
.next-link {
    font-size: 1.15rem; /* slightly larger */
    font-weight: 500; /* medium weight */
    display: inline-block;
    padding: 4px 8px; /* gives it a little breathing room */
}

@keyframes fadeSlideIn {
    0% {
        opacity: 0;
        transform: translateY(6px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-style {
    animation: fadeSlideIn 250ms ease-out;
}

.hero-container {
    position: relative;
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
}

.hero-overlay {
    position: absolute;
    top: 87%;
    left: 60%;
    //transform: translate(-50%, -50%);
    z-index: 2;
    color: white;
    font-size: 1.5rem;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.7);
    text-align: left;
    white-space: nowrap;
}

.hero-overlay_2 {
    position: absolute;
    top: 90%; /* vertical centering */
    left: 90%; /* horizontal centering */
    transform: translate(-50%, -50%);
    z-index: 2;
}

.hero-overlay_3 {
    position: absolute;
    top: 75%; /* vertical centering */
    left: 73%; /* horizontal centering */
    transform: translate(-50%, -50%);
    z-index: 2;
}


.overlay-button {
    width: 220px; /* adjust size */
    height: auto;
    cursor: pointer;
}

.overlay-button_2 {
    width:250px; /* adjust size */
    height: auto;
    cursor: pointer;
}




.hero-link {
    color: #ffd700; /* gold highlight */
    text-decoration: underline;
}

    .hero-link:hover {
        color: #ffea00;
    }

/* Modal overlay */
.modal-overlay {
    display: none; /* hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.55);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

/* Modal box */
.modal-content {
    background: #fbf8f1;
    padding: 30px;
    border-radius: 12px;
    width: 380px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

/* Title */
.modal-title {
    margin-bottom: 20px;
    font-size: 1.4rem;
    font-weight: 600;
}

/* Options container */
.modal-options {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

/* Option cards */
.option-card {
    background: white;
    border-radius: 10px;
    width: 45%;
    padding: 15px;
    text-align: center;
    text-decoration: none;
    color: black;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    transition: transform 0.2s ease;
}

    .option-card img {
        width: 60px;
        height: auto;
        margin-bottom: 10px;
    }

    .option-card:hover {
        transform: scale(1.05);
    }

/* Close button */
.modal-close {
    background: #ccc;
    border: none;
    padding: 8px 16px;
    border-radius: 8px;
    cursor: pointer;
}


