@media screen and (min-width: 1025px) {

  /* ========== Layout container ========== */
  .restaurant-layout {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: nowrap; /* keep them side by side */
    gap: 40px;
    width: 100%;
    box-sizing: border-box;
  }

  /* ========== Restaurant list ========== */
  .restaurant-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
  }

  /* ========== Each restaurant card ========== */
  .restaurant {
    width: 100%;
    max-width: 950px;
    padding: 40px;
    border-radius: 20px;
    background: linear-gradient(145deg, #fdfcf7, #f6f3ea);
    margin: 30px 0;
    position: relative;
    color: #2c2c2c;
    text-align: left;
    font-family: "Cormorant Garamond", serif;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    border: 1px solid rgba(177, 151, 91, 0.3);
  }

  .restaurant:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.25);
    border-color: rgba(177, 151, 91, 0.6);
  }

  /* Decorative glowing frame */
  .restaurant::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(177, 151, 91, 0.15), rgba(255, 255, 255, 0));
    box-shadow: inset 0 0 30px rgba(208, 161, 0, 0.2);
    z-index: -1;
  }

  /* Titles */
  .restaurant h2 {
    color: #b1975b;
    font-size: 2.1rem;
    font-weight: 600;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-family: "Playfair Display", serif;
    border-bottom: 1px solid rgba(177, 151, 91, 0.5);
    display: inline-block;
    padding-bottom: 8px;
  }

  /* Paragraph text */
  .restaurant p {
    color: #333;
    font-size: 1.075rem;
    font-family: "Lora", serif;
    line-height: 1.4;
    margin-top: 12px;
    font-weight: 300;
  }

  /* ========== Left side: Restaurants section ========== */
  .restaurants {
    flex: 0 0 65%; /* about two-thirds */
    padding: 80px 40px 60px 60px;
    box-sizing: border-box;
  }

  /* Section title */
  #restaurantsTitle {
    font-family: "Lustria", serif;
    font-size: 3.2rem;
    font-weight: 700;
    color: #1c1c1c;
    margin-bottom: 60px;
    text-align: left;
    border-bottom: 3px solid #b1975b;
    padding-bottom: 18px;
    letter-spacing: 1px;
  }

  /* Search box */
  #cuisineSearch {
    border: 1px solid #b1975b;
    border-radius: 12px;
    padding: 14px 18px;
    font-size: 1rem;
    font-family: "Lora", serif;
    margin-bottom: 20px;
    transition: all 0.35s ease;
    background-color: #fff;
    color: #333;
  }

  #cuisineSearch:hover,
  #cuisineSearch:focus {
    border-color: #927c47;
    box-shadow: 0 0 14px rgba(178, 151, 91, 0.35);
    outline: none;
  }

  /* Flags */
  .flag {
    width: 45px;
    height: auto;
    margin-right: 10px;
  }

  /* Text with icons */
  .icon_text {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: "Lora", serif;
    color: #444;
    font-size: 1rem;
  }

  /* ========== Right side: Images section ========== */
  .images {
    flex: 0 0 30%; /* about one-third */
    display: flex;
    flex-direction: column;
    align-items: flex-end; /* aligns content to the right edge */
    gap: 30px;
    padding: 180px 120px 0px 0px;
    box-sizing: border-box;
  }

  .images .picture {
    width: 100%;
    text-align: right;
  }

  .images .gallery-image {
    width: 100%;
    max-width: 350px;
    height: auto;
    border-radius: 16px;
    object-fit: cover;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
    display: block;
  }



.images figure {
    width: 100%;          /* make the figure take full width of its container */
    margin: 0 auto 30px;  /* center figure block and add bottom spacing */
    text-align: center;   /* center text inside the figure */
    display: block;       /* ensures figure behaves as a block */
}

.images figure img {
    display: block;
    margin: 0 auto;       /* center the image itself */
    border-radius: 16px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
    max-width: 100%;
}

