/* style.css */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #ffffff;
}

.container {
    text-align: center;
    padding: 20px;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #FF5733;
    color: white;
    padding: 10px 20px;
}

.header .title {
    font-size: 50px;
    font-weight: bold;
}

.header .logo {
    font-size: 18px;
    border: 2px solid white;
    padding: 5px 10px;
    border-radius: 5px;
}

.buttons {
    margin-top: 50px;
}

.button {
    display: inline-block;
    text-decoration: none;
    color: white;
    background-color: #FF5733;
    padding: 15px 30px;
    margin: 10px;
    border-radius: 5px;
    font-size: 18px;
    transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.button:hover {
    background-color: #e04d2c;
    transform: translateY(-4px); /* Slightly raise the button on hover */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1); /* Add a stronger shadow */
}
/* Zones Section Styling */
.zones {
    display: flex;
    justify-content: space-between; /* Ensure the zones are spaced side by side */
    margin-top: 30px;
    flex-wrap: wrap; /* Allow the zones to wrap on smaller screens */
}

/* Individual Zone Styling */
.zone {
    width: 45%; /* Set to 45% for side-by-side with space between them */
    margin: 30px 0; /* Adjust margin for spacing between the zones */
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
    overflow: hidden;
}

.zone:hover {
    transform: translateY(-10px); /* Slightly raise the zone on hover */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Enhanced shadow effect */
}

.zone:hover .zone-image {
    transform: scale(1.05); /* Slight zoom effect on image hover */
}

.zone a {
    text-decoration: none;
}

.zone-image {
    width: 100%;
    height: 300px; /* Larger image height */
    object-fit: cover; /* Ensures the image is cropped to fit the container */
    border-bottom: 2px solid #ddd;
    transition: transform 0.3s;
}

.zone-image:hover {
    transform: scale(1.05); /* Slight zoom effect on image hover */
}

.zone p {
    padding: 20px; /* Increased padding for more space around the text */
    font-size: 22px; /* Larger font size */
    font-weight: bold;
    color: #333;
    transition: color 0.3s ease-in-out; /* Smooth transition for text color */
}

.zone:hover p {
    color: #FF5733; /* Change text color when zone is hovered */
}

/* Responsive Design for Smaller Screens */
@media (max-width: 768px) {
    .zones {
        flex-direction: column; /* Stack zones vertically on small screens */
        align-items: center;
    }

    .zone {
        width: 90%; /* Make zones take up more width on smaller screens */
        margin: 15px 0; /* Adjust margin for smaller screens */
    }

    .zone-image {
        height: 250px; /* Adjust image height for smaller screens */
    }

    .zone p {
        font-size: 20px; /* Adjust font size for smaller screens */
    }
}

/* Container for the image gallery */
.zon2 {
    display: flex;
    justify-content: space-around; /* Ensure there’s space between items */
    margin-top: 30px;
    flex-wrap: wrap; /* Ensure images wrap on smaller screens */
}

/* Image container styling */
.image-container {
    text-align: center;
    margin: 15px;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    width: 30%; /* Set each image container to take up 30% of the row */
    height: auto; /* Allow the height to be dynamic based on content */
}

/* Hover effect for image container */
.image-container:hover {
    transform: translateY(-10px); /* Hover effect: Slightly raise the container */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Enhanced shadow */
}

/* Make images responsive and maintain aspect ratio */
.image-container img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    transition: transform 0.3s;
}

/* Slight zoom effect on hover */
.image-container img:hover {
    transform: scale(1.05);
}

/* Adjust text inside image container */
.image-container p {
    margin-top: 10px;
    font-size: 18px;
    font-weight: bold;
    color: #333;
    transition: color 0.3s;
}

/* Change text color on hover */
.image-container:hover p {
    color: #FF5733;
}

/* Responsive design for smaller screens */
@media (max-width: 768px) {
    .zon2 {
        flex-direction: column; /* Stack the items vertically on smaller screens */
        align-items: center;
    }

    .image-container {
        width: 80%; /* Adjust width for smaller screens */
        margin: 20px 0;
    }
}

.table-buttons .button {
    text-decoration: none;
    padding: 5px 10px; /* Reduced padding for smaller buttons */
    font-size: 16px; /* Smaller font size */
    background-color: #FF5733;
    color: white;
    border-radius: 5px;
    transition: background-color 0.3s;
    display: inline-block;
    border: none; /* No border for buttons */
}

.table-buttons .button:hover {
    background-color: #e04d2c;
}

/* Form inputs */
.form-group input[type="text"],
.form-group input[type="date"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    text-transform: uppercase; /* This line makes all text uppercase */
}

/* Adjusting header styling for smart design */
.tittle-temp {
    text-align: center;
    margin-bottom: 30px;
    background-color: #FF5733; /* Header background */
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.tittle-temp h1 {
    font-size: 36px;
    color: #fff; /* White color for the text */
    margin: 0;
    font-family: 'Arial', sans-serif;
}

/* Styling for the navigation buttons - Modern Design */
.button-temp {
    text-align: center;
    margin-top: 30px;
}

.button-temp .button {
    text-decoration: none;
    padding: 15px 40px;
    background-color: #FF5733;
    color: white;
    border-radius: 50px; /* Circular rounded edges for a modern look */
    transition: transform 0.3s, background-color 0.3s, box-shadow 0.3s;
    margin: 15px;
    font-size: 18px;
    display: inline-block;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.button-temp .button:hover {
    background-color: #e04d2c;
    transform: translateY(-4px); /* Slightly raise the button on hover */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2); /* Add a stronger shadow */
}

.button-temp .button:active {
    transform: translateY(0); /* Reset the button on click */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Maintain normal shadow on click */
}
.success-message {
    text-align: center;
    margin: 20px;
    color: #28a745; /* Green for success */
    font-size: 18px;
}

.error-message {
    text-align: center;
    margin: 20px;
    color: #dc3545; /* Red for error */
    font-size: 18px;
}

@media (max-width: 768px) {
    .hero-section {
        height: 50vh; /* Reduce height on small screens */
    }
    
    .company-details {
        width: 90%;
        padding: 10px;
    }

    .company-details h2 {
        font-size: 1.5em;
    }

    .company-details p {
        font-size: 0.9em;
    }

    .button-temp {
        flex-direction: column;
        top: 75%;
        gap: 10px;
    }

    .button {
        font-size: 1em;
        padding: 8px 16px;
    }
}



