Riu Aquarelle, Ямайка: 5-звёздочный all-inclusive курорт для всей семьи
:root {
--primary: #001f3f;
--secondary: #60a5fa;
--text: #1a202c;
--bg: #ffffff;
--radius: 12px;
--shadow: 0 4px 12px rgba(0,0,0,0.06);
--border: 1.5px solid rgba(0,0,0,0.08);
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Inter', sans-serif;
background-color: var(--bg);
color: var(--text);
font-size: 17px;
line-height: 1.6;
}
.container {
width: 100%;
max-width: 1200px;
margin: 0 auto;
padding: 0 16px;
}
main {
padding: 24px 0;
}
section {
margin: 32px 0;
padding: 24px;
background: white;
border-radius: var(--radius);
box-shadow: var(--shadow);
border: var(--border);
}
h1, h2, h3 {
font-family: 'Playfair Display', serif;
color: var(--primary);
margin-bottom: 16px;
}
h1 {
font-size: clamp(1.75rem, 5.2vw, 2.25rem);
line-height: 1.2;
text-align: center;
margin-top: 0;
}
h2 {
font-size: clamp(1.375rem, 4vw, 1.75rem);
line-height: 1.3;
}
p {
margin-bottom: 16px;
font-size: 1rem;
}
img {
max-width: 100%;
height: auto;
border-radius: var(--radius);
margin: 16px 0;
}
a {
color: var(--secondary);
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
/* Header */
.procreator-header {
width: 100%;
background-color: var(--bg);
border-radius: var(--radius);
box-shadow: var(--shadow);
border: var(--border);
padding: 12px 16px;
position: relative;
z-index: 10;
}
.header-container {
display: flex;
align-items: center;
justify-content: space-between;
gap: 16px;
min-height: 48px;
flex-wrap: wrap;
}
.header-logo {
display: flex;
align-items: center;
gap: 10px;
text-decoration: none;
min-width: 0;
}
.header-logo img {
width: 40px;
height: 40px;
border-radius: 50%;
object-fit: cover;
flex-shrink: 0;
}
.header-title {
font-family: 'Playfair Display', serif;
font-weight: 600;
font-size: clamp(1.125rem, 3.8vw, 1.25rem);
line-height: 1.25;
color: var(--text);
margin: 0;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.header-nav {
display: flex;
align-items: center;
gap: 16px;
flex-wrap: wrap;
justify-content: center;
}
.header-nav a {
font-family: 'Inter', sans-serif;
font-size: 0.875rem;
font-weight: 500;
color: var(--text);
text-decoration: none;
padding: 6px 10px;
border-radius: var(--radius);
transition: background 0.2s;
}
.header-nav a:hover {
background-color: #f0f9ff;
}
.header-nav .phone {
font-weight: 600;
color: var(--primary);
}
.lang-switch {
display: flex;
gap: 6px;
font-family: 'Inter', sans-serif;
font-size: 0.875rem;
font-weight: 500;
color: var(--text);
}
.lang-switch a {
padding: 0;
background: none;
border-radius: 0;
}
.lang-switch a.active {
color: var(--primary);
text-decoration: underline;
}
.menu-toggle {
display: none;
flex-direction: column;
justify-content: space-between;
width: 24px;
height: 16px;
cursor: pointer;
}
.menu-toggle span {
display: block;
height: 2px;
width: 100%;
background-color: var(--text);
border-radius: 2px;
}
/* Footer */
.footer-main {
background: var(--bg);
border-top: 2px solid #e5e7eb;
box-shadow: 0 -4px 16px rgba(0,0,0,0.06);
font-family: 'Inter', sans-serif;
color: #1a202c;
font-size: clamp(0.77rem, 1.72vw, 0.87rem);
line-height: 1.43;
width: 100vw;
margin: 0;
position: relative;
left: 50%;
right: 50%;
margin-left: -50vw;
margin-right: -50vw;
}
.footer-grid {
max-width: 1200px;
margin: 0 auto;
padding: clamp(0.95rem, 2.8vw, 1.4rem) clamp(0.85rem, 3.5vw, 1.4rem);
display: grid;
grid-template-columns: repeat(auto-fit, minmax(145px, 1fr));
gap: clamp(1rem, 2.8vw, 1.6rem);
justify-items: center;
align-items: start;
}
.footer-section {
display: flex;
flex-direction: column;
gap: clamp(0.35rem, 0.85vw, 0.5rem);
text-align: center;
min-width: 0;
}
.section-title {
font-weight: 600;
font-size: clamp(0.85rem, 1.98vw, 0.93rem);
color: #0d3b66;
margin: 0 0 clamp(0.4rem, 1vw, 0.6rem) 0;
}
.footer-section a,
.phone-link,
.telegram-link {
color: #64748b;
text-decoration: none;
padding: clamp(0.15rem, 0.4vw, 0.25rem) 0;
transition: color 0.22s;
}
.footer-section a:hover,
.phone-link:hover,
.telegram-link:hover {
color: #0d3b66;
}
.social-links {
display: flex;
gap: clamp(0.95rem, 2.25vw, 1.35rem);
justify-content: center;
flex-wrap: wrap;
}
.social-sphere {
display: inline-flex;
align-items: center;
justify-content: center;
width: clamp(2.1rem, 4.6vw, 2.45rem);
height: clamp(2.1rem, 4.6vw, 2.45rem);
border-radius: 50%;
background: linear-gradient(135deg, var(--primary), var(--secondary));
text-decoration: none;
transition: opacity 0.22s cubic-bezier(0.4, 0, 0.2, 1), transform 0.15s ease;
opacity: 0.85;
outline: none;
}
.social-sphere:hover,
.social-sphere:focus {
opacity: 1;
transform: scale(1.05);
}
.social-sphere:focus-visible {
box-shadow: 0 0 0 2px var(--secondary);
}
.location {
font-size: 0.875em;
color: #9ca3af;
margin-top: 0.35rem;
}
.footer-bottom {
max-width: 1200px;
margin: 0 auto;
padding: clamp(0.7rem, 2vw, 1rem) clamp(0.85rem, 3.5vw, 1.4rem);
border-top: 1px solid #e5e7eb;
text-align: center;
background: rgba(13,59,102,0.02);
}
.copyright {
margin: 0;
font-size: clamp(0.75rem, 1.58vw, 0.83rem);
color: #64748b;
font-weight: 450;
}
/* Mobile */
@media (max-width: 1023px) {
.menu-toggle {
display: flex;
}
.header-nav {
display: none;
position: absolute;
top: calc(100% + 8px);
left: 0;
right: 0;
background: var(--bg);
flex-direction: column;
align-items: flex-start;
padding: 16px;
gap: 14px;
border-radius: 0 0 var(--radius) var(--radius);
box-shadow: var(--shadow);
border: var(--border);
z-index: 100;
}
.header-nav.active {
display: flex;
}
.header-nav a {
width: 100%;
text-align: left;
padding: 10px 14px !important;
border-radius: 10px !important;
}
.header-container {
flex-wrap: nowrap;
}
main {
padding: 16px 0;
}
section {
padding: 20px;
margin: 20px 0;
}
}
@media (max-width: 900px) {
.footer-grid {
grid-template-columns: 1fr;
gap: clamp(1.2rem, 3vw, 1.5rem);
padding: clamp(1.2rem, 3.5vw, 1.5rem) clamp(0.85rem, 2.5vw, 1.2rem);
}
}
Riu Aquarelle, Ямайка: 5-звёздочный all-inclusive курорт для всей семьи
Открытый в мае 2024 года курорт Riu Aquarelle расположен в Фалмуте, на побережье White Bay. Всего в 30 минутах от международного аэропорта Монтего-Бей, он предлагает 753 номера и идеально подходит для семейного отдыха. Курорт сочетает роскошь, караибское гостеприимство и широкий выбор активностей.
Инфраструктура и зоны отдыха
Гости встречаются в просторном лобби с тропическими растениями и зоной Capuchino Café, где подают свежую выпечку и специальные кофейные напитки. Напротив — бар Daiquiri с авторскими коктейлями. Оба заведения работают ежедневно с 10:00 до 23:00.
Номера и люксы
Более 90% номеров имеют частичный или панорамный вид на океан. Доступны одиночные, двухкомнатные и соединяющиеся варианты. Все номера оснащены балконами, Wi-Fi, мини-баром, сейфом и ванной с душем и двумя раковинами.
Для взрослых доступны 18 swim-up люксов с частными террасами и бассейнами. Они включают ванну, поворотный телевизор и обслуживание 24/7.
Гастрономия
Главный ресторан White Bay предлагает буфет с живыми станциями приготовления, включая ямайские Jerk-блюда. Гости могут посетить тематические рестораны: Kyoto (азиатская кухня), Napoli (итальянская), Krystal (гастрономический ужин) и Steakhouse (стейки и морепродукты). Pepe’s Grill работает весь день на пляже.
Бассейны и активности
На территории — четыре бассейна, два из них с swim-up барами. Для детей — аквапарк с горками, для взрослых — Splash Water World. Предлагаются бесплатные каяки и SUP-доски, а также платные услуги дайвинга. Пляж оборудован шезлонгами и зонтиками.
Часто задаваемые вопросы
Подходит ли Riu Aquarelle для семей с детьми?
Да, курорт ориентирован на семейный отдых: есть детский аквапарк, мини-клуб, соединяющиеся номера и разнообразное питание.
Как добраться из аэропорта?
От аэропорта Монтего-Бей до курорта — около 30 минут на такси или трансфере. Участники Procreator могут запросить информацию о групповых трансферах через внутренние каналы поддержки.
document.getElementById('menuToggle').addEventListener('click', function() {
document.getElementById('mainNav').classList.toggle('active');
});
document.addEventListener("DOMContentLoaded", function() {
const images = document.querySelectorAll("img");
images.forEach(img => img.setAttribute("loading", "lazy"));
});