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

/* Body Styling */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    color: #333;
}

/* Header Styling */
header {
    background-color: #333;
    color: #fff;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

header .logo a {
    font-size: 24px;
    color: #fff;
    text-decoration: none;
}

header nav ul {
    list-style: none;
    display: flex;
    padding: 0;
}

header nav ul li {
    margin-left: 20px; /* Add space between each menu item */
}

header nav ul li:first-child {
    margin-left: 0; /* Remove left margin from the first item */
}

header nav ul li a {
    color: #161616;
    text-decoration: none;
    font-size: 16px;
}

header nav ul li a:hover {
    color: #b68282;
}

body {
    margin: 0;
    padding: 0;
}

header {
    background-color: #c8b5b5;
    padding: 10px 20px;
}

nav {
    display: flex;
    justify-content: center;
    align-items: center;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 30px;
}

nav li {
    padding: 10px;
}

nav a {
    text-decoration: none;
    color: white;
    font-size: 18px;
    font-weight: bold;
    padding: 5px 10px;
    transition: background-color 0.3s ease;
}

nav a:hover {
    background-color: #c19d86;
    border-radius: 5px;
}


/* Home Section */
.home {
    text-align: center;
    padding: 50px 20px;
    background-color: #fff;
}

.home h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

.home p {
    font-size: 18px;
    margin-bottom: 30px;
}

.home-img img {
    max-width: 100%;
    height: auto;
    border: 4px solid #333;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
}

.home-img img:hover {
    transform: scale(1.1);
}

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

footer p {
    font-size: 14px;
}

/* Responsiveness */

/* Mobile (small screens) */
@media (max-width: 600px) {
    header {
        padding: 10px;
        flex-direction: column;
        text-align: center;
    }

    header nav ul {
        padding: 0;
        margin-top: 10px;
        flex-direction: column;
        text-align: center;
    }

    header nav ul li {
        margin: 10px 0;  /* Add spacing between the menu items */
    }

    .home h1 {
        font-size: 28px;
    }

    .home p {
        font-size: 16px;
    }

    .home-img img {
        max-width: 90%;
        border-radius: 8px;
    }

    footer p {
        font-size: 12px;
    }
}

/* Tablet (medium screens) */
@media (max-width: 900px) {
    header nav ul {
        flex-direction: row;
        justify-content: center;
    }

    .home h1 {
        font-size: 32px;
    }

    .home p {
        font-size: 18px;
    }

    .home-img img {
        max-width: 80%;
    }
}

/* Desktop (large screens) */
@media (min-width: 901px) {
    .home {
        padding: 50px 60px;
    }

    .home h1 {
        font-size: 40px;
    }

    .home p {
        font-size: 20px;
    }
}
