/* Base Styles */
:root {
    --primary: #18b7f4; /* Blue */
    --primary-foreground: #ffffff;
    --secondary: #ffc107; /* Yellow */
    --secondary-foreground: #ffffff;
    --background: #ffffff;
    --foreground: #0f172a;
    --muted: #f1f5f9;
    --muted-foreground: #64748b;
    --border: #e2e8f0;
    --radius: 0.5rem;
    --about-bg: rgba(255, 165, 0, 0.1); /* Orange background */
    --feature-bg-1: #ea528b; /* Red */
    --feature-bg-2: #18b7f4; /* Turquoise */
    --feature-bg-3: #ffe66d; /* Yellow */
    --menu-button-hover-color: #ff6347; /* Tomato color for hover */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans",
      "Helvetica Neue", sans-serif;
    color: var(--foreground);
    background-color: var(--background);
    line-height: 1.5;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    font-weight: 500;
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--primary-foreground);
    border: none;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    background-color: rgba(0, 123, 255, 0.9); /* Slightly darker blue */
}

/* Navbar Styles */
.navbar {
    background-color: white;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    z-index: 1000; /* Ensure navbar is above carousel */
    height: 6rem; /* Increased height */
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding: 0 1rem; /* Adjust padding */
    flex-direction: row;
    align-items: center; /* Center the logo vertically */
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center; /* Center the logo horizontally */
    margin: 0 auto 0.5rem auto; /* Center horizontally, add bottom margin */
}

.logo-image {
    width: 12rem;      /* Increase width for a wider logo */
    height: auto;      /* Maintain aspect ratio */
    margin: 0; /* Remove any side margin */
    overflow: visible;  /* Show full logo if needed */
    padding: 0.25rem 0; /* Optional: add vertical padding */
}

.logo-image img {
    width: 100%;
    height: auto;       /* Maintain aspect ratio */
    object-fit: contain; /* Prevent distortion */
}

.logo-text {
    font-size: 1rem; /* Reduce the font size */
    font-weight: 700;
    color: var(--primary);
}

/* Hamburger Menu Styles */
.hamburger-menu {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 100;
    background-color: var(--secondary-foreground);
}

.bar {
    width: 100%;
    height: 3px;
    background-color: var(--primary);
    transition: all 0.3s ease-in-out;
}

.nav-menu {
    position: fixed;
    right: -100%;
    top: 0; /* Change from 5rem to 0 */
    flex-direction: column;
    background-color: white;
    width: 100%;
    height: 100%; /* Add this line to cover the entire viewport */
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    z-index: 1001; /* Ensure nav-menu is above carousel */
}

.nav-menu.active {
    right: 0;
}

.nav-menu li {
    margin: 2.5rem 0;
}

.nav-link {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--foreground);
    list-style-type: none;
}

.nav-link:hover {
    color: var(--primary);
}

/* Hamburger menu animation */
.hamburger-menu.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger-menu.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Carousel Styles */
.carousel {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    z-index: 1; /* Ensure carousel is below nav-menu */
}

.carousel-slides {
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-caption {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.4);
    color: white;
    text-align: center;
    padding: 0 1rem;
}

.carousel-control-prev,
.carousel-control-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
}

.carousel-control-prev {
    left: 1rem;
}

.carousel-control-next {
    right: 1rem;
}

.carousel-indicators {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
}

.indicator {
    width: 1rem;
    height: 1rem;
    background-color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
}

.indicator.active {
    background-color: var(--feature-bg-2);
}

/* Main Content Styles */
.main-content {
    padding: 3rem 1rem;
}

/* About Section Styles */
.about-section {
    padding: 3rem 0;
}

.about-container {
    background-color: var(--about-bg);
    border-radius: 1.5rem;
    overflow: hidden;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem;
}

