
:root {
  --primary-bg: #3b2a1a;      /* fallback dark log brown */
  --primary-fg: #d4af37;      /* Gold (matches logo) */
  --secondary-fg: #ffffff;    /* White */
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}



header {
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
}

nav a {
  color: var(--secondary-fg);
  margin: 0 1rem;
  text-decoration: none;
  font-weight: 600;
}
nav a:hover {
  color: var(--primary-fg);
}

.logo-container {
  display: flex;
  align-items: center;
}

.logo-container img {
  height: 60px;
  margin-right: 1rem;
  border-radius: 12px; /* Rounded corners */
}

.hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.hero img {
  width: 200px;
  margin-bottom: 1.5rem;
  border-radius: 12px; /* Rounded corners */
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.tagline {
  font-size: 1.25rem;
  color: var(--primary-fg);
  margin-bottom: 2rem;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  padding: 2rem;
}

.gallery img {
  width: 100%;
  height: auto;
  border: 2px solid var(--primary-fg);
  border-radius: 8px;
}

footer {
  background-color: rgba(0, 0, 0, 0.6);
  padding: 1rem;
  text-align: center;
  font-size: 0.9rem;
}

.hotkeys {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.hotkeys a {
  background-color: var(--primary-fg);
  color: #000;
  padding: 0.75rem 1rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  transition: opacity 0.2s ease;
}
.hotkeys a:hover {
  opacity: 0.8;
}

form {
  background-color: rgba(0,0,0,0.5);
  padding: 2rem;
  border-radius: 8px;
  max-width: 600px;
  margin: 2rem auto;
}
form h2 {
  margin-bottom: 1rem;
  color: var(--primary-fg);
}
form label {
  display: block;
  margin: 0.5rem 0 0.25rem;
}
form input, form select, form textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--primary-fg);
  border-radius: 4px;
  margin-bottom: 1rem;
}
form button {
  background-color: var(--primary-fg);
  color: #000;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-weight: 700;
  cursor: pointer;
}
form button:hover {
  opacity: 0.9;
}


/* New navigation layout */
header {
  background-color: rgba(0, 0, 0, 0.6);
}

.main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  padding: 1rem 0;
}

.main-nav a {
  color: var(--secondary-fg);
  text-decoration: none;
  font-weight: 600;
}

.main-nav a:hover {
  color: var(--primary-fg);
}

.nav-logo {
      height: 150px;
  border-radius: 12px;
}

/* Remove old hero logo spacing */
.hero img {
  display: none;
}
.hero h1, .hero .tagline {
  display: none;
}


.main-nav {
    display: grid;
    grid-template-columns: repeat(5, auto);
    align-items: center;
    gap: 2rem;
    justify-content: center;
}


.social-icons {
    position: fixed;
    bottom: 80px;
    left: 20px;
    display: flex;
    gap: 1rem;
    font-size: 1.8rem;
}
.social-icons a {
    color: var(--primary-fg);
    transition: opacity 0.2s ease;
}
.social-icons a:hover { opacity: 0.8; }

.hotkeys {
    bottom: 80px;
    right: 20px;
}

.testimonial-marquee {
    position: fixed;
    bottom: 40px;
    left: 0;
    width: 100%;
    background-color: rgba(0,0,0,0.7);
    color: var(--secondary-fg);
    padding: 0.5rem 0;
    overflow: hidden;
    white-space: nowrap;
}
.testimonial-marquee span {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 50s linear infinite;
}
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* Sticky footer */
.site-footer {
  margin-top: auto;
  background-color: rgba(0,0,0,0.8);
  color: var(--secondary-fg);
  text-align: center;
  padding: 1rem 0;
  width: 100%;
  font-size: 0.9rem;
}

body {
    background: url('../images/wood-bg.jpg') no-repeat center center fixed;
    background-size: cover;
}

/* === Global Text Styling for Readability === */
body, p, li, a, h1, h2, h3, h4, h5, h6, span {
    color: #f5f5f5;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.75);
}

/* === Flexbox Layout for Sticky Footer === */
html, body {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1 0 auto; /* Push footer to the bottom */
}

footer {
    flex-shrink: 0;
    text-align: center;
    padding: 10px 0;
    background: rgba(0,0,0,0.85);
    color: #ffffff;
    width: 100%;
}

