/* General Styling for the Premium Layout */
.premium-layout {
    display: flex;
    flex-direction: column;   /* Stack header and images vertically */
    justify-content: center;   /* Center vertically */
    align-items: center;       /* Center horizontally */
    padding: 50px 20px; /* Add padding around the section */
    position: relative;
    width: 100%;
    min-height: 100vh;  /* Ensure the section takes full height of the viewport */
}

/* Experience Header Styling */
.experience-header {
    text-align: center; /* Center all text */
    margin-bottom: 40px; /* Space between header and images */
    padding: 20px;
    max-width: 1000px;
    width: 100%;
    background-color: #f7f7f7;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

/* Header Titles and Text */
.get-in-touch {
    font-size: 18px;
    color: #0044cc;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.experience-planning {
    font-size: 36px;
    margin: 10px 0;
    color: #333;
    font-weight: bold;
}

.experience-description {
    font-size: 18px;
    color: #777;
    max-width: 800px;
    margin: 0 auto;
}

/* Image Container Styling */
.image-container {
    display: flex;
    justify-content: center; /* Center images horizontally */
    align-items: center; /* Center images vertically */
    position: relative;
    width: 100%;
    max-width: 1200px; /* Limit width for larger screens */
    gap: 10px; /* Space between images */
    flex-wrap: wrap; /* Allow images to wrap on small screens */
}

/* Base Image Styling */
.image-wrapper {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 300px;  /* Default height for all images */
    border: 3px solid white;
    flex: 1;
}

/* Specific Image Sizes */
.image1, .image5 {
    width: 200px;
    height: 200px;
}

.image2, .image4 {
    width: 250px;
    height: 250px;
}

.image3 {
    width: 350px;
    height: 350px;
}

/* Ensuring images fit the containers */
.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Hover Effects for Interactivity */
.image-wrapper:hover {
    transform: scale(1.5);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

.image-text {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 16px;
    font-weight: bold;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
    background-color: rgba(0, 0, 0, 0.5);
    padding: 8px 12px;
    border-radius: 5px;
}

/* Responsiveness */
@media (max-width: 768px) {
    .image-container {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .image-wrapper {
        width: 90%;  /* Take most of the available width */
        margin-bottom: 10px; /* Add some space between images */
    }

    .image1, .image5 {
        width: 150px;
        height: 150px;
    }

    .image2, .image4 {
        width: 200px;
        height: 200px;
    }

    .image3 {
        width: 250px;
        height: 250px;
    }
}