.images figure figcaption {
    margin-top: 8px; 
    font-style: italic;
    font-family: "Cormorant Garamond", serif;
    font-size: 1rem;
    color: #666;
    text-align: center;   /* ensures text is centered */
    line-height: 1.4;
    display: block;       /* ensures proper block layout */
    width: 100%;          /* fill full width so centering works */
}

.sub-article {
    display: flex;         
    justify-content: center;
    align-items: center;
    width: 100%;         
    margin-bottom: 100px;
    position: relative;
    clear: both;
    transform: translateY(-140px);
}

.map-clip {
    width: 50%;
    height: 350px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    position: relative;  
}

.map-middle {
    position: absolute; 
    width: 100%;        
    height: 100%;
    top: -90px;
    border: none;
    display: block;
    object-fit: cover;
}
}


@media screen and (min-width: 901px) and (max-width: 1024px){
    html{
    background-color: #fafafa;
}

.restaurant-list{
    display: flex;
    flex-wrap: wrap;
  }
  
  .restaurant {
    width: 100%;
    max-width: 900px;
    padding: 10px;
    border-radius: 15px; /* More pronounced curves for an elegant look */
    background-color: #f0f1e4; /* Soft cream for the background */
    margin: 20px auto; /* Center the container with space around it */
    position: relative; /* To position pseudo-elements relative to the parent */
    color: #3a3a3a; /* A deep gray for the text */
    text-align: center; /* Center align text for a formal feel */
    font-family: 'Georgia', serif; /* Elegant serif font for a sophisticated look */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15); /* Soft shadow to give depth */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth hover effects */
}

/* Hover effect to create a slight lift and add excitement with a more vibrant shadow */
.restaurant:hover {
    transform: translateY(-8px); /* Slight lift to give a 3D effect */
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3); /* Stronger shadow on hover */
}

/* Title style with an Art Nouveau feel */
.restaurant h2 {
    color: #d0a100; /* Gold for the title for an elegant touch */
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 4px; /* Wider spacing to give an airy feel */
    font-family: 'Dancing Script', cursive; /* Cursive font for the title to give it a hand-drawn feel */
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); /* Light shadow for depth */
    padding: 5px;
    margin: 0 auto 20px auto; /* Centers horizontally and adds bottom space */
    text-align: center;       /* Ensures text is centered inside the h2 */ 
}



/* Inner glow effect with a softer, more colorful touch */
.restaurant::after {
    content: '';
    position: absolute;
    top: 10px; bottom: 10px; left: 10px; right: 10px;
    background: rgba(0, 0, 0, 0.05); /* Soft background to make the glow visible */
    box-shadow: inset 0 0 50px rgba(255, 204, 0, 0.8), inset 0 0 25px rgba(0, 128, 0, 0.5); /* Gold and green inner glow */
    border-radius: 15px; /* Rounded edges for the glow effect */
    z-index: -1; /* Keep glow effect behind the content */
}

/* Decorative borders with floral-inspired elements */
.restaurant::before, .restaurant::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0; left: 0; right: 0;
    border: 3px solid transparent;
    border-radius: 15px; /* Round corners for a more elegant frame */
    background: linear-gradient(45deg, rgba(255, 204, 0, 0.5), rgba(0, 128, 0, 0.5)); /* Golden-green gradient for a touch of elegance */
    z-index: -2;
}


/* Adding a light accent color to the paragraph text to match the theme */
.restaurant p {
    color: #4a4a4a; /* Dark gray text */
    font-size: 2.2rem;
    font-family: 'Georgia', serif;
    margin-top: 10px;
    line-height: 1.6;
}

  
  .restaurant.hidden{
    display: none;
  }

  .restaurants{
    width: 65%;
    float: none;
    padding-top: 80px;
    padding-left: 10px;
    padding-right: 0;
    margin: 0;
    position: static;
    flex: 1;
}

#restaurantsTitle{
    color: #FF6347;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
    padding-top: 40px;
    font-family: "Bruno Ace SC";
    display: flex;
    justify-content: center;
    text-align: center;
}

#cuisineSearch{
    border: solid 1px rgba(255, 215, 0, 0.8);
    outline: none;
    margin-bottom: 40px;
    position: relative;
    z-index: 1000;
}

