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

body {
    font-family: Arial, sans-serif;
    background-color: #f7f7f7;
    color: #333;
    overflow-x: hidden;
}

a {
    text-decoration: underline;
	color: lime;
}

.reviews { color: red; }

/* Header Styling */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #333;
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo img {
    height: 60px;
}

.menu a {
    color: white;
    margin: 0 20px;
    font-size: 1.2rem;
    transition: color 0.3s;
}

.menu a:hover {
    color: #ff5a5f;
}

.contact-inverse {
    background-color: white;
    color: #333 !important;
    padding: 5px 10px;
    border-radius: 5px;
}

/* Section Styling */
.content-section {
    padding: 10px;
    text-align: center;
	max-width: 800px;
	background-color: rgba(1,1,1,0.2);
	
}

h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

p {
    font-size: 1.5rem;
    margin-bottom: 40px;
}

/* Footer Styling */
footer {
    background-color: #333;
    color: white;
    padding: 20px;
    text-align: center;
    bottom: 0;
    width: 100%;
}

.footer-content p {
    margin-bottom: 10px;
}

/* Popup Styles */
.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
}

.popup-content {
    background-color: white;
    color: black;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    max-width: 500px;
    position: relative;
}

.popup-content img {
    max-width: 100%;
    border-radius: 10px;
}

.close {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}


/* Background Image */
.background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('bg.webp'); /* Use your actual background image path */
    background-size: cover;
    background-position: center;
    filter: brightness(0.6);
    z-index: -1;
}

/* Ensure content sits above the background */
.content-section {
    position: relative;
    z-index: 1;
    color: white; /* Ensure text contrasts with the background */
}

/* Other styles remain unchanged */
