/* Base reset */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #fff;
    background: #121212;
}

.container { width: 90%; max-width: 1200px; margin: 0 auto; }

header {
    background: #000;
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

header .logo img { height: 50px; }

nav { display: flex; align-items: center; justify-content: space-between; }

.nav-links { list-style: none; display: flex; gap: 1.5rem; }

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.nav-links a:hover { color: #f7a01b; }

#hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

#hamburger .bar {
    width: 25px;
    height: 3px;
    background: #fff;
    transition: 0.3s;
}

/* === HEADER LAYOUT ADJUSTMENT === */
header .container {
    /* make logo + nav sit side-by-side */
    display: flex;
    align-items: center;
    justify-content: space-between;   /* logo left, menu right */
}

/* give the nav list some breathing room from the logo (desktop view) */
@media (min-width: 769px) {
    .nav-links { margin-left: 2rem; } /* tweak value to taste */
}


@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        right: 0;
        top: 70px;
        background: #000;
        width: 100%;
        flex-direction: column;
        align-items: center;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    .nav-links.nav-active { max-height: 300px; padding: 1rem 0; }
    #hamburger { display: flex; }
}

#hamburger.toggle .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

#hamburger.toggle .bar:nth-child(2) { opacity: 0; }

#hamburger.toggle .bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero */
#hero {
    background: url('../img/hero-drh.png') center/cover no-repeat;
    height: 80vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-overlay {
    background: rgba(0, 0, 0, 0.6);
    padding: 2rem;
    border-radius: 8px;
}

#hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #f7a01b;
}

#hero p { margin-bottom: 1.5rem; }

/* Buttons */
.btn-primary {
    background: #f7a01b;
    color: #000;
    padding: 0.75rem 1.25rem;
    border: none;
    border-radius: 4px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover { background: #ffb53d; }

/* Sections */
.section { padding: 4rem 0; color: #ddd; }

.section h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #f7a01b;
}

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

.card {
    background: #1e1e1e;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.card img { width: 100%; height: 160px; object-fit: cover; }

.card h3 { margin: 1rem; padding: 0 1rem; color: #f7a01b; }

.card p { padding: 0 1rem 1rem; }

/* Dark section */
.section-dark { background: #1b1b1b; }

/* === ABOUT SECTION === */
.about-content { max-width: 900px; }

#about .lead {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

#about strong { color: #f7a01b; }

/* Small accent “pills” for keywords */
.pill {
    background: rgba(247, 160, 27, 0.15);
    padding: 0.15rem 0.5rem;
    border-radius: 4px;
    font-weight: 500;
}

/* Brand-coloured quote block */
#about blockquote {
    border-left: 4px solid #f7a01b;
    padding-left: 1rem;
    font-style: italic;
    color: #bbb;
    line-height: 1.7;
}

/* Responsive tweaks */
@media (max-width: 600px) {
    #about .lead { font-size: 1rem; }
}



/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    align-items: start;
}

.contact-grid a { color: #f7a01b; text-decoration: none; }

/* === CONTACT FORM LAYOUT === */
.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    align-items: start;
    margin-top: 0;
}

.form-field {
    display: flex;
    flex-direction: column;
}

.form-field label {
    margin-bottom: 0.25rem;
    font-size: 0.9rem;
    color: #f7a01b;          /* match your accent colour */
    font-weight: 500;
}

.form-field input,
.form-field textarea {
    padding: 0.5rem 0.75rem;
    border: none;
    border-radius: 4px;
    background: #fff;
    color: #000;
    font-size: 1rem;
}

.form-field textarea { resize: vertical; }

/* Make the textarea span full width */
.form-message { grid-column: 1 / -1; }

/* Button sits left-aligned under the grid */
.contact-form > .btn-primary {
    grid-column: 1 / -1;
    justify-self: start;
}

/* === RESPONSIVE — single-column on small screens === */
@media (max-width: 600px) {
    .contact-form { grid-template-columns: 1fr; }
}

/* Footer */
footer {
    background: #000;
    padding: 1rem 0;
    text-align: center;
}

footer img { height: 30px; margin-bottom: 0.5rem; }

footer p { font-size: 0.875rem; }