#cuisineSearch:hover{
    box-shadow: 0 5px 20px 5px rgba(255, 215, 0, 0.8);
}

#cuisineSearch:focus{
    border: solid thick rgba(255, 215, 0, 0.8);
}

.flag{
    width: 50px;
    height: auto;
    padding-left: 20px;
    position: absolute;
}

.icon_text{
    display: flex;
    align-items: center; /* Vertically centers the flag and text */
 /* Optional: adds space between flag and text */
}


.image{
    z-index: 50;
    flex-shrink: 0;
    width: 100%;
    height: 280px;
    right: 0;
    margin-top: 0;
    border: none;
    border-radius: 20px;
    object-fit: cover;
    flex-basis: 150px;
    display: block;
    border: none;
    box-shadow: 0 0 0 2px #ccc;
}

figcaption{
    text-align: center;
    margin: 0 auto;
    width: 100%;
    padding-right: 90px;
    padding-top: 0px;
    margin-top: 0px;
    padding-bottom: 40px;
    width: 270px;
    font-size: 0.9em;
    position: static !important;
}

.map{
    z-index: 0;
    width: 80%;
    height: 350px;
    padding-top: 20px;
    padding-left: 5px;
    padding-bottom: 20px;
    padding-right: 30px;
    margin-top: 0;
    border: none;
    flex-shrink: 0;
    right: 0;
    object-fit: cover;
    margin-right: 0;
}

.images{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 20;
    padding-top: 100px;
}
}

@media screen and (min-width: 769px) and (max-width: 900px){
    .restaurant-list{
    display: flex;
    flex-wrap: wrap;
  }
  
  .restaurant {
    width: 100%;
    max-width: 900px;
    padding: 10px;
    border-radius: 15px; /* More pronounced curves for an elegant look */
    background-color: #f0f1e4; /* Soft cream for the background */
    margin: 20px auto; /* Center the container with space around it */
    position: relative; /* To position pseudo-elements relative to the parent */
    color: #3a3a3a; /* A deep gray for the text */
    text-align: center; /* Center align text for a formal feel */
    font-family: 'Georgia', serif; /* Elegant serif font for a sophisticated look */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15); /* Soft shadow to give depth */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth hover effects */
}

/* Hover effect to create a slight lift and add excitement with a more vibrant shadow */
.restaurant:hover {
    transform: translateY(-8px); /* Slight lift to give a 3D effect */
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3); /* Stronger shadow on hover */
}

/* Title style with an Art Nouveau feel */
.restaurant h2 {
    color: #d0a100; /* Gold for the title for an elegant touch */
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 4px; /* Wider spacing to give an airy feel */
    font-family: 'Dancing Script', cursive; /* Cursive font for the title to give it a hand-drawn feel */
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); /* Light shadow for depth */
    padding: 5px;
    margin: 0 auto 20px auto; /* Centers horizontally and adds bottom space */
    text-align: center;       /* Ensures text is centered inside the h2 */ 
}



/* Inner glow effect with a softer, more colorful touch */
.restaurant::after {
    content: '';
    position: absolute;
    top: 10px; bottom: 10px; left: 10px; right: 10px;
    background: rgba(0, 0, 0, 0.05); /* Soft background to make the glow visible */
    box-shadow: inset 0 0 50px rgba(255, 204, 0, 0.8), inset 0 0 25px rgba(0, 128, 0, 0.5); /* Gold and green inner glow */
    border-radius: 15px; /* Rounded edges for the glow effect */
    z-index: -1; /* Keep glow effect behind the content */
}

/* Decorative borders with floral-inspired elements */
.restaurant::before, .restaurant::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0; left: 0; right: 0;
    border: 3px solid transparent;
    border-radius: 15px; /* Round corners for a more elegant frame */
    background: linear-gradient(45deg, rgba(255, 204, 0, 0.5), rgba(0, 128, 0, 0.5)); /* Golden-green gradient for a touch of elegance */
    z-index: -2;
}


