1171 lines
23 KiB
CSS
1171 lines
23 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; }
|
|
|
|
body {
|
|
font-family: 'Inter', sans-serif;
|
|
color: #333;
|
|
overflow-x: hidden;
|
|
background: var(--light);
|
|
}
|
|
|
|
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: 700px;
|
|
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: 8px 24px;
|
|
border-radius: 50px;
|
|
font-size: 0.85rem;
|
|
letter-spacing: 2px;
|
|
text-transform: uppercase;
|
|
margin-bottom: 20px;
|
|
animation: fadeInUp 1s ease 0.3s both;
|
|
}
|
|
.hero-title {
|
|
font-size: 5rem;
|
|
font-weight: 700;
|
|
line-height: 1.1;
|
|
margin-bottom: 20px;
|
|
animation: fadeInUp 1s ease 0.5s both;
|
|
}
|
|
.hero-title span { color: var(--gold); }
|
|
.hero-subtitle {
|
|
font-size: 1.3rem;
|
|
opacity: 0.9;
|
|
max-width: 600px;
|
|
line-height: 1.7;
|
|
margin-bottom: 35px;
|
|
animation: fadeInUp 1s ease 0.7s both;
|
|
}
|
|
.hero-buttons {
|
|
display: flex;
|
|
gap: 15px;
|
|
flex-wrap: wrap;
|
|
animation: fadeInUp 1s ease 0.9s both;
|
|
}
|
|
.btn-gold {
|
|
background: var(--gold);
|
|
color: var(--dark);
|
|
border: none;
|
|
padding: 15px 40px;
|
|
border-radius: 50px;
|
|
font-weight: 700;
|
|
font-size: 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: 13px 38px;
|
|
border-radius: 50px;
|
|
font-weight: 600;
|
|
font-size: 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: 60px;
|
|
left: 0; right: 0;
|
|
z-index: 2;
|
|
}
|
|
.stat-item {
|
|
text-align: center;
|
|
color: #fff;
|
|
}
|
|
.stat-number {
|
|
font-family: 'Playfair Display', serif;
|
|
font-size: 2.5rem;
|
|
font-weight: 700;
|
|
color: var(--gold);
|
|
}
|
|
.stat-label {
|
|
font-size: 0.85rem;
|
|
opacity: 0.8;
|
|
letter-spacing: 1px;
|
|
text-transform: uppercase;
|
|
}
|
|
.stat-divider {
|
|
width: 1px;
|
|
height: 50px;
|
|
background: rgba(255,255,255,0.2);
|
|
}
|
|
|
|
/* 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: 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: 60px;
|
|
}
|
|
.section-badge {
|
|
display: inline-block;
|
|
background: rgba(212,168,67,0.15);
|
|
color: var(--gold);
|
|
padding: 6px 20px;
|
|
border-radius: 50px;
|
|
font-size: 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: 3rem;
|
|
font-weight: 700;
|
|
margin-bottom: 15px;
|
|
}
|
|
.section-subtitle {
|
|
font-size: 1.1rem;
|
|
opacity: 0.7;
|
|
max-width: 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: 400px;
|
|
object-fit: cover;
|
|
transition: transform 0.5s ease;
|
|
}
|
|
.about-image-wrapper:hover img {
|
|
transform: scale(1.05);
|
|
}
|
|
.about-image-badge {
|
|
position: absolute;
|
|
bottom: 20px;
|
|
right: 20px;
|
|
background: var(--gold);
|
|
color: var(--dark);
|
|
padding: 15px 25px;
|
|
border-radius: 15px;
|
|
text-align: center;
|
|
font-weight: 700;
|
|
}
|
|
.about-image-badge .big {
|
|
font-family: 'Playfair Display', serif;
|
|
font-size: 2rem;
|
|
display: block;
|
|
}
|
|
.about-image-badge .small {
|
|
font-size: 0.75rem;
|
|
text-transform: uppercase;
|
|
letter-spacing: 1px;
|
|
}
|
|
.feature-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(2, 1fr);
|
|
gap: 20px;
|
|
margin-top: 30px;
|
|
}
|
|
.feature-item {
|
|
display: flex;
|
|
align-items: flex-start;
|
|
gap: 15px;
|
|
padding: 15px;
|
|
border-radius: 12px;
|
|
transition: all 0.3s ease;
|
|
}
|
|
.feature-item:hover {
|
|
background: rgba(212,168,67,0.08);
|
|
}
|
|
.feature-icon {
|
|
width: 50px;
|
|
height: 50px;
|
|
min-width: 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: 1.2rem;
|
|
}
|
|
.feature-text h5 {
|
|
font-size: 1rem;
|
|
font-weight: 700;
|
|
margin-bottom: 5px;
|
|
}
|
|
.feature-text p {
|
|
font-size: 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: 20px;
|
|
right: -35px;
|
|
background: var(--gold);
|
|
color: var(--dark);
|
|
padding: 5px 40px;
|
|
font-size: 0.75rem;
|
|
font-weight: 700;
|
|
letter-spacing: 1px;
|
|
transform: rotate(45deg);
|
|
z-index: 2;
|
|
}
|
|
.room-image {
|
|
position: relative;
|
|
height: 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: 15px;
|
|
left: 15px;
|
|
background: rgba(10,77,104,0.9);
|
|
color: #fff;
|
|
padding: 6px 16px;
|
|
border-radius: 50px;
|
|
font-size: 0.8rem;
|
|
font-weight: 600;
|
|
letter-spacing: 1px;
|
|
text-transform: uppercase;
|
|
}
|
|
.room-body {
|
|
padding: 30px;
|
|
flex: 1;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
.room-name {
|
|
font-size: 1.5rem;
|
|
font-weight: 700;
|
|
margin-bottom: 10px;
|
|
color: var(--dark);
|
|
}
|
|
.room-desc {
|
|
font-size: 0.9rem;
|
|
color: #666;
|
|
line-height: 1.6;
|
|
margin-bottom: 20px;
|
|
flex: 1;
|
|
}
|
|
.room-features {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 10px;
|
|
margin-bottom: 20px;
|
|
}
|
|
.room-feature-tag {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 5px;
|
|
background: var(--light);
|
|
padding: 6px 12px;
|
|
border-radius: 8px;
|
|
font-size: 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: 20px;
|
|
border-top: 1px solid #eee;
|
|
}
|
|
.room-price {
|
|
font-family: 'Playfair Display', serif;
|
|
}
|
|
.room-price .amount {
|
|
font-size: 1.8rem;
|
|
font-weight: 700;
|
|
color: var(--primary);
|
|
}
|
|
.room-price .period {
|
|
font-size: 0.85rem;
|
|
color: #999;
|
|
}
|
|
.btn-book {
|
|
background: var(--primary);
|
|
color: #fff;
|
|
border: none;
|
|
padding: 10px 25px;
|
|
border-radius: 50px;
|
|
font-weight: 600;
|
|
font-size: 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(4, 1fr);
|
|
grid-template-rows: repeat(2, 250px);
|
|
gap: 15px;
|
|
}
|
|
.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: 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: 30px;
|
|
}
|
|
.activity-icon {
|
|
width: 50px;
|
|
height: 50px;
|
|
background: var(--gold);
|
|
border-radius: 50%;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
color: var(--dark);
|
|
font-size: 1.2rem;
|
|
margin-bottom: 15px;
|
|
}
|
|
.activity-title {
|
|
font-size: 1.5rem;
|
|
color: #fff;
|
|
font-weight: 700;
|
|
margin-bottom: 8px;
|
|
}
|
|
.activity-desc {
|
|
color: rgba(255,255,255,0.8);
|
|
font-size: 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: 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: 1.1rem;
|
|
}
|
|
.review-text {
|
|
font-size: 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: 50px;
|
|
height: 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: 1.1rem;
|
|
}
|
|
.review-name {
|
|
font-weight: 600;
|
|
color: #fff;
|
|
margin-bottom: 3px;
|
|
}
|
|
.review-date {
|
|
font-size: 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: 800px;
|
|
margin: 0 auto;
|
|
}
|
|
.host-image {
|
|
height: 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: 200px;
|
|
height: 200px;
|
|
border-radius: 50%;
|
|
background: rgba(212,168,67,0.15);
|
|
top: 50%;
|
|
left: 50%;
|
|
transform: translate(-50%, -50%);
|
|
}
|
|
.host-image i {
|
|
font-size: 5rem;
|
|
color: var(--gold);
|
|
position: relative;
|
|
z-index: 1;
|
|
}
|
|
.host-body {
|
|
padding: 40px;
|
|
text-align: center;
|
|
}
|
|
.host-body h3 {
|
|
font-size: 1.8rem;
|
|
margin-bottom: 15px;
|
|
}
|
|
.host-body p {
|
|
font-size: 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: 15px 35px;
|
|
border-radius: 50px;
|
|
font-weight: 700;
|
|
font-size: 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: 20px;
|
|
margin-bottom: 30px;
|
|
}
|
|
.contact-icon {
|
|
width: 55px;
|
|
height: 55px;
|
|
min-width: 55px;
|
|
background: rgba(212,168,67,0.15);
|
|
border-radius: 15px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
color: var(--gold);
|
|
font-size: 1.3rem;
|
|
}
|
|
.contact-label {
|
|
font-size: 0.8rem;
|
|
text-transform: uppercase;
|
|
letter-spacing: 1px;
|
|
color: rgba(255,255,255,0.5);
|
|
margin-bottom: 5px;
|
|
}
|
|
.contact-value {
|
|
font-size: 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: 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: 3rem;
|
|
color: var(--gold);
|
|
}
|
|
.map-container span {
|
|
color: rgba(255,255,255,0.6);
|
|
font-size: 0.9rem;
|
|
}
|
|
|
|
/* Footer */
|
|
.footer {
|
|
background: #0d0d1a;
|
|
color: #fff;
|
|
padding: 60px 0 30px;
|
|
}
|
|
.footer-brand {
|
|
font-family: 'Playfair Display', serif;
|
|
font-size: 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: 0.9rem;
|
|
line-height: 1.7;
|
|
margin-bottom: 20px;
|
|
}
|
|
.footer-title {
|
|
font-size: 1rem;
|
|
font-weight: 700;
|
|
text-transform: uppercase;
|
|
letter-spacing: 1px;
|
|
margin-bottom: 20px;
|
|
color: var(--gold);
|
|
}
|
|
.footer-links {
|
|
list-style: none;
|
|
padding: 0;
|
|
}
|
|
.footer-links li {
|
|
margin-bottom: 10px;
|
|
}
|
|
.footer-links a {
|
|
color: rgba(255,255,255,0.6);
|
|
text-decoration: none;
|
|
font-size: 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: 40px;
|
|
height: 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: 40px;
|
|
padding-top: 20px;
|
|
text-align: center;
|
|
color: rgba(255,255,255,0.4);
|
|
font-size: 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.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: 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: 15rem;
|
|
font-weight: 700;
|
|
color: rgba(255,255,255,0.1);
|
|
}
|
|
.cta-banner h2 {
|
|
font-size: 2.5rem;
|
|
color: var(--dark);
|
|
margin-bottom: 15px;
|
|
position: relative;
|
|
}
|
|
.cta-banner p {
|
|
color: rgba(26,26,46,0.7);
|
|
font-size: 1.1rem;
|
|
margin-bottom: 30px;
|
|
position: relative;
|
|
}
|
|
.btn-dark-cta {
|
|
background: var(--dark);
|
|
color: #fff;
|
|
border: none;
|
|
padding: 15px 45px;
|
|
border-radius: 50px;
|
|
font-weight: 700;
|
|
font-size: 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: 25px 30px;
|
|
}
|
|
.modal-header .btn-close {
|
|
filter: invert(1);
|
|
}
|
|
.modal-body {
|
|
padding: 30px;
|
|
}
|
|
.form-control, .form-select {
|
|
border-radius: 12px;
|
|
border: 2px solid #e0e0e0;
|
|
padding: 12px 18px;
|
|
font-size: 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: 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: 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: 30px;
|
|
right: 30px;
|
|
width: 60px;
|
|
height: 60px;
|
|
background: #25d366;
|
|
border-radius: 50%;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
color: #fff;
|
|
font-size: 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 */
|
|
@media (max-width: 991px) {
|
|
.hero-title { font-size: 3rem; }
|
|
.section-title { font-size: 2.2rem; }
|
|
.gallery-grid {
|
|
grid-template-columns: repeat(2, 1fr);
|
|
grid-template-rows: auto;
|
|
}
|
|
.gallery-item:nth-child(1) {
|
|
grid-column: span 2;
|
|
grid-row: span 1;
|
|
}
|
|
.gallery-item { height: 200px; }
|
|
.stat-divider { display: none; }
|
|
.cta-banner { padding: 40px 25px; }
|
|
.cta-banner h2 { font-size: 1.8rem; }
|
|
}
|
|
@media (max-width: 767px) {
|
|
.hero-title { font-size: 2.5rem; }
|
|
.hero-subtitle { font-size: 1rem; }
|
|
.section { padding: 60px 0; }
|
|
.feature-grid { grid-template-columns: 1fr; }
|
|
.gallery-grid {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
.gallery-item:nth-child(1) {
|
|
grid-column: span 1;
|
|
}
|
|
.hero-stats .row > div { margin-bottom: 20px; }
|
|
.room-footer { flex-direction: column; gap: 15px; text-align: center; }
|
|
.activity-card { height: 280px; }
|
|
.host-card .host-body { padding: 25px; }
|
|
}
|
|
|
|
/* 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; }
|
|
}
|