/* ── Reset & base ── */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Georgia, serif;
}

/* ── Header ── */
header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 40px;
    background-color: #2d5a27;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 100;
}

/* ── Logo ── */
.logo img {
    height: 50px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
}

/* ── Hamburger Button ── */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 200;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #fff;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* ── Nav links ── */
nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

nav ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 16px;
}

nav ul li a:hover {
    color: rgba(255,255,255,0.7);
}

/* ── Hero ── */
.hero {
    background-color: #2d5a27;
    color: #fff;
    padding: 120px 40px 100px;
    text-align: center;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 20px;
    margin-bottom: 40px;
}

.btn {
    display: inline-block;
    padding: 15px 35px;
    background-color: #fff;
    color: #2d5a27;
    text-decoration: none;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn:hover {
    background-color: #2d5a27;
    color: #fff;
    border: 2px solid #fff;
}

/* ── Services Summary ── */
.services-summary {
    padding: 80px 40px;
    text-align: center;
    background-color: #f9f9f9;
}

.services-summary h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #222;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.service-card {
    background-color: #fff;
    padding: 30px 20px;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2d5a27;
}

.service-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

.btn-outline {
    display: inline-block;
    padding: 12px 30px;
    border: 2px solid #2d5a27;
    color: #2d5a27;
    text-decoration: none;
    font-size: 16px;
    border-radius: 4px;
}

.btn-outline:hover {
    background-color: #2d5a27;
    color: #fff;
}

/* ── Why Choose Us ── */
.why-us {
    padding: 80px 40px;
    text-align: center;
    background-color: #2d5a27;
    color: #fff;
}

.why-us h2 {
    font-size: 36px;
    margin-bottom: 40px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.why-card {
    padding: 30px 20px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 6px;
}

.why-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.why-card p {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255,255,255,0.85);
}

/* ── Footer ── */
footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 40px;
    background-color: #222;
    color: #fff;
}

.footer-links {
    display: flex;
    gap: 25px;
}

.footer-links a {
    text-decoration: none;
    color: #ccc;
    font-size: 14px;
}

.footer-links a:hover {
    color: #fff;
}

.footer-copy {
    font-size: 12px;
    color: #888;
}

/* ── Page Hero ── */
.page-hero {
    background-color: #2d5a27;
    color: #fff;
    padding: 120px 40px 80px;
    text-align: center;
}

.page-hero h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 18px;
    color: rgba(255,255,255,0.85);
}

/* ── About Content ── */
.about-content {
    padding: 80px 40px;
    max-width: 800px;
    margin: 0 auto;
}

.about-text h2 {
    font-size: 28px;
    color: #2d5a27;
    margin-bottom: 15px;
    margin-top: 40px;
}

.about-text h2:first-child {
    margin-top: 0;
}

.about-text p {
    font-size: 16px;
    color: #444;
    line-height: 1.8;
    margin-bottom: 15px;
}

.about-text .btn {
    margin-top: 20px;
}

