@media screen and (min-width: 1025px){
#shoppingTitle {
    color: #D4AF37; /* Rich gold tone */
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.25); /* Deep shadow for elegance */
    padding-top: 60px; /* Increased padding for a refined look */
    font-family: "Bruno Ace SC";
    display: flex;
    justify-content: center;
    text-align: center;
    margin: 0 auto;
    letter-spacing: 2px; /* Wider letter spacing for sophistication */
    font-size: 48px; /* Larger font size for impact */
    text-transform: uppercase; /* Adds a prestigious feel */
    font-weight: bold; /* Strong presence */
    background-color: #2c2c2c; /* Dark charcoal background for luxury */
    padding: 20px 40px; /* Padding around the title */
    border-radius: 10px; /* Rounded corners for elegance */
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2); /* Soft shadow to create depth */
    width: 90%;
}

html {
    background: linear-gradient(135deg, #2c2c2c, #1a1a4b); /* Gradient from dark charcoal to navy blue */
    margin: 0;
    font-family: "Bruno Ace SC", sans-serif;
    color: #fff; /* White text for contrast */
}

#shopping-subTitle{
    width: 90%;
    display: inline-flex;
    justify-content: center;
    text-align: center;
    margin: 0 auto;
}

/* Container for all luxury items */
.shopping {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly; /* Space out items evenly */
    gap: 20px; /* Space between the items */
    background-color: #1a1a4b; /* Deep navy background to match theme */
    border-radius: 15px; /* Soft rounded edges for a luxurious feel */
    margin: 0 auto;
    width: 90%;
    padding-bottom: 0px;
}

.shoppingCentres{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly; /* Space out items evenly */
    gap: 20px; /* Space between the items */
    padding: 50px;
    background-color: #1a1a4b; /* Deep navy background to match theme */
    border-radius: 15px; /* Soft rounded edges for a luxurious feel */
    margin: 0 auto;
    width: 90%;
}

/* Style for each individual luxury item */
.centre {
    background-color: #2c2c2c; /* Dark charcoal background for the item */
    color: #fff; /* White text for contrast */
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 0px;
    padding-bottom: 50px;
    width: 280px; /* Fixed width for consistency */
    height: 400px; /* Set a height for uniformity */
    border-radius: 15px; /* Rounded corners for elegance */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15); /* Soft shadow to create depth */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth transition for hover effects */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
    overflow: hidden; /* Prevents any content from spilling over */
    align-items: center;
    position: relative;
    margin-left: 0;
    border: 1px solid rgba(255, 255, 255, 0.15); /* Soft border for subtle definition */
    background: linear-gradient(135deg, #2c2c2c, #1a1a4b);
}

.centre:hover {
    transform: translateY(-10px); /* Slight lift on hover */
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25); /* Stronger shadow on hover */
}

/* Add a gold accent to headers or important text */
.centre h2 {
    color: #D4AF37; /* Rich gold color */
    font-size: 24px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 15px;
}

/* Styling for images or media in the luxury item */
.centre img {
    max-width: 100%;
    border-radius: 10px;
    margin-bottom: 20px;
}