/* === Utility Classes === */
.center-text {
    text-align: center;
}

/* === Global Font & Text Styles === */
@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@400;700&display=swap');

body {
    font-family: 'Roboto Slab', serif;
    color: #f8f8f8;
    text-shadow: 1px 1px 2px #000;
    background-color: #111;
}

/* === Navigation Links === */
nav a, header a, footer a {
    color: #f8f8f8;
    text-shadow: 1px 1px 2px #000;
    font-weight: bold;
}

/* === Buttons === */
button, .button, input[type="submit"] {
    background-color: #ffcc00;
    color: #000;
    border: 2px solid #333;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: bold;
    text-shadow: none;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.4);
    transition: background-color 0.3s ease;
    cursor: pointer;
}

button:hover, .button:hover, input[type="submit"]:hover {
    background-color: #e6b800;
}

/* === Center Navigation and Footer === */
nav, footer {
    text-align: center;
}


/* === FORCE BUTTON STYLING === */
button, .button, input[type="submit"], a.button-link {
    background-color: #ffcc00 !important;
    color: #000 !important;
    border: 2px solid #222 !important;
    padding: 12px 24px !important;
    border-radius: 10px !important;
    font-weight: bold !important;
    font-family: 'Roboto Slab', serif !important;
    font-size: 1rem !important;
    text-shadow: none !important;
    box-shadow: 2px 2px 6px rgba(0,0,0,0.5) !important;
    transition: all 0.3s ease-in-out !important;
    text-decoration: none !important;
    display: inline-block;
    margin: 10px auto;
}

button:hover, .button:hover, input[type="submit"]:hover, a.button-link:hover {
    background-color: #e6b800 !important;
    transform: scale(1.05);
}

/* === FORCE FONT & TEXT OUTLINE === */
body, h1, h2, h3, h4, h5, h6, p, li, a {
    font-family: 'Roboto Slab', serif !important;
    color: #f8f8f8 !important;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.85) !important;
}

nav, footer {
    text-align: center !important;
}


/* === Enhanced Button Styling === */
button, .button, input[type="submit"], a.button-link {
    background: linear-gradient(to bottom, #f0c14b, #e6b800);
    color: #111 !important;
    border: 1px solid #a88734 !important;
    padding: 10px 24px !important;
    border-radius: 6px !important;
    font-weight: 600 !important;
    font-family: 'Roboto Slab', serif !important;
    font-size: 1rem !important;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3) !important;
    transition: background 0.3s ease, transform 0.2s ease !important;
    text-decoration: none !important;
    display: inline-block;
    text-align: center;
    margin: 12px 8px;
}

