1379 lines
29 KiB
CSS
1379 lines
29 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 {
|
|
padding: 10px 15px !important;
|
|
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: 200px; 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: all 0.4s ease;
|
|
padding: 20px 0;
|
|
background: transparent;
|
|
}
|
|
.navbar.scrolled {
|
|
background: rgba(10, 77, 104, 0.95) !important;
|
|
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 !important;
|
|
font-weight: 700;
|
|
}
|
|
.navbar-brand span { color: var(--gold); }
|
|
.nav-link {
|
|
color: rgba(255,255,255,0.9) !important;
|
|
font-weight: 500;
|
|
font-size: 0.95rem;
|
|
letter-spacing: 0.5px;
|
|
padding: 8px 16px !important;
|
|
transition: all 0.3s ease;
|
|
position: relative;
|
|
}
|
|
.nav-link::after {
|
|
content: '';
|
|
position: absolute;
|
|
bottom: 0; left: 50%;
|
|
width: 0; height: 2px;
|
|
background: var(--gold);
|
|
transition: all 0.3s ease;
|
|
transform: translateX(-50%);
|
|
}
|
|
.nav-link:hover::after { width: 60%; }
|
|
.nav-link:hover { color: var(--gold) !important; }
|
|
|
|
/* Hero Section */
|
|
.hero {
|
|
position: relative;
|
|
height: 100vh;
|
|
min-height: 500px;
|
|
max-height: 1200px;
|
|
overflow: hidden;
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
.hero-bg {
|
|
position: absolute;
|
|
top: 0; left: 0;
|
|
width: 100%; height: 100%;
|
|
object-fit: cover;
|
|
animation: heroZoom 20s ease-in-out infinite alternate;
|
|
}
|
|
@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: all 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: all 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);
|
|
}
|
|
.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: 6px 20px;
|
|
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: 60px;
|
|
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: all 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: all 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: 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: all 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 */
|
|
.gallery-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
|
|
gap: clamp(8px, 2vw, 15px);
|
|
}
|
|
.gallery-item {
|
|
position: relative;
|
|
border-radius: 16px;
|
|
overflow: hidden;
|
|
cursor: pointer;
|
|
transition: all 0.3s ease;
|
|
aspect-ratio: 1;
|
|
}
|
|
.gallery-item:first-child {
|
|
grid-column: span 2;
|
|
grid-row: span 2;
|
|
aspect-ratio: auto;
|
|
}
|
|
.gallery-item img {
|
|
width: 100%;
|
|
height: 100%;
|
|
object-fit: cover;
|
|
transition: transform 0.5s ease;
|
|
}
|
|
.gallery-item:hover img {
|
|
transform: scale(1.1);
|
|
}
|
|
.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-item:hover .gallery-overlay {
|
|
opacity: 1;
|
|
}
|
|
.gallery-overlay span {
|
|
color: #fff;
|
|
font-weight: 600;
|
|
font-size: clamp(0.85rem, 1.5vw, 1rem);
|
|
}
|
|
.gallery-item {
|
|
position: relative;
|
|
border-radius: 16px;
|
|
overflow: hidden;
|
|
cursor: pointer;
|
|
}
|
|
.gallery-item:nth-child(1) {
|
|
grid-column: span 2;
|
|
grid-row: span 2;
|
|
}
|
|
.gallery-item img {
|
|
width: 100%;
|
|
height: 100%;
|
|
object-fit: cover;
|
|
transition: transform 0.5s ease;
|
|
}
|
|
.gallery-item:hover img {
|
|
transform: scale(1.1);
|
|
}
|
|
.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: 20px;
|
|
}
|
|
.gallery-item:hover .gallery-overlay {
|
|
opacity: 1;
|
|
}
|
|
.gallery-overlay span {
|
|
color: #fff;
|
|
font-weight: 600;
|
|
font-size: 1rem;
|
|
}
|
|
|
|
/* Activities */
|
|
.activity-card {
|
|
position: relative;
|
|
border-radius: 24px;
|
|
overflow: hidden;
|
|
height: clamp(250px, 40vw, 350px);
|
|
cursor: pointer;
|
|
transition: all 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: all 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: all 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: all 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: all 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);
|
|
}
|
|
|
|
/* Animations */
|
|
@keyframes fadeInUp {
|
|
from { opacity: 0; transform: translateY(30px); }
|
|
to { opacity: 1; transform: translateY(0); }
|
|
}
|
|
.animate-on-scroll {
|
|
opacity: 0;
|
|
transform: translateY(40px);
|
|
transition: all 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: all 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: all 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: 14px 40px;
|
|
border-radius: 50px;
|
|
font-weight: 700;
|
|
font-size: clamp(0.9rem, 1.4vw, 1rem);
|
|
width: 100%;
|
|
transition: all 0.3s ease;
|
|
}
|
|
.btn-submit-booking:hover {
|
|
transform: translateY(-2px);
|
|
box-shadow: 0 10px 30px rgba(10,77,104,0.3);
|
|
}
|
|
|
|
/* 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: all 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) {
|
|
.gallery-item:first-child {
|
|
grid-column: span 1;
|
|
grid-row: span 1;
|
|
}
|
|
.feature-grid {
|
|
grid-template-columns: repeat(2, 1fr);
|
|
}
|
|
}
|
|
|
|
/* Responsive - Mobile */
|
|
@media (max-width: 767px) {
|
|
.feature-grid {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
.gallery-item:first-child {
|
|
grid-column: span 1;
|
|
grid-row: span 1;
|
|
aspect-ratio: 1;
|
|
}
|
|
.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;
|
|
}
|
|
.float-phone {
|
|
width: 45px;
|
|
height: 45px;
|
|
font-size: 1rem;
|
|
}
|
|
}
|
|
|
|
/* Smooth image reveal */
|
|
.reveal-img {
|
|
opacity: 0;
|
|
transform: scale(0.95);
|
|
transition: all 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: 40px;
|
|
height: 2px;
|
|
background: var(--gold);
|
|
}
|
|
.ornament-diamond {
|
|
width: 10px;
|
|
height: 10px;
|
|
background: var(--gold);
|
|
transform: rotate(45deg);
|
|
}
|
|
|
|
/* Host portrait styling */
|
|
.host-portrait {
|
|
width: 150px;
|
|
height: 150px;
|
|
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: 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: 170px;
|
|
height: 170px;
|
|
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; }
|
|
}
|