.stars{
    display: inline-flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.mixeduse{
    padding-top: 80px;
    padding-left: 10px;
    padding-right: 0px;
    margin-top: 0;
    margin-left: 50px;
    margin-right: 0%;
    text-align: center;
    float: left;
    display: block; /* Ensures it behaves as a block element */
    margin: 20px auto; /* Adds space around the map and centers it */
    width: 100%; /* Makes the map responsive */
    max-width: 640px; /* Sets a maximum width to keep it visually appropriate */
    height: 480px; /* Keep the original height, you can adjust this if needed */
    
}

.gallery-container {
    position: relative;
    width: 80%; 
    margin: 0 auto;
    overflow: hidden;
    margin-bottom: 20px;
    padding-left: 40px;
  }
  
  /* The actual gallery */
  .gallery {
    display: flex;
    justify-content: flex-start; /* start from the left */
    align-items: center;
    transition: transform 0.3s ease-in-out;
    gap: 20px;
    padding: 0;
    margin: 0;
  }
  
  /* Each figure */
  .figure {
    flex: 0 0 auto; /* don't stretch */
    margin: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  /* Images inside figure */
  .figure img {
    width: 250px;  /* uniform width */
    height: 160px; /* uniform height */
    object-fit: cover; /* no distortion */
    display: block;
  }
  
  /* Captions */
  .figure figcaption {
    margin-top: 5px;
    text-align: center;
    font-size: 14px;
    color: peachpuff;
    width: 100%;
  }
  
  /* Arrows */
  .arrow {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    font-size: 2rem;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 10;
  }
  
  .left-arrow {
    left: 10px;
  }
  
  .right-arrow {
    right: 10px;
  }

  .sub-article{
    display: flex;
  }
  
  .map-middle {
    display: block; /* Ensures it behaves as a block element */
    margin: 20px auto; /* Adds space around the map and centers it */
    width: 100%; /* Makes the map responsive */
    max-width: 740px; /* Sets a maximum width to keep it visually appropriate */
    height: 480px; /* Keep the original height, you can adjust this if needed */
  }}

@media screen and (min-width: 901px) and (max-width: 1024px){
#shoppingTitle {
    color: #D4AF37; /* Rich gold tone */
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.25); /* Deep shadow for elegance */
    padding-top: 60px; /* Increased padding for a refined look */
    font-family: "Bruno Ace SC";
    display: flex;
    justify-content: center;
    text-align: center;
    margin: 0 auto;
    letter-spacing: 2px; /* Wider letter spacing for sophistication */
    font-size: 48px; /* Larger font size for impact */
    text-transform: uppercase; /* Adds a prestigious feel */
    font-weight: bold; /* Strong presence */
    background-color: #2c2c2c; /* Dark charcoal background for luxury */
    padding: 20px 40px; /* Padding around the title */
    border-radius: 10px; /* Rounded corners for elegance */
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2); /* Soft shadow to create depth */
    width: 90%;
}

html {
    background: linear-gradient(135deg, #2c2c2c, #1a1a4b); /* Gradient from dark charcoal to navy blue */
    margin: 0;
    font-family: "Bruno Ace SC", sans-serif;
    color: #fff; /* White text for contrast */
}

#shopping-subTitle{
    width: 90%;
    display: inline-flex;
    justify-content: center;
    text-align: center;
    margin: 0 auto;
}

/* Container for all luxury items */
.shopping {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly; /* Space out items evenly */
    gap: 20px; /* Space between the items */
    background-color: #1a1a4b; /* Deep navy background to match theme */
    border-radius: 15px; /* Soft rounded edges for a luxurious feel */
    margin: 0 auto;
    width: 90%;
    padding-bottom: 0px;
}

.shoppingCentres{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly; /* Space out items evenly */
    gap: 20px; /* Space between the items */
    padding: 50px;
    background-color: #1a1a4b; /* Deep navy background to match theme */
    border-radius: 15px; /* Soft rounded edges for a luxurious feel */
    margin: 0 auto;
    width: 90%;
}

/* Style for each individual luxury item */
.centre {
    background-color: #2c2c2c; /* Dark charcoal background for the item */
    color: #fff; /* White text for contrast */
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 0px;
    padding-bottom: 50px;
    width: 280px; /* Fixed width for consistency */
    height: 400px; /* Set a height for uniformity */
    border-radius: 15px; /* Rounded corners for elegance */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15); /* Soft shadow to create depth */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth transition for hover effects */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
    overflow: hidden; /* Prevents any content from spilling over */
    align-items: center;
    position: relative;
    margin-left: 0;
    border: 1px solid rgba(255, 255, 255, 0.15); /* Soft border for subtle definition */
    background: linear-gradient(135deg, #2c2c2c, #1a1a4b);
}

