/* ==========================================================================
   IMAGE REGISTRY — every photo on the site, in one place

   HOW TO CHANGE A PHOTO
   1. Find the labeled line below for the photo you want to replace.
   2. Replace the URL inside url('...') with your new photo's link.
      - Using an online photo (Unsplash, your CMS, etc.): paste its full
        https:// link.
      - Using your own photo file: put the file in the /images folder,
        then use a relative path, e.g. url('images/stratford-terrace.jpg').
   3. Save. No other file needs to change — every page pulls from here.

   Nothing else about the layout, size, or position of a photo lives in
   this file — only which photo shows. Recommended size: at least
   1600px on the longest side, landscape orientation, JPG or WEBP.
   ========================================================================== */

:root {

  /* ===== HOMEPAGE (index.html) ===== */
  --img-home-hero: url('images/img-home-hero.jpg');           /* Left panel hero background */
  --img-home-card-menu: url('images/img-home-card-menu.jpg');   /* Bento card → Menu */
  --img-home-card-reserve: url('images/img-home-card-reserve.jpg'); /* Bento card → Book a Table */
  --img-home-card-locations: url('https://images.unsplash.com/photo-1555396273-367ea4eb4db5?auto=format&fit=crop&q=80'); /* Bento card → Locations */

  /* ===== MENU (menu.html) ===== */
  --img-menu-hero-stratford: url('images/img-menu-hero-stratford.jpg'); /* Hero, shown on Stratford tab */
  --img-menu-hero-canary: url('images/img-home-card-reserve.jpg'); /* Hero, shown on Canary Wharf tab */

  /* ===== LOCATIONS OVERVIEW (restaurants.html) ===== */
  --img-restaurants-hero: url('images/img-restaurants-hero.jpg');    /* Left panel hero background */
  --img-restaurants-card-stratford: url('images/img-restaurants-card-stratford.jpg'); /* Bento card → Stratford */
  --img-restaurants-card-canary: url('images/img-restaurants-card-canary.jpg');  /* Bento card → Canary Wharf */

  /* ===== STRATFORD DETAIL (restaurant-stratford.html) ===== */
  --img-stratford-hero: url('images/img-restaurants-card-stratford.jpg');      /* Left panel hero background */
  --img-stratford-interior-1: url('https://images.unsplash.com/photo-1559339352-11d035aa65de?auto=format&fit=crop&q=80'); /* Interior slideshow, photo 1 of 4 */
  --img-stratford-interior-2: url('https://images.unsplash.com/photo-1502301103665-0b95cc738daf?auto=format&fit=crop&q=80'); /* Interior slideshow, photo 2 of 4 */
  --img-stratford-interior-3: url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?auto=format&fit=crop&q=80'); /* Interior slideshow, photo 3 of 4 */
  --img-stratford-interior-4: url('https://images.unsplash.com/photo-1559339352-11d035aa65de?auto=format&fit=crop&q=80'); /* Interior slideshow, photo 4 of 4 */
  --img-stratford-food-1: url('images/img-canary-food-1.jpg');    ;  /* Food slideshow, photo 1 of 4 */
  --img-stratford-food-2: url('images/img-canary-food-2.jpg');    ;     /* Food slideshow, photo 2 of 4 */
  --img-stratford-food-3: url('images/img-canary-food-3.jpg');    ;  /* Food slideshow, photo 3 of 4 */
  --img-stratford-food-4: url('images/img-canary-food-4.jpg');     /* Food slideshow, photo 4 of 4 */

  /* ===== CANARY WHARF DETAIL (restaurant-canary-wharf.html) ===== */
  --img-canary-hero: url('images/img-restaurants-card-canary.jpg');       /* Left panel hero background */
  --img-canary-interior-1: url('https://images.unsplash.com/photo-1555396273-367ea4eb4db5?auto=format&fit=crop&q=80'); /* Interior slideshow, photo 1 of 4 */
  --img-canary-interior-2: url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?auto=format&fit=crop&q=80'); /* Interior slideshow, photo 2 of 4 */
  --img-canary-interior-3: url('https://images.unsplash.com/photo-1559339352-11d035aa65de?auto=format&fit=crop&q=80'); /* Interior slideshow, photo 3 of 4 */
  --img-canary-interior-4: url('https://images.unsplash.com/photo-1555396273-367ea4eb4db5?auto=format&fit=crop&q=80'); /* Interior slideshow, photo 4 of 4 */
  --img-canary-food-1: url('images/img-canary-food-1.jpg');       /* Food slideshow, photo 1 of 4 */
  --img-canary-food-2: url('images/img-canary-food-2.jpg');    /* Food slideshow, photo 2 of 4 */
  --img-canary-food-3: url('images/img-canary-food-3.jpg');    /* Food slideshow, photo 3 of 4 */
  --img-canary-food-4: url('images/img-canary-food-4.jpg');       /* Food slideshow, photo 4 of 4 */

  /* ===== RESERVATION (reservation.html) ===== */
  --img-reservation-hero: url('images/img-reservation-hero.jpg'); /* Left panel hero background */

  /* ===== ABOUT US (about.html) ===== */
  --img-about-hero: url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?auto=format&fit=crop&q=80');       /* Left panel hero background */

  /* ===== BLOG (blog.html) ===== */
  --img-blog-hero: url('https://images.unsplash.com/photo-1553621042-f6e147245754?auto=format&fit=crop&q=80');          /* Left panel hero background */

}
