/* ---------- CSS Variables (Royal theme – no blue backgrounds) ---------- */
:root {
    --bg-dark: #0a0a0a;
    --bg-light: #111111;
    --accent: #C0C0C0;                 /* silver – CTAs, icons */
    --accent-hover: #a9a9a9;
    --text-primary: #f1f5f9;
    --text-secondary: #94a3b8;
    --container-max: 1200px;
    --radius: 12px;
    --transition: 0.3s ease;
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}
a { color: inherit; text-decoration: none; transition: var(--transition); }
img { max-width: 100%; display: block; }

/* ---------- Utilities ---------- */
.container {
    width: 90%;
    max-width: var(--container-max);
    margin: 0 auto;
}

/* ---------- Navbar (gold branding) ---------- */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #212529;               /* solid dark charcoal */
    padding: 1rem 0;
}
.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo wrapper – left side, image + text */
.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.logo {
    color: #D4AF37;                    /* royal gold */
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
}
.logo-img {
    height: 32px;                      /* slightly smaller on mobile */
    width: auto;
    display: block;
}

/* Hamburger toggle – only visible on small screens */
.nav-toggle {
    display: none;
    background: transparent;
    border: none;
    color: #D4AF37;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}
.nav-links a {
    color: #D4AF37;                    /* gold */
    font-weight: 500;
    position: relative;
}
.nav-links a::after {
    content: '';
    position: absolute;
    left: 0; bottom: -4px;
    width: 0; height: 2px;
    background: #D4AF37;
    transition: width var(--transition);
}
.nav-links a:hover::after { width: 100%; }

/* ---------- Mobile nav styles ---------- */
@media (max-width: 768px) {
    .nav-toggle { display: block; }

    .nav-links {
        display: none;
        flex-direction: column;
        background: #212529;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        padding: 1rem 0;
        z-index: 999;
    }

    .nav-links a {
        padding: 0.75rem 1rem;
    }

    .nav-links.active { display: flex; }
}

/* ---------- Hero ---------- */
.hero {
    background:
    linear-gradient(rgba(212, 175, 55, 0.35), rgba(212, 175, 55, 0.35)),
    url('../img/banner.jpg') no-repeat center/cover;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}
.hero-title {
    font-size: clamp(2.5rem, 6vw, 5.5rem);
    font-weight: 800;
    color: #fff;
    text-shadow: 0 2px 6px rgba(0,0,0,0.8);
    margin-bottom: 1rem;
}
.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.75rem);
    color: #e2e8f0;
    text-shadow: 0 1px 4px rgba(0,0,0,0.7);
    margin-bottom: 2rem;
}
.cta-btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: var(--accent);
    color: var(--bg-dark);
    border-radius: var(--radius);
    font-weight: 600;
    transition: background var(--transition), transform var(--transition);
}
.cta-btn:hover {
    background: var(--accent-hover);
    transform: translateY(-3px);
}

/* ---------- Services ---------- */
.services {
    padding: 6rem 0;
    background: var(--bg-light);
}
.section-title {
    text-align: center;
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 3rem;
}
.services-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.service-card {
    background: var(--bg-dark);
    padding: 2rem;
    border-radius: var(--radius);
    text-align: center;
    transition: transform var(--transition), box-shadow var(--transition);
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}
.icon {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 1rem;
}
.service-title { font-size: 1.25rem; margin-bottom: 0.5rem; }
.service-desc { color: var(--text-secondary); }

/* ---------- Gallery ---------- */
.gallery {
    padding: 6rem 0;
    background: var(--bg-dark);
}
.gallery-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
.gallery-item {
    cursor: pointer;
    overflow: hidden;
    border-radius: var(--radius);
}
.gallery-item img {
    width: 100%;
    transition: transform 0.3s ease;
}
.gallery-item:hover img {
    transform: scale(1.05);
}

/* Light‑box */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 3000;
    padding: 1rem;
}
.lightbox.active {
    display: flex;
}
.lightbox img {
    max-width: 90%;
    max-height: 80vh;
    border-radius: var(--radius);
}
.lightbox button {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
}

/* ---------- Who we are (formerly “Our Story”) ---------- */
.about {
    padding: 6rem 0;
    background: var(--bg-dark);
}
.about-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
    justify-content: center;
}
.about-text { flex: 1 1 300px; }
.about-image { flex: 1 1 300px; }
.about-image img {
    border-radius: var(--radius);
    box-shadow: 0 8px 30px rgba(0,0,0,0.5);
}