.centre:hover {
    transform: translateY(-10px); /* Slight lift on hover */
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25); /* Stronger shadow on hover */
}

/* Add a gold accent to headers or important text */
.centre h2 {
    color: #D4AF37; /* Rich gold color */
    font-size: 24px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 15px;
}

/* Styling for images or media in the luxury item */
.centre img {
    max-width: 100%;
    border-radius: 10px;
    margin-bottom: 20px;
}

.stars{
    display: inline-flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.mixeduse{
    padding-top: 80px;
    padding-left: 10px;
    padding-right: 0px;
    margin-top: 0;
    margin-left: 50px;
    margin-right: 0%;
    text-align: center;
    float: left;
    display: block; /* Ensures it behaves as a block element */
    margin: 20px auto; /* Adds space around the map and centers it */
    width: 100%; /* Makes the map responsive */
    max-width: 640px; /* Sets a maximum width to keep it visually appropriate */
    height: 480px; /* Keep the original height, you can adjust this if needed */
    
}

.gallery-container {
    position: relative;
    width: 80%; 
    margin: 0 auto;
    overflow: hidden;
    margin-bottom: 20px;
    padding-left: 40px;
  }
  
  /* The actual gallery */
  .gallery {
    display: flex;
    justify-content: flex-start; /* start from the left */
    align-items: center;
    transition: transform 0.3s ease-in-out;
    gap: 20px;
    padding: 0;
    margin: 0;
  }
  
  /* Each figure */
  .figure {
    flex: 0 0 auto; /* don't stretch */
    margin: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  /* Images inside figure */
  .figure img {
    width: 250px;  /* uniform width */
    height: 160px; /* uniform height */
    object-fit: cover; /* no distortion */
    display: block;
  }
  
  /* Captions */
  .figure figcaption {
    margin-top: 5px;
    text-align: center;
    font-size: 14px;
    color: peachpuff;
    width: 100%;
  }
  
  /* Arrows */
  .arrow {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    font-size: 2rem;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 10;
  }
  
  .left-arrow {
    left: 10px;
  }
  
  .right-arrow {
    right: 10px;
  }

  .sub-article{
    display: flex;
  }
  
  .map-middle {
    display: block; /* Ensures it behaves as a block element */
    margin: 20px auto; /* Adds space around the map and centers it */
    width: 100%; /* Makes the map responsive */
    max-width: 740px; /* Sets a maximum width to keep it visually appropriate */
    height: 480px; /* Keep the original height, you can adjust this if needed */
  }}
 @media screen and (min-width: 769px) and (max-width: 900px){
#shoppingTitle {
    color: #D4AF37; /* Rich gold tone */
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.25); /* Deep shadow for elegance */
    padding-top: 60px; /* Increased padding for a refined look */
    font-family: "Bruno Ace SC";
    display: flex;
    justify-content: center;
    text-align: center;
    margin: 0 auto;
    letter-spacing: 2px; /* Wider letter spacing for sophistication */
    font-size: 48px; /* Larger font size for impact */
    text-transform: uppercase; /* Adds a prestigious feel */
    font-weight: bold; /* Strong presence */
    background-color: #2c2c2c; /* Dark charcoal background for luxury */
    padding: 20px 40px; /* Padding around the title */
    border-radius: 10px; /* Rounded corners for elegance */
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2); /* Soft shadow to create depth */
    width: 90%;
}

html {
    background: linear-gradient(135deg, #2c2c2c, #1a1a4b); /* Gradient from dark charcoal to navy blue */
    margin: 0;
    font-family: "Bruno Ace SC", sans-serif;
    color: #fff; /* White text for contrast */
}

#shopping-subTitle{
    width: 90%;
    display: inline-flex;
    justify-content: center;
    text-align: center;
    margin: 0 auto;
}

