/* Global Styles */
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background-color: #DBF3FA;
    color: #333;
    margin: 0;
    padding: 20;
}

/* Style for links */
a {
    color: #3498db;  /* Set your desired link color (example: blue) */
    text-decoration: none;  /* Remove the underline */
}

a:hover {
    color: #2c3e50;  /* Change color when the user hovers over the link */
}
/* Container for aligning the content */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}


.social-links {
    display: flex;
    gap: 15px;
    justify-content: center;
    padding: 15px;
}

.social-links img {
    width: 30px; /* Set the size of the social media icons */
    height: 30px; /* Set the size of the social media icons */
    border-radius: 0px; /* Optional: Adds rounded corners */
    transition: transform 0.3s ease; /* Adds a smooth hover effect */
}

.social-links img:hover {
    transform: scale(1.1); /* Slight zoom on hover */
}

/* Header */
header {
    background-color: #333;
    color: #fff;
    padding: 10px; 
    gap: 20px
}

header h1 {
    font-size: 36px;
    margin: 0;
    text-align: center;
}
header h2 {
    font-size: 28px;
    margin: 0;
    text-align: center;
}
header h3 {
    font-size: 16px;
    margin: 0;
    text-align: center;
}

header nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px
}

header nav ul li {
    margin: 30 30px;

}


header nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
}

header nav ul li a:hover {
    color: #fff
}

/* Hero Section */
.hero {
    background-image: url('https://www.decorada.co.nz/images/bg.jpg');
    background-size: cover;            /* Ensure the image covers the entire hero section */
    color: #fff;                       /* White text color */
    padding: 25px 0;                     /* 100px padding top and bottom */
    margin: 0px;                       /* 15px margin around the hero section */
    text-align: center;                 /* Center text */
    display: flex;                      /* Flexbox layout */
    justify-content: center;            /* Center content horizontally */
    background-position: center center; /* Center the background image */
}


@media (max-width: 768px) {
    .element {
        padding: 0px 0;  /* Reduce padding on smaller screens */
    }
}

@media (max-width: 480px) {
    .element {
        padding: 0px 0;  /* Further reduce padding on very small screens */
    }
}
.hero-content {
        background-color: rg
}

    /* Image Links Section */
.image-links {
    background-color: #f4f4f4;
    padding: 50px 30;
    text-align: center;
    gap: 30px;
}
}