button:hover, .button:hover, input[type="submit"]:hover, a.button-link:hover {
    background: linear-gradient(to bottom, #ffe08a, #d4a000);
    transform: translateY(-2px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.4);
}


/* === Refined Styling for Nav and Action Links === */
.main-nav a, nav a, a.button-link {
    background: linear-gradient(to bottom, #f0c14b, #e6b800) !important;
    color: #111 !important;
    border: 1px solid #a88734 !important;
    padding: 10px 20px !important;
    border-radius: 6px !important;
    font-weight: 600 !important;
    font-family: 'Roboto Slab', serif !important;
    font-size: 1rem !important;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3) !important;
    transition: background 0.3s ease, transform 0.2s ease !important;
    text-decoration: none !important;
    margin: 10px 8px !important;
    display: inline-block !important;
    text-align: center !important;
}

.main-nav a:hover, nav a:hover, a.button-link:hover {
    background: linear-gradient(to bottom, #ffe08a, #d4a000) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.4) !important;
}


/* === Enhanced Header Styling === */
header, nav {
    background: rgba(0, 0, 0, 0.75);
    padding: 20px 0;
    border-bottom: 2px solid #d4af37;
    box-shadow: 0 4px 10px rgba(0,0,0,0.4);
}

header img {
    max-height: 80px;
    margin-bottom: 10px;
}

/* === Premium-Look Navigation Buttons === */
.main-nav a, nav a, a.button-link {
    background: linear-gradient(145deg, #ffd700, #e6b800) !important;
    color: #1a1a1a !important;
    border: 1px solid #b38f00 !important;
    padding: 12px 26px !important;
    border-radius: 8px !important;
    font-weight: 700 !important;
    font-family: 'Roboto Slab', serif !important;
    font-size: 1.05rem !important;
    letter-spacing: 0.5px !important;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.35) !important;
    transition: all 0.3s ease-in-out !important;
    text-decoration: none !important;
    margin: 12px 10px !important;
    display: inline-block !important;
    text-align: center !important;
}

.main-nav a:hover, nav a:hover, a.button-link:hover {
    background: linear-gradient(145deg, #fff3b0, #d1a700) !important;
    transform: translateY(-2px) scale(1.03) !important;
    box-shadow: 0 8px 14px rgba(0, 0, 0, 0.45) !important;
}


/* === Import Elegant Google Font === */
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display&family=Open+Sans:wght@400;600;700&display=swap');

/* === Apply Global Font Styles === */
body, p, li, a, h1, h2, h3, h4, h5, h6, button, input, .button {
    font-family: 'Open Sans', sans-serif !important;
    color: #f8f8f8 !important;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
}

/* === Header & Logo Improvements === */
header, nav {
    background: linear-gradient(to right, #1f1f1f, #2c2c2c);
    padding: 20px 0;
    border-bottom: 3px solid #d4af37;
    box-shadow: 0 6px 12px rgba(0,0,0,0.5);
    position: relative;
    z-index: 1000;
}

header img {
    max-height: 85px;
    margin-bottom: 8px;
    transition: transform 0.3s ease-in-out;
}
header img:hover {
    transform: scale(1.05);
}

/* === Premium Navigation Buttons === */
.main-nav a, nav a, a.button-link {
    background: linear-gradient(145deg, #f5c542, #d4af37) !important;
    color: #111 !important;
    border: 1px solid #a88800 !important;
    padding: 12px 26px !important;
    border-radius: 10px !important;
    font-weight: 700 !important;
    font-size: 1.05rem !important;
    font-family: 'Open Sans', sans-serif !important;
    letter-spacing: 0.4px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.35) !important;
    transition: all 0.3s ease-in-out !important;
    text-decoration: none !important;
    margin: 12px 10px !important;
    display: inline-block !important;
    text-align: center !important;
}

.main-nav a:hover, nav a:hover, a.button-link:hover {
    background: linear-gradient(145deg, #ffe792, #c79f00) !important;
    transform: translateY(-2px) scale(1.05) !important;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.45) !important;
}


/* === Responsive Adjustments for Mobile Devices === */
@media (max-width: 768px) {

    header, nav {
        padding: 15px 0;
        flex-direction: column;
    }

    header img {
        max-width: 90%;
        height: auto;
        margin: 0 auto 10px;
    }

    nav a, .main-nav a {
        display: block !important;
        margin: 10px auto !important;
        font-size: 1rem !important;
        width: 90% !important;
        text-align: center !important;
    }

    main, .center-text, .content {
        padding: 1rem !important;
        max-width: 100% !important;
    }

    footer {
        font-size: 0.85rem;
        text-align: center;
    }

    .testimonial-marquee {
        font-size: 0.9rem !important;
    }

    body {
        overflow-x: hidden;
    }

    img {
        max-width: 100%;
        height: auto;
    }

    ul {
        padding-left: 1rem;
    }
}


/* Responsive Design */
@media (max-width: 768px) {
    body {
        font-size: 16px;
        padding: 10px;
    }

    nav, header, footer {
        text-align: center;
        flex-direction: column;
    }

    .main-nav a {
        display: block;
        margin: 10px 0;
    }

    .container, .content {
        width: 100%;
        padding: 0 10px;
    }

    img {
        max-width: 100%;
        height: auto;
    }

    .marquee, .contact-info, .footer-icons {
        flex-direction: column;
        align-items: center;
    }

    .button, .contact-button {
        width: 90%;
        font-size: 1em;
    }
}


/* Specific tweaks for nav and header layout */
@media (max-width: 768px) {
    header nav.main-nav {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    header nav.main-nav a {
        margin: 8px 0;
        font-size: 1.2em;
    }

    .nav-logo {
        max-width: 80px;
        height: auto;
        margin: 10px auto;
    }

    main {
        margin-top: 20px;
    }

    .hotkeys, .social-icons {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .hotkeys a, .social-icons a {
        margin: 5px 0;
    }
}