/* Container for all luxury items */
.shopping {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly; /* Space out items evenly */
    gap: 20px; /* Space between the items */
    background-color: #1a1a4b; /* Deep navy background to match theme */
    border-radius: 15px; /* Soft rounded edges for a luxurious feel */
    margin: 0 auto;
    width: 90%;
    padding-bottom: 0px;
}

.shoppingCentres{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly; /* Space out items evenly */
    gap: 20px; /* Space between the items */
    padding: 50px;
    background-color: #1a1a4b; /* Deep navy background to match theme */
    border-radius: 15px; /* Soft rounded edges for a luxurious feel */
    margin: 0 auto;
    width: 90%;
}

/* Style for each individual luxury item */
.centre {
    background-color: #2c2c2c; /* Dark charcoal background for the item */
    color: #fff; /* White text for contrast */
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 0px;
    padding-bottom: 50px;
    width: 280px; /* Fixed width for consistency */
    height: 400px; /* Set a height for uniformity */
    border-radius: 15px; /* Rounded corners for elegance */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15); /* Soft shadow to create depth */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth transition for hover effects */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
    overflow: hidden; /* Prevents any content from spilling over */
    align-items: center;
    position: relative;
    margin-left: 0;
    border: 1px solid rgba(255, 255, 255, 0.15); /* Soft border for subtle definition */
    background: linear-gradient(135deg, #2c2c2c, #1a1a4b);
}

.centre:hover {
    transform: translateY(-10px); /* Slight lift on hover */
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25); /* Stronger shadow on hover */
}

/* Add a gold accent to headers or important text */
.centre h2 {
    color: #D4AF37; /* Rich gold color */
    font-size: 24px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 15px;
}

/* Styling for images or media in the luxury item */
.centre img {
    max-width: 100%;
    border-radius: 10px;
    margin-bottom: 20px;
}

.stars{
    display: inline-flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.mixeduse{
    padding-top: 80px;
    padding-left: 10px;
    padding-right: 0px;
    margin-top: 0;
    margin-left: 50px;
    margin-right: 0%;
    text-align: center;
    float: left;
    display: block; /* Ensures it behaves as a block element */
    margin: 20px auto; /* Adds space around the map and centers it */
    width: 100%; /* Makes the map responsive */
    max-width: 640px; /* Sets a maximum width to keep it visually appropriate */
    height: 480px; /* Keep the original height, you can adjust this if needed */
    
}

.gallery-container {
    position: relative;
    width: 80%; 
    margin: 0 auto;
    overflow: hidden;
    margin-bottom: 20px;
    padding-left: 40px;
  }
  
  /* The actual gallery */
  .gallery {
    display: flex;
    justify-content: flex-start; /* start from the left */
    align-items: center;
    transition: transform 0.3s ease-in-out;
    gap: 20px;
    padding: 0;
    margin: 0;
  }
  
  /* Each figure */
  .figure {
    flex: 0 0 auto; /* don't stretch */
    margin: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  /* Images inside figure */
  .figure img {
    width: 250px;  /* uniform width */
    height: 160px; /* uniform height */
    object-fit: cover; /* no distortion */
    display: block;
  }
  
  /* Captions */
  .figure figcaption {
    margin-top: 5px;
    text-align: center;
    font-size: 14px;
    color: peachpuff;
    width: 100%;
  }
  
  /* Arrows */
  .arrow {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    font-size: 2rem;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 10;
  }
  
  .left-arrow {
    left: 10px;
  }
  
  .right-arrow {
    right: 10px;
  }

  .sub-article{
    display: flex;
  }
  
  .map-middle {
    display: block; /* Ensures it behaves as a block element */
    margin: 20px auto; /* Adds space around the map and centers it */
    width: 100%; /* Makes the map responsive */
    max-width: 740px; /* Sets a maximum width to keep it visually appropriate */
    height: 480px; /* Keep the original height, you can adjust this if needed */
  }}

  @media screen and (min-width: 481px) and (max-width: 768px){
#shoppingTitle {
    color: #D4AF37; /* Rich gold tone */
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.25); /* Deep shadow for elegance */
    padding-top: 60px; /* Increased padding for a refined look */
    font-family: "Bruno Ace SC";
    display: flex;
    justify-content: center;
    text-align: center;
    margin: 0 auto;
    letter-spacing: 2px; /* Wider letter spacing for sophistication */
    font-size: 48px; /* Larger font size for impact */
    text-transform: uppercase; /* Adds a prestigious feel */
    font-weight: bold; /* Strong presence */
    background-color: #2c2c2c; /* Dark charcoal background for luxury */
    padding: 20px 40px; /* Padding around the title */
    border-radius: 10px; /* Rounded corners for elegance */
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2); /* Soft shadow to create depth */
    width: 90%;
}

