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

body {
    font-family: Arial, sans-serif;
    background-color: #f5efe0;
    color: #333;
}

.hero {
    position: relative;
    height: 500px;
    background: url('pictures/header\ bg.jpeg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-attachment: fixed;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.50);
}

header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 30px 0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 80px;
}

.logo img {
    width: 100px;
    height: 100px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 50px;
    margin-right: 50px;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: #e3b21e;
}

.hero-text {
    position: relative;
    z-index: 10;
    text-align: center;
    margin-top: 50px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out forwards;
}

@keyframes fadeInUp {
    0%   { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

.hero-text .subtitle {
    color: #ffffff;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.hero-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: 60px;
    color: #e3b21e;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 2px 3px 10px rgba(0,0,0,0.5);
}


.services-section {
    padding: 60px 80px 80px;
    max-width: 1100px;
    margin: 0 auto;
}

.services-intro {
    text-align: center;
    font-size: 13.5px;
    color: #555;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto 50px;
}

/* SERVICE CARDS GRID */
.service-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: #fff;
    border-radius: 10px;
    padding: 36px 28px 32px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.service-card.non-clickable {
    cursor: default;
    border: 2px solid transparent;
}

.service-card.non-clickable:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 36px rgba(0,0,0,0.14);
    border-color: #8b2635;
}

.service-card.clickable {
    cursor: pointer;
    border: 2px solid transparent;
    text-decoration: none;
    color: inherit;
}

.service-card.clickable:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 36px rgba(0,0,0,0.14);
    border-color: #8b2635;
}

/* SERVICE ICON */
.service-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #8b2635;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    margin-bottom: 4px;
    flex-shrink: 0;
}

.service-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #8b2635;
    letter-spacing: 0.5px;
}

.service-card p {
    font-size: 13px;
    color: #555;
    line-height: 1.65;
    flex: 1;
}

.service-tag {
    font-size: 11px;
    color: #888;
    background: #f5efe0;
    padding: 4px 10px;
    border-radius: 20px;
    letter-spacing: 0.3px;
}


.card-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #8b2635;
    font-size: 13px;
    font-weight: 700;
    margin-top: 4px;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: gap 0.2s;
}

.service-card.clickable:hover .card-cta {
    gap: 12px;
}

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal-overlay:target {
    opacity: 1;
    pointer-events: all;
}

.modal {
    background: #fff;
    border-radius: 12px;
    width: 100%;
    max-width: 640px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(30px);
    transition: transform 0.3s ease;
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}

.modal-overlay:target .modal {
    transform: translateY(0);
}

.modal-header {
    background: #8b2635;
    padding: 28px 36px 22px;
    border-radius: 12px 12px 0 0;
    color: #fff;
}

.modal-subtitle {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.75);
    margin-bottom: 4px;
}

.modal-header h2 {
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #e3b21e;
}

.modal-close {
    position: absolute;
    top: 18px;
    right: 20px;
    background: rgba(255,255,255,0.15);
    border: none;
    color: #fff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background 0.2s;
    z-index: 10;
}

.modal-close:hover {
    background: rgba(255,255,255,0.30);
}


.modal-body {
    padding: 30px 36px 36px;
}

.reservation-table {
    width: 100%;
    border-collapse: collapse;
}

.reservation-table td {
    padding: 8px 10px;
    vertical-align: top;
}

.reservation-table td:first-child,
.reservation-table td:last-child {
    width: 50%;
}

/* Labels */
.reservation-table label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: #444;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
}

.req {
    color: #8b2635;
}

.reservation-table input,
.reservation-table select,
.reservation-table textarea {
    width: 100%;
    padding: 10px 13px;
    border: 1.5px solid #ddd;
    border-radius: 6px;
    font-size: 13.5px;
    font-family: Arial, sans-serif;
    color: #333;
    background: #fafafa;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}

.reservation-table input:focus,
.reservation-table select:focus,
.reservation-table textarea:focus {
    border-color: #8b2635;
    box-shadow: 0 0 0 3px rgba(139,38,53,0.10);
    background: #fff;
}

.reservation-table textarea {
    resize: vertical;
    min-height: 90px;
}

.reservation-table select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23888' d='M0 0l6 8 6-8z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-color: #fafafa;
    padding-right: 36px;
}

.reservation-table input[type="date"],
.reservation-table input[type="time"] {
    cursor: pointer;
    color-scheme: light;
}

.field-note {
    font-size: 11px;
    color: #999;
    margin-top: 4px;
    display: block;
}


.form-actions {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 12px;
    margin-top: 8px;
}


.btn-cancel {
    padding: 11px 24px;
    background: none;
    border: 1.5px solid #ccc;
    border-radius: 6px;
    color: #666;
    font-size: 14px;
    cursor: pointer;
    text-decoration: none;
    transition: border-color 0.2s, color 0.2s;
    font-family: Arial, sans-serif;
    display: inline-block;
}

.btn-cancel:hover {
    border-color: #999;
    color: #333;
}

.btn-submit {
    padding: 11px 28px;
    background: #8b2635;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    letter-spacing: 0.5px;
    transition: background 0.2s;
    font-family: Arial, sans-serif;
}

.btn-submit:hover {
    background: #a93040;
}

footer {
    background-color: #6B7A52;
    color: #ffffff;
    text-align: center;
    padding: 20px;
    font-size: 14px;
}

@media (max-width: 820px) {
    .service-cards {
        grid-template-columns: 1fr;
    }

    .services-section {
        padding: 40px 24px 60px;
    }

    nav {
        padding: 0 20px;
    }

    .nav-links {
        gap: 18px;
        margin-right: 0;
    }
}