/* ── Services List ── */
.services-list {
    padding: 80px 40px;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-item {
    padding: 35px;
    border-left: 4px solid #2d5a27;
    background-color: #f9f9f9;
    border-radius: 0 6px 6px 0;
}

.service-item h2 {
    font-size: 24px;
    color: #2d5a27;
    margin-bottom: 12px;
}

.service-item p {
    font-size: 16px;
    color: #444;
    line-height: 1.8;
}

/* ── Services CTA ── */
.services-cta {
    background-color: #f9f9f9;
    padding: 80px 40px;
    text-align: center;
    border-top: 1px solid #e0e0e0;
}

.services-cta h2 {
    font-size: 32px;
    color: #222;
    margin-bottom: 15px;
}

.services-cta p {
    font-size: 18px;
    color: #555;
    margin-bottom: 35px;
}

.services-cta .btn {
    margin-right: 15px;
}

/* ── Contact Section ── */
.contact-section {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    padding: 80px 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-details h2 {
    font-size: 22px;
    color: #2d5a27;
    margin-bottom: 15px;
    margin-top: 35px;
}

.contact-details h2:first-child {
    margin-top: 0;
}

.contact-details p {
    font-size: 16px;
    color: #444;
    line-height: 2;
}

.contact-details a {
    color: #444;
    text-decoration: none;
}

.contact-details a:hover {
    color: #2d5a27;
}

.contact-form h2 {
    font-size: 22px;
    color: #2d5a27;
    margin-bottom: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.form-group label {
    font-size: 14px;
    color: #333;
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
    font-family: Georgia, serif;
    color: #333;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2d5a27;
}

/* ── Booking Section ── */
.booking-section {
    padding: 80px 40px;
    max-width: 700px;
    margin: 0 auto;
}

.booking-form .btn {
    width: 100%;
    text-align: center;
    padding: 15px;
    margin-top: 10px;
}

.form-group select {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
    font-family: Georgia, serif;
    color: #333;
    background-color: #fff;
}

.form-group select:focus {
    outline: none;
    border-color: #2d5a27;
}

/* ── Auth Pages ── */
.auth-section {
    padding: 80px 40px;
    max-width: 500px;
    margin: 0 auto;
}

.auth-form .btn {
    width: 100%;
    text-align: center;
    padding: 15px;
    margin-top: 10px;
}

.auth-link {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: #555;
}

.auth-link a {
    color: #2d5a27;
    text-decoration: none;
}

.auth-link a:hover {
    text-decoration: underline;
}

/* ── Account Page ── */
.account-section {
    padding: 80px 40px;
    max-width: 800px;
    margin: 0 auto;
}

.account-welcome {
    margin-bottom: 40px;
}

.account-welcome h2 {
    font-size: 28px;
    color: #222;
    margin-bottom: 10px;
}

.account-welcome p {
    color: #555;
    margin-bottom: 20px;
}

.account-bookings p {
    color: #555;
    font-size: 16px;
}

.account-bookings a {
    color: #2d5a27;
    text-decoration: none;
}

/* ── Admin Section ── */
.admin-section {
    padding: 80px 40px;
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.admin-form h2,
.admin-entries h2 {
    font-size: 24px;
    color: #2d5a27;
    margin-bottom: 25px;
}

.admin-form .btn {
    width: 100%;
    text-align: center;
    padding: 15px;
    margin-top: 10px;
}

#upload-status {
    margin-top: 15px;
    font-size: 14px;
    color: #2d5a27;
    text-align: center;
}

.entry-card {
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 15px;
    margin-bottom: 15px;
}

.entry-card h3 {
    font-size: 16px;
    color: #222;
    margin-bottom: 8px;
}

.entry-card p {
    font-size: 14px;
    color: #555;
    margin-bottom: 10px;
}

.entry-card button {
    background: none;
    border: 1px solid #cc0000;
    color: #cc0000;
    padding: 6px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 13px;
}

.entry-card button:hover {
    background-color: #cc0000;
    color: #fff;
}

/* ── Portfolio Section ── */
.portfolio-section {
    padding: 80px 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.portfolio-card {
    margin-bottom: 60px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 30px;
}

.portfolio-card h3 {
    font-size: 24px;
    color: #2d5a27;
    margin-bottom: 8px;
}

.portfolio-location {
    font-size: 14px;
    color: #888;
    margin-bottom: 10px;
}

.portfolio-description {
    font-size: 15px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
}

.portfolio-info {
    margin-bottom: 20px;
}

/* ── Gallery Strip ── */
.gallery-strip {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 10px;
    scrollbar-width: thin;
    scrollbar-color: #2d5a27 #f0f0f0;
}

.gallery-strip::-webkit-scrollbar {
    height: 6px;
}

.gallery-strip::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 3px;
}

.gallery-strip::-webkit-scrollbar-thumb {
    background-color: #2d5a27;
    border-radius: 3px;
}

.gallery-item {
    position: relative;
    flex: 0 0 250px;
    height: 200px;
    cursor: pointer;
    border-radius: 6px;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.2s ease;
}

.gallery-item:hover img {
    transform: scale(1.03);
}

.gallery-label {
    position: absolute;
    bottom: 8px;
    left: 8px;
    background-color: #2d5a27;
    color: #fff;
    padding: 3px 10px;
    font-size: 12px;
    border-radius: 4px;
}

/* ── Lightbox ── */
#lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 4px;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
}

.lightbox-prev,
.lightbox-next {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255,255,255,0.2);
    border: none;
    color: #fff;
    font-size: 24px;
    padding: 15px 20px;
    cursor: pointer;
    border-radius: 4px;
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

.lightbox-prev:hover,
.lightbox-next:hover {
    background-color: rgba(255,255,255,0.4);
}

#lightbox-counter {
    color: #fff;
    font-size: 14px;
}

/* ── Booking Cards ── */
.booking-card {
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 20px;
    margin-bottom: 20px;
}

.booking-card h3 {
    font-size: 18px;
    color: #2d5a27;
    margin-bottom: 10px;
    text-transform: capitalize;
}

.booking-card p {
    font-size: 15px;
    color: #444;
    margin-bottom: 6px;
}

.booking-status {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 13px;
    text-transform: capitalize;
}

.booking-status.pending {
    background-color: #fff3cd;
    color: #856404;
}

.booking-status.confirmed {
    background-color: #d4edda;
    color: #155724;
}

.booking-status.completed {
    background-color: #d1ecf1;
    color: #0c5460;
}

/* ── Modal ── */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-box {
    background-color: #fff;
    border-radius: 6px;
    padding: 40px;
    max-width: 500px;
    width: 100%;
}

.modal-box h2 {
    font-size: 24px;
    color: #222;
    margin-bottom: 15px;
}

.modal-box p {
    font-size: 15px;
    color: #444;
    line-height: 1.7;
    margin-bottom: 15px;
}

.modal-box ul {
    margin: 15px 0 15px 20px;
}

.modal-box ul li {
    font-size: 15px;
    color: #444;
    line-height: 1.8;
}

.modal-box a {
    color: #2d5a27;
    text-decoration: none;
}

.modal-actions {
    display: flex;
    gap: 15px;
    margin-top: 25px;
    flex-wrap: wrap;
}

/* ── Cancel booking button ── */
.cancel-booking-btn {
    margin-top: 15px;
    background: none;
    border: 1px solid #cc0000;
    color: #cc0000;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 13px;
    font-family: Georgia, serif;
}

.cancel-booking-btn:hover {
    background-color: #cc0000;
    color: #fff;
}

/* ── Account Hero ── */
.account-hero {
    background-color: #2d5a27;
    color: #fff;
    padding: 120px 40px 80px;
    text-align: center;
}

.account-hero h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.account-hero p {
    font-size: 18px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 30px;
}

.btn-outline-white {
    display: inline-block;
    padding: 12px 30px;
    border: 2px solid #fff;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    border-radius: 4px;
    background: none;
    cursor: pointer;
    font-family: Georgia, serif;
}

.btn-outline-white:hover {
    background-color: #fff;
    color: #2d5a27;
}

/* ── Account Quick Actions ── */
.account-actions {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    padding: 60px 40px;
    max-width: 900px;
    margin: 0 auto;
}

.action-card {
    text-decoration: none;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.2s ease;
}

.action-card:hover {
    border-color: #2d5a27;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.action-icon {
    font-size: 32px;
    margin-bottom: 15px;
}

.action-card h3 {
    font-size: 18px;
    color: #2d5a27;
    margin-bottom: 8px;
}

.action-card p {
    font-size: 14px;
    color: #666;
}

/* ── Account Bookings Section ── */
.account-bookings-section {
    padding: 0 40px 80px;
    max-width: 900px;
    margin: 0 auto;
}

.account-bookings-section h2 {
    font-size: 28px;
    color: #222;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e0e0e0;
}

.account-bookings-section a {
    color: #2d5a27;
    text-decoration: none;
}

/* ── Admin Bookings Section ── */
.admin-bookings-section {
    padding: 60px 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.admin-bookings-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 15px;
}

.admin-bookings-header h2 {
    font-size: 28px;
    color: #222;
}

.booking-filters {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 8px 16px;
    border: 1px solid #ddd;
    background: #fff;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-family: Georgia, serif;
    color: #555;
}

.filter-btn.active {
    background-color: #2d5a27;
    color: #fff;
    border-color: #2d5a27;
}

.filter-btn:hover:not(.active) {
    border-color: #2d5a27;
    color: #2d5a27;
}

.admin-booking-card {
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 25px;
    margin-bottom: 20px;
    background-color: #fff;
    border-left: 4px solid #e0e0e0;
}

.admin-booking-card.pending { border-left-color: #f0ad4e; }
.admin-booking-card.confirmed { border-left-color: #2d5a27; }
.admin-booking-card.completed { border-left-color: #5bc0de; }
.admin-booking-card.cancelled { border-left-color: #cc0000; opacity: 0.7; }

.admin-booking-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.admin-booking-header h3 {
    font-size: 20px;
    color: #222;
    text-transform: capitalize;
}

.admin-booking-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 20px;
}

.admin-booking-details p {
    font-size: 14px;
    color: #444;
}

.admin-booking-details a {
    color: #2d5a27;
    text-decoration: none;
}

.admin-booking-actions {
    display: flex;
    gap: 10px;
}

.status-btn {
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 13px;
    font-family: Georgia, serif;
}

.status-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.confirm-btn { background-color: #2d5a27; color: #fff; }
.complete-btn { background-color: #5bc0de; color: #fff; }

.cancel-btn {
    background-color: #fff;
    color: #cc0000;
    border: 1px solid #cc0000;
}

.cancel-btn:hover:not(:disabled) {
    background-color: #cc0000;
    color: #fff;
}

/* ── Booking Calendar ── */
.booking-step {
    max-width: 700px;
    margin: 0 auto;
    padding: 60px 40px;
}

.booking-step h2 {
    font-size: 26px;
    color: #222;
    margin-bottom: 25px;
}

.booking-step > p {
    font-size: 15px;
    color: #555;
    margin-bottom: 25px;
}

.calendar-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.calendar-nav button {
    background: none;
    border: 1px solid #ddd;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-family: Georgia, serif;
}

.calendar-nav button:hover {
    border-color: #2d5a27;
    color: #2d5a27;
}

.calendar-nav span {
    font-size: 18px;
    font-weight: bold;
    color: #222;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 6px;
    margin-bottom: 20px;
}

.calendar-day-header {
    text-align: center;
    font-size: 13px;
    color: #888;
    padding: 8px 0;
    font-weight: bold;
}

.calendar-cell {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    font-size: 15px;
    cursor: default;
}

.calendar-cell.empty { background: none; }

.calendar-cell.available {
    background-color: #f0f7ee;
    color: #2d5a27;
    cursor: pointer;
    border: 1px solid #c8e6c0;
}

.calendar-cell.available:hover {
    background-color: #2d5a27;
    color: #fff;
}

.calendar-cell.selected {
    background-color: #2d5a27 !important;
    color: #fff !important;
    border-color: #2d5a27 !important;
}

.calendar-cell.unavailable {
    background-color: #f5f5f5;
    color: #bbb;
    cursor: not-allowed;
}

/* ── Time Slots ── */
.time-slots {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 25px;
}

.time-slot-btn {
    padding: 15px 20px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background-color: #fff;
    font-size: 16px;
    font-family: Georgia, serif;
    cursor: pointer;
    text-align: left;
    transition: all 0.2s ease;
}

.time-slot-btn:hover:not(:disabled) {
    border-color: #2d5a27;
    background-color: #f0f7ee;
    color: #2d5a27;
}

.time-slot-btn.selected {
    background-color: #2d5a27;
    color: #fff;
    border-color: #2d5a27;
}

.time-slot-btn.slot-full {
    background-color: #f5f5f5;
    color: #bbb;
    cursor: not-allowed;
}

/* ── Booking Form Actions ── */
.booking-form-actions {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

/* ── Cancelled bookings collapsible ── */
.cancelled-bookings-details {
    margin-top: 30px;
}

.cancelled-bookings-details summary {
    font-size: 14px;
    color: #888;
    cursor: pointer;
    padding: 10px 0;
    border-top: 1px solid #e0e0e0;
    list-style: none;
}

.cancelled-bookings-details summary:hover {
    color: #555;
}

.cancelled-bookings-list {
    margin-top: 15px;
}

.booking-card-faded {
    opacity: 0.6;
}

/* ── Admin Divider ── */
.admin-divider {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px 40px 0;
    border-top: 2px solid #e0e0e0;
}

.admin-divider h2 {
    font-size: 28px;
    color: #222;
}

/* ── Image Preview Grid ── */
.image-preview-grid {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.image-preview-item {
    position: relative;
    width: 80px;
    height: 80px;
}

.image-preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
    border: 1px solid #e0e0e0;
}

.preview-label {
    position: absolute;
    bottom: 4px;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 10px;
    background-color: #2d5a27;
    color: #fff;
    padding: 2px 4px;
    border-radius: 0 0 4px 4px;
}

/* ════════════════════════════
   MOBILE RESPONSIVE
════════════════════════════ */
@media (max-width: 768px) {

    header {
        padding: 12px 20px;
    }

    .logo img {
        height: 50px;
    }

    .hamburger {
        display: flex;
    }

    #main-nav {
        display: none;
        position: fixed;
        top: 74px;
        left: 0;
        width: 100%;
        background-color: #2d5a27;
        z-index: 99;
        padding-bottom: 10px;
    }

    #main-nav.open {
        display: block;
    }

    #main-nav ul {
        flex-direction: column;
        gap: 0;
    }

    #main-nav ul li a {
        display: block;
        padding: 14px 20px;
        color: #fff;
        font-size: 16px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    #main-nav ul li a:hover {
        background-color: rgba(255,255,255,0.1);
    }

    .hero { padding: 120px 20px 80px; }
    .page-hero { padding: 120px 20px 60px; }
    .account-hero { padding: 120px 20px 60px; }

    .hero h1 { font-size: 32px; }
    .hero p { font-size: 16px; }
    .page-hero h1 { font-size: 28px; }
    .account-hero h1 { font-size: 30px; }

    .services-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .admin-section { grid-template-columns: 1fr; }

    .contact-section {
        grid-template-columns: 1fr;
        padding: 40px 20px;
    }

    .about-content { padding: 40px 20px; }
    .services-list { padding: 40px 20px; }
    .booking-section { padding: 40px 20px; }
    .auth-section { padding: 40px 20px; }
    .account-section { padding: 40px 20px; }
    .portfolio-section { padding: 40px 20px; }

    footer { padding: 40px 20px; }

    .footer-links {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .services-cta { padding: 60px 20px; }

    .services-cta .btn {
        margin-right: 0;
        margin-bottom: 15px;
        display: block;
    }

    .account-actions {
        grid-template-columns: 1fr;
        padding: 40px 20px;
    }

    .account-bookings-section { padding: 0 20px 60px; }

    .admin-bookings-section { padding: 40px 20px; }

    .admin-bookings-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .admin-booking-details { grid-template-columns: 1fr; }
    .admin-booking-actions { flex-wrap: wrap; }

    .admin-divider { padding: 20px 20px 0; }

    .booking-step { padding: 40px 20px; }

    .booking-form-actions { flex-direction: column; }

    .booking-form-actions .btn,
    .booking-form-actions .btn-outline {
        width: 100%;
        text-align: center;
    }

    .gallery-item {
        flex: 0 0 180px;
        height: 150px;
    }

    .lightbox-prev { left: 5px; }
    .lightbox-next { right: 5px; }
}



/* ── Admin Notes ── */
.admin-notes-section {
    margin: 15px 0;
    padding-top: 15px;
    border-top: 1px solid #e0e0e0;
}

.admin-notes-section label {
    display: block;
    font-size: 13px;
    color: #555;
    margin-bottom: 6px;
}

.admin-notes-input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    font-family: Georgia, serif;
    color: #333;
    resize: vertical;
    margin-bottom: 8px;
}

.admin-notes-input:focus {
    outline: none;
    border-color: #2d5a27;
}

.save-notes-btn {
    padding: 6px 16px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    font-size: 13px;
    font-family: Georgia, serif;
    color: #555;
}

.save-notes-btn:hover {
    border-color: #2d5a27;
    color: #2d5a27;
}






/* ── Customer List ── */
.admin-customers-section {
    padding: 60px 40px;
    max-width: 1100px;
    margin: 0 auto;
    border-top: 2px solid #e0e0e0;
}

.admin-customers-header h2 {
    font-size: 28px;
    color: #222;
    margin-bottom: 25px;
}

.customers-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.customers-table th {
    text-align: left;
    padding: 12px 15px;
    background-color: #f9f9f9;
    border-bottom: 2px solid #e0e0e0;
    color: #555;
    font-size: 13px;
}

.customers-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #e0e0e0;
    color: #333;
}

.customers-table tr:hover td {
    background-color: #f9f9f9;
}

.customers-table a {
    color: #2d5a27;
    text-decoration: none;
}

.customers-table a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .admin-customers-section {
        padding: 40px 20px;
    }

    .customers-table th,
    .customers-table td {
        padding: 10px;
        font-size: 13px;
    }
}





/* ── Admin Weekly Calendar ── */
.admin-calendar-section {
    padding: 60px 40px 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.admin-calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
    flex-wrap: wrap;
    gap: 15px;
}

.admin-calendar-header h2 {
    font-size: 28px;
    color: #222;
}

.calendar-week-nav {
    display: flex;
    align-items: center;
    gap: 15px;
}

.calendar-week-nav button {
    background: none;
    border: 1px solid #ddd;
    padding: 6px 14px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-family: Georgia, serif;
}

.calendar-week-nav button:hover {
    border-color: #2d5a27;
    color: #2d5a27;
}

.calendar-week-nav span {
    font-size: 15px;
    color: #555;
}

.week-calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
}