html {
    background: linear-gradient(135deg, #2c2c2c, #1a1a4b); /* Gradient from dark charcoal to navy blue */
    margin: 0;
    font-family: "Bruno Ace SC", sans-serif;
    color: #fff; /* White text for contrast */
}

#shopping-subTitle{
    width: 90%;
    display: inline-flex;
    justify-content: center;
    text-align: center;
    margin: 0 auto;
}

/* Container for all luxury items */
.shopping {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly; /* Space out items evenly */
    gap: 20px; /* Space between the items */
    background-color: #1a1a4b; /* Deep navy background to match theme */
    border-radius: 15px; /* Soft rounded edges for a luxurious feel */
    margin: 0 auto;
    width: 90%;
    padding-bottom: 0px;
}

.shoppingCentres{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly; /* Space out items evenly */
    gap: 20px; /* Space between the items */
    padding: 50px;
    background-color: #1a1a4b; /* Deep navy background to match theme */
    border-radius: 15px; /* Soft rounded edges for a luxurious feel */
    margin: 0 auto;
    width: 90%;
}

/* Style for each individual luxury item */
.centre {
    background-color: #2c2c2c; /* Dark charcoal background for the item */
    color: #fff; /* White text for contrast */
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 0px;
    padding-bottom: 50px;
    width: 280px; /* Fixed width for consistency */
    height: 400px; /* Set a height for uniformity */
    border-radius: 15px; /* Rounded corners for elegance */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15); /* Soft shadow to create depth */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth transition for hover effects */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
    overflow: hidden; /* Prevents any content from spilling over */
    align-items: center;
    position: relative;
    margin-left: 0;
    border: 1px solid rgba(255, 255, 255, 0.15); /* Soft border for subtle definition */
    background: linear-gradient(135deg, #2c2c2c, #1a1a4b);
}

.centre:hover {
    transform: translateY(-10px); /* Slight lift on hover */
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25); /* Stronger shadow on hover */
}

/* Add a gold accent to headers or important text */
.centre h2 {
    color: #D4AF37; /* Rich gold color */
    font-size: 24px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 15px;
}

/* Styling for images or media in the luxury item */
.centre img {
    max-width: 100%;
    border-radius: 10px;
    margin-bottom: 20px;
}

