
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Lora', serif;
    line-height: 1.6;
    background-color: #f9f9f9;
    height: fit-content;
}
html, body {
    height: 100%; /* Ensure full height */
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column; /* Makes sure content stacks properly */
}
.logo-main {
    display: flex;
    align-items: center; /* Align image and text vertically */
    gap: 10px; /* Adds space between the logo image and text */
}

.logo-main img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: bold;
    color: white;
    white-space: nowrap; /* Prevents text from wrapping */
}


header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #4a4a2e;
    color: white;
    padding: 15px 30px;
    flex-wrap: wrap;
    width: 100%;
    position: relative; /* Ensures elements stay inside the header */
}

/* Logo Container */
.logo-main {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0; /* Prevents logo from shrinking */
}

.logo-main img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: bold;
    color: white;
    white-space: nowrap;
}

/* Navbar Links */
nav ul {
    list-style: none;
    display: flex;
    align-items: center;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #ffcc00;
}

/* Hamburger Menu Button */
.menu-toggle {
    width: 40px;  /* Adjust width */
    height: 40px; /* Adjust height */
    display: none;
    background: none; /* Remove default background */
    border: none;
    font-size: 24px;
    color: white;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 15px;
    z-index: 1001;
    outline: none; /* Remove focus outline */
}

.menu-toggle:focus {
    outline: none; /* Ensures no outline when focused */
    box-shadow: none; /* Removes any browser-specific styles */
}

.cta-button {
    background-color: #ffcc00;
    color: #333;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s;
}

.cta-button:hover {
    background-color: #e6b800;
}

/* Responsive Design */
@media (max-width: 768px) {
    header {
        flex-direction: row;
        justify-content: space-between;
        padding: 15px 20px;
    }

    .logo-main {
        flex-grow: 0; /* Allows logo to occupy available space */
        font-size: small;
    }
    .logo {
        font-size: 18px; /* Smaller font size on small screens */
    }
    .menu-toggle {
        display: block; /* Show toggle button only on small screens */
    }

    .nav-links {
        display: none;
        flex-direction: column;
        background: #4a4a2e;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        text-align: center;
        padding-top: 50px;
        z-index: 1000;
    }

    .nav-links.active {
        display: flex;
        align-items: center;
    }

    .nav-links li {
        text-align: center;
        margin: 15px 0;
    }

    .nav-links a {
        font-size: 18px;
        display: block;
        padding: 10px;
    }
}
.container {
    max-width: 600px;
    margin: 50px auto;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

h1 {
    text-align: center;
    color: #333;
}

label {
    display: block;
    margin: 10px 0 5px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

button {
    width: 100%;
    padding: 10px;
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

button:hover {
    background-color: #0056b3;
}
footer {
    background-color: #4a4a2e;
    color: white;
    text-align: center;
    padding: 20px;
}

.social-media a {
    color: white;
    margin: 0 10px;
    text-decoration: none;
}