.week-day-column {
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    overflow: hidden;
}

.week-day-header {
    background-color: #2d5a27;
    color: #fff;
    padding: 8px;
    text-align: center;
}

.week-day-name {
    display: block;
    font-size: 12px;
    opacity: 0.85;
}

.week-day-date {
    display: block;
    font-size: 18px;
    font-weight: bold;
}

.week-day-bookings {
    padding: 8px;
    min-height: 80px;
}

.no-bookings-day {
    text-align: center;
    color: #ccc;
    font-size: 18px;
    margin-top: 20px;
}

.week-booking-item {
    border-radius: 4px;
    padding: 6px 8px;
    margin-bottom: 6px;
    font-size: 12px;
}

.week-booking-item.pending {
    background-color: #fff3cd;
    border-left: 3px solid #f0ad4e;
}

.week-booking-item.confirmed {
    background-color: #d4edda;
    border-left: 3px solid #2d5a27;
}

.week-booking-item.completed {
    background-color: #d1ecf1;
    border-left: 3px solid #5bc0de;
}

.week-booking-name {
    display: block;
    font-weight: bold;
    color: #222;
    margin-bottom: 2px;
}

.week-booking-service {
    display: block;
    color: #555;
    text-transform: capitalize;
    margin-bottom: 2px;
}

