/* ------------------------------
   COLOR PALETTE
   ------------------------------ */
/*
   Reddish Brown: #A75D39
   Deep Brown:    #6B4B32
   Cream:         #F7F1E8
   Text Dark:     #1C1C1C
   White:         #FFFFFF
*/

/* ------------------------------
   BASE STYLES
   ------------------------------ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", Tahoma, sans-serif;
}

body {
    background-color: #F7F1E8; /* cream */
    color: #1C1C1C; /* dark text */
    line-height: 1.6;
}

a {
    text-decoration: none;
    transition: color 0.3s ease;
}

/* ------------------------------
   NAVIGATION BAR
   ------------------------------ */
.navbar {
    width: 100%;
    background: #6B4B32; /* deep brown */
    color: #FFFFFF;
    padding: 15px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.4rem;
    font-weight: bold;
    letter-spacing: 1px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links a {
    color: #FFFFFF;
    font-size: 1rem;
}

.nav-links a:hover,
.nav-links .active {
    opacity: 0.7;
}

/* ------------------------------
   USER SECTION
   ------------------------------ */
.user-section {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
}

.notifications {
    position: relative;
    font-size: 1.4rem;
    cursor: pointer;
    color: #999999;
    transition: color 0.3s ease;
}

.notifications:hover {
    color: #FFFFFF;
}

.notifications .badge {
    position: absolute;
    top: -6px;
    right: -8px;
    background-color: #A75D39;
    color: #FFFFFF;
    font-size: 0.7rem;
    padding: 2px 5px;
    border-radius: 50%;
    font-weight: bold;
}

@keyframes bell-shake {
    0% { transform: rotate(0deg); }
    15% { transform: rotate(15deg); }
    30% { transform: rotate(-10deg); }
    45% { transform: rotate(10deg); }
    60% { transform: rotate(-5deg); }
    75% { transform: rotate(5deg); }
    100% { transform: rotate(0deg); }
}

.notifications.new-notification {
    animation: bell-shake 0.8s ease-in-out;
}

.user-profile {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.user-profile .avatar {
    width: 32px;
    height: 32px;
    background-color: #6B4B32;
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.user-profile .user-name {
    color: #FFFFFF;
    font-weight: bold;
}

.user-profile:hover .user-name {
    color: #A75D39;
}

/* ------------------------------
   HERO SECTION
   ------------------------------ */
.hero {
    position: relative;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

/* Video background */
.hero video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
}

/* Dark overlay to maintain text readability */
.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.22);
    z-index: 1;
}

/* Hero content remains on top */
.hero-content {
    position: relative;
    color: #1C1C1C; /* or #FFFFFF if text is hard to read on video */
    max-width: 700px;
    z-index: 2;
}

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 10px;
    color: #A75D39;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.btn {
    display: inline-block;
    background: #A75D39;
    color: #FFFFFF;
    padding: 12px 22px;
    border-radius: 6px;
    font-size: 1.1rem;
}

.btn:hover {
    background: #6B4B32;
}


/* ------------------------------
   QUICK LINKS / CARDS SECTION
   ------------------------------ */
.quick-links {
    padding: 50px 20px;
    text-align: center;
}

.quick-links h2 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: #6B4B32;
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    max-width: 1100px;
    margin: auto;
}

.card {
    background: #FFFFFF;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    text-align: center; /* center content including images */
    border-left: 6px solid #A75D39;
}

.card img {
    display: block;
    width: 100%;
    max-width: 100%;
    max-height: 250px; /* adjust as needed */
    object-fit: contain; /* prevents cropping */
    margin: 0 auto 15px;
    border-radius: 15px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    background-color: #F7F1E8; /* optional, fills background space */
}

.card h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
    color: #6B4B32;
}

.card p {
    margin-bottom: 15px;
}

.card-btn {
    display: inline-block;
    background: #6B4B32;
    color: #FFFFFF;
    padding: 10px 18px;
    border-radius: 6px;
}

.card-btn:hover {
    background: #A75D39;
}
/* ------------------------------
   AMENITIES SECTION
   ------------------------------ */
.amenities {
    padding: 50px 20px;
    max-width: 1100px;
    margin: auto;
    text-align: center;
}

