/* General Styles */
body {
    font-family: 'Roboto', 'Poppins', sans-serif;
    margin: 0;
    padding: 1;
    background: #807a47; /* Page background color */
    color: #000000;
    font-size: 16px; /* Ensure a base font size */
    line-height: 1.6; /* Improve line spacing */
    -webkit-font-smoothing: antialiased; /* Improve font rendering on WebKit browsers */
    -moz-osx-font-smoothing: grayscale; /* Improve font rendering on Firefox */
}

header {
    background: #333;
    color: #fff;
    font-family: 'Roboto', 'Poppins', sans-serif; /* Consistent font family */
    padding: 20px;
    text-align: center;
    margin: 1rem;
}

nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 1rem;
}

nav ul li {
    margin: 0;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

/* Logo Centering in Mobile View */
.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.logo img {
    max-width: 400px; /* Adjust logo size as needed */
    height: auto;
}

/* Section Styles */
section {
    padding: 2rem 1rem;
    text-align: center;
    margin: 1rem auto;
    max-width: 800px;
    background: linear-gradient(to bottom, #c08b19, #c08b199d);
    color: white;
    border-radius: 10px;
}

#home {
    padding: 3rem 1rem;
}

/* Portfolio Section Grid Layout */
#portfolio {
    padding: 1rem 1rem;
}

.portfolio-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* Responsive grid */
    gap: 1rem;
    justify-items: center;
}

.portfolio-item {
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.portfolio-item img, .portfolio-item video {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.portfolio-item img:hover, .portfolio-item video:hover {
    transform: scale(1.1);
}

/* Order Form Styles */
.order-form {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.order-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

input, select, textarea {
    width: 100%;
    padding: 10px;
    margin: 5px 0;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 5px;
    background: white;
}

.order-form button {
    background: #2a628f;
    color: white;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
}

/* Footer Styles */
footer {
    background: #3675a8;
    color: white;
    text-align: center;
    padding: 1rem 0;
    margin: 1rem;
}

/* Media Queries for Mobile View */
@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
    }

    .logo {
        flex-direction: column;
        align-items: center;
    }

    .logo img {
        max-width: 80px; /* Adjust logo size for mobile */
    }

    .portfolio-container {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); /* Smaller grid for mobile */
    }
}

.get-started-btn {
    background-color: #007BFF; /* Example color */
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 25px; /* Adjust for desired roundness */
    font-size: 16px;
    cursor: pointer;
    text-decoration: none; /* Ensure no underline */
    display: inline-block; /* Ensures padding and other properties work correctly */
}

.get-started-btn:hover {
    background-color: #0056b3; /* Darker shade for hover effect */
}

.footer-link {
    color: #007BFF; /* Example color */
    text-decoration: none; /* Remove underline */
    padding: 5px 10px;
    border-radius: 15px; /* Adjust for desired roundness */
    margin: 0 5px;
    font-size: 14px;
    display: inline-block; /* Ensures padding and other properties work correctly */
}

.footer-link:hover {
    background-color: #f0f0f0; /* Light background on hover */
    text-decoration: none; /* Ensure no underline on hover */
}