.about-text h2 {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.about-text p {
    color: #4b5563;
    margin-bottom: 1rem;
}

  .about-image {
    position: relative;
    height: 300px;
    border-radius: 1rem;
    overflow: hidden;
  }

  .about-image video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1rem;
    display: block;
  }

  /* Show pointer only on desktop */
  @media (hover: hover) and (pointer: fine) {
    .about-image video {
      cursor: pointer;
    }
  }

/* Features Grid Styles */
.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 4rem;
}

.feature-card:nth-child(1) {
    background-color: var(--feature-bg-1);
    color: var(--foreground); /* Change text color to black */
}

.feature-card:nth-child(2) {
    background-color: var(--feature-bg-2);
    color: var(--foreground);
}

.feature-card:nth-child(3) {
    background-color: var(--feature-bg-3);
    color: var(--foreground);
}

.feature-card {
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.feature-card:hover {
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.feature-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.feature-icon {
    margin-bottom: 1rem;
}

.feature-icon i {
    font-size: 3rem;
    color: var(--primary-foreground);
}

.feature-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.feature-content p {
    color: var(--foreground); /* Ensure paragraph text color is black */
}

/* Footer Styles */
.footer {
    background-color: #f3f4f6;
    margin-top: auto;
    padding: 3rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-column h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-column p {
    color: #6b7280;
    margin-bottom: 0.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: #6b7280;
    transition: color 0.2s ease;
}

.social-links a:hover {
    color: var(--primary);
}

.social-links i {
    font-size: 1.5rem;
}

.footer-bottom {
    border-top: 1px solid #e5e7eb;
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: #9ca3af;
    margin-bottom: 0.5rem;
}

/* Media Queries */
@media (min-width: 1024px) {
    .main-content {
      padding: 3rem 1.5rem;
    }
}

/* Add these styles for the new menu buttons */
.menu-button {
    color: var(--light-blue-light);
    border: 2px solid transparent;
    display: inline-flex;
    align-items: center;
    margin-right: 0.5rem; /* Adjust margin */
    padding: 0.5rem; /* Adjust padding */
    background-color: var(--light-secondary);
    box-shadow: var(--shadow-button-flat-nopressed);
    transition: all 0.2s ease;
    font-weight: 500;
    border-radius: 50%;
    font-size: 0.875rem;
    text-align: center;
    margin-right: 0.25rem; /* Adjust margin */
    padding: 0.25rem; /* Adjust padding */
    margin-top: 1.1rem;
}

.menu-button:hover {
    color: var(--menu-button-hover-color); /* Use the new hover color */
    border: 2px solid var(--border);
    box-shadow: var(--shadow-button-flat-pressed);
}

.menu-button:focus {
    opacity: 1;
    outline: none;
}

.menu-button:active {
    border: 2px solid var(--border);
    box-shadow: var(--shadow-button-flat-pressed);
}

.menu-button svg {
    width: 1rem; /* Adjust icon size */
    height: 1rem; /* Adjust icon size */
}

.dark .menu-button {
    color: var(--gray-400);
    background-color: var(--button-curved-default-dark);
    box-shadow: var(--shadow-button-curved-default-dark);
}

.dark .menu-button:hover {
    background-color: var(--button-curved-pressed-dark);
    box-shadow: var(--shadow-button-curved-pressed-dark);
}

.dark .menu-button:active,
.dark .menu-button:focus {
    background-color: var(--button-curved-pressed-dark);
    box-shadow: var(--shadow-button-curved-pressed-dark);
}

/* Contact Section Styles */
.contact-section {
    padding: 3rem 1rem;
    background-color: var(--background); /* Match the about section background color */
    border-radius: 1.5rem;
    overflow: hidden;
}

.contact-container {
    background-color: var(--about-bg); /* Match the about section background color */
    border-radius: 1.5rem;
    overflow: hidden;
    max-width: 1350px;
    margin: 0 auto;
    text-align: center;
    padding: 2rem;
    display: grid;
    grid-template-columns: 1fr;
}

.contact-container h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

.contact-container p {
    color: var(--foreground);
    margin-bottom: 1rem;
}

.contact-container a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-container a:hover {
    color: var(--secondary);
}

/* Cost Info Section Styles */
.cost-info {
    padding: 20px;
    border-radius: 1.5rem;
    margin-top: 20px;
    text-align: center;
}

.cost-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.cost-card {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    width: 300px;
    height: 350px; /* Adjusted height */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.cost-card h3 {
    margin-bottom: 10px;
    font-size: 1.5em;
}

.cost-card p {
    margin-bottom: 10px;
    font-size: 1.2em;
}

.cost-card label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.cost-card select {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.cost-card .btn {
    background-color: #FF6B6B;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
}

.cost-card .btn:hover {
    background-color: #ff4b4b;
}

/* Responsive design for mobile */
@media (max-width: 600px) {
    .cost-card {
        width: 100%;
        height: auto; /* Adjust height for mobile */
    }
}

@media (max-width: 768px) {
    .navbar-content {
        flex-direction: row;
        align-items: center; /* Center the logo vertically */
    }

    .logo {
        margin-bottom: -1.1rem; /* Remove margin below the logo */
    }

    .menu-button {
        margin-right: 0.25rem; /* Adjust margin */
        padding: 0.25rem; /* Adjust padding */
        margin-top: 1.1rem
    }
}

/* Desktop/iPad: Logo on the left, navbar buttons on the right */
@media (min-width: 769px) {
    .navbar-content {
        flex-direction: row;
        justify-content: space-between; /* Space between logo and buttons */
        align-items: center;
    }
    .logo {
        order: 1; /* Logo left */
        margin-left: 0;
        margin-bottom: 0;
    }
    .flex {
        order: 2; /* Buttons right */
        margin-left: auto;
        margin-right: 0;
    }
}

/* Mobile: Logo centered */
@media (max-width: 768px) {
    .navbar-content {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .logo {
        order: 1;
        margin-bottom: 0.5rem;
        margin-left: 0;
    }
    .flex {
        order: 2;
    }
}

.Brightwheel-container {
    padding: 3rem 1rem;
    background-color: var(--background); /* Match the about section background color */
    border-radius: 1.5rem;
    overflow: hidden;
}

.Brightwheel-container {
    background-color: var(--about-bg); /* Match the about section background color */
    border-radius: 1.5rem;
    overflow: hidden;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 2rem;
    display: grid;
    grid-template-columns: 1fr;
}

.Brightwheel-section {
    padding: 3rem 1rem;
    background-color: var(--background); /* Match the about section background color */
    border-radius: 1.5rem;
    overflow: hidden;
}

.brightwheel-logo {
    display: flex;
    align-items: center;
    justify-content: center; /* Center horizontally */
    margin-bottom: 1rem;
    width: 200px; /* Set a fixed width */
    height: auto; /* Allow height to adjust based on content */
}

::selection {
    border-radius: 25px;
    background-color: var(--muted);
}

/* Hide navbar menu buttons on iPhone/small screens */
@media (max-width: 480px) {
    .navbar-content {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .logo {
        margin: 0 auto 0.5rem auto; /* Center horizontally, add bottom margin */
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .logo-image {
        margin: 0; /* Remove any side margin */
    }
    .flex {
        display: none !important;
    }
}

/* Facebook Feed Section Styles */
.facebook-feed-section {
    padding: 3rem 0;
    background: none;
    padding-left: 1rem;
    padding-right: 1rem;
    
}

.facebook-feed-container {
    border-radius: 1.5rem;
    box-shadow: none;
    padding: 1.5rem;
    max-width: 650px;      /* Match contact-container max-width */
    margin: 0 auto 2rem auto;
    display: grid;
    grid-template-columns: 1fr;
    text-align: center;
    box-sizing: border-box;
    
}

/* Add padding from the edges of the screen */
@media (max-width: 600px) {
    .facebook-feed-section {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .facebook-feed-container {
        max-width: 100%;
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

/* Expand Facebook widget width on iPad/laptop */
@media (min-width: 600px) {
    .facebook-feed-container {
        max-width: 900px;
    }
    .facebook-feed-widget .fb-page {
        width: 700px !important;
        min-width: 0 !important;
    }
}

/* Responsive Facebook widget for tablets and phones */
@media (max-width: 900px) {
    .facebook-feed-container {
        max-width: 98vw;
        padding: 1.5rem 0.5rem;
    }
    .facebook-feed-widget .fb-page {
        width: 100% !important;
        min-width: 0 !important;
    }
}

@media (max-width: 600px) {
    .facebook-feed-container {
        padding: 1rem 0.25rem;
        border-radius: 1rem;
    }
    .facebook-feed-title {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }
    .facebook-feed-widget {
        width: 100%;
    }
    .facebook-feed-widget .fb-page,
    .facebook-feed-widget iframe {
        width: 100% !important;
        min-width: 0 !important;
        max-width: 100vw !important;
    }
}

/* Facebook Popup Styles */
.facebook-popup-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.facebook-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.facebook-popup-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 24px;
    padding: 0;
    max-width: 95vw;
    width: 500px;
    max-height: 90vh;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.3),
        0 8px 32px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.facebook-popup-overlay.active .facebook-popup-content {
    transform: scale(1);
}

.facebook-popup-header {
    background: linear-gradient(135deg, #1877f2 0%, #42a5f5 100%);
    color: white;
    padding: 1.5rem 2rem;
    text-align: center;
    position: relative;
    border-radius: 24px 24px 0 0;
}

.facebook-popup-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    z-index: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.facebook-icon {
    width: 28px;
    height: 28px;
    fill: currentColor;
}

.close-popup-btn {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 1.8rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    backdrop-filter: blur(10px);
}

.close-popup-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.facebook-popup-body {
    flex: 1;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: auto;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.facebook-popup-widget {
    width: 100%;
    max-width: 450px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    background: white;
    position: relative;
}

.facebook-popup-widget::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1877f2, #42a5f5, #1877f2);
    z-index: 1;
}

.facebook-popup-widget iframe {
    width: 100% !important;
    height: 600px !important;
    border: none;
    border-radius: 0 0 16px 16px;
}

.loading-spinner {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    color: #1877f2;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #e3f2fd;
    border-top: 4px solid #1877f2;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.facebook-popup-footer {
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-top: 1px solid #e2e8f0;
    text-align: center;
}

.facebook-popup-footer p {
    margin: 0;
    color: #64748b;
    font-size: 0.9rem;
}

.facebook-popup-footer a {
    color: #1877f2;
    text-decoration: none;
    font-weight: 600;
}

.facebook-popup-footer a:hover {
    text-decoration: underline;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .facebook-popup-overlay {
        padding: 1rem;
    }
    .facebook-popup-content {
        width: 100%;
        max-width: 100%;
        max-height: 95vh;
        border-radius: 16px;
    }
    .facebook-popup-header {
        padding: 1rem 1.5rem;
        border-radius: 16px 16px 0 0;
    }
    .facebook-popup-title {
        font-size: 1.3rem;
    }
    .facebook-popup-body {
        padding: 1.5rem 1rem;
    }
    .facebook-popup-widget iframe {
        height: 500px !important;
    }
    .close-popup-btn {
        top: 0.8rem;
        right: 1rem;
        width: 36px;
        height: 36px;
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .facebook-popup-content {
        border-radius: 12px;
    }
    .facebook-popup-header {
        border-radius: 12px 12px 0 0;
    }
    .facebook-popup-widget iframe {
        height: 400px !important;
    }
}

/* Enhanced Facebook Popup Styles */
.demo-button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 auto;
}

.demo-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
}

/* Style the Facebook button like the rest of the site */
.facebook-feed-title .demo-button {
    background-color: var(--primary);
    background-image: none;
    color: var(--primary-foreground);
    border: none;
    border-radius: var(--radius);
    padding: 0.75rem 1.5rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 auto;
    cursor: pointer;
}

.facebook-feed-title .demo-button:hover,
.facebook-feed-title .demo-button:focus {
    background-color: #0056b3; /* Slightly darker blue */
    box-shadow: 0 4px 12px rgba(0,123,255,0.15);
    transform: translateY(-2px) scale(1.03);
    outline: none;
}

/* Optional: Make the icon white for contrast */
.facebook-feed-title .demo-button .facebook-icon {
    color: var(--primary-foreground);
    fill: var(--primary-foreground);
}

/* Social Widgets Styles */
.social-widgets {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem; /* Ensure consistent spacing between all buttons */
    margin-top: 1.5rem;
}

/* Ensure all social buttons have the same margin and spacing */
.facebook-feed-title {
    margin-bottom: 0 !important;
}

.facebook-feed-title .demo-button {
    margin-bottom: 0 !important;
}

.social-widget {
    width: 100%;
    max-width: 350px;
    justify-content: center;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius);
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    margin: 0 auto;
    cursor: pointer;
    text-align: center;
}

.instagram-widget {
    background: linear-gradient(135deg, #fdc468 0%, #df4996 100%);
    color: #fff;
}
.instagram-widget .instagram-icon {
    color: #fff;
    fill: #fff;
}

.instagram-widget:hover,
.instagram-widget:focus {
    background: linear-gradient(135deg, #df4996 0%, #fdc468 100%);
    box-shadow: 0 4px 12px rgba(223,73,150,0.15);
    transform: translateY(-2px) scale(1.03);
    outline: none;
}

.twitter-widget {
    background: linear-gradient(135deg, #1da1f2 0%, #0e71c8 100%);
    color: #fff;
}
.twitter-widget .twitter-icon {
    color: #fff;
    fill: #fff;
}

.twitter-widget:hover,
.twitter-widget:focus {
    background: linear-gradient(135deg, #0e71c8 0%, #1da1f2 100%);
    box-shadow: 0 4px 12px rgba(29,161,242,0.15);
    transform: translateY(-2px) scale(1.03);
    outline: none;
}

/* Make all social buttons (Facebook, Instagram, Twitter) the same width, border radius, and text size */
.facebook-feed-title .demo-button,
.social-widget.instagram-widget,
.social-widget.twitter-widget {
    padding: 1rem 2rem;
    font-size: 1.1rem;    /* Ensure same text size */
    border-radius: 12px;
    max-width: 350px;
    width: 100%;
    box-sizing: border-box;
    font-weight: 600;
}

/* Match the size of the Facebook button for Instagram and Twitter widgets */
.social-widget.instagram-widget,
.social-widget.twitter-widget {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 12px;
    max-width: 350px;
}

/* Make sure the Facebook button also uses these values for consistency */
.facebook-feed-title .demo-button {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 12px;
    max-width: 350px;
}

.social-widget.instagram-widget,
.social-widget.twitter-widget {
    background-color: var(--primary);
    background-image: none;
    color: var(--primary-foreground);
    border: none;
    border-radius: var(--radius);
    font-size: 1rem;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 auto;
    cursor: pointer;
    text-align: center;
}

.social-widget.instagram-widget:hover,
.social-widget.instagram-widget:focus,
.social-widget.twitter-widget:hover,
.social-widget.twitter-widget:focus {
    background-color: #0056b3; /* Slightly darker blue */
    box-shadow: 0 4px 12px rgba(0,123,255,0.15);
    transform: translateY(-2px) scale(1.03);
    outline: none;
}

.social-widget .instagram-icon,
.social-widget .twitter-icon,
.facebook-feed-title .facebook-icon {
    width: 22px;
    height: 22px;
    min-width: 22px;
    min-height: 22px;
    max-width: 22px;
    max-height: 22px;
    color: var(--primary-foreground);
    fill: var(--primary-foreground);
}

/* Style the Facebook button like the rest of the site */
.facebook-feed-title .demo-button {
    background-color: var(--primary);
    background-image: none;
    color: var(--primary-foreground);
    border: none;
    border-radius: var(--radius);
    padding: 0.75rem 1.5rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 0 auto;
    cursor: pointer;
    /* Updated font properties to match Instagram and Twitter buttons */
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
}

.facebook-feed-title .demo-button:hover,
.facebook-feed-title .demo-button:focus {
    background-color: #0056b3; /* Slightly darker blue */
    box-shadow: 0 4px 12px rgba(0,123,255,0.15);
    transform: translateY(-2px) scale(1.03);
    outline: none;
}

/* Optional: Make the icon white for contrast */
.facebook-feed-title .demo-button .facebook-icon {
    color: var(--primary-foreground);
    fill: var(--primary-foreground);
}

/* Social Widgets Styles */
.social-widgets {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem; /* Ensure consistent spacing between all buttons */
    margin-top: 1.5rem;
}

/* Ensure all social buttons have the same margin and spacing */
.facebook-feed-title {
    margin-bottom: 0 !important;
}

.facebook-feed-title .demo-button {
    margin-bottom: 0 !important;
}

/* Style the Facebook button like the rest of the site */
.facebook-feed-title .demo-button {
    background-color: var(--primary);
    background-image: none;
    color: var(--primary-foreground);
    border: none;
    border-radius: var(--radius);
    padding: 0.75rem 1.5rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 0 auto;
    cursor: pointer;
    /* Updated font properties to match Instagram and Twitter buttons */
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
}

.facebook-feed-title .demo-button:hover,
.facebook-feed-title .demo-button:focus {
    background-color: #0056b3; /* Slightly darker blue */
    box-shadow: 0 4px 12px rgba(0,123,255,0.15);
    transform: translateY(-2px) scale(1.03);
    outline: none;
}

/* Optional: Make the icon white for contrast */
.facebook-feed-title .demo-button .facebook-icon {
    color: var(--primary-foreground);
    fill: var(--primary-foreground);
}

/* Social Widgets Styles */
.social-widgets {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem; /* Ensure consistent spacing between all buttons */
    margin-top: 1.5rem;
}

/* Make buttons horizontal on iPad/laptop screens */
@media (min-width: 768px) {
    .social-widgets {
        flex-direction: row;
        justify-content: center;
        gap: 1.5rem;
    }
}

/* Ensure all social buttons have the same margin and spacing */
.facebook-feed-title {
    margin-bottom: 0 !important;
}

.facebook-feed-title .demo-button {
    margin-bottom: 0 !important;
}

.social-widget {
    width: 100%;
    max-width: 350px;
    justify-content: center;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius);
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    margin: 0 auto;
    cursor: pointer;
    text-align: center;
    /* Ensure consistent font family across all social widgets */
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

/* Adjust button width for horizontal layout on larger screens */
@media (min-width: 768px) {
    .social-widget,
    .facebook-feed-title .demo-button {
        width: auto;
        min-width: 200px;
        max-width: 250px;
        flex: 1;
        margin: 0 0.75rem; /* Add equal horizontal margin for consistent spacing */
    }
    
    .social-widgets {
        padding: 0 1rem; /* Add padding to container for edge spacing */
    }
}

.social-widget.instagram-widget,
.social-widget.twitter-widget {
    background-color: var(--primary);
    background-image: none;
    color: var(--primary-foreground);
    border: none;
    border-radius: var(--radius);
    font-size: 1rem;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 0 auto;
    cursor: pointer;
    text-align: center;
    /* Ensure consistent font family */
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

.social-widget.instagram-widget:hover,
.social-widget.instagram-widget:focus,
.social-widget.twitter-widget:hover,
.social-widget.twitter-widget:focus {
    background-color: #0056b3; /* Slightly darker blue */
    box-shadow: 0 4px 12px rgba(0,123,255,0.15);
    transform: translateY(-2px) scale(1.03);
    outline: none;
}

.social-widget .instagram-icon,
.social-widget .twitter-icon,
.facebook-feed-title .facebook-icon {
    width: 22px;
    height: 22px;
    min-width: 22px;
    min-height: 22px;
    max-width: 22px;
    max-height: 22px;
    color: var(--primary-foreground);
    fill: var(--primary-foreground);
}


/* Contact Us Form Styles */
.field {
  margin-bottom: 10px;
}

.field label {
  display: block;
  font-size: 12px;
  color: #777;
}

.field input {
  display: block;
  min-width: 250px;
  line-height: 1.5;
  font-size: 14px;
}

input[type="submit"] {
  display: block;
  padding: 6px 30px;
  font-size: 14px;
  background-color: var(--menu-button-hover-color);
  color: #fff;
  border: none
}

.contact-us {
    padding: 1rem;
    background-color: var(--background); /* Match the about section background color */
    border-radius: 1rem;
    overflow: hidden;
}
.contact-us-container {
    background-color: var(--about-bg); /* Match the about section background color */
    border-radius: 1.5rem;
    overflow: hidden;
    max-width: 1350px;
    margin: 0 auto;
    padding-left: 0.5rem;
    padding-right: 1.5rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
    display: grid;
    grid-template-columns: 1fr;
}

.contact-us-container h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 1rem;
}

.contact-us-container p {
    color: var(--foreground);
    margin-bottom: 1rem;
    font-size: large;
}

.contact-us-container h1 {
    color: var(--menu-button-hover-color);
    margin-bottom: 1rem;
    font-size: x-large;
}

.contact-us-container a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-us-container a:hover {
    color: var(--secondary);
}

.contact-us-container .field {
    margin-bottom: 1rem;
}

.contact-us-container .field label {
    font-weight: 600;
    color: var(--foreground);
}

.contact-us-container .field input,
.contact-us-container .field textarea {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 1rem;
    color: var(--foreground);
}

.contact-us-container .field input[type="submit"] {
    background-color: var(--primary);
    color: var(--primary-foreground);
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.send-email {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1rem;
    border-radius: 1rem;
    background-color: var(--menu-button-hover-color);
}

.link {
    color: var(--feature-bg-2);
    text-decoration: none;
    border-radius: var(--radius);
    transition: background-color 0.2s ease;
    font-weight: 1000;
}




.owners {
  padding: 1rem;
  background-color: var(--background);
  border-radius: 1rem;
  overflow: hidden;
}

.owners-container {
  border-radius: 1.5rem;
  max-width: 1350px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: grid;
  grid-template-columns: 1fr;
  text-align: center;
}

.owners-container h1 {
  color: var(--menu-button-hover-color);
  font-size: x-large;
}

.owners-container p {
  color: var(--foreground);
  margin-bottom: 2rem;
  font-size: large;
}

/* Centered card layout, expandable to multiple */
.owners-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.owner-card {
  background-color: var(--background);
  border-radius: 1.5rem;
  padding: 1.5rem;
  width: 100%;
  max-width: 1000px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.owner-photo {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid var(--primary);
  margin-bottom: 1rem;
}

.owner-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--menu-button-hover-color);
  margin-bottom: 0.5rem;
}

.owner-bio {
  font-size: 1rem;
  color: var(--foreground);
  line-height: 1.5;
  text-align: left;
}

  .hidden {
    display: none;
  }
  .toggle-btn {
    margin-top: 10px;
    background-color: #e0e0e0;
    border: none;
    padding: 8px 12px;
    cursor: pointer;
    border-radius: 8px;
  }
  .toggle-btn:hover {
    background-color: #ccc;
  }


  