/* Adding a light accent color to the paragraph text to match the theme */
.restaurant p {
    color: #4a4a4a; /* Dark gray text */
    font-size: 1.2rem;
    font-family: 'Georgia', serif;
    margin-top: 10px;
    line-height: 1.6;
}




  
  .restaurant p{
    font-size: 18px;
    color: black;
  }
  
  .restaurant.hidden{
    display: none;
  }

  .restaurants{
    width: 65%;
    float: left;
    padding-top: 80px;
    padding-left: 10px;
    padding-right: 0px;
    padding-bottom: 50px;
    margin-top: 0;
    margin-left: 50px;
    margin-right: 0%;
    position: static;
}

#restaurantsTitle{
    color: #FF6347;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
    padding-top: 40px;
    font-family: "Bruno Ace SC";
    display: flex;
    justify-content: center;
    text-align: center;
}

#cuisineSearch{
    border: solid 1px rgba(255, 215, 0, 0.8);
    outline: none;
    margin-bottom: 40px;
    position: relative;
    z-index: 1000;
}

#cuisineSearch:hover{
    box-shadow: 0 5px 20px 5px rgba(255, 215, 0, 0.8);
}

#cuisineSearch:focus{
    border: solid thick rgba(255, 215, 0, 0.8);
}

.flag{
    width: 50px;
    height: auto;
    padding-left: 20px;
    position: absolute;
}

.icon_text{
    display: flex;
    align-items: center; /* Vertically centers the flag and text */
 /* Optional: adds space between flag and text */
}

.image{
    z-index: 50;
    flex-shrink: 0;
    width: 60%;
    height: 250px;
    right: 0;
    margin-top: 0;
    border: none;
    border-radius: 20px;
    object-fit: cover;
    flex-basis: 150px;
    display: block;
    border: none;
    box-shadow: 0 0 0 2px #ccc;
}

figcaption{
    text-align: center;
    margin: 0 auto;
    width: 100%;
    padding-right: 90px;
    padding-top: 0px;
    margin-top: 0px;
    padding-bottom: 40px;
    width: 270px;
    font-size: 0.9em;
    position: static !important;
}

.map{
    z-index: 0;
    width: 80%;
    height: 350px;
    padding-top: 20px;
    padding-left: 5px;
    padding-bottom: 20px;
    padding-right: 30px;
    margin-top: 0;
    border: none;
    flex-shrink: 0;
    right: 0;
    object-fit: cover;
    margin-right: 0;
}

.images{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 20;
    padding-top: 120px;
}
}

@media screen and (min-width: 481px) and (max-width: 768px){
.restaurant-list{
    display: flex;
    flex-wrap: wrap;
  }
  
  .restaurant {
    width: 100%;
    max-width: 900px;
    padding: 10px;
    border-radius: 15px; /* More pronounced curves for an elegant look */
    background-color: #f0f1e4; /* Soft cream for the background */
    margin: 20px auto; /* Center the container with space around it */
    position: relative; /* To position pseudo-elements relative to the parent */
    color: #3a3a3a; /* A deep gray for the text */
    text-align: center; /* Center align text for a formal feel */
    font-family: 'Georgia', serif; /* Elegant serif font for a sophisticated look */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15); /* Soft shadow to give depth */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth hover effects */
}

/* Hover effect to create a slight lift and add excitement with a more vibrant shadow */
.restaurant:hover {
    transform: translateY(-8px); /* Slight lift to give a 3D effect */
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3); /* Stronger shadow on hover */
}

/* Title style with an Art Nouveau feel */
.restaurant h2 {
    color: #d0a100; /* Gold for the title for an elegant touch */
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 4px; /* Wider spacing to give an airy feel */
    font-family: 'Dancing Script', cursive; /* Cursive font for the title to give it a hand-drawn feel */
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); /* Light shadow for depth */
    padding: 5px;
    margin: 0 auto 20px auto; /* Centers horizontally and adds bottom space */
    text-align: center;       /* Ensures text is centered inside the h2 */ 
}



