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

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f0f2f5;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

header {
    /*    background: url('header-bg.png') no-repeat center center/cover; */
    background: #eeea;
    color: #111;
    padding: 1.5rem 1rem;
    position: relative;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

header h1 {
    margin: 0;
    font-size: 2.5rem;
    letter-spacing: 1px;
}

.logo {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 60px;
    height: auto;
}

section {
    padding: 3rem 0;
}

section h2 {
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: #333;
}

#intro {
    position: relative;
    background: url('intro-bg.png') no-repeat center center/cover;
    padding: 2rem 1rem;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    color: #fff; /* Ensure text is readable on dark background */
}

#intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3); /* Black overlay with 50% opacity */
    z-index: 0;
}

#intro h2 {
    position: relative;
    color: #fff; /* Ensure heading is readable on dark background */
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

#text-boxes {
    background: #f9f9f9;
    padding: 3rem 0;
}

.text-box {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 0.5rem;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.text-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.box1 {
    background: linear-gradient(135deg, #7e4713, #f5c6c6);
}

.box2 {
    background: linear-gradient(135deg, #7e4713, #c6f5c6);
}

.box3 {
    background: linear-gradient(135deg, #7e4713, #c6d6f5);
}

#body-text {
    position: relative;
    background: url('body-bg.png') no-repeat center center/cover;
    padding: 2rem 1rem;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    color: #fff; /* Ensure text is readable on dark background */
}

#body-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2); /* Black overlay with 20% opacity */
    z-index: 0;
}

#body-text h2 {
    position: relative;
    color: #fff; /* Ensure heading is readable on dark background */
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

footer {
    background: #333;
    color: #fff;
    padding: 2rem 1rem;
    text-align: center;
    box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.1);
}

.contact-details {
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
    flex-wrap: wrap; /* Ensure responsiveness on smaller screens */
}

.contact-box {
        background: #444;
	color: #fff;
	border-radius: 8px;
    padding: 1.5rem;
    margin: 0.5rem;
    flex: 1 1 45%; /* Adjust width for responsiveness */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.contact-box h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.contact-box a {
    color: #fff; /* Subdued link color */
    text-decoration: none;
}

.contact-box a:hover {
    text-decoration: underline;
}
