


/* ===== BASE STYLES ===== */

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
    color: #333;
}

/* ===== TOP NAVIGATION ===== */

.top-nav {
    display: flex;
    align-items: flex-end;
    padding: 10px 30px 0;
    background-color: white;           /* changed to white */
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);  /* optional subtle shadow for separation */
}

/* Logo */
.logo img {
    width: 60px;
    margin-right: 30px;
}

/* Folder tabs container */
.folder-tabs ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

/* Individual tab */
.folder-tabs li {
    margin-right: 10px;
}

/* Folder tab styling */
.folder-tabs a {
    position: relative;
    display: block;
    padding: 12px 22px;
    background-color: #e6e2d3;
    color: #333;
    font-weight: bold;
    text-decoration: none;
    border-radius: 6px 6px 0 0;
    box-shadow: inset 0 -2px 0 rgba(0,0,0,0.2);
    transition: background 0.2s ease, transform 0.2s ease;
}

/* Folder tab lip */
.folder-tabs a::before {
    content: "";
    position: absolute;
    top: -8px;
    left: 16px;
    width: 40px;
    height: 8px;
    background: inherit;
    border-radius: 6px 6px 0 0;
}

/* Hover state */
.folder-tabs a:hover {
    background-color: #d8d3c0;
}

/* Active tab – orange when current/clicked */
.folder-tabs a.active {
    background-color: #d67424;
    color: white;
    transform: translateY(2px);
    box-shadow:
        0 2px 6px rgba(0,0,0,0.3),
        inset 0 -3px 0 rgba(0,0,0,0.25);
}

/* ===== MAIN CONTENT ===== */

main {
    padding: 20px;
}

.hero {
    text-align: center;
    padding: 80px 20px;
    background-color: #fdf5e2;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.location {
    text-align: center;
    padding: 60px 20px;
}

.location h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.location img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    margin-top: 20px;
}

/* ===== FOOTER ===== */

footer {
    text-align: center;
    padding: 20px;
    background-color: #333;
    color: #fff;
}

/* ===== ADDED CODE ===== */

.services {
    list-style-type: disc; /* normal bullets */
    padding-left: 20px;    /* indent the bullets */
    text-align: left;      /* align the text left */
    margin-top: 10px;
}

.services li {
    margin-bottom: 5px;    /* space between items */
}



/* ===== FORCE OVERRIDE STYLES (FACEBOOK + ROVER SEPARATE) ===== */

body {
    background-color: #f0f2f5 !important; /* Facebook background */
    color: #1c1e21 !important;
}

/* Top nav */
.top-nav {
    background-color: #ffffff !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08) !important;
}

/* Tabs - Facebook neutral */
.folder-tabs a {
    background-color: #e4e6eb !important;
    color: #050505 !important;
    border-bottom: 3px solid transparent !important;
}

/* Hover - Facebook blue hint */
.folder-tabs a:hover {
    background-color: #e7f3ff !important;
    border-bottom: 3px solid #1877f2 !important; /* Facebook blue */
}

/* Active tab - Rover green (clear and strong) */
.folder-tabs a.active {
    background-color: #14a37f !important;
    color: #ffffff !important;
    border-bottom: 3px solid #159a80 !important;
    transform: translateY(2px);
}

/* Hero - Facebook soft blue */
.hero {
    background-color: #e7f3ff !important;
}

/* Optional: add Rover feel to headings */
.hero h2,
.location h2 {
    color: #1abc9c !important;
}

/* Footer - Facebook dark */
footer {
    background-color: #1c1e21 !important;
    color: #ffffff !important;
}