/* Inner glow effect with a softer, more colorful touch */
.restaurant::after {
    content: '';
    position: absolute;
    top: 10px; bottom: 10px; left: 10px; right: 10px;
    background: rgba(0, 0, 0, 0.05); /* Soft background to make the glow visible */
    box-shadow: inset 0 0 50px rgba(255, 204, 0, 0.8), inset 0 0 25px rgba(0, 128, 0, 0.5); /* Gold and green inner glow */
    border-radius: 15px; /* Rounded edges for the glow effect */
    z-index: -1; /* Keep glow effect behind the content */
}

/* Decorative borders with floral-inspired elements */
.restaurant::before, .restaurant::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0; left: 0; right: 0;
    border: 3px solid transparent;
    border-radius: 15px; /* Round corners for a more elegant frame */
    background: linear-gradient(45deg, rgba(255, 204, 0, 0.5), rgba(0, 128, 0, 0.5)); /* Golden-green gradient for a touch of elegance */
    z-index: -2;
}


/* Adding a light accent color to the paragraph text to match the theme */
.restaurant p {
    color: #4a4a4a; /* Dark gray text */
    font-size: 1.2rem;
    font-family: 'Georgia', serif;
    margin-top: 10px;
    line-height: 1.6;
}




  
  .restaurant p{
    font-size: 18px;
    color: black;
  }
  
  .restaurant.hidden{
    display: none;
  }

  .restaurants{
    width: 65%;
    float: left;
    padding-top: 80px;
    padding-left: 10px;
    padding-right: 0px;
    padding-bottom: 50px;
    margin-top: 0;
    margin-left: 50px;
    margin-right: 0%;
    position: static;
}

#restaurantsTitle{
    color: #FF6347;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
    padding-top: 40px;
    font-family: "Bruno Ace SC";
    display: flex;
    justify-content: center;
    text-align: center;
}

#cuisineSearch{
    border: solid 1px rgba(255, 215, 0, 0.8);
    outline: none;
    margin-bottom: 40px;
    position: relative;
    z-index: 1000;
}

#cuisineSearch:hover{
    box-shadow: 0 5px 20px 5px rgba(255, 215, 0, 0.8);
}

#cuisineSearch:focus{
    border: solid thick rgba(255, 215, 0, 0.8);
}

.flag{
    width: 50px;
    height: auto;
    padding-left: 20px;
    position: absolute;
}

.icon_text{
    display: flex;
    align-items: center; /* Vertically centers the flag and text */
 /* Optional: adds space between flag and text */
}


.image{
    z-index: 50;
    flex-shrink: 0;
    width: 30%;
    height: 150px;
    right: 0;
    margin-top: 0;
    border: none;
    border-radius: 20px;
    object-fit: cover;
    flex-basis: 150px;
    display: block;
    border: none;
    box-shadow: 0 0 0 2px #ccc;
}

figcaption{
    text-align: center;
    margin: 0 auto;
    width: 10%;
    padding-top: 0px;
    margin-top: 0px;
    padding-bottom: 40px;
    width: 50px;
    font-size: 0.5em;
    position: static !important;
}

.map{
    z-index: 0;
    width: 40%;
    height: 350px;
    padding-top: 20px;
    padding-left: 5px;
    padding-bottom: 20px;
    padding-right: 30px;
    margin-top: 0;
    border: none;
    flex-shrink: 0;
    right: 0;
    object-fit: cover;
    margin-right: 0;
}

.images{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 20;
    padding-top: 270px;
}
}

@media screen and (max-width: 480px){
  .restaurant-list{
    display: flex;
    flex-wrap: wrap;
  }
  
  .restaurant {
    width: 100%;
    max-width: 900px;
    padding: 10px;
    border-radius: 15px; /* More pronounced curves for an elegant look */
    background-color: #f0f1e4; /* Soft cream for the background */
    margin: 20px auto; /* Center the container with space around it */
    position: relative; /* To position pseudo-elements relative to the parent */
    color: #3a3a3a; /* A deep gray for the text */
    text-align: center; /* Center align text for a formal feel */
    font-family: 'Georgia', serif; /* Elegant serif font for a sophisticated look */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15); /* Soft shadow to give depth */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth hover effects */
}

