@media screen and (min-width: 1025px){
#shoppingTitle {
    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%;
    background: linear-gradient(90deg, #d4af37, #f5e6a1, #d4af37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    /* Subtle shadow for depth */
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
    position: relative;
}


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: 80%;
    margin: 20px auto 10px;
    padding-top: 10px;

    /* Typography */
    font-family: "Cormorant Garamond", "Times New Roman", serif; /* Elegant serif */
    font-size: 22px;
    font-style: none; /* Adds a refined tone */
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0.5px;
    text-align: center;

    /* Color */
    color: #f5e6a1; /* Softer, lighter gold to complement H2s */
    opacity: 0.9;

    /* Subtle style touch */
    border-top: 1px solid rgba(212, 175, 55, 0.3); /* Thin golden divider */
}

/* 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 */
}

.centre h2 {
    font-family: "Cinzel", serif; /* Luxury serif font */
    font-size: 28px;
    font-weight: 600; /* Elegant balance (not too bold) */
    font-variant: small-caps; /* More refined than full uppercase */
    letter-spacing: 1.5px; /* Breathing space */
    line-height: 1.3;
    margin-bottom: 25px;
    margin-top: -10px;
    text-align: center;

    /* Gradient gold text */
    background: linear-gradient(90deg, #d4af37, #f5e6a1, #d4af37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    /* Subtle shadow for depth */
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
    position: relative;
}

/* Elegant underline accent */
.centre h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 2px;
    margin: 10px auto 0;
    background: linear-gradient(90deg, #f5e6a1, #d4af37, #f5e6a1);
    border-radius: 2px;
}

/* 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;
    background: linear-gradient(90deg, #d4af37, #f5e6a1, #d4af37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.mixeduse{
    padding-top: 80px;
    padding-bottom: 40px;
    margin-top: 0;
    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 */
    max-height: 150px; /* uniform height */
    object-fit: contain; /* no distortion */
    display: block;
  }
  
  /* Captions */
  .figure figcaption {
    margin-top: 15px;
    text-align: center;
    font-size: 14px;
    color: peachpuff;
    width: 100%;
  }
  
 .arrow {
    position: absolute;
    top: 40%;
    transform: translateY(-40%);
    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;
  }

.modal-open .arrow {
  z-index: -1 !important;
}

  .modal {
display: none; /* Hidden by default */
position: fixed;
z-index: 14999; /* Sit on top */
left: 0;
top: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.7); /* Dimmed black background */
}

.modal .nav-btn,
.modal .close {
  z-index: 1000000 !important;
}

.modal-content {
  position: relative;
  display: inline-block; /* shrink to content only */
  margin: 50px auto; /* leave space around content */
  text-align: center;
  max-width: 80%;
  top: 50%;                   /* vertical centering */
  left: 50%;                  /* horizontal centering */
  transform: translate(-50%, -50%); /* center properly */
}


.modal-snap {
width: 100%;
max-width: 600px;
z-index: 4001;
}

.nav-btn {
position: absolute;
top: 50%;
background-color: rgba(0, 0, 0, 0.5);
color: white;
font-size: 24px;
border: none;
cursor: pointer;
padding: 10px;
z-index: 1;
transform: translateY(-50%);
}

#prev {
left: 10px;
}

#next {
right: 10px;
}

.snap{
    transition: transform 0.3s ease;
    overflow: visible;
    border-radius: 2px;
    max-height: 150px;
    object-fit: contain;
}


.close {
position: absolute;
top: 10px;
right: 20px;
color: white;
font-size: 36px;
font-weight: bold;
cursor: pointer;
}

  .sub-article{
    display: flex;
  }
  
  ul, ol {
  padding-left: 20px; /* or adjust to taste */
  margin-left: 0;     /* reset browser margin */
  list-style-position: outside; /* makes text align nicely after bullet */
}

  .map-middle {
    display: block; /* Ensures it behaves as a block element */
    margin: -150px auto 5px auto; /* Adds space around the map and centers it */
    width: 100%; /* Makes the map responsive */
    width: 940px; /* 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 */
  }}
  