@charset "utf-8";
/* CSS Document */
/* CONTACT PAGE — PAGE‑SPECIFIC STYLES */

/* Page wrapper */
.contact-page .content {
    max-width: 900px;
    margin: 80px auto;
    padding: 20px;
    color: #e6e6e6;
}

/* Main title */
.contact-page h1 {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    letter-spacing: 1px;
}

/* Section title */
.contact-page h3 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: #d4af37; /* gold accent */
}

/* Paragraphs */
.contact-page p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Contact form layout (future-proof) */
.contact-page form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

/* Inputs */
.contact-page input,
.contact-page select,
.contact-page textarea {
    width: 100%;
    padding: 14px;
    border-radius: 6px;
    border: 1px solid #444;
    background: #111;
    color: #fff;
    font-size: 1rem;
}

/* Submit button */
.contact-page button {
    padding: 14px 20px;
    background: #d4af37;
    color: #000;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s;
}

.contact-page button:hover {
    background: #f1c75e;
}

.clean-form {
    max-width: 600px;
    margin: 0 auto;
}

.clean-form .form-row {
    margin-bottom: 20px;
}

.clean-form label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: #d4af37; /* gold accent */
}

.clean-form input,
.clean-form select,
.clean-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #444;
    background: #111;
    color: #fff;
    border-radius: 4px;
    font-size: 16px;
}

.clean-form input:focus,
.clean-form select:focus,
.clean-form textarea:focus {
    outline: none;
    border-color: #d4af37;
}

.gold-button {
    background: #d4af37;
    color: #000;
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    cursor: pointer;
    transition: 0.2s ease;
}

.gold-button:hover {
    background: #f5d77c;
}
/* ========================= */
/*        GLOBAL FOOTER      */
/* ========================= */

.gold-footer {
  background: #0a0a0a;
  border-top: 2px solid #d4af37;
  padding: 50px 40px;
  color: #d4af37;
  margin-top: 75px; /* adjust between 50–100px */
}

/* 4‑Column Grid Layout */
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 30px;
}

/* Column Titles */
.footer-col h3 {
  font-size: 20px;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Footer Links */
.footer-col a {
  display: block;
  margin-bottom: 10px;
  font-size: 15px;
  text-decoration: none;
  color: #d4af37;
  transition: 0.3s;
}

.footer-col a:hover {
  color: #fff;
  text-shadow: 0 0 10px #d4af37;
}
