/* Color Variables */
:root {
    --black: #000000;
    --off-white: #e0e0e0;
    --light-grey: #dadada;
    --logo-color: #deddff;
    --copper: #b87333;
    --silver: #c0c0c0;
    --deep-blue: #1e90ff;
      --brand:#e7b44b; --brand-2:#5cc8ff; --stroke:rgba(255,255,255,.08);
}

/* General Styles */
html { background: var(--bg); scroll-padding-top: 55; }
html, body { height: 100%; }
body {
  margin: 0; color: var(--text);
  font-family: 'Lato', sans-serif;
  line-height: 1.35;
  min-height: 100dvh;
  padding-top: 55px;        
  position: relative;               
}


.btn{padding:10px 16px; border-radius:999px; border:2px solid var(--stroke);
     background:rgba(255,255,255,.02); color:var(--text); font-weight:600; text-decoration:none; display:inline-block}

     .btn:hover{transform:translateY(-1px)}

.btn.gold{background:linear-gradient(135deg, var(--brand), #ffd98a); color:#1a1a1a; border:none}


.contact-flash{
  position: fixed; left: 50%; top: 18px; transform: translateX(-50%);
  padding: .7rem 1rem; border-radius: 10px; box-shadow: 0 6px 18px rgba(0,0,0,.18);
  background: #121212; color: #fff; z-index: 9999; font: 500 14px/1.2 Inter, system-ui, sans-serif;
}
.contact-flash.ok { background: #1ea94b; color: #041b0d; }
.contact-flash.err{ background: #e23d3d; }
button[type="submit"][data-loading="1"]{ opacity:.75; pointer-events:none; }

/* General Contact Page Styles */
body {
    font-family: 'Lato', sans-serif;
    background-color: #000;
    color: #fff;
    margin: 0;
    padding: 0;
    padding-top: 80px; /* Ensure no overlap with the navbar */
}

/* Contact Header */
.contact-header {
    text-align: center;
    padding: 40px 20px;
    background-color: #1a1a1a;
}

.contact-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5em;
    color: #FFB800;
}

.contact-header p {
    font-size: 1.2em;
    color: #ccc;
}

/* Contact Form Container */
.contact-container {
    max-width: 600px;
    box-sizing: border-box;
    margin: 40px auto;
    padding: 30px;
    background: linear-gradient(180deg, #1a1a1a, #111); /* dark gradient card */
    border: 1px solid rgba(255, 255, 255, 0.08);        /* subtle border */
    border-radius: 16px;                                /* smoother corners */
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.6);         /* deep shadow */
}

.contact-container input,
.contact-container textarea,
.contact-container button {
  width: 100%;
  box-sizing: border-box; /* 🔑 ensures padding is included in width */
}


.contact-container label {
    display: block;
    margin-bottom: 10px;
    color: #ddd;
}

.contact-container input,
.contact-container textarea {
    width: 100%;
    padding: 12px 14px;
    margin-bottom: 18px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    background-color: #1e1e1e;   /* slightly lighter than card */
    color: #fff;
    font-size: 1em;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-container input:focus,
.contact-container textarea:focus {
    outline: none;
    border-color: var(--brand); /* highlight with brand gold */
    box-shadow: 0 0 0 2px rgba(231, 180, 75, 0.3);
}

.contact-container button {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, var(--brand), #ffd98a);
    color: #000;
    border: none;
    border-radius: 10px;
    font-weight: bold;
    font-size: 1.05em;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
    transition: transform 0.2s ease, background 0.3s ease;
}

.contact-container button:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #ffd98a, var(--brand));
}


/* Footer */

/* Base Footer Styles */
footer {
    background-color: var(--black);
    color: var(--off-white);
    padding: 20px 40px;
    text-align: center;
    border-top: 1px solid var(--silver);
    font-size: 0.8em;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

footer a {
    color: var(--copper);
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

footer a:hover {
    text-decoration: underline;
    color: var(--deep-blue); /* Adds a slight color change on hover */
}

/* Footer Content Container */
.footer-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

/* Footer Links Styling */
.footer-links {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links li {
    margin: 0 5px;
}

.footer-links a {
    font-size: 0.9em;
}


/* Small screens (max-width: 600px) */
@media (max-width: 600px) {
    footer {
        padding: 15px 20px;
        font-size: 0.50em;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
    }

    .footer-links {
        flex-direction: column;
        align-items: center;
    }
}

/* Medium screens (600px to 992px) */
@media (min-width: 600px) and (max-width: 992px) {
    footer {
        padding: 20px 30px;
        font-size: 0.70em;
    }

    .footer-content {
        justify-content: space-around;
    }
}

/* Large screens (992px and up) */
@media (min-width: 992px) {
    footer {
        padding: 25px 50px;
        font-size: 0.80em;
    }

    .footer-content {
        justify-content: space-between;
    }
}

/* Extra large screens (1200px and up) */
@media (min-width: 1200px) {
    footer {
        padding: 30px 60px;
    }

    .footer-content {
        max-width: 1400px;
    }
}

/* Mobile (≤600px) */
@media (max-width: 600px) {
  .contact-container {
    margin: 15px;
    padding: 16px;
  }

  .contact-container input,
  .contact-container textarea {
    font-size: 1em;
    padding: 12px;
  }

  .contact-container button {
    font-size: 1.05em;
    padding: 14px;
    border-radius: 6px;
  }
}
