{"id":4055,"date":"2026-05-19T13:39:30","date_gmt":"2026-05-19T08:09:30","guid":{"rendered":"https:\/\/thetamara.com\/coorg-resort\/?post_type=special-offer&#038;p=4055"},"modified":"2026-06-23T14:15:09","modified_gmt":"2026-06-23T08:45:09","slug":"the-rain-indulgence","status":"publish","type":"special-offer","link":"https:\/\/thetamara.com\/coorg-resort\/special-offer\/the-resort-credit-package\/","title":{"rendered":"The Rain\u00a0Indulgence\u00a0"},"content":{"rendered":"\n<p class=\"wp-block-paragraph\">Experience Coorg at its most beautiful, with exclusive resort credits to&nbsp;savour&nbsp;exceptional dining, restorative&nbsp;wellness&nbsp;and immersive experiences across the estate.&nbsp;<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Some seasons are&nbsp;observed. Others are experienced.&nbsp;<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">From July to September, The Tamara Coorg reveals a different side of itself. The plantations deepen into richer shades of&nbsp;green,&nbsp;the forest comes alive with sound and movement, and every corner of the estate feels more immersive.&nbsp;<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">The Rain Indulgence is designed to help you experience this season at its most beautiful.&nbsp;<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Package includes:<\/strong>&nbsp;<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Your stay includes thoughtfully designed accommodation surrounded by expansive plantation views, daily breakfast and dinner, and resort credits to enhance your experience.&nbsp;<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Resort Credits:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>INR 10,000 for a 2-night stay&nbsp;<\/li>\n\n\n\n<li>INR 16,000 for a 3-night stay<\/li>\n<\/ul>\n\n\n\n<div style=\"height:11px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p class=\"wp-block-paragraph\">Credits may be redeemed across:&nbsp;<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Dining experiences&nbsp;<\/li>\n\n\n\n<li>Spa and wellness treatments&nbsp;<\/li>\n\n\n\n<li>Curated activities&nbsp;<\/li>\n\n\n\n<li>Immersive experiences within the resort<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">Beyond the Room&nbsp;<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Begin&nbsp;the morning with estate-grown coffee and mist rolling over the plantations. Spend an afternoon at the spa, discover hidden corners of the estate, follow forest trails through monsoon-kissed landscapes, or pause beside waterfalls flowing at their fullest.&nbsp;<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">As the&nbsp;rains transform&nbsp;the Western Ghats into a world of vibrant greens and drifting clouds, every experience feels richer,&nbsp;slower&nbsp;and more immersive.&nbsp;<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Plan Your Stay&nbsp;<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Minimum stay: 2 nights&nbsp;<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Stay Period: 1 July 2026 \u2013 30 September 2026&nbsp;<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Package: Luxury Cottage | Double Occupancy |&nbsp;Breakfast and One Major Meal Included&nbsp;<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Rate: INR 57,998 + Taxes&nbsp;<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Resort&nbsp;credits are&nbsp;redeemable during the stay period and&nbsp;are&nbsp;not valid on the day of departure.&nbsp;<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Subject to availability. T&amp;Cs apply.&nbsp;<\/p>\n\n\n\n<!-- ============================================================\n  RAE BY TAMARA \u2014 MONSOON RAIN BACKGROUND ANIMATION\n  ============================================================\n  HOW TO ADD IN ELEMENTOR:\n  1. Edit any page in Elementor (recommended: add to a section\n     at the very TOP of your homepage, or to your Theme Builder\n     header\/footer template so it runs site-wide).\n  2. Drag an \"HTML\" widget into that section.\n  3. Paste this entire code block into the HTML widget.\n  4. Update the page settings for that section:\n     - Set the section itself to NOT have a background color\n       (so rain is visible against your existing background).\n  5. Publish \/ Update.\n\n  HOW IT WORKS:\n  - A <canvas> is fixed behind everything (z-index: 0) and pinned\n    full-screen with position:fixed so it covers every page.\n  - JS draws and animates rain streaks continuously.\n  - pointer-events:none means it never blocks clicks on your\n    buttons, menus, or booking links.\n  - Auto-pauses if the user has \"reduce motion\" turned on\n    (accessibility-friendly).\n\n  TO ADJUST INTENSITY \/ LOOK:\n  - dropCount: more = heavier rain (try 120\u2013300)\n  - rain color\/opacity: edit the rgba() values in drawDrop()\n  - speed: edit minSpeed \/ maxSpeed\n  - angle: edit windAngle (0 = straight down, try 0.1\u20130.3 for slant)\n============================================================ -->\n\n<div id=\"rae-rain-wrap\" aria-hidden=\"true\" style=\"position:fixed; top:0; left:0; width:100%; height:100%; pointer-events:none; z-index:0; overflow:hidden;\">\n  <canvas id=\"rae-rain-canvas\" style=\"display:block; width:100%; height:100%;\"><\/canvas>\n<\/div>\n\n<script>\n(function () {\n  var canvas = document.getElementById('rae-rain-canvas');\n  if (!canvas) return;\n  var ctx = canvas.getContext('2d');\n\n  var prefersReducedMotion = window.matchMedia && window.matchMedia('(prefers-reduced-motion: reduce)').matches;\n  if (prefersReducedMotion) {\n    var wrap = document.getElementById('rae-rain-wrap');\n    if (wrap) wrap.style.display = 'none';\n    return;\n  }\n\n  var dropCount = 180;\n  var minSpeed = 9;\n  var maxSpeed = 16;\n  var minLength = 14;\n  var maxLength = 32;\n  var windAngle = 0.18;\n  var drops = [];\n  var width, height;\n\n  function resize() {\n    width = window.innerWidth;\n    height = window.innerHeight;\n    canvas.width = width;\n    canvas.height = height;\n  }\n\n  function rand(min, max) {\n    return Math.random() * (max - min) + min;\n  }\n\n  function makeDrop() {\n    return {\n      x: rand(0, width + 200) - 100,\n      y: rand(-height, 0),\n      length: rand(minLength, maxLength),\n      speed: rand(minSpeed, maxSpeed),\n      opacity: rand(0.18, 0.42)\n    };\n  }\n\n  function initDrops() {\n    drops = [];\n    for (var i = 0; i < dropCount; i++) {\n      drops.push(makeDrop());\n    }\n  }\n\n  function drawDrop(d) {\n    var dx = Math.sin(windAngle) * d.length;\n    var dy = Math.cos(windAngle) * d.length;\n    ctx.beginPath();\n    ctx.moveTo(d.x, d.y);\n    ctx.lineTo(d.x + dx, d.y + dy);\n    ctx.strokeStyle = 'rgba(190, 205, 215,' + d.opacity + ')';\n    ctx.lineWidth = 1.4;\n    ctx.lineCap = 'round';\n    ctx.stroke();\n  }\n\n  function updateDrop(d) {\n    d.x += Math.sin(windAngle) * d.speed;\n    d.y += Math.cos(windAngle) * d.speed;\n    if (d.y > height + 40 || d.x > width + 120) {\n      d.x = rand(-100, width);\n      d.y = rand(-60, -10);\n      d.length = rand(minLength, maxLength);\n      d.speed = rand(minSpeed, maxSpeed);\n      d.opacity = rand(0.18, 0.42);\n    }\n  }\n\n  var rafId;\n  function loop() {\n    ctx.clearRect(0, 0, width, height);\n    for (var i = 0; i < drops.length; i++) {\n      updateDrop(drops[i]);\n      drawDrop(drops[i]);\n    }\n    rafId = requestAnimationFrame(loop);\n  }\n\n  function start() {\n    resize();\n    initDrops();\n    if (rafId) cancelAnimationFrame(rafId);\n    loop();\n  }\n\n  window.addEventListener('resize', resize);\n  document.addEventListener('visibilitychange', function () {\n    if (document.hidden) {\n      if (rafId) cancelAnimationFrame(rafId);\n    } else {\n      loop();\n    }\n  });\n\n  start();\n})();\n<\/script>\n\n\n\n<p class=\"wp-block-paragraph\"><\/p>\n","protected":false},"featured_media":4057,"parent":0,"menu_order":0,"template":"","meta":{"_acf_changed":false,"wds_primary_post-type":0,"_links_to":"","_links_to_target":""},"post-type":[],"class_list":["post-4055","special-offer","type-special-offer","status-publish","has-post-thumbnail","hentry"],"acf":[],"_links":{"self":[{"href":"https:\/\/thetamara.com\/coorg-resort\/wp-json\/wp\/v2\/special-offer\/4055","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/thetamara.com\/coorg-resort\/wp-json\/wp\/v2\/special-offer"}],"about":[{"href":"https:\/\/thetamara.com\/coorg-resort\/wp-json\/wp\/v2\/types\/special-offer"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/thetamara.com\/coorg-resort\/wp-json\/wp\/v2\/media\/4057"}],"wp:attachment":[{"href":"https:\/\/thetamara.com\/coorg-resort\/wp-json\/wp\/v2\/media?parent=4055"}],"wp:term":[{"taxonomy":"post-type","embeddable":true,"href":"https:\/\/thetamara.com\/coorg-resort\/wp-json\/wp\/v2\/post-type?post=4055"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}