.stars{
    display: inline-flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.mixeduse{
    padding-top: 80px;
    padding-left: 10px;
    padding-right: 0px;
    margin-top: 0;
    margin-left: 50px;
    margin-right: 0%;
    text-align: center;
    float: left;
    display: block; /* Ensures it behaves as a block element */
    margin: 20px auto; /* Adds space around the map and centers it */
    width: 100%; /* Makes the map responsive */
    max-width: 640px; /* Sets a maximum width to keep it visually appropriate */
    height: 480px; /* Keep the original height, you can adjust this if needed */
    
}

.gallery-container {
    position: relative;
    width: 80%; 
    margin: 0 auto;
    overflow: hidden;
    margin-bottom: 20px;
    padding-left: 40px;
  }
  
  /* The actual gallery */
  .gallery {
    display: flex;
    justify-content: flex-start; /* start from the left */
    align-items: center;
    transition: transform 0.3s ease-in-out;
    gap: 20px;
    padding: 0;
    margin: 0;
  }
  
  /* Each figure */
  .figure {
    flex: 0 0 auto; /* don't stretch */
    margin: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  /* Images inside figure */
  .figure img {
    width: 250px;  /* uniform width */
    height: 160px; /* uniform height */
    object-fit: cover; /* no distortion */
    display: block;
  }
  
  /* Captions */
  .figure figcaption {
    margin-top: 5px;
    text-align: center;
    font-size: 14px;
    color: peachpuff;
    width: 100%;
  }
  
  /* Arrows */
  .arrow {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    font-size: 2rem;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 10;
  }
  
  .left-arrow {
    left: 10px;
  }
  
  .right-arrow {
    right: 10px;
  }

  .sub-article{
    display: flex;
  }
  
  .map-middle {
    display: block; /* Ensures it behaves as a block element */
    margin: 20px auto; /* Adds space around the map and centers it */
    width: 100%; /* Makes the map responsive */
    max-width: 740px; /* Sets a maximum width to keep it visually appropriate */
    height: 480px; /* Keep the original height, you can adjust this if needed */
  }}

 @media screen and (max-width: 480px) and (orientation: portrait){
#shoppingTitle {
    color: #D4AF37; /* Rich gold tone */
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.25); /* Deep shadow for elegance */
    padding-top: 60px; /* Increased padding for a refined look */
    font-family: "Bruno Ace SC";
    display: flex;
    justify-content: center;
    text-align: center;
    margin: 0 auto;
    letter-spacing: 2px; /* Wider letter spacing for sophistication */
    font-size: 20px; /* Larger font size for impact */
    text-transform: uppercase; /* Adds a prestigious feel */
    font-weight: bold; /* Strong presence */
    background-color: #2c2c2c; /* Dark charcoal background for luxury */
    padding: 20px 40px; /* Padding around the title */
    border-radius: 10px; /* Rounded corners for elegance */
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2); /* Soft shadow to create depth */
    width: 60%;
}

html {
    background: linear-gradient(135deg, #2c2c2c, #1a1a4b); /* Gradient from dark charcoal to navy blue */
    margin: 0;
    font-family: "Bruno Ace SC", sans-serif;
    color: #fff; /* White text for contrast */
}

#shopping-subTitle{
    width: 40%;
    display: inline-flex;
    justify-content: center;
    text-align: center;
    margin: 0 auto;
}

/* Container for all luxury items */
.shopping {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly; /* Space out items evenly */
    gap: 20px; /* Space between the items */
    background-color: #1a1a4b; /* Deep navy background to match theme */
    border-radius: 15px; /* Soft rounded edges for a luxurious feel */
    margin: 0 auto;
    width: 80vw;
    padding-bottom: 0px;
}

.shoppingCentres{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly; /* Space out items evenly */
    gap: 20px; /* Space between the items */
    padding: 50px;
    background-color: #1a1a4b; /* Deep navy background to match theme */
    border-radius: 15px; /* Soft rounded edges for a luxurious feel */
    margin: 0 auto;
    width: 100vw;
}

/* Style for each individual luxury item */
.centre {
    background-color: #2c2c2c; /* Dark charcoal background for the item */
    color: #fff; /* White text for contrast */
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 0px;
    padding-bottom: 15px;
    font-size: 0.85em;
    border-radius: 15px; /* Rounded corners for elegance */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15); /* Soft shadow to create depth */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth transition for hover effects */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
    overflow: hidden; /* Prevents any content from spilling over */
    align-items: center;
    position: relative;
    margin-left: 0;
    border: 1px solid rgba(255, 255, 255, 0.15); /* Soft border for subtle definition */
    background: linear-gradient(135deg, #2c2c2c, #1a1a4b);
    width: 80vw;
}