/* Hover effect to create a slight lift and add excitement with a more vibrant shadow */
.restaurant:hover {
    transform: translateY(-8px); /* Slight lift to give a 3D effect */
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3); /* Stronger shadow on hover */
}

/* Title style with an Art Nouveau feel */
.restaurant h2 {
    color: #d0a100; /* Gold for the title for an elegant touch */
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 4px; /* Wider spacing to give an airy feel */
    font-family: 'Dancing Script', cursive; /* Cursive font for the title to give it a hand-drawn feel */
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); /* Light shadow for depth */
    padding: 5px;
    margin: 0;
    margin-left: 60px;
    width: 100%;
    text-align: right;  
     margin-right: auto;
  max-width: calc(100% - 60px); /* Also helps prevent overlap */
}



/* Inner glow effect with a softer, more colorful touch */
.restaurant::after {
    content: '';
    position: absolute;
    top: 10px; bottom: 10px; left: 10px; right: 10px;
    background: rgba(0, 0, 0, 0.05); /* Soft background to make the glow visible */
    box-shadow: inset 0 0 50px rgba(255, 204, 0, 0.8), inset 0 0 25px rgba(0, 128, 0, 0.5); /* Gold and green inner glow */
    border-radius: 15px; /* Rounded edges for the glow effect */
    z-index: -1; /* Keep glow effect behind the content */
}

/* Decorative borders with floral-inspired elements */
.restaurant::before, .restaurant::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0; left: 0; right: 0;
    border: 3px solid transparent;
    border-radius: 15px; /* Round corners for a more elegant frame */
    background: linear-gradient(45deg, rgba(255, 204, 0, 0.5), rgba(0, 128, 0, 0.5)); /* Golden-green gradient for a touch of elegance */
    z-index: -2;
}


/* Adding a light accent color to the paragraph text to match the theme */
.restaurant p {
    color: #4a4a4a; /* Dark gray text */
    font-size: 1.2rem;
    font-family: 'Georgia', serif;
    margin-top: 10px;
    line-height: 1.6;
}




  
  .restaurant p{
    font-size: 18px;
    color: black;
  }
  
  .restaurant.hidden{
    display: none;
  }

  .restaurants{
     width: 80vw;
    padding-top: 30px;
    margin: 0 auto;
    position: static;
}

#restaurantsTitle{
    color: #FF6347;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
    padding-top: 40px;
    font-family: "Bruno Ace SC";
    display: flex;
    justify-content: center;
    text-align: center;
}

#cuisineSearch{
    border: solid 1px rgba(255, 215, 0, 0.8);
    outline: none;
    margin-bottom: 40px;
    position: relative;
    z-index: 1000;
    width: 90%;
}

#cuisineSearch:hover{
    box-shadow: 0 5px 20px 5px rgba(255, 215, 0, 0.8);
}

#cuisineSearch:focus{
    border: solid thick rgba(255, 215, 0, 0.8);
}

.flag{
    width: 30px;
    height: auto;
    padding-left: 10px;
    position: absolute;
    margin-top: -10px;
}

.icon_text{
    display: flex;
  align-items: flex-start;
  gap: 10px;
  flex-wrap: nowrap;
  max-width: 100%;
}


.image{
    z-index: 50;
    flex-shrink: 0;
    width: 80%;
    height: 180px;
    margin: 0 auto;
    border: none;
    border-radius: 20px;
    object-fit: cover;
    flex-basis: 150px;
    display: block;
    border: none;
    box-shadow: 0 0 0 2px #ccc;
}

figcaption{
    text-align: center;
    margin: 0 auto;
    width: 100%;
    padding-top: 0px;
    margin-top: 0px;
    padding-bottom: 40px;
    font-size: 0.9em;
    position: static !important;
}

.map{
    z-index: 0;
    width: 80dvw;
    height: 220px;
    margin: 0 auto 30px 30px;
    border: none;
    flex-shrink: 0;
    object-fit: cover;
    display: block;
}

.images{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    flex-direction: column-reverse;
    gap: 20px;
    padding-top: 40px;
    padding-bottom: 50px;
    width: 80vw;
}

}