/* Custom Styles for Marcianise Industrial Zone Landing Page */

/* General Card Styles */
.uk-card {
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Section Padding */
.uk-section {
    padding: 40px 0;
}

/* Navbar Styles */
.uk-navbar-container {
    border-bottom: 1px solid #e5e5e5;
}

.uk-navbar-sticky {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Card Body Padding */
.uk-card-body {
    padding: 20px;
}

/* Home Section Styles */
#home {
    background-image: url('/media/marcianise-premium-lands.png');
    background-size: cover;
    color: white;
    text-align: center;
}

/* Primary Heading */
.uk-heading-primary {
    font-size: 48px;
    margin-bottom: 20px;
}

/* Large Text */
.uk-text-large {
    font-size: 24px;
}

/* Primary Button Styles */
.uk-button-primary {
    background-color: #1e87f0;
    border-color: #1e87f0;
}

.uk-button-primary:hover {
    background-color: #006bb3;
    border-color: #006bb3;
}

/* Full Width for Large Forms */
.uk-form-width-large {
    width: 100%;
}

/* Ensure the logo scales proportionally */
.uk-logo img {
    max-width: 100%;
    height: auto;
}

/* Improve text readability */
#home .uk-container {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 10px;
}

#home h1, #home p {
    color: white;
}

/* Ensure sections have some padding */
.uk-section {
    padding: 20px 0;
}

/* Make the navbar background opaque on mobile */
.uk-navbar-container {
    background-color: rgba(255, 255, 255, 0.9);
}

/* Adjust button styling */
.uk-button-primary {
    background-color: #21388c;
    border-color: #fff;
}

.uk-button-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}

/* Contact Form Styling */
#contact .uk-container {
    background-color: #f7f7f7;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#contact h2 {
    margin-bottom: 20px;
}

.uk-input, .uk-textarea {
    border-radius: 5px;
    border: 1px solid #ddd;
    padding: 15px;
    font-size: 16px;
}

.uk-button-primary {
    background-color: #21388c;
    border-color: #21388c;
    color: white;
}

.uk-button-primary:hover {
    background-color: #1a2f6f;
    border-color: #1a2f6f;
}