.centre:hover {
    transform: translateY(-10px); /* Slight lift on hover */
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25); /* Stronger shadow on hover */
}

/* Add a gold accent to headers or important text */
.centre h2 {
    color: #D4AF37; /* Rich gold color */
    font-size: 24px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 15px;
}

/* Styling for images or media in the luxury item */
.centre img {
    max-width: 100%;
    border-radius: 10px;
    margin-bottom: 20px;
}

.stars{
    display: inline-flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.mixeduse{
    padding-top: 0;
    padding-left: 10px;
    padding-right: 0px;
    padding-bottom: 350px;
    margin-top: 0;
    margin-left: 50px;
    margin-right: 0%;
    text-align: center;
    float: left;
    display: block; /* Ensures it behaves as a block element */
    margin: 20px auto; /* Adds space around the map and centers it */
    width: 100%; /* Makes the map responsive */
    max-width: 640px; /* Sets a maximum width to keep it visually appropriate */
    height: 480px; /* Keep the original height, you can adjust this if needed */
    
}

.gallery-container {
    position: relative;
    width: 90%; 
    margin: 0 auto;
    overflow: hidden;
    margin-bottom: 10px;
    padding-left: 8px;
  }
  
  /* The actual gallery */
  .gallery {
    display: flex;
    justify-content: flex-start; /* start from the left */
    align-items: center;
    transition: transform 0.3s ease-in-out;
    gap: 20px;
    padding: 0;
    margin: 0;
  }
  
  /* Each figure */
  .figure {
    flex: 0 0 auto; /* don't stretch */
    margin: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  /* Images inside figure */
  .figure img {
    width: 250px;  /* uniform width */
    height: 160px; /* uniform height */
    object-fit: cover; /* no distortion */
    display: block;
  }
  
  /* Captions */
  .figure figcaption {
    margin-top: 5px;
    text-align: center;
    font-size: 14px;
    color: peachpuff;
    width: 90%;
  }
  
  /* Arrows */
  .arrow {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    font-size: 2rem;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 10;
  }
  
  .left-arrow {
    left: 10px;
  }
  
  .right-arrow {
    right: 10px;
  }

  .sub-article{
    display: flex;
  }
  
  .map-middle {
    display: block; /* Ensures it behaves as a block element */
    margin: 20px auto; /* Adds space around the map and centers it */
    width: 100%; /* Makes the map responsive */
    max-width: 740px; /* Sets a maximum width to keep it visually appropriate */
    height: 480px; /* Keep the original height, you can adjust this if needed */
  }}
  

  @media screen and (max-height: 480px) and (orientation: landscape){
#shoppingTitle {
    color: #D4AF37; /* Rich gold tone */
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.25); /* Deep shadow for elegance */
    padding-top: 60px; /* Increased padding for a refined look */
    font-family: "Bruno Ace SC";
    display: flex;
    justify-content: center;
    text-align: center;
    margin: 0 auto;
    letter-spacing: 2px; /* Wider letter spacing for sophistication */
    font-size: 20px; /* Larger font size for impact */
    text-transform: uppercase; /* Adds a prestigious feel */
    font-weight: bold; /* Strong presence */
    background-color: #2c2c2c; /* Dark charcoal background for luxury */
    padding: 20px 40px; /* Padding around the title */
    border-radius: 10px; /* Rounded corners for elegance */
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2); /* Soft shadow to create depth */
    width: 80%;
}

html {
    background: linear-gradient(135deg, #2c2c2c, #1a1a4b); /* Gradient from dark charcoal to navy blue */
    margin: 0;
    font-family: "Bruno Ace SC", sans-serif;
    color: #fff; /* White text for contrast */
}

#shopping-subTitle{
    width: 40%;
    display: inline-flex;
    justify-content: center;
    text-align: center;
    margin: 0 auto;
}

