

.menu2 {
  width: 100%;
  text-align: center;       /* center text or links */
  padding: 10px;            /* keep your requested padding */
  margin: 0;                /* remove any default margin */
}



a:link {
    color: blue;
    background-color: ;
    font-size: 20px;
    text-decoration: none;
}
a:visited {
    color: blue;
    text-decoration: none;
}
a:hover {
    color: black;
    text: strong;
    background-color: ;
    text-decoration: none;
    font-size: 20px;
}


/* Optional responsive stacking */
@media (max-width: 900px) {
  .cards {
    grid-template-columns: 1fr;
  }
}




/* Footer spans the full row even if floats are above */
.site-footer {
   display: block;
  width: 100%;
  clear: both;                    /* harmless with grid, essential if floats exist elsewhere */
  float: none !important;         /* defeat any inherited float rules */
  box-sizing: border-box;
  padding: 15px;
  background: black;               /* example styling; edit as you like */
   width: 100%;
  color: white;
  display: flex;
  text-align: center;       /* center text or links */
  justify-content: center;
  font-family: sans-serif;
  padding: 15px;            /* keep your requested padding */
  margin: 0;                /* remove any default margin */

  
  font-size: 20px;

}


.clcenter {font-size: 30px;
        background-image: url('images/background_div.png'); /* adjust path if needed */
    	background-size: cover;        /* fills entire screen */
    	background-position: center;   /* keeps it centered */
    	background-repeat: no-repeat;  /* prevents tiling */
	box-sizing: border-box;
        padding: 40px 40px 40px 40px

}


.gradient-text {
  background: linear-gradient(90deg, green, black, green);
  -webkit-background-clip: text;
  color: transparent;
}



html,
body {
    margin: 0;
    padding: 0;
    background: #ffffff;
    font-size: 25px;
    font-family: Arial, Helvetica, sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

.quote-page {
    width: 100%;
    padding: 20px 0 40px 0;
}

.quote-title-box {
    width: 85%;
    margin: 20px auto;
    padding: 10px;
    border: 1.5px solid #000;
    background: #f2f2f2;
    text-align: center;
    font-size: 35px;
    font-family: "Georgia", "Times New Roman", serif;
    font-style: italic;
    font-weight: bold;
}

.quote-form {
    width: 85%;
    margin: 20px auto;
    padding: 10px;
    background: #e6e6e6;
    text-align: right;
    border: 1px solid #bdbdbd;
}

.form-row {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 20px;
    margin: 20px 0;
}

.form-row label {
    width: 38%;
    text-align: right;
    padding-top: 10px;
}

.field-wrap {
    width: 62%;
    text-align: right;
}

.quote-form input[type="text"],
.quote-form input[type="email"],
.quote-form input[type="url"],
.quote-form input[type="file"],
.quote-form textarea {
    width: 100%;
    padding: 10px;
    font-size: 25px;
    border: 1px solid #888;
    background: #fff;
}

.quote-form textarea {
    resize: vertical;
    min-height: 150px;
}

.helper-text {
    margin-top: 8px;
    font-size: 18px;
    color: #333;
    text-align: right;
}

.required {
    color: #b00000;
    font-weight: bold;
}

.submit-row {
    margin-top: 30px;
}

.submit-btn {
    padding: 12px 24px;
    font-size: 25px;
    border: 1px solid #000;
    background: #d9d9d9;
    cursor: pointer;
}

.submit-btn:hover {
    background: #c8c8c8;
}

.message {
    width: 100%;
    margin: 10px 0 25px 0;
    padding: 12px;
    border: 1px solid #999;
    text-align: center;
}

.success {
    background: #e4f4e4;
    color: #145214;
}

.error {
    background: #f8dddd;
    color: #8a0000;
}

@media (max-width: 900px) {
    .quote-title-box,
    .quote-form {
        width: 95%;
    }

    .form-row {
        flex-direction: column;
        gap: 10px;
    }

    .form-row label,
    .field-wrap {
        width: 100%;
        text-align: left;
    }

    .quote-form {
        text-align: left;
    }

    .helper-text {
        text-align: left;
    }
}


.honeypot {
    position: absolute !important;
    left: -9999px !important;
    top: -9999px !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.image-preview-wrap {
    margin-top: 12px;
    text-align: right;
}

.image-preview {
    display: none;
    max-width: 250px;
    max-height: 250px;
    border: 1px solid #777;
    padding: 4px;
    background-color: #fff;
}

.thankyou-page {
    width: 100%;
    padding: 40px 0;
}

.thankyou-box {
    width: 85%;
    margin: 20px auto;
    padding: 30px;
    background-color: #e6e6e6;
    border: 1px solid #999;
    text-align: center;
    font-size: 25px;
}

.thankyou-box h1 {
    margin-top: 0;
    font-size: 40px;
}

.thankyou-link {
    display: inline-block;
    text-decoration: none;
    color: black;
}

.admin-topbar {
    width: 85%;
    margin: 20px auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    font-size: 22px;
}

.admin-logout-link {
    display: inline-block;
    text-decoration: none;
    color: black;
}

.admin-quote-card {
    margin-bottom: 25px;
    text-align: left;
}

.admin-quote-line {
    margin-bottom: 18px;
    line-height: 1.4;
}

.admin-delete-form {
    margin-top: 20px;
    text-align: right;
}

.delete-btn {
    background-color: #e2bcbc;
}

.delete-btn:hover {
    background-color: #d59f9f;
}

@media (max-width: 900px) {
    .image-preview-wrap {
        text-align: left;
    }

    .admin-topbar {
        width: 95%;
        flex-direction: column;
        align-items: flex-start;
    }
}


ul {
  margin: 0;
  padding-left: 40px; /* control indent */
}

	