.week-booking-time {
    display: block;
    color: #888;
    font-size: 11px;
}

@media (max-width: 768px) {
    .admin-calendar-section {
        padding: 40px 20px;
    }

    .week-calendar-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ── Entry Edit ── */
.entry-actions {
    display: flex;
    gap: 8px;
    margin-top: 10px;
}

.edit-entry-btn {
    background: none;
    border: 1px solid #2d5a27;
    color: #2d5a27;
    padding: 6px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 13px;
}

.edit-entry-btn:hover {
    background-color: #2d5a27;
    color: #fff;
}

.save-entry-btn {
    background-color: #2d5a27;
    border: none;
    color: #fff;
    padding: 6px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 13px;
}

.cancel-edit-btn {
    background: none;
    border: 1px solid #ddd;
    color: #555;
    padding: 6px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 13px;
}

.entry-edit {
    margin-top: 10px;
}



/* ── Edit Photos Grid ── */
.edit-photos-grid {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.edit-photo-item {
    position: relative;
    width: 80px;
    height: 80px;
    transition: opacity 0.2s ease;
}

.edit-photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
    border: 1px solid #e0e0e0;
}

.remove-photo-btn {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 20px;
    height: 20px;
    background-color: #cc0000;
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}



/* ── Privacy Policy ── */
.privacy-section {
    padding: 80px 40px;
    max-width: 800px;
    margin: 0 auto;
}

.privacy-section h2 {
    font-size: 22px;
    color: #2d5a27;
    margin-top: 40px;
    margin-bottom: 15px;
}

.privacy-section p {
    font-size: 15px;
    color: #444;
    line-height: 1.8;
    margin-bottom: 15px;
}

.privacy-section ul {
    margin: 10px 0 15px 25px;
}

.privacy-section ul li {
    font-size: 15px;
    color: #444;
    line-height: 1.8;
}

.privacy-section a {
    color: #2d5a27;
    text-decoration: none;
}

.privacy-section a:hover {
    text-decoration: underline;
}

.privacy-credit {
    margin-top: 40px;
    font-size: 13px;
    color: #888;
    border-top: 1px solid #e0e0e0;
    padding-top: 20px;
}

@media (max-width: 768px) {
    .privacy-section {
        padding: 40px 20px;
    }
}



/* ── Cookie Notice ── */
#cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #222;
    color: #fff;
    padding: 15px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    z-index: 999;
    font-size: 14px;
}

#cookie-notice p {
    margin: 0;
    color: #ccc;
    line-height: 1.5;
}

#cookie-notice a {
    color: #fff;
    text-decoration: underline;
}

#cookie-notice button {
    background-color: #2d5a27;
    color: #fff;
    border: none;
    padding: 8px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-family: Georgia, serif;
    white-space: nowrap;
}

#cookie-notice button:hover {
    background-color: #3d7a35;
}

@media (max-width: 768px) {
    #cookie-notice {
        flex-direction: column;
        padding: 20px;
        text-align: center;
    }
}