
/* General Reset */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400&display=swap');

body, p {
    font-family: 'Montserrat', sans-serif; /* Apply Montserrat Regular */
    font-size: 15px; /* 20pt converted to pixels */
    color: black;
    text-align: center;

    
}


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

body {
    background-color: rgb(255, 255, 255);
    color: rgb(255, 255, 255);
}
h3{
    color: rgb(0, 0, 0);
    text-align: center;
    
}

/* Logo Banner */
.logo-banner {
    display: flex;
    justify-content: center; /* Centers content horizontally */
    align-items: center; /* Centers content vertically */
    width: 100%; /* Ensures it spans the full width */
    height: auto; /* Adjusts to the content */
    padding: 5px; /* Adds some spacing */
    background-color: rgb(240, 238, 232); /* Keeps the background */
}

.logo-banner img {
    width: 100%; /* Makes the logo responsive */
    max-width: 290px; /* Prevents it from getting too large */
    height: auto; /* Maintains aspect ratio */
}
/* Mobile Menu Button (Inside Logo Banner) */
/* Mobile Menu Button (Fixed Position) */
.menu-icon {
    
    position: fixed;
    top: px;
    left: 15px;
    font-size: 30px;
    cursor: pointer;
    background: none;
    border: none;
    color: rgb(0, 0, 0);  /* Fully opaque */
    font-weight: bold;
    padding: 5px 15px;
    z-index: 100; /* Ensures it stays above other elements */
}

/* Navigation Bar */
.navbar {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgb(253, 253, 253);
    padding: 0px;
    position: fixed;
    width: 100%;
    top: 0px;
    left: 0;
    z-index: 100;
}

/* Navigation Links (Hidden by Default on Mobile) */
.nav-links {
    list-style: none;
    display: none;
    flex-direction: column;
    position: absolute;
    top: 50px;
    left: 0;
    width: 100%;
    background-color: rgb(253, 253, 253);
    text-align: center;
    padding: px 0;
}
.nav-links a {
    text-decoration: none;
    color: black !important; /* Ensures the text is black */
    padding: 0px;
    display: block;
}

/* Show Menu when Active */
.nav-links.active {
    display: flex;
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 60px;
        left: 0;
        width: 50%;
        background-color: rgb(253, 253, 253);
        padding: 10px ;
        text-align: center;
        box-shadow: 0 6px 8px rgba(0, 0, 0, 0.1);
        border-radius: 12px;
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
    }

    .nav-links li {
        padding: 10px 0;
    }

    .menu-icon {
        display: block;
    }
    /* Mobile Navigation Links (Make Text Black) */
    .nav-links a {
    text-decoration: none;
    color: black !important; /* Ensures the text is black */
    padding: 0px;
    display: block;
}

}


/* Image Carousel */
.carousel {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.carousel-inner {
    display: flex;
    width: 100%;
    transition: transform 0.2s ease-in-out;
}

.carousel-img {
    width: 100%;
    height: 100%;
    
}

/* Carousel Buttons */
.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
}

.prev { left: 10px; }
.next { right: 10px; }

@media (min-width: 768px) {
    .carousel {
        height: 450px; /* shorter height on desktop */
    }

    .carousel-img {
        width: 25%;
        height: 100%;
    }

    .carousel-inner {
        width: auto;
    }
}

/* Hero Section */

.hero {
    text-align: center;
    padding:20px 20px;
    background: rgb(240, 238, 232)
    
}

.hero h1 {
    font-size: 1rem;
    color: black;
}

.hero p {
    font-size: smaller;
    color: black;
}

/* Responsive Navbar */


@media (min-width: 768px) {
    .nav-links {
        display: flex;
        
        position: relative;
        flex-direction: row;
        top: 0;
        background: none;
        width: auto;
    }

    .nav-links li {
        display: inline;
        padding: 0 10px;
    }

    /* Hide Menu Icon on Desktop */
    .menu-icon {
        display: none;
    }
}

/* Button Styling */
button {
    display: block;
    margin: 10px auto; /* Centers the button horizontally */
    padding: 10px 15px;
    background-color: rgba(255, 255, 255, 0.937);
    border: none;
    color: black;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
}

/* Title Styling */
h2 {
    justify-content: center;
    align-items: center;
    text-align: center;
    color: black;
    
}

/* ============================= */
/* 🎨 New: Tile Section Styling */
/* ============================= */

/* Tile Section */
.tiles-container {
    background-color: rgb(255, 255, 255); /* White background */
    padding: 10% 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

/* Tile Design */
.tile {
    background-color: rgb(255, 255, 255);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    transition: transform 0.2s ease-in-out;
    width: 90%; /* Responsive for mobile */
    max-width: 330px; /* Smaller tile size */
    padding:15px;
}

.tile:hover {
    transform: scale(1.1);
}

/* Tile Images */
.tile img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Tile Buttons */
.tile button {
    background-color: rgb(76, 76, 76);
    color: rgb(255, 255, 255);
    padding: 8px 15px;
    border: none;
    width: 100%;
    font-size: 14px;
    cursor: pointer;
    font-weight: bold;
    margin-top: 10px;
}



/* ============================= */
/* 🎯 Responsive Layout for Tiles */
/* ============================= */
@media (min-width: 768px) {
    .tiles-container {
        flex-wrap: nowrap;
    }

    .tile {
        width: 30%;
    }
}
.site-footer {
    background-color: #f8f4ee;
    padding: 30px 20px;
    text-align: center;
    font-size: 14px;
    color: #333;
    margin-top: 40px;
  }
  
  .footer-content {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .social-icons {
    margin-top: 15px;
  }
  
  .social-icons a {
    display: inline-block;
    margin: 0 10px;
    transition: transform 0.3s ease;
  }
  
  .social-icons img {
    width: 28px;
    height: 28px;
    filter: grayscale(100%);
  }
  
  .social-icons a:hover img {
    filter: none;
    transform: scale(1.1);
  }
  