/* Container for all luxury items */
.shopping {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly; /* Space out items evenly */
    gap: 20px; /* Space between the items */
    background-color: #1a1a4b; /* Deep navy background to match theme */
    border-radius: 15px; /* Soft rounded edges for a luxurious feel */
    margin: 0 auto;
    width: 80%;
    padding-bottom: 0px;
}

.shoppingCentres{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly; /* Space out items evenly */
    gap: 20px; /* Space between the items */
    padding: 50px;
    background-color: #1a1a4b; /* Deep navy background to match theme */
    border-radius: 15px; /* Soft rounded edges for a luxurious feel */
    margin: 0 auto;
    width: 100%;
}

/* Style for each individual luxury item */
.centre {
    background-color: #2c2c2c; /* Dark charcoal background for the item */
    color: #fff; /* White text for contrast */
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 0px;
    padding-bottom: 50px;
    font-size: 0.8em;
    border-radius: 15px; /* Rounded corners for elegance */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15); /* Soft shadow to create depth */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth transition for hover effects */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
    overflow: hidden; /* Prevents any content from spilling over */
    align-items: center;
    position: relative;
    margin-left: 0;
    border: 1px solid rgba(255, 255, 255, 0.15); /* Soft border for subtle definition */
    background: linear-gradient(135deg, #2c2c2c, #1a1a4b);
    width: 100%;
    height: 200px;
}

.centre:hover {
    transform: translateY(-10px); /* Slight lift on hover */
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25); /* Stronger shadow on hover */
}

/* Add a gold accent to headers or important text */
.centre h2 {
    color: #D4AF37; /* Rich gold color */
    font-size: 24px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 15px;
}

/* Styling for images or media in the luxury item */
.centre img {
    max-width: 100%;
    border-radius: 10px;
    margin-bottom: 20px;
}

.stars{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
}

.mixeduse{
    padding-top: 0;
    padding-left: 10px;
    padding-right: 0px;
    padding-bottom: 350px;
    margin-top: 0;
    margin-left: 50px;
    margin-right: 0%;
    text-align: center;
    float: left;
    display: block; /* Ensures it behaves as a block element */
    margin: 20px auto; /* Adds space around the map and centers it */
    width: 100%; /* Makes the map responsive */
    max-width: 640px; /* Sets a maximum width to keep it visually appropriate */
    height: 480px; /* Keep the original height, you can adjust this if needed */
    
}

.gallery-container {
    position: relative;
    width: 90%; 
    margin: 0 auto;
    overflow: hidden;
    margin-bottom: 10px;
    padding-left: 8px;
  }
  
  /* The actual gallery */
  .gallery {
    display: flex;
    justify-content: flex-start; /* start from the left */
    align-items: center;
    transition: transform 0.3s ease-in-out;
    gap: 20px;
    padding: 0;
    margin: 0;
  }
  
  /* Each figure */
  .figure {
    flex: 0 0 auto; /* don't stretch */
    margin: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  /* Images inside figure */
  .figure img {
    width: 250px;  /* uniform width */
    height: 160px; /* uniform height */
    object-fit: cover; /* no distortion */
    display: block;
  }
  
  /* Captions */
  .figure figcaption {
    margin-top: 5px;
    text-align: center;
    font-size: 14px;
    color: peachpuff;
    width: 90%;
  }
  
  /* Arrows */
  .arrow {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    font-size: 2rem;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 10;
  }
  
  .left-arrow {
    left: 10px;
  }
  
  .right-arrow {
    right: 10px;
  }

  .sub-article{
    display: flex;
  }
  
  .map-middle {
    display: block; /* Ensures it behaves as a block element */
    margin: 20px auto; /* Adds space around the map and centers it */
    width: 100%; /* Makes the map responsive */
    max-width: 1040px; /* Sets a maximum width to keep it visually appropriate */
    height: 480px; /* Keep the original height, you can adjust this if needed */
  }}
  