2054 lines
46 KiB
CSS
2054 lines
46 KiB
CSS
:root {
|
|
--primary: #0a4d68;
|
|
--primary-light: #088395;
|
|
--accent: #f5a623;
|
|
--accent2: #c9302c;
|
|
--dark: #1a1a2e;
|
|
--light: #f0f4f8;
|
|
--gold: #d4a843;
|
|
--sand: #e8dcc8;
|
|
--sea: #0077b6;
|
|
--sky: #90e0ef;
|
|
}
|
|
|
|
* { margin: 0; padding: 0; box-sizing: border-box; }
|
|
|
|
html {
|
|
scroll-behavior: smooth;
|
|
font-size: clamp(14px, 0.9vw, 18px);
|
|
}
|
|
|
|
body {
|
|
font-family: 'Inter', sans-serif;
|
|
color: #333;
|
|
overflow-x: hidden;
|
|
background: var(--light);
|
|
max-width: 100vw;
|
|
}
|
|
|
|
/* Prevent horizontal scroll */
|
|
html, body {
|
|
overflow-x: hidden;
|
|
}
|
|
|
|
/* Navbar mobile */
|
|
.navbar-toggler {
|
|
padding: 8px 12px;
|
|
border: none;
|
|
background: rgba(255,255,255,0.1);
|
|
border-radius: 8px;
|
|
}
|
|
.navbar-toggler:focus {
|
|
box-shadow: none;
|
|
}
|
|
.navbar-toggler-icon {
|
|
width: 1.5em;
|
|
height: 1.5em;
|
|
}
|
|
|
|
/* Mobile navigation menu */
|
|
.navbar-collapse {
|
|
background: rgba(10,77,104,0.98);
|
|
padding: 15px;
|
|
border-radius: 12px;
|
|
margin-top: 10px;
|
|
}
|
|
.navbar-nav {
|
|
gap: 5px;
|
|
}
|
|
.nav-link {
|
|
border-radius: 8px;
|
|
}
|
|
.nav-link:hover {
|
|
background: rgba(212,168,67,0.15);
|
|
}
|
|
|
|
h1, h2, h3, h4 {
|
|
font-family: 'Playfair Display', serif;
|
|
}
|
|
|
|
/* Preloader */
|
|
#preloader {
|
|
position: fixed;
|
|
top: 0; left: 0;
|
|
width: 100%; height: 100%;
|
|
background: var(--dark);
|
|
z-index: 99999;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
flex-direction: column;
|
|
transition: opacity 0.8s ease;
|
|
}
|
|
#preloader.hidden { opacity: 0; pointer-events: none; }
|
|
#preloader .logo-text {
|
|
font-family: 'Playfair Display', serif;
|
|
font-size: 3rem;
|
|
color: var(--gold);
|
|
animation: pulseGlow 1.5s ease-in-out infinite;
|
|
}
|
|
#preloader .loader-bar {
|
|
width: min(200px, 80vw); height: 3px;
|
|
background: rgba(255,255,255,0.1);
|
|
border-radius: 3px;
|
|
margin-top: 20px;
|
|
overflow: hidden;
|
|
}
|
|
#preloader .loader-bar::after {
|
|
content: '';
|
|
display: block;
|
|
width: 40%;
|
|
height: 100%;
|
|
background: var(--gold);
|
|
border-radius: 3px;
|
|
animation: loadSlide 1s ease-in-out infinite;
|
|
}
|
|
@keyframes loadSlide {
|
|
0% { transform: translateX(-100%); }
|
|
100% { transform: translateX(350%); }
|
|
}
|
|
@keyframes pulseGlow {
|
|
0%, 100% { text-shadow: 0 0 20px rgba(212,168,67,0.3); }
|
|
50% { text-shadow: 0 0 40px rgba(212,168,67,0.8); }
|
|
}
|
|
|
|
/* Navigation */
|
|
.navbar {
|
|
transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease, color 0.4s ease, opacity 0.4s ease;
|
|
padding: 20px 0;
|
|
background: transparent;
|
|
}
|
|
#mainNavbar.navbar.scrolled {
|
|
background: rgba(10, 77, 104, 0.95);
|
|
backdrop-filter: blur(20px);
|
|
padding: 10px 0;
|
|
box-shadow: 0 4px 30px rgba(0,0,0,0.15);
|
|
}
|
|
.navbar-brand {
|
|
font-family: 'Playfair Display', serif;
|
|
font-size: 1.8rem;
|
|
color: #fff;
|
|
font-weight: 700;
|
|
}
|
|
.navbar-brand span { color: var(--gold); }
|
|
/* Nav pills */
|
|
.nav-pills-row {
|
|
gap: 8px;
|
|
}
|
|
.nav-pills-row .nav-item {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
.nav-pill {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 6px;
|
|
color: rgba(255,255,255,0.9);
|
|
font-weight: 500;
|
|
font-size: 0.85rem;
|
|
letter-spacing: 0.3px;
|
|
padding: 7px 18px;
|
|
border: 1px solid rgba(212,168,67,0.35);
|
|
border-radius: 50px;
|
|
background: transparent;
|
|
text-decoration: none;
|
|
transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease, opacity 0.3s ease, border-color 0.3s ease;
|
|
white-space: nowrap;
|
|
}
|
|
.nav-pill i {
|
|
font-size: 0.8rem;
|
|
color: var(--gold);
|
|
}
|
|
.nav-pill:hover {
|
|
background: rgba(212,168,67,0.12);
|
|
border-color: var(--gold);
|
|
color: var(--gold);
|
|
transform: translateY(-2px);
|
|
box-shadow: 0 4px 15px rgba(212,168,67,0.2);
|
|
}
|
|
#mainNavbar.scrolled .nav-pill {
|
|
padding: 5px 14px;
|
|
font-size: 0.8rem;
|
|
}
|
|
/* Mobile: stacked full-width pills */
|
|
@media (max-width: 991.98px) {
|
|
.navbar-collapse .nav-pills-row {
|
|
gap: 6px;
|
|
padding-top: 16px;
|
|
}
|
|
.navbar-collapse .nav-pill {
|
|
display: flex;
|
|
justify-content: center;
|
|
width: 100%;
|
|
padding: 10px 18px;
|
|
border-radius: 12px;
|
|
}
|
|
}
|
|
|
|
/* Hero Section */
|
|
.hero {
|
|
position: relative;
|
|
height: 100vh;
|
|
min-height: 500px;
|
|
max-height: 1200px;
|
|
overflow: hidden;
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
.hero-bg-layer {
|
|
position: absolute;
|
|
top: 0; left: 0;
|
|
width: 100%; height: 100%;
|
|
}
|
|
.hero-bg {
|
|
position: absolute;
|
|
top: 0; left: 0;
|
|
width: 100%; height: 100%;
|
|
object-fit: cover;
|
|
}
|
|
.hero-bg-default {
|
|
animation: heroZoom 20s ease-in-out infinite alternate;
|
|
}
|
|
.hero-bg-slide {
|
|
opacity: 0;
|
|
transition: opacity 1.5s ease-in-out;
|
|
}
|
|
.hero-bg-slide.active {
|
|
opacity: 1;
|
|
}
|
|
.hero-bg-layer video {
|
|
position: absolute;
|
|
top: 0; left: 0;
|
|
width: 100%; height: 100%;
|
|
object-fit: cover;
|
|
opacity: 0;
|
|
transition: opacity 1.5s ease-in-out;
|
|
}
|
|
.hero-bg-layer video.active {
|
|
opacity: 1;
|
|
}
|
|
.hero-bg-layer iframe {
|
|
position: absolute;
|
|
top: 0; left: 0;
|
|
width: 100%; height: 100%;
|
|
border: none;
|
|
opacity: 0;
|
|
transition: opacity 1.5s ease-in-out;
|
|
pointer-events: none;
|
|
}
|
|
.hero-bg-layer iframe.active {
|
|
opacity: 1;
|
|
}
|
|
@keyframes heroZoom {
|
|
0% { transform: scale(1); }
|
|
100% { transform: scale(1.08); }
|
|
}
|
|
.hero-overlay {
|
|
position: absolute;
|
|
top: 0; left: 0;
|
|
width: 100%; height: 100%;
|
|
background: linear-gradient(135deg, rgba(10,77,104,0.7) 0%, rgba(26,26,46,0.5) 50%, rgba(0,119,182,0.4) 100%);
|
|
}
|
|
.hero-content {
|
|
position: relative;
|
|
z-index: 2;
|
|
color: #fff;
|
|
}
|
|
.hero-badge {
|
|
display: inline-block;
|
|
background: rgba(212,168,67,0.2);
|
|
border: 1px solid var(--gold);
|
|
color: var(--gold);
|
|
padding: clamp(6px, 1.5vw, 12px) clamp(12px, 2vw, 24px);
|
|
border-radius: 50px;
|
|
font-size: clamp(0.7rem, 1vw, 0.85rem);
|
|
letter-spacing: 2px;
|
|
text-transform: uppercase;
|
|
margin-bottom: clamp(10px, 2vw, 20px);
|
|
animation: fadeInUp 1s ease 0.3s both;
|
|
}
|
|
.hero-title {
|
|
font-size: clamp(2rem, 6vw, 5rem);
|
|
font-weight: 700;
|
|
line-height: 1.1;
|
|
margin-bottom: clamp(15px, 3vw, 20px);
|
|
animation: fadeInUp 1s ease 0.5s both;
|
|
}
|
|
.hero-title span { color: var(--gold); }
|
|
.hero-subtitle {
|
|
font-size: clamp(0.9rem, 1.5vw, 1.3rem);
|
|
opacity: 0.9;
|
|
max-width: clamp(280px, 60vw, 600px);
|
|
line-height: 1.7;
|
|
margin-bottom: clamp(20px, 5vw, 35px);
|
|
animation: fadeInUp 1s ease 0.7s both;
|
|
}
|
|
.hero-buttons {
|
|
display: flex;
|
|
gap: clamp(10px, 2vw, 20px);
|
|
flex-wrap: wrap;
|
|
animation: fadeInUp 1s ease 0.9s both;
|
|
}
|
|
.btn-gold {
|
|
background: var(--gold);
|
|
color: var(--dark);
|
|
border: none;
|
|
padding: clamp(10px, 2vw, 15px) clamp(20px, 4vw, 40px);
|
|
border-radius: 50px;
|
|
font-weight: 700;
|
|
font-size: clamp(0.85rem, 1.2vw, 1rem);
|
|
letter-spacing: 0.5px;
|
|
transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease, opacity 0.3s ease;
|
|
text-decoration: none;
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
}
|
|
.btn-gold:hover {
|
|
background: #e6b84d;
|
|
transform: translateY(-3px);
|
|
box-shadow: 0 10px 30px rgba(212,168,67,0.4);
|
|
color: var(--dark);
|
|
}
|
|
.btn-outline-white {
|
|
background: transparent;
|
|
color: #fff;
|
|
border: 2px solid rgba(255,255,255,0.5);
|
|
padding: clamp(8px, 2vw, 13px) clamp(18px, 4vw, 38px);
|
|
border-radius: 50px;
|
|
font-weight: 600;
|
|
font-size: clamp(0.85rem, 1.2vw, 1rem);
|
|
transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease, opacity 0.3s ease;
|
|
text-decoration: none;
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
}
|
|
.btn-outline-white:hover {
|
|
background: #fff;
|
|
color: var(--dark);
|
|
border-color: #fff;
|
|
transform: translateY(-3px);
|
|
}
|
|
.btn-social {
|
|
color: #fff;
|
|
border: none;
|
|
width: 44px;
|
|
height: 44px;
|
|
border-radius: 50%;
|
|
font-weight: 700;
|
|
font-size: 0.85rem;
|
|
transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
|
|
text-decoration: none;
|
|
display: inline-flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
gap: 4px;
|
|
padding: 0;
|
|
margin: 0 4px;
|
|
}
|
|
.btn-social:hover {
|
|
transform: translateY(-3px);
|
|
color: #fff;
|
|
}
|
|
.btn-social--wa { background: #25D366; }
|
|
.btn-social--wa:hover { background: #1ebe57; box-shadow: 0 8px 20px rgba(37,211,102,0.4); }
|
|
.btn-social--tg { background: #0088cc; }
|
|
.btn-social--tg:hover { background: #0077b5; box-shadow: 0 8px 20px rgba(0,136,204,0.4); }
|
|
.btn-social--max { background: #471AFF; }
|
|
.btn-social--max:hover { background: #3b15d9; box-shadow: 0 8px 20px rgba(71,26,255,0.4); }
|
|
.btn-social--ig { background: #E4405F; }
|
|
.btn-social--ig:hover { background: #d12e4e; box-shadow: 0 8px 20px rgba(228,64,95,0.4); }
|
|
.max-icon-circle {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
width: 1.4em;
|
|
height: 1.4em;
|
|
border-radius: 50%;
|
|
background: #fff;
|
|
color: #471AFF;
|
|
font-weight: 800;
|
|
font-size: 0.85em;
|
|
line-height: 1;
|
|
flex-shrink: 0;
|
|
}
|
|
.max-icon-circle-footer {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
width: 1.2em;
|
|
height: 1.2em;
|
|
border-radius: 50%;
|
|
background: rgba(255,255,255,0.15);
|
|
color: rgba(255,255,255,0.6);
|
|
font-weight: 800;
|
|
font-size: 0.7em;
|
|
line-height: 1;
|
|
flex-shrink: 0;
|
|
transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease, opacity 0.3s ease;
|
|
}
|
|
.footer-social a:hover .max-icon-circle-footer {
|
|
background: #471AFF;
|
|
color: #fff;
|
|
}
|
|
.hero-stats {
|
|
position: absolute;
|
|
bottom: clamp(20px, 5vw, 60px);
|
|
left: 0; right: 0;
|
|
z-index: 2;
|
|
}
|
|
.hero-stats .row {
|
|
flex-wrap: wrap;
|
|
justify-content: center;
|
|
gap: clamp(10px, 2vw, 20px);
|
|
}
|
|
.hero-stats .row > div {
|
|
margin-bottom: 10px;
|
|
}
|
|
.stat-item {
|
|
text-align: center;
|
|
color: #fff;
|
|
}
|
|
.stat-number {
|
|
font-family: 'Playfair Display', serif;
|
|
font-size: clamp(1.5rem, 3vw, 2.5rem);
|
|
font-weight: 700;
|
|
color: var(--gold);
|
|
}
|
|
.stat-label {
|
|
font-size: clamp(0.7rem, 1vw, 0.85rem);
|
|
opacity: 0.8;
|
|
letter-spacing: 1px;
|
|
text-transform: uppercase;
|
|
}
|
|
.stat-divider {
|
|
display: none;
|
|
}
|
|
|
|
/* Scroll indicator */
|
|
.scroll-indicator {
|
|
position: absolute;
|
|
bottom: 30px;
|
|
left: 50%;
|
|
transform: translateX(-50%);
|
|
z-index: 3;
|
|
animation: bounce 2s ease infinite;
|
|
}
|
|
.scroll-indicator a {
|
|
color: rgba(255,255,255,0.6);
|
|
font-size: 1.5rem;
|
|
}
|
|
@keyframes bounce {
|
|
0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
|
|
40% { transform: translateX(-50%) translateY(-10px); }
|
|
60% { transform: translateX(-50%) translateY(-5px); }
|
|
}
|
|
|
|
/* Section styles */
|
|
.section {
|
|
padding: clamp(40px, 8vw, 100px) 0;
|
|
}
|
|
.section-dark {
|
|
background: var(--dark);
|
|
color: #fff;
|
|
}
|
|
.section-light {
|
|
background: var(--light);
|
|
}
|
|
.section-gradient {
|
|
background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
|
|
color: #fff;
|
|
}
|
|
.section-header {
|
|
text-align: center;
|
|
margin-bottom: clamp(30px, 6vw, 60px);
|
|
}
|
|
.section-badge {
|
|
display: inline-block;
|
|
background: rgba(212,168,67,0.15);
|
|
color: var(--gold);
|
|
padding: clamp(4px, 1vw, 8px) clamp(12px, 3vw, 24px);
|
|
border-radius: 50px;
|
|
font-size: clamp(0.7rem, 1vw, 0.8rem);
|
|
letter-spacing: 2px;
|
|
text-transform: uppercase;
|
|
margin-bottom: 15px;
|
|
}
|
|
.section-dark .section-badge {
|
|
background: rgba(212,168,67,0.15);
|
|
color: var(--gold);
|
|
}
|
|
.section-title {
|
|
font-size: clamp(1.8rem, 4vw, 3rem);
|
|
font-weight: 700;
|
|
margin-bottom: 15px;
|
|
}
|
|
.section-subtitle {
|
|
font-size: clamp(0.9rem, 1.3vw, 1.1rem);
|
|
opacity: 0.7;
|
|
max-width: clamp(280px, 80vw, 600px);
|
|
margin: 0 auto;
|
|
line-height: 1.7;
|
|
}
|
|
.section-dark .section-subtitle { opacity: 0.7; }
|
|
|
|
/* Decorative elements */
|
|
.abkhazian-pattern {
|
|
width: clamp(40px, 8vw, 80px);
|
|
height: 4px;
|
|
background: linear-gradient(90deg, var(--gold), var(--accent), var(--gold));
|
|
margin: 15px auto;
|
|
border-radius: 2px;
|
|
}
|
|
|
|
/* About Section */
|
|
.about-image-wrapper {
|
|
position: relative;
|
|
border-radius: 20px;
|
|
overflow: hidden;
|
|
box-shadow: 0 20px 60px rgba(0,0,0,0.15);
|
|
}
|
|
.about-image-wrapper img {
|
|
width: 100%;
|
|
height: clamp(200px, 40vw, 400px);
|
|
object-fit: cover;
|
|
transition: transform 0.5s ease;
|
|
}
|
|
.about-image-wrapper:hover img {
|
|
transform: scale(1.05);
|
|
}
|
|
.about-image-badge {
|
|
position: absolute;
|
|
bottom: clamp(10px, 3vw, 20px);
|
|
right: clamp(10px, 3vw, 20px);
|
|
background: var(--gold);
|
|
color: var(--dark);
|
|
padding: clamp(10px, 2vw, 15px) clamp(15px, 3vw, 25px);
|
|
border-radius: clamp(10px, 2vw, 15px);
|
|
text-align: center;
|
|
font-weight: 700;
|
|
}
|
|
.about-image-badge .big {
|
|
font-family: 'Playfair Display', serif;
|
|
font-size: clamp(1.2rem, 3vw, 2rem);
|
|
display: block;
|
|
}
|
|
.about-image-badge .small {
|
|
font-size: clamp(0.6rem, 1vw, 0.75rem);
|
|
text-transform: uppercase;
|
|
letter-spacing: 1px;
|
|
}
|
|
.feature-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
|
|
gap: clamp(10px, 2vw, 20px);
|
|
margin-top: clamp(20px, 4vw, 30px);
|
|
}
|
|
.feature-item {
|
|
display: flex;
|
|
align-items: flex-start;
|
|
gap: clamp(10px, 2vw, 15px);
|
|
padding: clamp(10px, 2vw, 15px);
|
|
border-radius: 12px;
|
|
transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease, opacity 0.3s ease;
|
|
}
|
|
.feature-item:hover {
|
|
background: rgba(212,168,67,0.08);
|
|
}
|
|
.feature-icon {
|
|
width: clamp(40px, 8vw, 50px);
|
|
height: clamp(40px, 8vw, 50px);
|
|
min-width: clamp(40px, 8vw, 50px);
|
|
background: linear-gradient(135deg, var(--primary), var(--primary-light));
|
|
border-radius: 12px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
color: #fff;
|
|
font-size: clamp(1rem, 2vw, 1.2rem);
|
|
}
|
|
.feature-text h5 {
|
|
font-size: clamp(0.9rem, 1.5vw, 1rem);
|
|
font-weight: 700;
|
|
margin-bottom: 5px;
|
|
}
|
|
.feature-text p {
|
|
font-size: clamp(0.75rem, 1.2vw, 0.85rem);
|
|
color: #666;
|
|
margin: 0;
|
|
line-height: 1.5;
|
|
}
|
|
|
|
/* Room Cards */
|
|
.room-card {
|
|
background: #fff;
|
|
border-radius: 24px;
|
|
overflow: hidden;
|
|
box-shadow: 0 10px 40px rgba(0,0,0,0.08);
|
|
transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease, color 0.4s ease, opacity 0.4s ease;
|
|
height: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
.room-card:hover {
|
|
transform: translateY(-10px);
|
|
box-shadow: 0 20px 60px rgba(0,0,0,0.15);
|
|
}
|
|
.room-card.featured {
|
|
border: 2px solid var(--gold);
|
|
position: relative;
|
|
}
|
|
.room-card.featured::before {
|
|
content: '★ ХИТ';
|
|
position: absolute;
|
|
top: clamp(10px, 3vw, 20px);
|
|
right: clamp(-45px, -10vw, -35px);
|
|
background: var(--gold);
|
|
color: var(--dark);
|
|
padding: 5px clamp(20px, 5vw, 40px);
|
|
font-size: clamp(0.6rem, 1vw, 0.75rem);
|
|
font-weight: 700;
|
|
letter-spacing: 1px;
|
|
transform: rotate(45deg);
|
|
z-index: 2;
|
|
}
|
|
.room-image {
|
|
position: relative;
|
|
height: clamp(180px, 30vw, 250px);
|
|
overflow: hidden;
|
|
}
|
|
.room-image img {
|
|
width: 100%;
|
|
height: 100%;
|
|
object-fit: cover;
|
|
transition: transform 0.5s ease;
|
|
}
|
|
.room-card:hover .room-image img {
|
|
transform: scale(1.1);
|
|
}
|
|
.room-category {
|
|
position: absolute;
|
|
top: clamp(8px, 2vw, 15px);
|
|
left: clamp(8px, 2vw, 15px);
|
|
background: rgba(10,77,104,0.9);
|
|
color: #fff;
|
|
padding: 6px clamp(10px, 2vw, 16px);
|
|
border-radius: 50px;
|
|
font-size: clamp(0.7rem, 1.2vw, 0.8rem);
|
|
font-weight: 600;
|
|
letter-spacing: 1px;
|
|
text-transform: uppercase;
|
|
}
|
|
.room-body {
|
|
padding: clamp(15px, 3vw, 30px);
|
|
flex: 1;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
.room-name {
|
|
font-size: clamp(1.2rem, 2.5vw, 1.5rem);
|
|
font-weight: 700;
|
|
margin-bottom: 10px;
|
|
color: var(--dark);
|
|
}
|
|
.room-desc {
|
|
font-size: clamp(0.8rem, 1.3vw, 0.9rem);
|
|
color: #666;
|
|
line-height: 1.6;
|
|
margin-bottom: clamp(15px, 3vw, 20px);
|
|
flex: 1;
|
|
}
|
|
.room-features {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: clamp(6px, 1.5vw, 10px);
|
|
margin-bottom: clamp(10px, 2vw, 15px);
|
|
}
|
|
.room-meta {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 12px;
|
|
margin-bottom: clamp(10px, 2vw, 15px);
|
|
font-size: 0.8rem;
|
|
color: #888;
|
|
}
|
|
.room-meta span {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 5px;
|
|
}
|
|
.room-meta i {
|
|
color: var(--primary);
|
|
}
|
|
.room-extra {
|
|
font-size: 0.75rem;
|
|
color: #e67e22;
|
|
margin-bottom: 15px;
|
|
padding: 6px 10px;
|
|
background: #fef3e2;
|
|
border-radius: 6px;
|
|
}
|
|
.room-extra-hint {
|
|
font-size: 0.75rem;
|
|
color: #e67e22;
|
|
margin-bottom: 12px;
|
|
padding: 6px 10px;
|
|
background: #fef3e2;
|
|
border-radius: 6px;
|
|
}
|
|
.room-feature-tag {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 5px;
|
|
background: var(--light);
|
|
padding: 6px clamp(8px, 2vw, 12px);
|
|
border-radius: 8px;
|
|
font-size: clamp(0.7rem, 1.1vw, 0.8rem);
|
|
color: #555;
|
|
}
|
|
.room-feature-tag i {
|
|
color: var(--primary-light);
|
|
font-size: 0.75rem;
|
|
}
|
|
.room-footer {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
padding-top: clamp(15px, 3vw, 20px);
|
|
border-top: 1px solid #eee;
|
|
flex-wrap: wrap;
|
|
gap: clamp(8px, 2vw, 15px);
|
|
}
|
|
.room-footer > div { text-align: left; }
|
|
.room-footer > button { flex-shrink: 0; }
|
|
.room-price {
|
|
font-family: 'Playfair Display', serif;
|
|
}
|
|
.room-price .amount {
|
|
font-size: clamp(1.3rem, 2.5vw, 1.8rem);
|
|
font-weight: 700;
|
|
color: var(--primary);
|
|
}
|
|
.room-price .period {
|
|
font-size: clamp(0.75rem, 1.2vw, 0.85rem);
|
|
color: #999;
|
|
}
|
|
.btn-book {
|
|
background: var(--primary);
|
|
color: #fff;
|
|
border: none;
|
|
padding: clamp(8px, 2vw, 10px) clamp(15px, 3vw, 25px);
|
|
border-radius: 50px;
|
|
font-weight: 600;
|
|
font-size: clamp(0.8rem, 1.2vw, 0.9rem);
|
|
transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease, opacity 0.3s ease;
|
|
cursor: pointer;
|
|
}
|
|
.btn-book:hover {
|
|
background: var(--primary-light);
|
|
transform: translateY(-2px);
|
|
box-shadow: 0 5px 20px rgba(8,131,149,0.3);
|
|
}
|
|
|
|
/* Gallery - Horizontal Scroll Carousel */
|
|
.gallery-scroll-wrapper {
|
|
overflow: hidden;
|
|
position: relative;
|
|
width: 100%;
|
|
}
|
|
.gallery-scroll-wrapper::before,
|
|
.gallery-scroll-wrapper::after {
|
|
content: '';
|
|
position: absolute;
|
|
top: 0; bottom: 0;
|
|
width: clamp(30px, 6vw, 80px);
|
|
z-index: 2;
|
|
pointer-events: none;
|
|
}
|
|
.gallery-scroll-wrapper::before {
|
|
left: 0;
|
|
background: linear-gradient(to right, var(--light) 0%, transparent 100%);
|
|
}
|
|
.gallery-scroll-wrapper::after {
|
|
right: 0;
|
|
background: linear-gradient(to left, var(--light) 0%, transparent 100%);
|
|
}
|
|
|
|
.gallery-track {
|
|
display: flex;
|
|
width: max-content;
|
|
animation: galleryScroll 35s linear infinite;
|
|
}
|
|
.gallery-track:hover {
|
|
animation-play-state: paused;
|
|
}
|
|
|
|
.gallery-slide {
|
|
flex-shrink: 0;
|
|
width: clamp(260px, 30vw, 380px);
|
|
height: clamp(180px, 22vw, 260px);
|
|
margin-right: clamp(8px, 1.5vw, 14px);
|
|
border-radius: 16px;
|
|
overflow: hidden;
|
|
cursor: pointer;
|
|
position: relative;
|
|
transition: transform 0.3s ease;
|
|
}
|
|
.gallery-slide:hover {
|
|
transform: scale(1.03);
|
|
}
|
|
.gallery-slide img {
|
|
width: 100%;
|
|
height: 100%;
|
|
object-fit: cover;
|
|
transition: transform 0.5s ease;
|
|
}
|
|
.gallery-slide:hover img {
|
|
transform: scale(1.08);
|
|
}
|
|
|
|
.gallery-overlay {
|
|
position: absolute;
|
|
top: 0; left: 0;
|
|
width: 100%; height: 100%;
|
|
background: linear-gradient(to top, rgba(10,77,104,0.7) 0%, transparent 60%);
|
|
opacity: 0;
|
|
transition: opacity 0.3s ease;
|
|
display: flex;
|
|
align-items: flex-end;
|
|
padding: clamp(10px, 3vw, 20px);
|
|
}
|
|
.gallery-slide:hover .gallery-overlay {
|
|
opacity: 1;
|
|
}
|
|
.gallery-overlay span {
|
|
color: #fff;
|
|
font-weight: 600;
|
|
font-size: clamp(0.85rem, 1.5vw, 1rem);
|
|
}
|
|
|
|
@keyframes galleryScroll {
|
|
0% { transform: translateX(0); }
|
|
100% { transform: translateX(-50%); }
|
|
}
|
|
|
|
/* Gallery Lightbox */
|
|
.gallery-lightbox {
|
|
position: fixed;
|
|
top: 0; left: 0;
|
|
width: 100vw; height: 100vh;
|
|
background: rgba(0,0,0,0.92);
|
|
z-index: 100000;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
opacity: 0;
|
|
pointer-events: none;
|
|
transition: opacity 0.35s ease;
|
|
backdrop-filter: blur(10px);
|
|
cursor: pointer;
|
|
}
|
|
.gallery-lightbox.active {
|
|
opacity: 1;
|
|
pointer-events: auto;
|
|
}
|
|
.gallery-lightbox-close {
|
|
position: absolute;
|
|
top: clamp(10px, 3vw, 25px);
|
|
right: clamp(10px, 3vw, 25px);
|
|
width: clamp(40px, 7vw, 56px);
|
|
height: clamp(40px, 7vw, 56px);
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
font-size: clamp(24px, 4vw, 36px);
|
|
color: rgba(255,255,255,0.8);
|
|
background: rgba(255,255,255,0.08);
|
|
border-radius: 50%;
|
|
cursor: pointer;
|
|
transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease, opacity 0.3s ease;
|
|
z-index: 2;
|
|
line-height: 1;
|
|
}
|
|
.gallery-lightbox-close:hover {
|
|
background: rgba(255,255,255,0.2);
|
|
color: #fff;
|
|
transform: rotate(90deg);
|
|
}
|
|
.gallery-lightbox-caption {
|
|
position: absolute;
|
|
bottom: clamp(10px, 3vw, 30px);
|
|
left: 50%;
|
|
transform: translateX(-50%);
|
|
color: rgba(255,255,255,0.7);
|
|
font-size: clamp(0.85rem, 1.4vw, 1rem);
|
|
text-align: center;
|
|
z-index: 2;
|
|
pointer-events: none;
|
|
}
|
|
.gallery-lightbox-img {
|
|
max-width: 90vw;
|
|
max-height: 90vh;
|
|
object-fit: contain;
|
|
border-radius: 8px;
|
|
box-shadow: 0 20px 60px rgba(0,0,0,0.4);
|
|
transition: transform 0.3s ease;
|
|
z-index: 1;
|
|
}
|
|
.gallery-lightbox.img:hover .gallery-lightbox-img {
|
|
transform: scale(1.02);
|
|
}
|
|
|
|
|
|
/* Activities */
|
|
.activity-card {
|
|
position: relative;
|
|
border-radius: 24px;
|
|
overflow: hidden;
|
|
height: clamp(250px, 40vw, 350px);
|
|
cursor: pointer;
|
|
transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease, color 0.4s ease, opacity 0.4s ease;
|
|
}
|
|
.activity-card:hover {
|
|
transform: translateY(-8px);
|
|
box-shadow: 0 20px 50px rgba(0,0,0,0.2);
|
|
}
|
|
.activity-card img {
|
|
width: 100%;
|
|
height: 100%;
|
|
object-fit: cover;
|
|
transition: transform 0.5s ease;
|
|
}
|
|
.activity-card:hover img {
|
|
transform: scale(1.1);
|
|
}
|
|
.activity-overlay {
|
|
position: absolute;
|
|
top: 0; left: 0;
|
|
width: 100%; height: 100%;
|
|
background: linear-gradient(to top, rgba(26,26,46,0.9) 0%, rgba(26,26,46,0.2) 50%, transparent 100%);
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: flex-end;
|
|
padding: clamp(20px, 4vw, 30px);
|
|
}
|
|
.activity-icon {
|
|
width: clamp(40px, 8vw, 50px);
|
|
height: clamp(40px, 8vw, 50px);
|
|
background: var(--gold);
|
|
border-radius: 50%;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
color: var(--dark);
|
|
font-size: clamp(1rem, 2vw, 1.2rem);
|
|
margin-bottom: clamp(10px, 2vw, 15px);
|
|
}
|
|
.activity-title {
|
|
font-size: clamp(1.2rem, 2.5vw, 1.5rem);
|
|
color: #fff;
|
|
font-weight: 700;
|
|
margin-bottom: 8px;
|
|
}
|
|
.activity-desc {
|
|
color: rgba(255,255,255,0.8);
|
|
font-size: clamp(0.8rem, 1.3vw, 0.9rem);
|
|
line-height: 1.6;
|
|
}
|
|
|
|
/* Reviews */
|
|
.review-card {
|
|
background: rgba(255,255,255,0.05);
|
|
border: 1px solid rgba(255,255,255,0.1);
|
|
border-radius: 20px;
|
|
padding: clamp(20px, 4vw, 35px);
|
|
transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease, opacity 0.3s ease;
|
|
height: 100%;
|
|
}
|
|
.review-card:hover {
|
|
background: rgba(255,255,255,0.1);
|
|
transform: translateY(-5px);
|
|
}
|
|
.review-stars {
|
|
color: var(--gold);
|
|
margin-bottom: 15px;
|
|
font-size: clamp(0.9rem, 1.5vw, 1.1rem);
|
|
}
|
|
.review-text {
|
|
font-size: clamp(0.85rem, 1.4vw, 1rem);
|
|
line-height: 1.7;
|
|
color: rgba(255,255,255,0.85);
|
|
margin-bottom: 20px;
|
|
font-style: italic;
|
|
}
|
|
.review-author {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 15px;
|
|
}
|
|
.review-avatar {
|
|
width: clamp(40px, 8vw, 50px);
|
|
height: clamp(40px, 8vw, 50px);
|
|
border-radius: 50%;
|
|
background: linear-gradient(135deg, var(--gold), var(--accent));
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
font-weight: 700;
|
|
color: var(--dark);
|
|
font-size: clamp(0.9rem, 1.5vw, 1.1rem);
|
|
}
|
|
.review-name {
|
|
font-weight: 600;
|
|
color: #fff;
|
|
margin-bottom: 3px;
|
|
font-size: clamp(0.9rem, 1.3vw, 1rem);
|
|
}
|
|
.review-date {
|
|
font-size: clamp(0.7rem, 1vw, 0.8rem);
|
|
color: rgba(255,255,255,0.5);
|
|
}
|
|
|
|
/* Host Section */
|
|
.host-card {
|
|
background: #fff;
|
|
border-radius: 24px;
|
|
overflow: hidden;
|
|
box-shadow: 0 15px 50px rgba(0,0,0,0.1);
|
|
max-width: clamp(300px, 90vw, 800px);
|
|
margin: 0 auto;
|
|
}
|
|
.host-image {
|
|
height: clamp(180px, 35vw, 300px);
|
|
background: linear-gradient(135deg, var(--primary), var(--primary-light));
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
position: relative;
|
|
overflow: hidden;
|
|
}
|
|
.host-image::before {
|
|
content: '';
|
|
position: absolute;
|
|
width: clamp(120px, 30vw, 200px);
|
|
height: clamp(120px, 30vw, 200px);
|
|
border-radius: 50%;
|
|
background: rgba(212,168,67,0.15);
|
|
top: 50%;
|
|
left: 50%;
|
|
transform: translate(-50%, -50%);
|
|
}
|
|
.host-image i {
|
|
font-size: clamp(3rem, 8vw, 5rem);
|
|
color: var(--gold);
|
|
position: relative;
|
|
z-index: 1;
|
|
}
|
|
.host-body {
|
|
padding: clamp(20px, 5vw, 40px);
|
|
text-align: center;
|
|
}
|
|
.host-body h3 {
|
|
font-size: clamp(1.3rem, 3vw, 1.8rem);
|
|
margin-bottom: 15px;
|
|
}
|
|
.host-body p {
|
|
font-size: clamp(0.85rem, 1.4vw, 1rem);
|
|
color: #666;
|
|
line-height: 1.7;
|
|
margin-bottom: 25px;
|
|
}
|
|
.host-contact {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 10px;
|
|
background: var(--primary);
|
|
color: #fff;
|
|
padding: clamp(10px, 2.5vw, 15px) clamp(20px, 5vw, 35px);
|
|
border-radius: 50px;
|
|
font-weight: 700;
|
|
font-size: clamp(0.9rem, 1.5vw, 1.1rem);
|
|
text-decoration: none;
|
|
transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease, opacity 0.3s ease;
|
|
}
|
|
.host-contact:hover {
|
|
background: var(--primary-light);
|
|
color: #fff;
|
|
transform: translateY(-3px);
|
|
box-shadow: 0 10px 30px rgba(10,77,104,0.3);
|
|
}
|
|
|
|
/* Contact Section */
|
|
.contact-section {
|
|
background: linear-gradient(135deg, var(--dark) 0%, #16213e 100%);
|
|
color: #fff;
|
|
}
|
|
.contact-info-item {
|
|
display: flex;
|
|
align-items: flex-start;
|
|
gap: clamp(12px, 3vw, 20px);
|
|
margin-bottom: clamp(20px, 4vw, 30px);
|
|
}
|
|
.contact-icon {
|
|
width: clamp(40px, 10vw, 55px);
|
|
height: clamp(40px, 10vw, 55px);
|
|
min-width: clamp(40px, 10vw, 55px);
|
|
background: rgba(212,168,67,0.15);
|
|
border-radius: 15px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
color: var(--gold);
|
|
font-size: clamp(1rem, 2.5vw, 1.3rem);
|
|
}
|
|
.contact-label {
|
|
font-size: clamp(0.7rem, 1.2vw, 0.8rem);
|
|
text-transform: uppercase;
|
|
letter-spacing: 1px;
|
|
color: rgba(255,255,255,0.5);
|
|
margin-bottom: 5px;
|
|
}
|
|
.contact-value {
|
|
font-size: clamp(0.9rem, 1.5vw, 1.1rem);
|
|
font-weight: 600;
|
|
}
|
|
.contact-value a {
|
|
color: #fff;
|
|
text-decoration: none;
|
|
}
|
|
.contact-value a:hover {
|
|
color: var(--gold);
|
|
}
|
|
|
|
/* Map placeholder */
|
|
.map-container {
|
|
border-radius: 20px;
|
|
overflow: hidden;
|
|
height: 100%;
|
|
min-height: clamp(250px, 50vw, 400px);
|
|
background: rgba(255,255,255,0.05);
|
|
border: 1px solid rgba(255,255,255,0.1);
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
flex-direction: column;
|
|
gap: 15px;
|
|
}
|
|
.map-container i {
|
|
font-size: clamp(2rem, 5vw, 3rem);
|
|
color: var(--gold);
|
|
}
|
|
.map-container span {
|
|
color: rgba(255,255,255,0.6);
|
|
font-size: clamp(0.8rem, 1.3vw, 0.9rem);
|
|
}
|
|
|
|
/* Footer */
|
|
.footer {
|
|
background: #0d0d1a;
|
|
color: #fff;
|
|
padding: clamp(30px, 6vw, 60px) 0 clamp(20px, 4vw, 30px);
|
|
}
|
|
.footer-brand {
|
|
font-family: 'Playfair Display', serif;
|
|
font-size: clamp(1.5rem, 3vw, 2rem);
|
|
font-weight: 700;
|
|
color: #fff;
|
|
margin-bottom: 15px;
|
|
}
|
|
.footer-brand span { color: var(--gold); }
|
|
.footer-desc {
|
|
color: rgba(255,255,255,0.5);
|
|
font-size: clamp(0.8rem, 1.3vw, 0.9rem);
|
|
line-height: 1.7;
|
|
margin-bottom: 20px;
|
|
}
|
|
.footer-title {
|
|
font-size: clamp(0.85rem, 1.3vw, 1rem);
|
|
font-weight: 700;
|
|
text-transform: uppercase;
|
|
letter-spacing: 1px;
|
|
margin-bottom: clamp(15px, 3vw, 20px);
|
|
color: var(--gold);
|
|
}
|
|
.footer-links {
|
|
list-style: none;
|
|
padding: 0;
|
|
}
|
|
.footer-links li {
|
|
margin-bottom: clamp(8px, 1.5vw, 10px);
|
|
}
|
|
.footer-links a {
|
|
color: rgba(255,255,255,0.6);
|
|
text-decoration: none;
|
|
font-size: clamp(0.8rem, 1.2vw, 0.9rem);
|
|
transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease, opacity 0.3s ease;
|
|
}
|
|
.footer-links a:hover {
|
|
color: var(--gold);
|
|
padding-left: 5px;
|
|
}
|
|
.footer-social {
|
|
display: flex;
|
|
gap: 10px;
|
|
margin-top: 20px;
|
|
}
|
|
.footer-social a {
|
|
width: clamp(35px, 7vw, 40px);
|
|
height: clamp(35px, 7vw, 40px);
|
|
border-radius: 50%;
|
|
background: rgba(255,255,255,0.08);
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
color: rgba(255,255,255,0.6);
|
|
text-decoration: none;
|
|
transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease, opacity 0.3s ease;
|
|
}
|
|
.footer-social a:hover {
|
|
background: var(--gold);
|
|
color: var(--dark);
|
|
transform: translateY(-3px);
|
|
}
|
|
.footer-bottom {
|
|
border-top: 1px solid rgba(255,255,255,0.08);
|
|
margin-top: clamp(25px, 5vw, 40px);
|
|
padding-top: 20px;
|
|
text-align: center;
|
|
color: rgba(255,255,255,0.4);
|
|
font-size: clamp(0.75rem, 1.2vw, 0.85rem);
|
|
}
|
|
.footer-legal {
|
|
margin-top: 8px;
|
|
}
|
|
.footer-legal a {
|
|
color: rgba(255,255,255,0.4);
|
|
text-decoration: none;
|
|
transition: color 0.3s;
|
|
}
|
|
.footer-legal a:hover {
|
|
color: var(--gold);
|
|
}
|
|
.footer-legal-divider {
|
|
margin: 0 8px;
|
|
color: rgba(255,255,255,0.15);
|
|
}
|
|
|
|
/* Cookie Banner */
|
|
.cookie-banner {
|
|
position: fixed;
|
|
bottom: 0;
|
|
left: 0;
|
|
right: 0;
|
|
z-index: 9999;
|
|
background: var(--dark);
|
|
border-top: 2px solid var(--gold);
|
|
padding: clamp(12px, 2vw, 18px) 0;
|
|
box-shadow: 0 -5px 30px rgba(0,0,0,0.3);
|
|
display: none;
|
|
}
|
|
.cookie-banner.show {
|
|
display: block;
|
|
}
|
|
.cookie-banner-content {
|
|
max-width: 1200px;
|
|
margin: 0 auto;
|
|
padding: 0 20px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
gap: 20px;
|
|
flex-wrap: wrap;
|
|
}
|
|
.cookie-banner-text {
|
|
color: rgba(255,255,255,0.8);
|
|
font-size: clamp(0.8rem, 1.1vw, 0.9rem);
|
|
line-height: 1.5;
|
|
flex: 1;
|
|
min-width: 200px;
|
|
}
|
|
.cookie-banner-text i {
|
|
color: var(--gold);
|
|
margin-right: 8px;
|
|
}
|
|
.cookie-banner-text a {
|
|
color: var(--gold);
|
|
text-decoration: underline;
|
|
}
|
|
.cookie-banner-text a:hover {
|
|
color: #e6b84d;
|
|
}
|
|
.cookie-accept-btn {
|
|
background: var(--gold);
|
|
color: var(--dark);
|
|
border: none;
|
|
padding: clamp(8px, 1.5vw, 12px) clamp(20px, 3vw, 30px);
|
|
border-radius: 50px;
|
|
font-weight: 700;
|
|
font-size: clamp(0.8rem, 1vw, 0.9rem);
|
|
cursor: pointer;
|
|
transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease, opacity 0.3s ease;
|
|
white-space: nowrap;
|
|
}
|
|
.cookie-accept-btn:hover {
|
|
background: #e6b84d;
|
|
transform: translateY(-2px);
|
|
}
|
|
|
|
/* Animations */
|
|
@keyframes fadeInUp {
|
|
from { opacity: 0; transform: translateY(30px); }
|
|
to { opacity: 1; transform: translateY(0); }
|
|
}
|
|
.animate-on-scroll {
|
|
opacity: 0;
|
|
transform: translateY(40px);
|
|
transition: opacity 0.8s ease, transform 0.8s ease;
|
|
}
|
|
.animate-on-scroll.visible {
|
|
opacity: 1;
|
|
transform: translateY(0);
|
|
}
|
|
.animate-on-scroll.animated {
|
|
opacity: 1;
|
|
transform: translateY(0);
|
|
}
|
|
|
|
/* Parallax decorative */
|
|
.parallax-element {
|
|
position: absolute;
|
|
opacity: 0.05;
|
|
font-size: 15rem;
|
|
color: #fff;
|
|
pointer-events: none;
|
|
}
|
|
|
|
/* CTA Banner */
|
|
.cta-banner {
|
|
background: linear-gradient(135deg, var(--gold) 0%, var(--accent) 100%);
|
|
border-radius: 24px;
|
|
padding: clamp(25px, 6vw, 60px);
|
|
text-align: center;
|
|
position: relative;
|
|
overflow: hidden;
|
|
}
|
|
.cta-banner::before {
|
|
content: '777';
|
|
position: absolute;
|
|
top: 50%;
|
|
left: 50%;
|
|
transform: translate(-50%, -50%);
|
|
font-family: 'Playfair Display', serif;
|
|
font-size: clamp(5rem, 15vw, 15rem);
|
|
font-weight: 700;
|
|
color: rgba(255,255,255,0.1);
|
|
}
|
|
.cta-banner h2 {
|
|
font-size: clamp(1.5rem, 4vw, 2.5rem);
|
|
color: var(--dark);
|
|
margin-bottom: 15px;
|
|
position: relative;
|
|
}
|
|
.cta-banner p {
|
|
color: rgba(26,26,46,0.7);
|
|
font-size: clamp(0.9rem, 1.5vw, 1.1rem);
|
|
margin-bottom: clamp(20px, 5vw, 30px);
|
|
position: relative;
|
|
}
|
|
.btn-dark-cta {
|
|
background: var(--dark);
|
|
color: #fff;
|
|
border: none;
|
|
padding: clamp(10px, 2.5vw, 15px) clamp(25px, 5vw, 45px);
|
|
border-radius: 50px;
|
|
font-weight: 700;
|
|
font-size: clamp(0.9rem, 1.4vw, 1rem);
|
|
transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease, opacity 0.3s ease;
|
|
position: relative;
|
|
cursor: pointer;
|
|
text-decoration: none;
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
}
|
|
.btn-dark-cta:hover {
|
|
transform: translateY(-3px);
|
|
box-shadow: 0 10px 30px rgba(26,26,46,0.3);
|
|
}
|
|
|
|
/* Booking Modal */
|
|
.modal-content {
|
|
border: none;
|
|
border-radius: 24px;
|
|
overflow: hidden;
|
|
}
|
|
.modal-header {
|
|
background: linear-gradient(135deg, var(--primary), var(--primary-light));
|
|
color: #fff;
|
|
border: none;
|
|
padding: clamp(15px, 4vw, 25px) clamp(15px, 4vw, 30px);
|
|
}
|
|
.modal-header .btn-close {
|
|
filter: invert(1);
|
|
}
|
|
.modal-body {
|
|
padding: clamp(15px, 4vw, 30px);
|
|
}
|
|
.form-control, .form-select {
|
|
border-radius: 12px;
|
|
border: 2px solid #e0e0e0;
|
|
padding: 12px 18px;
|
|
font-size: clamp(0.85rem, 1.3vw, 0.95rem);
|
|
transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease, opacity 0.3s ease;
|
|
}
|
|
.form-control:focus, .form-select:focus {
|
|
border-color: var(--primary-light);
|
|
box-shadow: 0 0 0 3px rgba(8,131,149,0.15);
|
|
}
|
|
.form-label {
|
|
font-weight: 600;
|
|
font-size: clamp(0.8rem, 1.2vw, 0.9rem);
|
|
color: #444;
|
|
margin-bottom: 6px;
|
|
}
|
|
.btn-submit-booking {
|
|
background: linear-gradient(135deg, var(--primary), var(--primary-light));
|
|
color: #fff;
|
|
border: none;
|
|
padding: clamp(10px, 2.5vw, 16px) clamp(20px, 5vw, 45px);
|
|
border-radius: 50px;
|
|
font-weight: 700;
|
|
font-size: clamp(0.9rem, 1.4vw, 1rem);
|
|
width: 100%;
|
|
transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease, opacity 0.3s ease;
|
|
}
|
|
.btn-submit-booking:hover {
|
|
transform: translateY(-2px);
|
|
box-shadow: 0 10px 30px rgba(10,77,104,0.3);
|
|
}
|
|
|
|
/* Extra bed option in guest select */
|
|
select option[data-extra="1"] {
|
|
background: #fef3e2;
|
|
color: #92400e;
|
|
font-weight: 600;
|
|
}
|
|
|
|
/* Floating phone button */
|
|
.float-phone {
|
|
position: fixed;
|
|
bottom: clamp(15px, 4vw, 30px);
|
|
right: clamp(15px, 4vw, 30px);
|
|
width: clamp(50px, 12vw, 60px);
|
|
height: clamp(50px, 12vw, 60px);
|
|
background: #25d366;
|
|
border-radius: 50%;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
color: #fff;
|
|
font-size: clamp(1.2rem, 3vw, 1.5rem);
|
|
z-index: 1000;
|
|
box-shadow: 0 5px 25px rgba(37,211,102,0.4);
|
|
transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease, opacity 0.3s ease;
|
|
text-decoration: none;
|
|
animation: phonePulse 2s ease infinite;
|
|
}
|
|
.float-phone:hover {
|
|
transform: scale(1.1);
|
|
color: #fff;
|
|
}
|
|
@keyframes phonePulse {
|
|
0% { box-shadow: 0 5px 25px rgba(37,211,102,0.4); }
|
|
50% { box-shadow: 0 5px 40px rgba(37,211,102,0.6); }
|
|
100% { box-shadow: 0 5px 25px rgba(37,211,102,0.4); }
|
|
}
|
|
|
|
/* Responsive - Tablet */
|
|
@media (max-width: 991px) {
|
|
.feature-grid {
|
|
grid-template-columns: repeat(2, 1fr);
|
|
}
|
|
}
|
|
|
|
/* Responsive - Mobile */
|
|
@media (max-width: 767px) {
|
|
.feature-grid {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
.room-footer {
|
|
flex-direction: column;
|
|
gap: 15px;
|
|
text-align: center;
|
|
}
|
|
.cta-banner::before {
|
|
font-size: 5rem;
|
|
}
|
|
}
|
|
|
|
/* Large screens - Desktop, TV */
|
|
@media (min-width: 1400px) {
|
|
.container {
|
|
max-width: 1320px;
|
|
}
|
|
.hero {
|
|
max-height: 1000px;
|
|
}
|
|
}
|
|
|
|
/* Extra large - 2K, 4K */
|
|
@media (min-width: 1920px) {
|
|
html {
|
|
font-size: 18px;
|
|
}
|
|
.container {
|
|
max-width: 1600px;
|
|
}
|
|
.section {
|
|
padding: 120px 0;
|
|
}
|
|
.hero {
|
|
max-height: 1200px;
|
|
}
|
|
.hero-title {
|
|
font-size: 5rem;
|
|
}
|
|
.section-title {
|
|
font-size: 3rem;
|
|
}
|
|
.about-image-wrapper img {
|
|
height: 500px;
|
|
}
|
|
.room-image {
|
|
height: 300px;
|
|
}
|
|
.activity-card {
|
|
height: 400px;
|
|
}
|
|
}
|
|
|
|
/* Very large screens */
|
|
@media (min-width: 2560px) {
|
|
html {
|
|
font-size: 20px;
|
|
}
|
|
.container {
|
|
max-width: 2000px;
|
|
}
|
|
.hero-title {
|
|
font-size: 6rem;
|
|
}
|
|
.section-title {
|
|
font-size: 3.5rem;
|
|
}
|
|
}
|
|
|
|
/* Extra small - very old phones */
|
|
@media (max-width: 375px) {
|
|
.hero-title {
|
|
font-size: 1.8rem;
|
|
}
|
|
.hero-badge {
|
|
font-size: 0.65rem;
|
|
padding: 5px 12px;
|
|
}
|
|
.section-badge {
|
|
font-size: 0.65rem;
|
|
padding: 5px 12px;
|
|
}
|
|
.btn-gold, .btn-outline-white {
|
|
padding: 10px 18px;
|
|
font-size: 0.8rem;
|
|
}
|
|
.btn-whatsapp, .btn-telegram, .btn-max, .btn-instagram {
|
|
width: 38px;
|
|
height: 38px;
|
|
font-size: 0.75rem;
|
|
padding: 0;
|
|
}
|
|
.float-phone {
|
|
width: 45px;
|
|
height: 45px;
|
|
font-size: 1rem;
|
|
}
|
|
}
|
|
|
|
/* Smooth image reveal */
|
|
.reveal-img {
|
|
opacity: 0;
|
|
transform: scale(0.95);
|
|
transition: transform 0.6s ease, box-shadow 0.6s ease, background 0.6s ease, opacity 0.6s ease;
|
|
}
|
|
.reveal-img.visible {
|
|
opacity: 1;
|
|
transform: scale(1);
|
|
}
|
|
|
|
/* Wave separator */
|
|
.wave-separator {
|
|
position: relative;
|
|
height: 80px;
|
|
overflow: hidden;
|
|
}
|
|
.wave-separator svg {
|
|
position: absolute;
|
|
bottom: 0;
|
|
width: 100%;
|
|
}
|
|
|
|
/* Counter animation */
|
|
.counter { display: inline-block; }
|
|
|
|
/* Abkhazian ornament decoration */
|
|
.ornament {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
gap: 10px;
|
|
margin: 20px 0;
|
|
}
|
|
.ornament-line {
|
|
width: clamp(30px, 5vw, 50px);
|
|
height: 2px;
|
|
background: var(--gold);
|
|
}
|
|
.ornament-diamond {
|
|
width: clamp(8px, 1.5vw, 12px);
|
|
height: clamp(8px, 1.5vw, 12px);
|
|
background: var(--gold);
|
|
transform: rotate(45deg);
|
|
}
|
|
|
|
/* Host portrait styling */
|
|
.host-portrait {
|
|
width: clamp(100px, 25vw, 180px);
|
|
height: clamp(100px, 25vw, 180px);
|
|
border-radius: 50%;
|
|
background: linear-gradient(135deg, var(--gold), var(--accent));
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
margin: 0 auto 20px;
|
|
font-size: clamp(2rem, 6vw, 3.5rem);
|
|
color: var(--dark);
|
|
box-shadow: 0 10px 30px rgba(212,168,67,0.3);
|
|
position: relative;
|
|
z-index: 2;
|
|
}
|
|
.host-portrait-ring {
|
|
position: absolute;
|
|
width: calc(100% + 20px);
|
|
height: calc(100% + 20px);
|
|
border-radius: 50%;
|
|
border: 3px solid rgba(212,168,67,0.3);
|
|
top: 50%;
|
|
left: 50%;
|
|
transform: translate(-50%, -50%);
|
|
animation: ringPulse 2s ease infinite;
|
|
}
|
|
@keyframes ringPulse {
|
|
0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
|
|
50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.2; }
|
|
}
|
|
|
|
/* ======= Travel Tips Section ======= */
|
|
.travel-tips-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
|
|
gap: clamp(14px, 2.5vw, 24px);
|
|
}
|
|
|
|
.tips-card {
|
|
background: rgba(255,255,255,0.04);
|
|
border: 1px solid rgba(255,255,255,0.1);
|
|
border-radius: 20px;
|
|
padding: clamp(18px, 3.5vw, 28px);
|
|
transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease, color 0.35s ease, opacity 0.35s ease;
|
|
height: 100%;
|
|
}
|
|
.tips-card:hover {
|
|
background: rgba(255,255,255,0.08);
|
|
border-color: rgba(212,168,67,0.4);
|
|
transform: translateY(-4px);
|
|
box-shadow: 0 12px 40px rgba(0,0,0,0.25);
|
|
}
|
|
|
|
.tips-card-header {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: clamp(10px, 2vw, 15px);
|
|
margin-bottom: clamp(12px, 2.5vw, 18px);
|
|
}
|
|
.tips-card-icon {
|
|
width: clamp(44px, 8vw, 56px);
|
|
height: clamp(44px, 8vw, 56px);
|
|
min-width: clamp(44px, 8vw, 56px);
|
|
border-radius: 16px;
|
|
background: linear-gradient(135deg, var(--gold), var(--accent));
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
color: var(--dark);
|
|
font-size: clamp(1.1rem, 2vw, 1.4rem);
|
|
}
|
|
.tips-card-icon.blue {
|
|
background: linear-gradient(135deg, var(--primary), var(--primary-light));
|
|
color: #fff;
|
|
}
|
|
.tips-card-icon.sea {
|
|
background: linear-gradient(135deg, var(--sea), var(--sky));
|
|
color: #fff;
|
|
}
|
|
.tips-card-title {
|
|
font-size: clamp(0.95rem, 1.6vw, 1.1rem);
|
|
font-weight: 700;
|
|
color: #fff;
|
|
margin: 0;
|
|
}
|
|
|
|
.tips-list {
|
|
list-style: none;
|
|
padding: 0;
|
|
margin: 0;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: clamp(10px, 2vw, 14px);
|
|
}
|
|
.tips-list-item {
|
|
display: flex;
|
|
gap: clamp(8px, 1.5vw, 12px);
|
|
align-items: flex-start;
|
|
}
|
|
.tips-list-marker {
|
|
width: 24px;
|
|
height: 24px;
|
|
min-width: 24px;
|
|
border-radius: 8px;
|
|
background: rgba(212,168,67,0.2);
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
color: var(--gold);
|
|
font-size: 0.75rem;
|
|
margin-top: 1px;
|
|
}
|
|
.tips-list-text strong {
|
|
color: var(--gold);
|
|
font-weight: 600;
|
|
display: block;
|
|
font-size: clamp(0.8rem, 1.3vw, 0.9rem);
|
|
margin-bottom: 2px;
|
|
}
|
|
.tips-list-text span {
|
|
color: rgba(255,255,255,0.7);
|
|
font-size: clamp(0.75rem, 1.2vw, 0.85rem);
|
|
line-height: 1.55;
|
|
}
|
|
|
|
/* Mobile Operators Section */
|
|
.travel-tips-operators {
|
|
margin-top: clamp(24px, 5vw, 40px);
|
|
}
|
|
|
|
.operators-title {
|
|
font-size: clamp(1rem, 2vw, 1.3rem);
|
|
font-weight: 700;
|
|
color: #fff;
|
|
margin-bottom: clamp(10px, 2vw, 16px);
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 10px;
|
|
}
|
|
.operators-title i {
|
|
color: var(--gold);
|
|
}
|
|
|
|
.operators-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
|
|
gap: clamp(10px, 2vw, 16px);
|
|
}
|
|
|
|
.operator-card {
|
|
background: rgba(255,255,255,0.04);
|
|
border: 1px solid rgba(255,255,255,0.1);
|
|
border-radius: 16px;
|
|
padding: clamp(14px, 2.5vw, 20px);
|
|
transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease, color 0.35s ease, opacity 0.35s ease;
|
|
position: relative;
|
|
overflow: hidden;
|
|
}
|
|
.operator-card:hover {
|
|
background: rgba(255,255,255,0.08);
|
|
transform: translateY(-3px);
|
|
box-shadow: 0 8px 30px rgba(0,0,0,0.2);
|
|
}
|
|
.operator-card.featured {
|
|
border-color: var(--gold);
|
|
background: rgba(212,168,67,0.08);
|
|
box-shadow: 0 0 30px rgba(212,168,67,0.1);
|
|
}
|
|
.operator-card.featured::before {
|
|
content: '';
|
|
position: absolute;
|
|
top: 0; left: 0; right: 0;
|
|
height: 3px;
|
|
background: linear-gradient(90deg, var(--gold), var(--accent), var(--gold));
|
|
border-radius: 3px 3px 0 0;
|
|
}
|
|
|
|
.operator-badge {
|
|
position: absolute;
|
|
top: 12px;
|
|
right: 12px;
|
|
background: var(--gold);
|
|
color: var(--dark);
|
|
padding: 3px 10px;
|
|
border-radius: 20px;
|
|
font-size: 0.7rem;
|
|
font-weight: 700;
|
|
letter-spacing: 0.5px;
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
.operator-header {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 10px;
|
|
margin-bottom: 10px;
|
|
}
|
|
.operator-logo {
|
|
width: 40px;
|
|
height: 40px;
|
|
min-width: 40px;
|
|
border-radius: 10px;
|
|
background: rgba(255,255,255,0.1);
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
font-weight: 700;
|
|
font-size: 0.7rem;
|
|
color: #fff;
|
|
letter-spacing: 0.5px;
|
|
}
|
|
.operator-logo.mts { background: #e30613; }
|
|
.operator-logo.megafon { background: #00b956; }
|
|
.operator-logo.beeline { background: #f9b000; color: #1a1a2e; }
|
|
.operator-logo.yota { background: #00bfff; }
|
|
.operator-logo.tele2 { background: #1d1d1b; }
|
|
|
|
.operator-name {
|
|
font-weight: 700;
|
|
color: #fff;
|
|
font-size: clamp(0.9rem, 1.5vw, 1rem);
|
|
}
|
|
.operator-plan {
|
|
font-size: 0.72rem;
|
|
color: rgba(255,255,255,0.45);
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.5px;
|
|
}
|
|
|
|
.operator-rows {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 6px;
|
|
margin-top: 12px;
|
|
}
|
|
.operator-row {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: baseline;
|
|
padding: 4px 0;
|
|
border-bottom: 1px solid rgba(255,255,255,0.05);
|
|
}
|
|
.operator-row:last-child {
|
|
border-bottom: none;
|
|
}
|
|
.operator-row-label {
|
|
font-size: 0.7rem;
|
|
color: rgba(255,255,255,0.4);
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.5px;
|
|
min-width: clamp(70px, 12vw, 80px);
|
|
}
|
|
.operator-row-value {
|
|
font-size: 0.78rem;
|
|
color: rgba(255,255,255,0.8);
|
|
text-align: right;
|
|
line-height: 1.45;
|
|
}
|
|
.operator-row-value.bonus {
|
|
color: var(--gold);
|
|
}
|
|
.operator-row-value.activation {
|
|
color: rgba(255,255,255,0.6);
|
|
font-size: 0.72rem;
|
|
}
|
|
.operator-row-value.highlight {
|
|
color: #fff;
|
|
font-weight: 600;
|
|
}
|
|
|
|
/* Local SIM Section */
|
|
.local-sim-card {
|
|
background: rgba(212,168,67,0.06);
|
|
border: 1px solid rgba(212,168,67,0.2);
|
|
border-radius: 16px;
|
|
padding: clamp(16px, 3vw, 24px);
|
|
margin-top: clamp(16px, 3vw, 24px);
|
|
display: flex;
|
|
align-items: flex-start;
|
|
gap: clamp(10px, 2vw, 16px);
|
|
}
|
|
.local-sim-icon {
|
|
width: clamp(42px, 8vw, 52px);
|
|
height: clamp(42px, 8vw, 52px);
|
|
min-width: clamp(42px, 8vw, 52px);
|
|
border-radius: 14px;
|
|
background: linear-gradient(135deg, var(--gold), var(--accent));
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
color: var(--dark);
|
|
font-size: clamp(1.1rem, 2vw, 1.3rem);
|
|
}
|
|
.local-sim-body h4 {
|
|
color: #fff;
|
|
font-size: clamp(0.95rem, 1.6vw, 1.05rem);
|
|
margin-bottom: 6px;
|
|
font-weight: 700;
|
|
}
|
|
.local-sim-body p {
|
|
color: rgba(255,255,255,0.7);
|
|
font-size: clamp(0.78rem, 1.2vw, 0.85rem);
|
|
line-height: 1.6;
|
|
margin: 0;
|
|
}
|
|
.local-sim-note {
|
|
display: flex;
|
|
align-items: flex-start;
|
|
gap: 8px;
|
|
margin-top: 12px;
|
|
padding: 10px 14px;
|
|
background: rgba(201,48,44,0.12);
|
|
border-radius: 10px;
|
|
border-left: 3px solid var(--accent2);
|
|
}
|
|
.local-sim-note i {
|
|
color: var(--accent2);
|
|
font-size: 0.9rem;
|
|
margin-top: 1px;
|
|
}
|
|
.local-sim-note span {
|
|
color: rgba(255,255,255,0.65);
|
|
font-size: 0.78rem;
|
|
line-height: 1.5;
|
|
}
|
|
|
|
/* Travel Tips Note */
|
|
.travel-tips-footnote {
|
|
text-align: center;
|
|
margin-top: clamp(24px, 5vw, 40px);
|
|
padding: clamp(12px, 2.5vw, 18px);
|
|
background: rgba(255,255,255,0.03);
|
|
border-radius: 12px;
|
|
}
|
|
.travel-tips-footnote p {
|
|
color: rgba(255,255,255,0.4);
|
|
font-size: clamp(0.7rem, 1.1vw, 0.78rem);
|
|
margin: 0;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
gap: 6px;
|
|
}
|
|
.travel-tips-footnote i {
|
|
color: var(--gold);
|
|
}
|
|
|
|
/* Larger screens: operators section gets a wider card */
|
|
@media (min-width: 992px) {
|
|
.operators-grid {
|
|
grid-template-columns: repeat(3, 1fr);
|
|
}
|
|
}
|
|
|
|
@media (max-width: 767px) {
|
|
.travel-tips-grid {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
.operators-grid {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
.local-sim-card {
|
|
flex-direction: column;
|
|
}
|
|
}
|
|
|
|
/* Operator card icon pulse for featured */
|
|
.operator-card.featured .operator-logo {
|
|
animation: softPulse 2.5s ease-in-out infinite;
|
|
}
|
|
@keyframes softPulse {
|
|
0%, 100% { box-shadow: 0 0 0 0 rgba(212,168,67,0.3); }
|
|
50% { box-shadow: 0 0 0 10px rgba(212,168,67,0); }
|
|
}
|
|
|
|
/* Room image carousel */
|
|
.room-img-carousel {
|
|
position: relative;
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
.room-img-carousel .room-carousel-img {
|
|
width: 100%;
|
|
height: 100%;
|
|
object-fit: cover;
|
|
}
|
|
.room-carousel-prev, .room-carousel-next {
|
|
position: absolute;
|
|
top: 50%;
|
|
transform: translateY(-50%);
|
|
background: rgba(0,0,0,0.5);
|
|
color: #fff;
|
|
border: none;
|
|
width: 30px;
|
|
height: 30px;
|
|
border-radius: 50%;
|
|
font-size: 18px;
|
|
cursor: pointer;
|
|
z-index: 2;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
opacity: 0;
|
|
transition: opacity 0.3s;
|
|
}
|
|
.room-image:hover .room-carousel-prev, .room-image:hover .room-carousel-next {
|
|
opacity: 1;
|
|
}
|
|
.room-carousel-prev { left: 8px; }
|
|
.room-carousel-next { right: 8px; }
|
|
.room-img-dots {
|
|
position: absolute;
|
|
bottom: 8px;
|
|
left: 50%;
|
|
transform: translateX(-50%);
|
|
display: flex;
|
|
gap: 6px;
|
|
z-index: 2;
|
|
}
|
|
.room-img-dot {
|
|
width: 8px;
|
|
height: 8px;
|
|
border-radius: 50%;
|
|
background: rgba(255,255,255,0.5);
|
|
cursor: pointer;
|
|
transition: background 0.3s;
|
|
}
|
|
.room-img-dot.active {
|
|
background: #fff;
|
|
}
|