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

body {
    font-family: Arial, Helvetica, sans-serif;
    background: linear-gradient(to bottom, #111, #1a1a1a);
    color: #f5f5f5;
    line-height: 1.6;
}

/* Header */
header {
    background: #000;
    padding: 20px 40px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

nav a {
    color: #fff;
    margin-left: 20px;
    text-decoration: none;
    transition: color 0.2s;
}

nav a:hover {
    color: #cfa44a;
}

/* Hero Section - 16:9 container */
.hero {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 ratio */
    overflow: hidden;
    margin-bottom: 40px;
}

.hero img,
.hero video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Sections */
section {
    padding: 60px 20px;
    text-align: center;
}

/* Cards Container */
.cards {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

/* Single Card (Centered Fixed Width) */
.card {
    position: relative;
    background: rgba(27, 27, 27, 0.95);
    padding: 40px;
    border-radius: 12px;
    width: 100%;
    max-width: 766px; /* same as old table */
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
    z-index: 1;
    transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.18);
}

.card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
    color: #fff;
}

.card p {
    margin-bottom: 10px;
    color: #ccc;
    font-size: 0.95rem;
}

/* Buttons inside Cards */
.card .buttons a {
    display: inline-block;
    background: #cfa44a;
    color: #000;
    text-decoration: none;
    padding: 10px 18px;
    border-radius: 8px;
    font-weight: bold;
    margin-right: 10px;
    font-size: 0.95em;
    transition: background 0.2s;
}

.card .buttons a:hover {
    background: #b8873a;
}

/* Contact Form */
.card form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: left;
    margin-top: 20px;
}

.card form label {
    font-size: 0.9rem;
    color: #ddd;
}

.card form input,
.card form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #333;
    border-radius: 6px;
    background: #111;
    color: #fff;
    font-size: 1rem;
}

.card form input:focus,
.card form textarea:focus {
    border-color: #cfa44a;
    outline: none;
}

.card form textarea {
    resize: vertical;
    min-height: 150px;
}

.card form button {
    margin-top: 20px;
    padding: 14px;
    border: none;
    border-radius: 6px;
    background: #cfa44a;
    color: #000;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}

.card form button:hover {
    background: #b8873a;
    transform: translateY(-2px);
}

/* Form message */
#formMessage {
    margin-top: 10px;
    font-weight: bold;
    min-height: 20px;
    font-size: 0.95rem;
}

/* Bottom CTA Buttons */
.bottom-cta {
    text-align: center;
    margin-top: 50px;
}

.bottom-cta a {
    display: inline-block;
    background: #cfa44a;
    color: #000;
    text-decoration: none;
    padding: 14px 24px;
    border-radius: 10px;
    font-weight: bold;
    margin: 8px;
    font-size: 1rem;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

.bottom-cta a:hover {
    background: #b8873a;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.5);
}

/* Footer */
footer {
    text-align: center;
    padding: 30px;
    background: #000;
}
