1230 lines
22 KiB
CSS
1230 lines
22 KiB
CSS
/* Bento Grid Layout Styles */
|
|
|
|
:root {
|
|
--primary-color: #1e3a5f;
|
|
--accent-color: #dc2626;
|
|
--text-primary: #1e293b;
|
|
--text-secondary: #64748b;
|
|
--bg-primary: #ffffff;
|
|
--bg-secondary: #f8fafc;
|
|
--border-color: #e2e8f0;
|
|
--shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
|
|
--shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
|
|
--shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
|
|
--shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
|
|
--grid-gap: 1.5rem;
|
|
--transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
|
|
}
|
|
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
body {
|
|
font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
|
|
background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
|
|
min-height: 100vh;
|
|
color: var(--text-primary);
|
|
overflow-x: hidden;
|
|
}
|
|
|
|
/* Minimal Header */
|
|
.minimal-header {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
background: rgba(255, 255, 255, 0.95);
|
|
backdrop-filter: blur(10px);
|
|
z-index: 100;
|
|
border-bottom: 1px solid var(--border-color);
|
|
transition: var(--transition);
|
|
}
|
|
|
|
.header-content {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
padding: 1rem 2rem;
|
|
max-width: 1600px;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.logo-section {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 0.75rem;
|
|
}
|
|
|
|
.logo-img {
|
|
width: 40px;
|
|
height: 40px;
|
|
border-radius: 50%;
|
|
object-fit: cover;
|
|
}
|
|
|
|
.logo-text {
|
|
font-size: 1.25rem;
|
|
font-weight: 700;
|
|
font-family: 'Playfair Display', serif;
|
|
color: var(--primary-color);
|
|
}
|
|
|
|
.header-actions {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 1rem;
|
|
}
|
|
|
|
.filter-toggle {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 0.5rem;
|
|
padding: 0.5rem 1rem;
|
|
background: var(--bg-secondary);
|
|
border: 1px solid var(--border-color);
|
|
border-radius: 8px;
|
|
cursor: pointer;
|
|
transition: var(--transition);
|
|
font-size: 0.875rem;
|
|
font-weight: 500;
|
|
}
|
|
|
|
.filter-toggle:hover {
|
|
background: var(--primary-color);
|
|
color: white;
|
|
border-color: var(--primary-color);
|
|
}
|
|
|
|
.menu-toggle {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 4px;
|
|
padding: 0.5rem;
|
|
background: transparent;
|
|
border: none;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.menu-toggle span {
|
|
width: 24px;
|
|
height: 2px;
|
|
background: var(--text-primary);
|
|
transition: var(--transition);
|
|
}
|
|
|
|
.menu-toggle:hover span {
|
|
background: var(--accent-color);
|
|
}
|
|
|
|
/* Filter Bar */
|
|
.filter-bar {
|
|
display: flex;
|
|
gap: 0.75rem;
|
|
padding: 0 2rem 1rem;
|
|
max-width: 1600px;
|
|
margin: 0 auto;
|
|
overflow-x: auto;
|
|
scrollbar-width: none;
|
|
opacity: 0;
|
|
max-height: 0;
|
|
transition: all 0.3s ease;
|
|
}
|
|
|
|
.filter-bar.active {
|
|
opacity: 1;
|
|
max-height: 100px;
|
|
}
|
|
|
|
.filter-bar::-webkit-scrollbar {
|
|
display: none;
|
|
}
|
|
|
|
.filter-chip {
|
|
padding: 0.5rem 1rem;
|
|
background: white;
|
|
border: 1px solid var(--border-color);
|
|
border-radius: 20px;
|
|
font-size: 0.875rem;
|
|
font-weight: 500;
|
|
cursor: pointer;
|
|
transition: var(--transition);
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.filter-chip:hover {
|
|
background: var(--bg-secondary);
|
|
transform: translateY(-2px);
|
|
}
|
|
|
|
.filter-chip.active {
|
|
background: var(--primary-color);
|
|
color: white;
|
|
border-color: var(--primary-color);
|
|
}
|
|
|
|
/* Full Screen Menu Overlay */
|
|
.menu-overlay {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
background: linear-gradient(135deg, var(--primary-color) 0%, #0f172a 100%);
|
|
z-index: 200;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
opacity: 0;
|
|
visibility: hidden;
|
|
transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
|
|
}
|
|
|
|
.menu-overlay.active {
|
|
opacity: 1;
|
|
visibility: visible;
|
|
}
|
|
|
|
.menu-content {
|
|
text-align: center;
|
|
color: white;
|
|
}
|
|
|
|
.menu-close {
|
|
position: absolute;
|
|
top: 2rem;
|
|
right: 2rem;
|
|
background: transparent;
|
|
border: none;
|
|
color: white;
|
|
font-size: 3rem;
|
|
cursor: pointer;
|
|
transition: var(--transition);
|
|
}
|
|
|
|
.menu-close:hover {
|
|
transform: rotate(90deg);
|
|
}
|
|
|
|
.menu-nav {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 2rem;
|
|
}
|
|
|
|
.menu-link {
|
|
position: relative;
|
|
color: white;
|
|
text-decoration: none;
|
|
font-size: 3rem;
|
|
font-weight: 700;
|
|
font-family: 'Playfair Display', serif;
|
|
transition: var(--transition);
|
|
overflow: hidden;
|
|
}
|
|
|
|
.menu-link::after {
|
|
content: attr(data-text);
|
|
position: absolute;
|
|
top: 100%;
|
|
left: 0;
|
|
width: 100%;
|
|
color: var(--accent-color);
|
|
transition: var(--transition);
|
|
}
|
|
|
|
.menu-link:hover::after {
|
|
top: 0;
|
|
}
|
|
|
|
.menu-footer {
|
|
margin-top: 4rem;
|
|
font-size: 0.875rem;
|
|
opacity: 0.8;
|
|
}
|
|
|
|
.menu-contact {
|
|
display: flex;
|
|
gap: 2rem;
|
|
justify-content: center;
|
|
margin-top: 1rem;
|
|
}
|
|
|
|
.menu-contact a {
|
|
color: white;
|
|
text-decoration: none;
|
|
transition: var(--transition);
|
|
}
|
|
|
|
.menu-contact a:hover {
|
|
color: var(--accent-color);
|
|
}
|
|
|
|
/* Bento Grid Container */
|
|
.bento-container {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
|
|
grid-auto-rows: 250px;
|
|
gap: var(--grid-gap);
|
|
padding: 120px 2rem 2rem;
|
|
max-width: 1600px;
|
|
margin: 0 auto;
|
|
animation: fadeInUp 0.6s ease;
|
|
}
|
|
|
|
@keyframes fadeInUp {
|
|
from {
|
|
opacity: 0;
|
|
transform: translateY(30px);
|
|
}
|
|
to {
|
|
opacity: 1;
|
|
transform: translateY(0);
|
|
}
|
|
}
|
|
|
|
/* Bento Tile Base */
|
|
.bento-tile {
|
|
background: white;
|
|
border-radius: 20px;
|
|
overflow: hidden;
|
|
position: relative;
|
|
transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
|
|
cursor: pointer;
|
|
box-shadow: var(--shadow-md);
|
|
animation: tileAppear 0.6s ease backwards;
|
|
}
|
|
|
|
.bento-tile:nth-child(odd) {
|
|
animation-delay: 0.1s;
|
|
}
|
|
|
|
.bento-tile:nth-child(even) {
|
|
animation-delay: 0.2s;
|
|
}
|
|
|
|
@keyframes tileAppear {
|
|
from {
|
|
opacity: 0;
|
|
transform: scale(0.9);
|
|
}
|
|
to {
|
|
opacity: 1;
|
|
transform: scale(1);
|
|
}
|
|
}
|
|
|
|
.bento-tile:hover {
|
|
transform: translateY(-8px) scale(1.02);
|
|
box-shadow: var(--shadow-xl);
|
|
}
|
|
|
|
/* Tile Sizes */
|
|
.tile-small {
|
|
grid-column: span 1;
|
|
grid-row: span 1;
|
|
}
|
|
|
|
.tile-medium {
|
|
grid-column: span 2;
|
|
grid-row: span 1;
|
|
}
|
|
|
|
.tile-large {
|
|
grid-column: span 2;
|
|
grid-row: span 2;
|
|
}
|
|
|
|
@media (max-width: 768px) {
|
|
.tile-medium,
|
|
.tile-large {
|
|
grid-column: span 1;
|
|
}
|
|
|
|
.tile-large {
|
|
grid-row: span 2;
|
|
}
|
|
}
|
|
|
|
/* Hero Tile */
|
|
.tile-hero {
|
|
background: linear-gradient(135deg, var(--primary-color) 0%, #0f172a 100%);
|
|
color: white;
|
|
display: flex;
|
|
align-items: center;
|
|
padding: 3rem;
|
|
}
|
|
|
|
.tile-hero .tile-content {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
.hero-text {
|
|
flex: 1;
|
|
z-index: 2;
|
|
}
|
|
|
|
.hero-title {
|
|
font-family: 'Playfair Display', serif;
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
.hero-subtitle {
|
|
display: block;
|
|
font-size: 1.25rem;
|
|
font-weight: 400;
|
|
opacity: 0.9;
|
|
margin-bottom: 0.5rem;
|
|
}
|
|
|
|
.hero-main {
|
|
display: block;
|
|
font-size: 3rem;
|
|
font-weight: 700;
|
|
line-height: 1.1;
|
|
}
|
|
|
|
.hero-description {
|
|
font-size: 1.125rem;
|
|
opacity: 0.9;
|
|
margin-top: 1rem;
|
|
}
|
|
|
|
.hero-visual {
|
|
position: absolute;
|
|
top: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
left: 50%;
|
|
overflow: hidden;
|
|
opacity: 0.3;
|
|
}
|
|
|
|
.hero-video,
|
|
.hero-visual img {
|
|
width: 100%;
|
|
height: 100%;
|
|
object-fit: cover;
|
|
}
|
|
|
|
/* Yacht Tiles */
|
|
.tile-yacht {
|
|
padding: 0;
|
|
}
|
|
|
|
.tile-yacht .tile-content {
|
|
height: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.yacht-badge {
|
|
position: absolute;
|
|
top: 1rem;
|
|
right: 1rem;
|
|
background: var(--accent-color);
|
|
color: white;
|
|
padding: 0.25rem 0.75rem;
|
|
border-radius: 20px;
|
|
font-size: 0.75rem;
|
|
font-weight: 600;
|
|
z-index: 10;
|
|
}
|
|
|
|
.yacht-image {
|
|
position: relative;
|
|
height: 60%;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.yacht-image img {
|
|
width: 100%;
|
|
height: 100%;
|
|
object-fit: cover;
|
|
transition: var(--transition);
|
|
}
|
|
|
|
.tile-yacht:hover .yacht-image img {
|
|
transform: scale(1.1);
|
|
}
|
|
|
|
.yacht-overlay {
|
|
position: absolute;
|
|
inset: 0;
|
|
background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%);
|
|
display: flex;
|
|
align-items: flex-end;
|
|
justify-content: center;
|
|
padding: 1rem;
|
|
opacity: 0;
|
|
transition: var(--transition);
|
|
}
|
|
|
|
.tile-yacht:hover .yacht-overlay {
|
|
opacity: 1;
|
|
}
|
|
|
|
.quick-view-btn {
|
|
padding: 0.75rem 1.5rem;
|
|
background: white;
|
|
border: none;
|
|
border-radius: 8px;
|
|
font-weight: 600;
|
|
cursor: pointer;
|
|
transition: var(--transition);
|
|
}
|
|
|
|
.quick-view-btn:hover {
|
|
background: var(--accent-color);
|
|
color: white;
|
|
}
|
|
|
|
.yacht-info {
|
|
padding: 1.5rem;
|
|
flex: 1;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.yacht-name {
|
|
font-size: 1.25rem;
|
|
font-weight: 700;
|
|
margin-bottom: 0.5rem;
|
|
font-family: 'Playfair Display', serif;
|
|
}
|
|
|
|
.yacht-specs {
|
|
display: flex;
|
|
gap: 0.5rem;
|
|
font-size: 0.875rem;
|
|
color: var(--text-secondary);
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
.yacht-explore {
|
|
background: transparent;
|
|
border: 2px solid var(--primary-color);
|
|
color: var(--primary-color);
|
|
padding: 0.5rem 1rem;
|
|
border-radius: 8px;
|
|
font-weight: 600;
|
|
cursor: pointer;
|
|
transition: var(--transition);
|
|
}
|
|
|
|
.yacht-explore:hover {
|
|
background: var(--primary-color);
|
|
color: white;
|
|
}
|
|
|
|
/* Service Tiles */
|
|
.tile-service {
|
|
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
|
|
color: white;
|
|
padding: 2rem;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.tile-service .tile-content {
|
|
text-align: center;
|
|
}
|
|
|
|
.service-icon {
|
|
font-size: 3rem;
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
.service-title {
|
|
font-size: 1.5rem;
|
|
font-weight: 700;
|
|
margin-bottom: 0.5rem;
|
|
font-family: 'Playfair Display', serif;
|
|
}
|
|
|
|
.service-desc {
|
|
font-size: 0.875rem;
|
|
opacity: 0.9;
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
.service-link {
|
|
color: white;
|
|
text-decoration: none;
|
|
font-weight: 600;
|
|
border-bottom: 2px solid white;
|
|
transition: var(--transition);
|
|
}
|
|
|
|
.service-link:hover {
|
|
border-color: transparent;
|
|
}
|
|
|
|
/* Testimonial Tile */
|
|
.tile-testimonial {
|
|
background: var(--bg-secondary);
|
|
padding: 1.5rem;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.tile-testimonial .tile-content {
|
|
text-align: center;
|
|
}
|
|
|
|
.stars {
|
|
color: #fbbf24;
|
|
font-size: 1.25rem;
|
|
margin-bottom: 0.5rem;
|
|
}
|
|
|
|
.testimonial-text {
|
|
font-size: 0.875rem;
|
|
font-style: italic;
|
|
margin-bottom: 0.5rem;
|
|
color: var(--text-primary);
|
|
}
|
|
|
|
.testimonial-author {
|
|
font-size: 0.75rem;
|
|
font-weight: 600;
|
|
color: var(--text-secondary);
|
|
}
|
|
|
|
/* Destination Tile */
|
|
.tile-destination {
|
|
padding: 0;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.destination-image {
|
|
position: relative;
|
|
height: 100%;
|
|
}
|
|
|
|
.destination-image img {
|
|
width: 100%;
|
|
height: 100%;
|
|
object-fit: cover;
|
|
transition: var(--transition);
|
|
}
|
|
|
|
.tile-destination:hover .destination-image img {
|
|
transform: scale(1.1);
|
|
}
|
|
|
|
.destination-overlay {
|
|
position: absolute;
|
|
inset: 0;
|
|
background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%);
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: flex-end;
|
|
padding: 1.5rem;
|
|
color: white;
|
|
}
|
|
|
|
.destination-name {
|
|
font-size: 1.5rem;
|
|
font-weight: 700;
|
|
margin-bottom: 0.25rem;
|
|
font-family: 'Playfair Display', serif;
|
|
}
|
|
|
|
.destination-desc {
|
|
font-size: 0.875rem;
|
|
opacity: 0.9;
|
|
}
|
|
|
|
/* Stat Tile */
|
|
.tile-stat {
|
|
background: var(--primary-color);
|
|
color: white;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
text-align: center;
|
|
}
|
|
|
|
.stat-number {
|
|
font-size: 2.5rem;
|
|
font-weight: 800;
|
|
margin-bottom: 0.25rem;
|
|
}
|
|
|
|
.stat-label {
|
|
font-size: 0.875rem;
|
|
opacity: 0.9;
|
|
}
|
|
|
|
/* Experience Tile */
|
|
.tile-experience {
|
|
padding: 0;
|
|
}
|
|
|
|
.tile-experience .tile-content {
|
|
display: grid;
|
|
grid-template-columns: 1fr 1fr;
|
|
height: 100%;
|
|
}
|
|
|
|
.experience-visual {
|
|
position: relative;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.experience-visual img {
|
|
width: 100%;
|
|
height: 100%;
|
|
object-fit: cover;
|
|
transition: var(--transition);
|
|
}
|
|
|
|
.tile-experience:hover .experience-visual img {
|
|
transform: scale(1.05);
|
|
}
|
|
|
|
.experience-info {
|
|
padding: 2rem;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
}
|
|
|
|
.experience-tag {
|
|
display: inline-block;
|
|
padding: 0.25rem 0.75rem;
|
|
background: var(--accent-color);
|
|
color: white;
|
|
border-radius: 20px;
|
|
font-size: 0.75rem;
|
|
font-weight: 600;
|
|
margin-bottom: 1rem;
|
|
width: fit-content;
|
|
}
|
|
|
|
.experience-title {
|
|
font-size: 1.5rem;
|
|
font-weight: 700;
|
|
margin-bottom: 0.75rem;
|
|
font-family: 'Playfair Display', serif;
|
|
}
|
|
|
|
.experience-desc {
|
|
color: var(--text-secondary);
|
|
margin-bottom: 1.5rem;
|
|
}
|
|
|
|
.experience-btn {
|
|
padding: 0.75rem 1.5rem;
|
|
background: var(--primary-color);
|
|
color: white;
|
|
border: none;
|
|
border-radius: 8px;
|
|
font-weight: 600;
|
|
cursor: pointer;
|
|
transition: var(--transition);
|
|
}
|
|
|
|
.experience-btn:hover {
|
|
background: var(--accent-color);
|
|
}
|
|
|
|
/* Service Mini Tile */
|
|
.tile-service-mini {
|
|
background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
|
|
color: white;
|
|
padding: 1.5rem;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.tile-service-mini .tile-content {
|
|
text-align: center;
|
|
}
|
|
|
|
.service-mini-icon {
|
|
font-size: 2rem;
|
|
margin-bottom: 0.5rem;
|
|
}
|
|
|
|
.tile-service-mini h4 {
|
|
font-size: 1rem;
|
|
margin-bottom: 0.5rem;
|
|
}
|
|
|
|
.mini-link {
|
|
color: white;
|
|
text-decoration: none;
|
|
font-size: 1.5rem;
|
|
transition: var(--transition);
|
|
}
|
|
|
|
.mini-link:hover {
|
|
transform: translateX(5px);
|
|
}
|
|
|
|
/* Video Tile */
|
|
.tile-video {
|
|
padding: 0;
|
|
position: relative;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.tile-video video {
|
|
width: 100%;
|
|
height: 100%;
|
|
object-fit: cover;
|
|
}
|
|
|
|
.video-overlay {
|
|
position: absolute;
|
|
inset: 0;
|
|
background: rgba(0,0,0,0.4);
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
opacity: 0;
|
|
transition: var(--transition);
|
|
}
|
|
|
|
.tile-video:hover .video-overlay {
|
|
opacity: 1;
|
|
}
|
|
|
|
.play-btn {
|
|
padding: 1rem 2rem;
|
|
background: white;
|
|
border: none;
|
|
border-radius: 50px;
|
|
font-weight: 600;
|
|
cursor: pointer;
|
|
transition: var(--transition);
|
|
}
|
|
|
|
.play-btn:hover {
|
|
background: var(--accent-color);
|
|
color: white;
|
|
transform: scale(1.1);
|
|
}
|
|
|
|
/* CTA Tile */
|
|
.tile-cta {
|
|
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
|
|
color: white;
|
|
padding: 2rem;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.tile-cta .tile-content {
|
|
text-align: center;
|
|
}
|
|
|
|
.cta-title {
|
|
font-size: 1.75rem;
|
|
font-weight: 700;
|
|
margin-bottom: 0.5rem;
|
|
font-family: 'Playfair Display', serif;
|
|
}
|
|
|
|
.cta-desc {
|
|
margin-bottom: 1.5rem;
|
|
opacity: 0.9;
|
|
}
|
|
|
|
.cta-buttons {
|
|
display: flex;
|
|
gap: 1rem;
|
|
justify-content: center;
|
|
}
|
|
|
|
.btn-primary,
|
|
.btn-secondary {
|
|
padding: 0.75rem 1.5rem;
|
|
border: none;
|
|
border-radius: 8px;
|
|
font-weight: 600;
|
|
cursor: pointer;
|
|
transition: var(--transition);
|
|
}
|
|
|
|
.btn-primary {
|
|
background: white;
|
|
color: var(--primary-color);
|
|
}
|
|
|
|
.btn-primary:hover {
|
|
background: var(--accent-color);
|
|
color: white;
|
|
}
|
|
|
|
.btn-secondary {
|
|
background: transparent;
|
|
color: white;
|
|
border: 2px solid white;
|
|
}
|
|
|
|
.btn-secondary:hover {
|
|
background: white;
|
|
color: var(--primary-color);
|
|
}
|
|
|
|
/* Social Tile */
|
|
.tile-social {
|
|
background: linear-gradient(135deg, #e1306c 0%, #fd1d1d 50%, #f77737 100%);
|
|
color: white;
|
|
padding: 1.5rem;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.tile-social .tile-content {
|
|
text-align: center;
|
|
}
|
|
|
|
.social-icon {
|
|
margin-bottom: 0.5rem;
|
|
}
|
|
|
|
.social-handle {
|
|
font-weight: 600;
|
|
margin-bottom: 0.5rem;
|
|
}
|
|
|
|
.social-link {
|
|
color: white;
|
|
text-decoration: none;
|
|
font-weight: 600;
|
|
border-bottom: 2px solid white;
|
|
}
|
|
|
|
/* Weather Tile */
|
|
.tile-weather {
|
|
background: linear-gradient(135deg, #89f7fe 0%, #66a6ff 100%);
|
|
color: white;
|
|
padding: 1.5rem;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.tile-weather .tile-content {
|
|
text-align: center;
|
|
}
|
|
|
|
.weather-icon {
|
|
font-size: 2rem;
|
|
margin-bottom: 0.5rem;
|
|
}
|
|
|
|
.weather-temp {
|
|
font-size: 1.5rem;
|
|
font-weight: 700;
|
|
margin-bottom: 0.25rem;
|
|
}
|
|
|
|
.weather-desc {
|
|
font-size: 0.875rem;
|
|
opacity: 0.9;
|
|
}
|
|
|
|
/* Offer Tile */
|
|
.tile-offer {
|
|
background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
|
|
color: var(--text-primary);
|
|
padding: 2rem;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.offer-badge {
|
|
position: absolute;
|
|
top: 1rem;
|
|
right: 1rem;
|
|
background: var(--accent-color);
|
|
color: white;
|
|
padding: 0.25rem 0.75rem;
|
|
border-radius: 20px;
|
|
font-size: 0.75rem;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.offer-title {
|
|
font-size: 1.5rem;
|
|
font-weight: 700;
|
|
margin-bottom: 0.5rem;
|
|
font-family: 'Playfair Display', serif;
|
|
}
|
|
|
|
.offer-desc {
|
|
margin-bottom: 1rem;
|
|
color: var(--text-secondary);
|
|
}
|
|
|
|
.offer-btn {
|
|
padding: 0.75rem 1.5rem;
|
|
background: white;
|
|
color: var(--primary-color);
|
|
border: none;
|
|
border-radius: 8px;
|
|
font-weight: 600;
|
|
cursor: pointer;
|
|
transition: var(--transition);
|
|
}
|
|
|
|
.offer-btn:hover {
|
|
background: var(--primary-color);
|
|
color: white;
|
|
}
|
|
|
|
/* Floating Action Button */
|
|
.fab-container {
|
|
position: fixed;
|
|
bottom: 2rem;
|
|
right: 2rem;
|
|
z-index: 90;
|
|
}
|
|
|
|
.fab {
|
|
width: 60px;
|
|
height: 60px;
|
|
border-radius: 50%;
|
|
background: var(--accent-color);
|
|
color: white;
|
|
border: none;
|
|
box-shadow: var(--shadow-lg);
|
|
cursor: pointer;
|
|
transition: var(--transition);
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.fab:hover {
|
|
transform: scale(1.1) rotate(45deg);
|
|
background: var(--primary-color);
|
|
}
|
|
|
|
.fab-menu {
|
|
position: absolute;
|
|
bottom: 70px;
|
|
right: 0;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 0.5rem;
|
|
opacity: 0;
|
|
visibility: hidden;
|
|
transition: var(--transition);
|
|
}
|
|
|
|
.fab-menu.active {
|
|
opacity: 1;
|
|
visibility: visible;
|
|
}
|
|
|
|
.fab-option {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 0.5rem;
|
|
padding: 0.75rem 1rem;
|
|
background: white;
|
|
border: 1px solid var(--border-color);
|
|
border-radius: 50px;
|
|
box-shadow: var(--shadow-md);
|
|
cursor: pointer;
|
|
transition: var(--transition);
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.fab-option:hover {
|
|
background: var(--primary-color);
|
|
color: white;
|
|
transform: translateX(-10px);
|
|
}
|
|
|
|
/* Wishlist Sidebar */
|
|
.wishlist-sidebar {
|
|
position: fixed;
|
|
top: 0;
|
|
right: -400px;
|
|
width: 400px;
|
|
height: 100vh;
|
|
background: white;
|
|
box-shadow: var(--shadow-xl);
|
|
z-index: 150;
|
|
transition: var(--transition);
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.wishlist-sidebar.active {
|
|
right: 0;
|
|
}
|
|
|
|
.wishlist-header {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
padding: 1.5rem;
|
|
border-bottom: 1px solid var(--border-color);
|
|
}
|
|
|
|
.wishlist-close {
|
|
background: transparent;
|
|
border: none;
|
|
font-size: 2rem;
|
|
cursor: pointer;
|
|
transition: var(--transition);
|
|
}
|
|
|
|
.wishlist-close:hover {
|
|
transform: rotate(90deg);
|
|
}
|
|
|
|
.wishlist-content {
|
|
flex: 1;
|
|
padding: 1.5rem;
|
|
overflow-y: auto;
|
|
}
|
|
|
|
.wishlist-empty {
|
|
text-align: center;
|
|
color: var(--text-secondary);
|
|
padding: 2rem;
|
|
}
|
|
|
|
.wishlist-footer {
|
|
padding: 1.5rem;
|
|
border-top: 1px solid var(--border-color);
|
|
}
|
|
|
|
.wishlist-inquire {
|
|
width: 100%;
|
|
padding: 1rem;
|
|
background: var(--primary-color);
|
|
color: white;
|
|
border: none;
|
|
border-radius: 8px;
|
|
font-weight: 600;
|
|
cursor: pointer;
|
|
transition: var(--transition);
|
|
}
|
|
|
|
.wishlist-inquire:hover {
|
|
background: var(--accent-color);
|
|
}
|
|
|
|
/* Layout Switcher */
|
|
.layout-switcher {
|
|
position: fixed;
|
|
bottom: 2rem;
|
|
left: 50%;
|
|
transform: translateX(-50%);
|
|
display: flex;
|
|
gap: 0.5rem;
|
|
background: white;
|
|
padding: 0.5rem;
|
|
border-radius: 50px;
|
|
box-shadow: var(--shadow-lg);
|
|
z-index: 90;
|
|
}
|
|
|
|
.layout-btn {
|
|
padding: 0.5rem 1rem;
|
|
background: transparent;
|
|
border: none;
|
|
border-radius: 50px;
|
|
font-size: 0.875rem;
|
|
font-weight: 500;
|
|
cursor: pointer;
|
|
transition: var(--transition);
|
|
}
|
|
|
|
.layout-btn:hover {
|
|
background: var(--bg-secondary);
|
|
}
|
|
|
|
.layout-btn.active {
|
|
background: var(--primary-color);
|
|
color: white;
|
|
}
|
|
|
|
/* Filter Animations */
|
|
.bento-tile.hiding {
|
|
opacity: 0;
|
|
transform: scale(0.8);
|
|
pointer-events: none;
|
|
}
|
|
|
|
.bento-tile.showing {
|
|
animation: showTile 0.5s ease forwards;
|
|
}
|
|
|
|
@keyframes showTile {
|
|
from {
|
|
opacity: 0;
|
|
transform: scale(0.8);
|
|
}
|
|
to {
|
|
opacity: 1;
|
|
transform: scale(1);
|
|
}
|
|
}
|
|
|
|
/* Responsive Design */
|
|
@media (max-width: 1200px) {
|
|
.bento-container {
|
|
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
|
|
grid-auto-rows: 200px;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 768px) {
|
|
.bento-container {
|
|
grid-template-columns: 1fr;
|
|
padding: 100px 1rem 1rem;
|
|
}
|
|
|
|
.tile-medium {
|
|
grid-column: span 1;
|
|
}
|
|
|
|
.tile-large {
|
|
grid-column: span 1;
|
|
grid-row: span 2;
|
|
}
|
|
|
|
.hero-main {
|
|
font-size: 2rem;
|
|
}
|
|
|
|
.tile-experience .tile-content {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
.wishlist-sidebar {
|
|
width: 100%;
|
|
right: -100%;
|
|
}
|
|
|
|
.layout-switcher {
|
|
flex-direction: column;
|
|
left: 1rem;
|
|
transform: none;
|
|
bottom: 5rem;
|
|
}
|
|
} |