.amenities h2 {
    font-size: 2rem;
    color: #6B4B32;
    margin-bottom: 25px;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.amenity {
    background: #FFFFFF;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.amenity:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.amenity img {
    width: 100%;
    max-height: 180px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 15px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.amenity h3 {
    font-size: 1.3rem;
    color: #A75D39;
}

/* ------------------------------
   CALL TO ACTION SECTION
   ------------------------------ */
.cta {
    background: #6B4B32;
    color: #FFFFFF;
    text-align: center;
    padding: 60px 20px;
    border-radius: 10px;
    margin: 50px 20px;
}

.cta h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.cta p {
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.cta .btn-large {
    font-size: 1.2rem;
    padding: 14px 26px;
}

/* ------------------------------
   GALLERY / SLIDER SECTION
   ------------------------------ */
.gallery {
    padding: 50px 20px;
    max-width: 1100px;
    margin: auto;
    text-align: center;
}

.gallery h2 {
    font-size: 2rem;
    color: #6B4B32;
    margin-bottom: 25px;
}

.gallery-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.gallery-slider img {
    width: 100%;
    border-radius: 15px;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}


/* ------------------------------
   ABOUT PAGE
   ------------------------------ */
.about-page {
    max-width: 1100px;
    margin: 40px auto;
    padding: 20px;
}

.about-page h1 {
    color: #6B4B32;
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-align: center;
}

.about-page h2 {
    color: #A75D39;
    font-size: 1.8rem;
    margin-bottom: 15px;
    border-bottom: 2px solid #6B4B32;
    padding-bottom: 5px;
}

.about-page p,
.about-page li {
    color: #4A3A2A;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.about-page ul {
    list-style-type: disc;
    padding-left: 20px;
}

/* ------------------------------
   BOARD MEMBERS CAROUSEL
   ------------------------------ */
.board-info {
    max-width: 1100px;
    margin: 40px auto;
    padding: 0 20px;
}

.board-slider-container {
    position: relative;
}

.board-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 10px;
    scroll-behavior: smooth;
}

.board-slider::-webkit-scrollbar {
    height: 8px;
}

.board-slider::-webkit-scrollbar-thumb {
    background-color: #A75D39;
    border-radius: 4px;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #6B4B32;
    color: #FFFFFF;
    border: none;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    opacity: 0.8;
}

.slider-btn:hover {
    background-color: #A75D39;
    opacity: 1;
}

.slider-btn.prev { left: -15px; }
.slider-btn.next { right: -15px; }

.board-card {
    flex: 0 0 250px;
    background-color: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 15px;
    border-top: 6px solid #A75D39;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.board-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.board-card img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 15px;
    border: 3px solid #6B4B32;
}

.board-card h3 { color: #6B4B32; margin-bottom: 5px; font-size: 1.2rem; }
.board-card p { color: #4A3A2A; font-size: 0.95rem; }

/* ------------------------------
   FOOTER
   ------------------------------ */
.footer {
    padding: 25px;
    background: #6B4B32;
    color: #FFFFFF;
    text-align: center;
    margin-top: 40px;
}

.footer a { color: #F7F1E8; }
.footer a:hover { opacity: 0.8; }

/* ------------------------------
   RESPONSIVE TWEAKS
   ------------------------------ */
@media (max-width: 768px) {
    .hero h1 { font-size: 2.2rem; }
    .hero { height: 50vh; }
    .members-dashboard .cards { grid-template-columns: 1fr; }
    .members-dashboard h1 { font-size: 2rem; }
    .board-card { flex: 0 0 200px; }
    .board-card img { width: 100px; height: 100px; }
    .slider-btn.prev { left: -10px; }
    .slider-btn.next { right: -10px; }
    .documents-page { padding: 20px; }
    .documents-page h1 { font-size: 2rem; }
    .documents-list h2 { font-size: 1.4rem; }
    .documents-list { grid-template-columns: 1fr; }
}

use this css

/* ------------------------------
   DOCUMENTS PAGE
   ------------------------------ */
.documents-page {
    max-width: 1000px;
    margin: 40px auto;
    padding: 0 20px;
    color: #333;
    font-family: Arial, sans-serif;
}

.documents-page h1 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 10px;
    color: #6B4B32;
}

.documents-page p {
    text-align: center;
    margin-bottom: 40px;
    font-size: 1rem;
    color: #555;
}

.documents-list h2 {
    font-size: 1.6rem;
    color: #A75D39;
    margin-bottom: 15px;
    margin-top: 40px;
    border-bottom: 2px solid #A75D39;
    padding-bottom: 5px;
}

.document-card {
    background-color: #fff8f3;
    padding: 15px 20px;
    margin-bottom: 15px;
    border-left: 4px solid #A75D39;
    border-radius: 8px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.document-card a {
    color: #6B4B32;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
}

.document-card a:hover {
    color: #A75D39;
    text-decoration: underline;
}

.document-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* ------------------------------
   CONTACT PAGE
   ------------------------------ */
.contact-page {
    max-width: 900px;
    margin: 40px auto;
    padding: 20px;
    background-color: #F7F1E8; /* cream */
    border-radius: 12px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.08);
    font-family: "Segoe UI", Tahoma, sans-serif;
}

/* Contact Info Section */
.contact-info {
    text-align: center;
    margin-bottom: 40px;
}

.contact-info h2 {
    font-size: 2rem;
    color: #6B4B32; /* deep brown */
    margin-bottom: 15px;
}

.contact-info p {
    font-size: 1.1rem;
    color: #4A3A2A; /* warm brown */
    margin-bottom: 20px;
}

.contact-info ul {
    list-style: none;
    padding-left: 0;
    font-size: 1rem;
    color: #1C1C1C; /* dark text */
}

.contact-info ul li {
    margin-bottom: 10px;
}

.contact-info ul li a {
    color: #A75D39; /* reddish brown links */
    text-decoration: underline;
}

.contact-info ul li a:hover {
    opacity: 0.8;
}

/* Contact Form Section */
.contact-form {
    margin: 0 auto;
    max-width: 600px;
}

.contact-form h2 {
    text-align: center;
    font-size: 1.8rem;
    color: #6B4B32;
    margin-bottom: 20px;
}

/* Input and Textarea Styling */
.contact-form input,
.contact-form textarea {
    width: 100%;               /* full width */
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #A75D39; /* reddish brown */
    border-radius: 6px;
    font-size: 1rem;
    background-color: #FFFFFF;
    color: #1C1C1C;
    box-sizing: border-box;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #6B4B32;      /* deep brown on focus */
    box-shadow: 0 0 5px rgba(107, 75, 50, 0.5);
}

/* Submit Button Styling */
.contact-form button {
    display: inline-block;
    background-color: #A75D39; /* reddish brown */
    color: #FFFFFF;
    border: none;
    border-radius: 6px;
    padding: 12px 22px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.25s ease;
}

.contact-form button:hover {
    background-color: #6B4B32; /* deep brown on hover */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .contact-page {
        padding: 15px;
    }

    .contact-info h2,
    .contact-form h2 {
        font-size: 1.6rem;
    }

    .contact-form input,
    .contact-form textarea {
        font-size: 0.95rem;
    }
}

/* ------------------------------
   PROSPECTIVE BUYERS PAGE
   ------------------------------ */

.buyers-page {
    max-width: 1100px;
    margin: 40px auto;
    padding: 30px;
    background: #F7F1E8;
    border-radius: 12px;
    font-family: "Segoe UI", Tahoma, sans-serif;
}

.buyers-page h1 {
    font-size: 2.5rem;
    text-align: center;
    color: #6B4B32;
    margin-bottom: 15px;
}

.buyers-page .intro-text {
    text-align: center;
    font-size: 1.1rem;
    color: #4A3A2A;
    margin-bottom: 40px;
}

.buyers-section {
    margin-bottom: 40px;
}

.buyers-section h2 {
    color: #A75D39;
    font-size: 1.8rem;
    margin-bottom: 10px;
    border-bottom: 2px solid #6B4B32;
    padding-bottom: 5px;
}

.buyers-section p {
    color: #4A3A2A;
    line-height: 1.6;
    margin-bottom: 15px;
}

.amenities-list,
.details-list {
    list-style: none;
    padding: 0;
}

.amenities-list li,
.details-list li {
    padding: 6px 0;
    font-size: 1.05rem;
    color: #3A2C20;
}

/* Documents for buyers */
.buyers-docs {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 15px;
}

.buyers-doc {
    background: #fff;
    padding: 12px 18px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    color: #6B4B32;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: 0.2s;
}

.buyers-doc:hover {
    background: #A75D39;
    color: white;
}

/* CTA */
.contact-cta {
    text-align: center;
}

.contact-cta .btn {
    margin-top: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .buyers-docs {
        flex-direction: column;
    }
}

/* =========================================================
   FAQ PAGE
   ========================================================= */

.faq-page {
    max-width: 900px;
    margin: 40px auto;
    padding: 20px;
    text-align: center;
}

.faq-intro {
    margin-bottom: 30px;
    font-size: 1.1rem;
    color: #444;
}

.faq-container {
    text-align: left;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: 6px;
    border: 1px solid #ddd;
    overflow: hidden;
    background: #fff;
}

.faq-question {
    width: 100%;
    padding: 15px 20px;
    background: #f7f7f7;
    border: none;
    text-align: left;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #ececec;
}

.faq-question.active {
    background: #ddd;
}

.faq-answer {
    display: none;
    padding: 15px 20px;
    background: white;
    color: #444;
    border-top: 1px solid #ddd;
}

/* ================================
   PRIVACY POLICY PAGE
=================================== */

.policy-page {
    max-width: 900px;
    margin: 40px auto;
    padding: 20px;
}

.policy-page h1 {
    text-align: center;
    margin-bottom: 5px;
}

.policy-page .intro-text {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
}

.policy-section {
    margin-bottom: 35px;
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.08);
}

.policy-section h2 {
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.policy-list {
    margin-top: 10px;
    padding-left: 20px;
}

.policy-list li {
    margin-bottom: 8px;
}

/* ---------------------------- */
/* Accessibility Page Styling   */
/* ---------------------------- */

.page-header {
    background: #f5f2eb;
    padding: 60px 20px;
    text-align: center;
    border-bottom: 2px solid #d6c7b0;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #4b3928; /* matches cream + brown palette */
}

.page-header p {
    font-size: 1.1rem;
    color: #6c5840;
}

.content-container {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
}

.content-block {
    background: #ffffff;
    border: 1px solid #e6dccb;
    border-radius: 10px;
    padding: 25px 30px;
    margin-bottom: 30px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.content-block h2 {
    color: #4b3928;
    font-size: 1.6rem;
    margin-bottom: 12px;
    border-left: 4px solid #a67949; 
    padding-left: 12px;
}

.content-block p {
    color: #554434;
    line-height: 1.6;
    font-size: 1rem;
    margin-bottom: 15px;
}

.info-list {
    list-style: none;
    padding-left: 0;
    margin-top: 15px;
}

.info-list li {
    margin: 6px 0;
    font-size: 1rem;
    color: #554434;
}

.info-list a {
    color: #a06030;
    text-decoration: none;
}

.info-list a:hover {
    text-decoration: underline;
}

/* Responsive improvements */
@media (max-width: 600px) {
    .content-block {
        padding: 20px;
    }

    .page-header h1 {
        font-size: 2rem;
    }
}
/* ==============================
   DOCUMENTS PAGE – PROFESSIONAL
   ============================== */

.documents-page {
    max-width: 1100px;
    margin: 40px auto;
    padding: 0 20px;
}

/* Category Section Wrapper */
.documents-list h2 {
    background-color: #f3ebe4;
    border-left: 6px solid #A75D39;
    padding: 14px 18px;
    margin: 50px 0 20px;
    font-size: 1.5rem;
    color: #6B4B32;
    border-radius: 8px;
}

/* Document Card */
.document-card {
    background-color: #ffffff;
    border: 1px solid #e2d6cc;
    border-radius: 10px;
    padding: 16px 20px;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    transition: box-shadow 0.25s ease, transform 0.2s ease;
}

/* Link Styling */
.document-card a {
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    color: #6B4B32;
}

/* Hover / Focus */
.document-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(0,0,0,0.12);
}

.document-card a:hover {
    color: #A75D39;
    text-decoration: underline;
}

/* Optional subtle icon */
.document-card::before {
    content: "📄";
    font-size: 1.2rem;
    margin-right: 12px;
}