.values-list {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.values-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.05rem;
}
.values-list i {
    color: #D4AF37;   /* gold – matches brand */
    font-size: 1.75rem;
}

/* ---------- Reveal animation ---------- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}
.reveal.show {
    opacity: 1;
    transform: translateY(0);
}

/* --------------------------------------------------------------
 *  Contact Section – overrides / additions for the gold‑silver theme
 *  -------------------------------------------------------------- */
.contact {
    padding: 6rem 0;
    background: var(--bg-light);
}

/* Section title (re‑uses existing .section-title) */
.section-title {
    text-align: center;
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 3rem;
}

/* Main wrapper – container for the whole form */
.contact-wrapper {
    background: var(--bg-dark);
    border-radius: var(--radius);
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
    overflow: hidden;
}

/* Summary (clickable title) */
.contact-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 2rem;
    background: #212529;            /* darker charcoal – matches navbar */
    color: #D4AF37;                 /* gold */
    font-weight: 600;
    cursor: pointer;
    list-style: none;               /* remove default list marker */
    transition: background var(--transition);
}
.contact-summary::-webkit-details-marker { display: none; } /* hide chevron */
.contact-summary:hover { background: #292d31; }
.contact-summary .arrow { font-size: 0.9rem; transition: transform var(--transition); }
.contact-wrapper[open] .contact-summary .arrow { transform: rotate(90deg); }

/* Inner sections */
.form-section {
    border: none;
    margin: 0;
    padding: 0;
}
.form-section summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 2rem;
    background: var(--bg-dark);
    color: var(--accent);
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    border-top: 1px solid #2a2a2a;
}
.form-section summary::-webkit-details-marker { display: none; }
.form-section[open] summary {
    background: #2f2f2f;
}
.form-section .arrow {
    font-size: 0.85rem;
    transition: transform var(--transition);
}
.form-section[open] summary .arrow {
    transform: rotate(90deg);
}

/* Fields inside a collapsed block */
.form-section .inner-fields {
    padding: 1.5rem 2rem;
    background: #1a1a1a;
    display: grid;
    gap: 1.25rem;
}

/* Form layout – 2‑column on larger screens */
.contact-form {
    display: grid;
    gap: 2rem;                      /* space between sections */
}

/* Individual field */
.form-group {
    display: flex;
    flex-direction: column;
}
.form-group label {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
}
.form-group .required {
    color: #D4AF37;                 /* gold – indicates required */
}

/* Inputs / selects / textarea */
.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 0.75rem 1rem;
    border: none;
    border-radius: var(--radius);
    background: var(--bg-dark);
    color: var(--text-primary);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color var(--transition), box-shadow var(--transition);
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border: 2px solid var(--accent);
}

/* Preference buttons */
.submit-block {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 2rem;
    background: #1a1a1a;
}
.pref-group {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.pref-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-primary);
    cursor: pointer;
}

/* CTA button (matches rest of site) */
.cta-btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: var(--accent);
    color: var(--bg-dark);
    border-radius: var(--radius);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: background var(--transition), transform var(--transition);
    border: none;
}
.cta-btn:hover {
    background: var(--accent-hover);
    transform: translateY(-3px);
}

/* Animations – reuse existing reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}
.reveal.show {
    opacity: 1;
    transform: translateY(0);
}

/* --------------------------------------------------------------
 *  Small screen tweaks (≤ 480 px) – stack fields vertically
 *  -------------------------------------------------------------- */
@media (max-width: 480px) {
    .contact-form { grid-template-columns: 1fr; }
    .form-section .inner-fields { grid-template-columns: 1fr; }
}

/* ---------- Footer ---------- */
.footer {
    background: var(--bg-dark);
    text-align: center;
    padding: 2rem 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* ---------- Back‑to‑top ---------- */
.scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--accent);
    color: var(--bg-dark);
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition), transform var(--transition);
    z-index: 2000;
}
.scroll-top.visible {
    opacity: 1;
    pointer-events: auto;
    margin-bottom: 4% !important;
}
.scroll-top:hover {
    transform: translateY(-5px);
}
@media only screen and (max-width: 480px) {
  fieldset .submit-block legend{ padding-top: 2%; }
}

