1454 lines
28 KiB
CSS
1454 lines
28 KiB
CSS
:root {
|
|
--primary-dark: #4F4747;
|
|
--primary-light: #EBEBDE;
|
|
--primary-mid: #777764;
|
|
--accent-orange: #F57C00;
|
|
--accent-teal: #26A69A;
|
|
--accent-green: #66BB6A;
|
|
}
|
|
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
|
|
}
|
|
|
|
body {
|
|
background-color: var(--primary-light);
|
|
color: var(--primary-dark);
|
|
min-height: 100vh;
|
|
position: relative;
|
|
overflow-x: hidden;
|
|
}
|
|
|
|
/* Hexagonal Canvas Background */
|
|
#hexCanvas {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100vw;
|
|
height: 100vh;
|
|
z-index: -1;
|
|
pointer-events: none;
|
|
}
|
|
|
|
/* Top Banner - Ultra Smooth Performance */
|
|
.top-banner {
|
|
background-color: rgba(235, 235, 222, 0.85);
|
|
color: var(--primary-dark);
|
|
padding: 5px 40px;
|
|
height: 90px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
z-index: 1001;
|
|
border-bottom: 3px solid var(--accent-orange);
|
|
overflow: hidden;
|
|
backdrop-filter: blur(10px);
|
|
-webkit-backdrop-filter: blur(10px);
|
|
|
|
/* Ultra-smooth transitions with hardware acceleration */
|
|
transition: height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
|
|
padding 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
|
|
background-color 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
|
|
|
|
/* Performance optimizations */
|
|
transform: translateZ(0);
|
|
-webkit-font-smoothing: antialiased;
|
|
|
|
/* Prevent sub-pixel rendering issues */
|
|
box-shadow: 0 0 0 rgba(0,0,0,0);
|
|
}
|
|
|
|
/* Scrolled state with smooth transitions */
|
|
.top-banner.scrolled {
|
|
height: 70px;
|
|
padding: 5px 30px;
|
|
background-color: rgba(235, 235, 222, 0.95);
|
|
backdrop-filter: blur(10px);
|
|
-webkit-backdrop-filter: blur(10px);
|
|
box-shadow: 0 2px 20px rgba(79, 71, 71, 0.1);
|
|
}
|
|
|
|
/* Fast scroll state for velocity-based transitions */
|
|
.top-banner.fast-scroll {
|
|
transition-duration: 0.2s;
|
|
}
|
|
|
|
.top-banner-left {
|
|
display: flex;
|
|
align-items: center;
|
|
flex: 1;
|
|
position: relative;
|
|
z-index: 2;
|
|
}
|
|
|
|
.top-banner-center {
|
|
display: flex;
|
|
justify-content: center;
|
|
flex: 2;
|
|
position: relative;
|
|
z-index: 2;
|
|
}
|
|
|
|
.top-banner-right {
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
flex: 1;
|
|
position: relative;
|
|
z-index: 2;
|
|
}
|
|
|
|
.banner-left {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 15px;
|
|
}
|
|
|
|
.banner-left #cursorToggle {
|
|
margin-right: 15px;
|
|
}
|
|
|
|
.logo-link {
|
|
text-decoration: none;
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 0;
|
|
margin-left: 0;
|
|
margin-right: 15px;
|
|
}
|
|
|
|
.logo {
|
|
height: 50px;
|
|
width: auto;
|
|
transition: height 0.3s ease-out;
|
|
}
|
|
|
|
.top-banner.scrolled .logo {
|
|
height: 40px;
|
|
}
|
|
|
|
.menu-toggle {
|
|
background: transparent;
|
|
border: 2px solid var(--primary-dark);
|
|
color: var(--primary-dark);
|
|
width: 45px;
|
|
height: 45px;
|
|
border-radius: 12px;
|
|
cursor: pointer;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
|
|
}
|
|
|
|
.top-banner.scrolled .menu-toggle,
|
|
.top-banner.scrolled #cursorToggle {
|
|
width: 35px;
|
|
height: 35px;
|
|
}
|
|
|
|
.opening-hours {
|
|
font-size: 14px;
|
|
color: var(--primary-mid);
|
|
background: rgba(79, 71, 71, 0.08);
|
|
padding: 10px 20px;
|
|
border-radius: 25px;
|
|
transition: font-size 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
|
|
padding 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
|
|
}
|
|
|
|
.top-banner.scrolled .opening-hours {
|
|
font-size: 12px;
|
|
padding: 8px 15px;
|
|
background: rgba(255, 255, 255, 0.1);
|
|
border: 1px solid rgba(255, 255, 255, 0.2);
|
|
border-radius: 25px;
|
|
padding: 8px 8px 8px 15px;
|
|
transition: all 0.3s ease;
|
|
order: 1;
|
|
width: 250px;
|
|
}
|
|
|
|
.search-container:hover {
|
|
background: rgba(255, 255, 255, 0.15);
|
|
border-color: rgba(255, 255, 255, 0.3);
|
|
}
|
|
|
|
.search-container form {
|
|
display: flex;
|
|
align-items: center;
|
|
width: 100%;
|
|
}
|
|
|
|
.search-field {
|
|
background: transparent;
|
|
border: none;
|
|
color: white;
|
|
font-size: 14px;
|
|
width: 100%;
|
|
outline: none;
|
|
padding: 0;
|
|
margin-right: 8px;
|
|
}
|
|
|
|
.search-field::placeholder {
|
|
color: rgba(255, 255, 255, 0.7);
|
|
}
|
|
|
|
.search-field:focus::placeholder {
|
|
color: rgba(255, 255, 255, 0.5);
|
|
}
|
|
|
|
.search-btn {
|
|
background: rgba(255, 255, 255, 0.2);
|
|
border: none;
|
|
color: white;
|
|
cursor: pointer;
|
|
padding: 6px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
transition: background 0.3s ease;
|
|
border-radius: 50%;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.search-btn:hover {
|
|
background: rgba(255, 255, 255, 0.3);
|
|
}
|
|
|
|
.search-container {
|
|
display: flex;
|
|
align-items: center;
|
|
background: rgba(255, 255, 255, 0.1);
|
|
border: 1px solid rgba(255, 255, 255, 0.2);
|
|
border-radius: 25px;
|
|
padding: 8px 8px 8px 15px;
|
|
transition: all 0.3s ease;
|
|
order: 1;
|
|
width: 250px;
|
|
}
|
|
|
|
.search-container:hover {
|
|
background: rgba(255, 255, 255, 0.15);
|
|
border-color: rgba(255, 255, 255, 0.3);
|
|
}
|
|
|
|
.search-container form {
|
|
display: flex;
|
|
align-items: center;
|
|
width: 100%;
|
|
}
|
|
|
|
.search-field {
|
|
background: transparent;
|
|
border: none;
|
|
color: white;
|
|
font-size: 14px;
|
|
width: 100%;
|
|
outline: none;
|
|
padding: 0;
|
|
margin-right: 8px;
|
|
}
|
|
|
|
.search-field::placeholder {
|
|
color: rgba(255, 255, 255, 0.7);
|
|
}
|
|
|
|
.search-field:focus::placeholder {
|
|
color: rgba(255, 255, 255, 0.5);
|
|
}
|
|
|
|
.search-btn {
|
|
background: rgba(255, 255, 255, 0.2);
|
|
border: none;
|
|
color: white;
|
|
cursor: pointer;
|
|
padding: 6px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
transition: background 0.3s ease;
|
|
border-radius: 50%;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.search-btn:hover {
|
|
background: rgba(255, 255, 255, 0.3);
|
|
}
|
|
|
|
.main-nav {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 25px;
|
|
}
|
|
|
|
.nav-link {
|
|
text-decoration: none;
|
|
color: white;
|
|
font-weight: 500;
|
|
font-size: 18px;
|
|
padding: 8px 12px;
|
|
border-radius: 8px;
|
|
transition: color 0.3s ease, transform 0.2s ease, background 0.3s ease;
|
|
position: relative;
|
|
}
|
|
|
|
.nav-link:hover {
|
|
color: white;
|
|
transform: translateY(-2px);
|
|
background: rgba(255, 255, 255, 0.1);
|
|
}
|
|
|
|
.nav-link::after {
|
|
content: '';
|
|
position: absolute;
|
|
bottom: -5px;
|
|
left: 0;
|
|
width: 0;
|
|
height: 2px;
|
|
background: var(--accent-teal);
|
|
transition: width 0.3s ease;
|
|
}
|
|
|
|
.nav-link:hover::after {
|
|
width: 100%;
|
|
}
|
|
|
|
.logo-link {
|
|
text-decoration: none;
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 0;
|
|
margin-left: 0;
|
|
margin-right: 15px;
|
|
}
|
|
|
|
.logo {
|
|
height: 50px;
|
|
width: auto;
|
|
transition: height 0.25s cubic-bezier(0.4, 0, 0.2, 1);
|
|
will-change: height;
|
|
}
|
|
|
|
.top-banner.scrolled .logo {
|
|
height: 35px;
|
|
}
|
|
|
|
.opening-hours {
|
|
font-size: 14px;
|
|
color: var(--primary-mid);
|
|
background: rgba(79, 71, 71, 0.08);
|
|
padding: 10px 20px;
|
|
border-radius: 25px;
|
|
transition: font-size 0.25s cubic-bezier(0.4, 0, 0.2, 1), padding 0.25s cubic-bezier(0.4, 0, 0.2, 1);
|
|
}
|
|
|
|
.menu-toggle {
|
|
background: transparent;
|
|
border: 2px solid var(--primary-dark);
|
|
color: var(--primary-dark);
|
|
width: 45px;
|
|
height: 45px;
|
|
border-radius: 12px;
|
|
cursor: pointer;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
gap: 5px;
|
|
transition: background 0.3s ease, color 0.3s ease, width 0.25s cubic-bezier(0.4, 0, 0.2, 1), height 0.25s cubic-bezier(0.4, 0, 0.2, 1);
|
|
}
|
|
|
|
#cursorToggle {
|
|
background: transparent;
|
|
border: 2px solid var(--primary-dark);
|
|
color: var(--primary-dark);
|
|
width: 60px;
|
|
height: 60px;
|
|
border-radius: 12px;
|
|
cursor: pointer;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
padding: 0;
|
|
transition: width 0.25s cubic-bezier(0.4, 0, 0.2, 1), height 0.25s cubic-bezier(0.4, 0, 0.2, 1), background 0.3s ease, border-color 0.3s ease;
|
|
}
|
|
|
|
.cursor-icon {
|
|
width: 60px;
|
|
height: 60px;
|
|
object-fit: contain;
|
|
transition: opacity 0.3s ease;
|
|
opacity: 1 !important;
|
|
filter: none !important;
|
|
}
|
|
|
|
#cursorToggle:hover {
|
|
background: var(--primary-dark);
|
|
}
|
|
|
|
#cursorToggle:hover .cursor-icon {
|
|
filter: brightness(0) invert(1) !important;
|
|
opacity: 1 !important;
|
|
}
|
|
|
|
.menu-toggle:hover {
|
|
background: var(--primary-dark);
|
|
}
|
|
|
|
.menu-toggle:hover span {
|
|
background: var(--primary-light);
|
|
}
|
|
|
|
.menu-toggle span {
|
|
display: block;
|
|
width: 20px;
|
|
height: 2px;
|
|
background: var(--primary-dark);
|
|
border-radius: 2px;
|
|
transition: all 0.3s ease;
|
|
}
|
|
|
|
.menu-toggle.active {
|
|
background: var(--primary-dark);
|
|
}
|
|
|
|
.menu-toggle.active span {
|
|
background: var(--primary-light);
|
|
}
|
|
|
|
.menu-toggle.active span:nth-child(1) {
|
|
transform: rotate(45deg) translate(5px, 5px);
|
|
}
|
|
|
|
.menu-toggle.active span:nth-child(2) {
|
|
opacity: 0;
|
|
}
|
|
|
|
.menu-toggle.active span:nth-child(3) {
|
|
transform: rotate(-45deg) translate(5px, -5px);
|
|
}
|
|
|
|
/* Slide Menu */
|
|
.slide-menu {
|
|
position: fixed;
|
|
top: 110px;
|
|
left: -280px;
|
|
width: 280px;
|
|
background: white;
|
|
box-shadow: 4px 0 25px rgba(79, 71, 71, 0.15);
|
|
border-radius: 0 20px 20px 0;
|
|
padding: 30px 0;
|
|
transition: left 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), top 0.3s ease;
|
|
z-index: 1000;
|
|
}
|
|
|
|
.top-banner.scrolled ~ .slide-menu,
|
|
.top-banner.scrolled + .overlay + .slide-menu {
|
|
top: 80px;
|
|
}
|
|
|
|
.slide-menu.active {
|
|
left: 0;
|
|
}
|
|
|
|
.slide-menu a {
|
|
display: block;
|
|
padding: 18px 30px;
|
|
color: var(--primary-dark);
|
|
text-decoration: none;
|
|
font-size: 17px;
|
|
font-weight: 500;
|
|
transition: all 0.3s ease;
|
|
border-left: 4px solid transparent;
|
|
}
|
|
|
|
.slide-menu a:hover {
|
|
background: var(--primary-light);
|
|
border-left-color: var(--accent-teal);
|
|
padding-left: 40px;
|
|
color: var(--accent-teal);
|
|
}
|
|
|
|
.slide-menu a.active {
|
|
background: var(--primary-light);
|
|
border-left-color: var(--accent-teal);
|
|
color: var(--accent-teal);
|
|
}
|
|
|
|
/* Main Content */
|
|
.main-content {
|
|
max-width: 700px;
|
|
margin: 50px auto;
|
|
padding: 110px 20px 20px 20px;
|
|
transition: padding-top 0.2s ease-out;
|
|
}
|
|
|
|
.form-container {
|
|
background: white;
|
|
padding: 45px;
|
|
border-radius: 24px;
|
|
box-shadow: 0 15px 50px rgba(79, 71, 71, 0.1);
|
|
}
|
|
|
|
.form-title {
|
|
color: var(--primary-dark);
|
|
font-size: 28px;
|
|
margin-bottom: 35px;
|
|
text-align: center;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.form-group {
|
|
margin-bottom: 24px;
|
|
}
|
|
|
|
.form-group label {
|
|
display: block;
|
|
margin-bottom: 8px;
|
|
color: var(--primary-mid);
|
|
font-weight: 500;
|
|
font-size: 14px;
|
|
}
|
|
|
|
.form-group input,
|
|
.form-group textarea,
|
|
.form-group select {
|
|
width: 100%;
|
|
padding: 14px 18px;
|
|
border: 2px solid rgba(119, 119, 100, 0.2);
|
|
border-radius: 14px;
|
|
font-size: 16px;
|
|
transition: all 0.3s ease;
|
|
background: var(--primary-light);
|
|
color: var(--primary-dark);
|
|
}
|
|
|
|
.form-group input:focus,
|
|
.form-group textarea:focus,
|
|
.form-group select:focus {
|
|
outline: none;
|
|
border-color: var(--accent-teal);
|
|
background: white;
|
|
box-shadow: 0 0 0 4px rgba(38, 166, 154, 0.15);
|
|
}
|
|
|
|
.form-group textarea {
|
|
min-height: 120px;
|
|
resize: vertical;
|
|
}
|
|
|
|
.form-group select {
|
|
cursor: pointer;
|
|
appearance: none;
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%234F4747' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
|
|
background-repeat: no-repeat;
|
|
background-position: right 14px center;
|
|
background-size: 18px;
|
|
}
|
|
|
|
.submit-btn {
|
|
width: 100%;
|
|
padding: 16px;
|
|
background: var(--accent-teal);
|
|
color: white;
|
|
border: none;
|
|
border-radius: 25px;
|
|
font-size: 17px;
|
|
font-weight: 600;
|
|
cursor: pointer;
|
|
transition: all 0.3s ease;
|
|
text-transform: uppercase;
|
|
letter-spacing: 1px;
|
|
}
|
|
|
|
.submit-btn:hover {
|
|
transform: translateY(-2px);
|
|
box-shadow: 0 8px 25px rgba(38, 166, 154, 0.35);
|
|
background: #1e8e82;
|
|
}
|
|
|
|
.submit-btn:active {
|
|
transform: translateY(0);
|
|
}
|
|
|
|
/* Login Button Styles */
|
|
.login-btn {
|
|
background: transparent;
|
|
border: 2px solid white;
|
|
color: white;
|
|
padding: 8px 16px;
|
|
border-radius: 8px;
|
|
font-size: 14px;
|
|
font-weight: 500;
|
|
cursor: pointer;
|
|
transition: all 0.3s ease;
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
text-decoration: none;
|
|
position: relative;
|
|
z-index: 10;
|
|
pointer-events: auto;
|
|
}
|
|
|
|
.login-btn:hover {
|
|
background: white;
|
|
color: var(--primary-dark);
|
|
transform: translateY(-2px);
|
|
}
|
|
|
|
.register-btn {
|
|
background: transparent;
|
|
border: 2px solid var(--primary-dark);
|
|
color: var(--primary-dark);
|
|
padding: 8px 16px;
|
|
border-radius: 8px;
|
|
font-size: 14px;
|
|
font-weight: 500;
|
|
cursor: pointer;
|
|
transition: all 0.3s ease;
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
}
|
|
|
|
.register-btn:hover {
|
|
background: var(--primary-dark);
|
|
color: white;
|
|
transform: translateY(-2px);
|
|
}
|
|
|
|
/* Top Banner Right Layout */
|
|
.top-banner-right {
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
align-items: center;
|
|
gap: 15px;
|
|
flex: 1;
|
|
position: relative;
|
|
z-index: 10;
|
|
}
|
|
|
|
/* Service Details Buttons */
|
|
.service-details {
|
|
display: flex;
|
|
gap: 15px;
|
|
margin-top: 15px;
|
|
flex-wrap: wrap;
|
|
justify-content: center;
|
|
}
|
|
|
|
.service-btn {
|
|
padding: 12px 24px;
|
|
background: var(--accent-teal);
|
|
color: white;
|
|
text-decoration: none;
|
|
border-radius: 25px;
|
|
font-size: 14px;
|
|
font-weight: 500;
|
|
transition: all 0.3s ease;
|
|
display: inline-block;
|
|
}
|
|
|
|
.service-btn:hover {
|
|
background: white;
|
|
color: var(--accent-teal);
|
|
transform: translateY(-2px);
|
|
box-shadow: 0 6px 20px rgba(38, 166, 154, 0.3);
|
|
}
|
|
|
|
/* Success Message */
|
|
.success-message {
|
|
display: none;
|
|
text-align: center;
|
|
padding: 30px;
|
|
color: var(--accent-teal);
|
|
}
|
|
|
|
.success-message.show {
|
|
display: block;
|
|
}
|
|
|
|
.success-message h3 {
|
|
font-size: 24px;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
/* Overlay */
|
|
.overlay {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
background: rgba(79, 71, 71, 0.3);
|
|
opacity: 0;
|
|
visibility: hidden;
|
|
transition: all 0.3s ease;
|
|
z-index: 999;
|
|
}
|
|
|
|
.overlay.active {
|
|
opacity: 1;
|
|
visibility: visible;
|
|
}
|
|
|
|
@media (max-width: 600px) {
|
|
.top-banner {
|
|
flex-direction: column;
|
|
gap: 15px;
|
|
text-align: center;
|
|
padding: 15px 20px;
|
|
}
|
|
|
|
.banner-left {
|
|
width: 100%;
|
|
justify-content: center;
|
|
}
|
|
|
|
.form-container {
|
|
padding: 25px;
|
|
}
|
|
|
|
.logo {
|
|
height: 100px;
|
|
width: auto;
|
|
}
|
|
}
|
|
|
|
/* ADDITIONS FOR HOME PAGE & DARK HEADER */
|
|
|
|
|
|
/* 1. Dark Header Theme */
|
|
.top-banner.dark-theme {
|
|
background-color: var(--primary-dark);
|
|
color: var(--primary-light);
|
|
border-bottom: 3px solid var(--accent-orange);
|
|
}
|
|
|
|
.top-banner.dark-theme .company-name {
|
|
color: var(--primary-light);
|
|
}
|
|
|
|
.top-banner.dark-theme .opening-hours {
|
|
background: rgba(235, 235, 222, 0.1);
|
|
color: var(--primary-light);
|
|
}
|
|
|
|
.top-banner.dark-theme .menu-toggle {
|
|
border-color: var(--primary-light);
|
|
}
|
|
|
|
.top-banner.dark-theme .menu-toggle span {
|
|
background: var(--primary-light);
|
|
}
|
|
|
|
.top-banner.dark-theme .menu-toggle:hover {
|
|
background: var(--primary-light);
|
|
}
|
|
|
|
.top-banner.dark-theme .menu-toggle:hover span {
|
|
background: var(--primary-dark);
|
|
}
|
|
|
|
/* 2. Home Page Layout */
|
|
.home-content {
|
|
max-width: 1200px;
|
|
margin: 0 auto;
|
|
padding: 110px 20px 20px 20px;
|
|
transition: padding-top 0.2s ease-out;
|
|
}
|
|
|
|
/* Green Highlight Box */
|
|
.green-highlight-box {
|
|
display: inline-block;
|
|
background: rgba(34, 197, 94, 0.5); /* 50% transparent green */
|
|
padding: 8px 16px 8px 16px;
|
|
border-radius: 8px;
|
|
color: var(--primary-dark);
|
|
font-weight: 500;
|
|
backdrop-filter: blur(2px);
|
|
border: 1px solid rgba(34, 197, 94, 0.3);
|
|
box-shadow: 0 2px 8px rgba(34, 197, 94, 0.2);
|
|
margin-right: 0px; /* Move even further to the left */
|
|
position: relative;
|
|
}
|
|
|
|
/* Hero Section */
|
|
.hero-section {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
padding: 80px 20px;
|
|
gap: 40px;
|
|
min-height: 80vh;
|
|
}
|
|
|
|
.hero-text {
|
|
flex: 1;
|
|
max-width: 600px;
|
|
}
|
|
|
|
.hero-text h1 {
|
|
font-size: 48px;
|
|
line-height: 1.2;
|
|
margin-bottom: 24px;
|
|
color: var(--primary-dark);
|
|
font-weight: 700;
|
|
}
|
|
|
|
.hero-text p {
|
|
font-size: 18px;
|
|
line-height: 1.6;
|
|
margin-bottom: 35px;
|
|
color: var(--primary-mid);
|
|
}
|
|
|
|
.hero-buttons {
|
|
display: flex;
|
|
gap: 15px;
|
|
}
|
|
|
|
.cta-btn {
|
|
padding: 15px 30px;
|
|
border-radius: 30px;
|
|
font-size: 16px;
|
|
font-weight: 600;
|
|
text-decoration: none;
|
|
transition: all 0.3s ease;
|
|
}
|
|
|
|
.cta-btn.primary {
|
|
background-color: var(--accent-teal);
|
|
color: white;
|
|
border: 2px solid var(--accent-teal);
|
|
}
|
|
|
|
.cta-btn.primary:hover {
|
|
background-color: #1e8e82;
|
|
border-color: #1e8e82;
|
|
transform: translateY(-2px);
|
|
box-shadow: 0 10px 20px rgba(38, 166, 154, 0.2);
|
|
}
|
|
|
|
.cta-btn.secondary {
|
|
background-color: transparent;
|
|
color: var(--primary-dark);
|
|
border: 2px solid var(--primary-dark);
|
|
}
|
|
|
|
.cta-btn.secondary:hover {
|
|
background-color: var(--primary-dark);
|
|
color: var(--primary-light);
|
|
}
|
|
|
|
.hero-image-placeholder {
|
|
flex: 1;
|
|
height: 400px;
|
|
background-color: rgba(119, 119, 100, 0.1);
|
|
border-radius: 24px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
border: 2px dashed var(--primary-mid);
|
|
color: var(--primary-mid);
|
|
}
|
|
|
|
/* Services Section */
|
|
.services-section {
|
|
padding: 60px 20px;
|
|
margin-bottom: 60px;
|
|
}
|
|
|
|
.section-title {
|
|
text-align: center;
|
|
font-size: 32px;
|
|
color: var(--primary-dark);
|
|
margin-bottom: 50px;
|
|
}
|
|
|
|
.services-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
|
|
gap: 30px;
|
|
}
|
|
|
|
.service-card {
|
|
background: white;
|
|
padding: 40px;
|
|
border-radius: 24px;
|
|
box-shadow: 0 15px 50px rgba(79, 71, 71, 0.05);
|
|
transition: transform 0.3s ease;
|
|
text-align: center;
|
|
}
|
|
|
|
.service-card:hover {
|
|
transform: translateY(-10px);
|
|
}
|
|
|
|
.service-icon {
|
|
font-size: 48px;
|
|
margin-bottom: 20px;
|
|
color: var(--accent-teal);
|
|
}
|
|
|
|
.service-card h3 {
|
|
font-size: 22px;
|
|
color: var(--primary-dark);
|
|
margin-bottom: 15px;
|
|
}
|
|
|
|
.service-card p {
|
|
color: var(--primary-mid);
|
|
line-height: 1.6;
|
|
}
|
|
|
|
/* Info Section */
|
|
.info-section {
|
|
background-color: white;
|
|
padding: 80px 40px;
|
|
border-radius: 24px;
|
|
margin-bottom: 80px;
|
|
box-shadow: 0 15px 50px rgba(79, 71, 71, 0.05);
|
|
}
|
|
|
|
.info-container {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 50px;
|
|
}
|
|
|
|
.info-content {
|
|
flex: 1;
|
|
}
|
|
|
|
.info-content h2 {
|
|
font-size: 32px;
|
|
color: var(--primary-dark);
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.info-content p {
|
|
color: var(--primary-mid);
|
|
font-size: 17px;
|
|
line-height: 1.6;
|
|
margin-bottom: 30px;
|
|
}
|
|
|
|
.info-list {
|
|
list-style: none;
|
|
}
|
|
|
|
.info-list li {
|
|
margin-bottom: 15px;
|
|
padding-left: 30px;
|
|
position: relative;
|
|
color: var(--primary-dark);
|
|
font-weight: 500;
|
|
}
|
|
|
|
.info-list li::before {
|
|
content: "✓";
|
|
position: absolute;
|
|
left: 0;
|
|
color: var(--accent-green);
|
|
font-weight: bold;
|
|
}
|
|
|
|
.info-image-placeholder {
|
|
flex: 1;
|
|
height: 300px;
|
|
background-color: var(--primary-light);
|
|
border-radius: 16px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
border: 2px dashed var(--primary-mid);
|
|
color: var(--primary-mid);
|
|
}
|
|
|
|
/* Enterprise Section */
|
|
.enterprise-section {
|
|
padding: 80px 20px;
|
|
background: white;
|
|
text-align: center;
|
|
}
|
|
|
|
.enterprise-content {
|
|
max-width: 800px;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.enterprise-features {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
|
|
gap: 30px;
|
|
margin-top: 50px;
|
|
}
|
|
|
|
.feature-item {
|
|
background: var(--primary-light);
|
|
padding: 30px;
|
|
border-radius: 16px;
|
|
transition: transform 0.3s ease, box-shadow 0.3s ease;
|
|
}
|
|
|
|
.feature-item:hover {
|
|
transform: translateY(-5px);
|
|
box-shadow: 0 10px 30px rgba(79, 71, 71, 0.1);
|
|
}
|
|
|
|
.feature-item h3 {
|
|
color: var(--accent-teal);
|
|
margin-bottom: 15px;
|
|
font-size: 20px;
|
|
}
|
|
|
|
.feature-item p {
|
|
color: var(--primary-mid);
|
|
line-height: 1.6;
|
|
}
|
|
|
|
/* Pricing Section */
|
|
.pricing-section {
|
|
padding: 80px 20px;
|
|
background: var(--primary-light);
|
|
text-align: center;
|
|
}
|
|
|
|
.pricing-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
|
|
gap: 30px;
|
|
max-width: 1000px;
|
|
margin: 50px auto 0;
|
|
}
|
|
|
|
.pricing-card {
|
|
background: white;
|
|
padding: 40px 30px;
|
|
border-radius: 16px;
|
|
box-shadow: 0 5px 20px rgba(79, 71, 71, 0.1);
|
|
transition: transform 0.3s ease, box-shadow 0.3s ease;
|
|
}
|
|
|
|
.pricing-card:hover {
|
|
transform: translateY(-5px);
|
|
box-shadow: 0 15px 40px rgba(79, 71, 71, 0.15);
|
|
}
|
|
|
|
.pricing-card.featured {
|
|
border: 2px solid var(--accent-teal);
|
|
transform: scale(1.05);
|
|
}
|
|
|
|
.pricing-card h3 {
|
|
color: var(--primary-dark);
|
|
font-size: 24px;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.price {
|
|
font-size: 36px;
|
|
font-weight: bold;
|
|
color: var(--accent-teal);
|
|
margin-bottom: 15px;
|
|
}
|
|
|
|
.pricing-card p {
|
|
color: var(--primary-mid);
|
|
margin-bottom: 25px;
|
|
}
|
|
|
|
.pricing-card ul {
|
|
list-style: none;
|
|
text-align: left;
|
|
}
|
|
|
|
.pricing-card li {
|
|
padding: 8px 0;
|
|
border-bottom: 1px solid rgba(119, 119, 100, 0.1);
|
|
color: var(--primary-dark);
|
|
}
|
|
|
|
.pricing-card li:before {
|
|
content: "✓ ";
|
|
color: var(--accent-teal);
|
|
font-weight: bold;
|
|
margin-right: 8px;
|
|
}
|
|
|
|
/* Responsive Home */
|
|
@media (max-width: 900px) {
|
|
.hero-section {
|
|
flex-direction: column;
|
|
text-align: center;
|
|
padding-top: 40px;
|
|
}
|
|
|
|
.hero-text h1 {
|
|
font-size: 36px;
|
|
}
|
|
|
|
.hero-buttons {
|
|
justify-content: center;
|
|
}
|
|
|
|
.info-container {
|
|
flex-direction: column-reverse;
|
|
}
|
|
|
|
.hero-image-placeholder,
|
|
.info-image-placeholder {
|
|
width: 100%;
|
|
}
|
|
}
|
|
|
|
/* Navigation responsive */
|
|
@media (max-width: 768px) {
|
|
.main-nav {
|
|
display: none;
|
|
}
|
|
|
|
.top-banner {
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.banner-left {
|
|
flex: 1;
|
|
}
|
|
|
|
.opening-hours {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
/* Footer Banner Styles */
|
|
.footer-banner {
|
|
background: rgba(42, 42, 42, 0.85) !important;
|
|
color: var(--primary-light) !important;
|
|
padding: 60px 0 30px;
|
|
margin: 80px 0 0 0;
|
|
border-top: 3px solid var(--accent-orange);
|
|
width: 100%;
|
|
position: relative;
|
|
overflow: hidden;
|
|
backdrop-filter: blur(10px);
|
|
-webkit-backdrop-filter: blur(10px);
|
|
}
|
|
|
|
.footer-container {
|
|
max-width: 1200px;
|
|
margin: 0 auto;
|
|
padding: 0 40px;
|
|
position: relative;
|
|
z-index: 1;
|
|
}
|
|
|
|
.footer-content {
|
|
display: grid;
|
|
grid-template-columns: repeat(4, 1fr);
|
|
gap: 40px;
|
|
width: 100%;
|
|
margin-bottom: 40px;
|
|
align-items: start;
|
|
}
|
|
|
|
.footer-section {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 20px;
|
|
}
|
|
|
|
.footer-logo {
|
|
margin-bottom: 15px;
|
|
}
|
|
|
|
.footer-logo-img {
|
|
height: 40px;
|
|
width: auto;
|
|
filter: brightness(0) invert(1);
|
|
opacity: 0.9;
|
|
}
|
|
|
|
.footer-description p {
|
|
line-height: 1.6;
|
|
opacity: 0.8;
|
|
font-size: 14px;
|
|
margin: 0;
|
|
}
|
|
|
|
.footer-title {
|
|
color: var(--accent-orange);
|
|
font-size: 16px;
|
|
margin: 0 0 15px 0;
|
|
font-weight: 600;
|
|
text-transform: uppercase;
|
|
letter-spacing: 1px;
|
|
}
|
|
|
|
.footer-nav {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 12px;
|
|
}
|
|
|
|
.footer-link {
|
|
color: var(--primary-light);
|
|
text-decoration: none;
|
|
font-size: 14px;
|
|
opacity: 0.7;
|
|
transition: all 0.3s ease;
|
|
position: relative;
|
|
padding-left: 0;
|
|
}
|
|
|
|
.footer-link:hover {
|
|
opacity: 1;
|
|
color: var(--accent-orange);
|
|
transform: translateX(5px);
|
|
}
|
|
|
|
.footer-link::before {
|
|
content: '▸';
|
|
position: absolute;
|
|
left: -15px;
|
|
opacity: 0;
|
|
transition: opacity 0.3s ease;
|
|
color: var(--accent-orange);
|
|
}
|
|
|
|
.footer-link:hover::before {
|
|
opacity: 1;
|
|
}
|
|
|
|
.footer-contact {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 12px;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.contact-item {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 12px;
|
|
font-size: 14px;
|
|
opacity: 0.8;
|
|
}
|
|
|
|
.contact-icon {
|
|
font-size: 16px;
|
|
width: 20px;
|
|
text-align: center;
|
|
}
|
|
|
|
.social-media {
|
|
margin-top: -10px;
|
|
}
|
|
|
|
.social-icons {
|
|
display: flex;
|
|
gap: 15px;
|
|
}
|
|
|
|
.social-link {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
color: var(--primary-light);
|
|
text-decoration: none;
|
|
width: 40px;
|
|
height: 40px;
|
|
border-radius: 8px;
|
|
transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
|
|
background: rgba(255, 255, 255, 0.05);
|
|
border: 1px solid rgba(255, 255, 255, 0.1);
|
|
backdrop-filter: blur(10px);
|
|
}
|
|
|
|
.social-link:hover {
|
|
background: var(--accent-orange);
|
|
transform: translateY(-3px) scale(1.1);
|
|
box-shadow: 0 8px 25px rgba(245, 124, 0, 0.3);
|
|
}
|
|
|
|
.social-link:hover svg {
|
|
filter: brightness(0) invert(1);
|
|
}
|
|
|
|
.social-link.instagram:hover {
|
|
background: linear-gradient(45deg, #E4405F, #C13584, #833AB4);
|
|
border-color: transparent;
|
|
}
|
|
|
|
.social-link.linkedin:hover {
|
|
background: #0077B5;
|
|
border-color: transparent;
|
|
}
|
|
|
|
.social-link img {
|
|
width: 40px;
|
|
height: 40px;
|
|
border-radius: 8px;
|
|
transition: transform 0.3s ease;
|
|
}
|
|
|
|
.social-link svg {
|
|
width: 16px;
|
|
height: 16px;
|
|
transition: transform 0.3s ease;
|
|
}
|
|
|
|
.social-link.facebook:hover svg {
|
|
filter: brightness(0) invert(1);
|
|
}
|
|
|
|
.social-link.instagram:hover svg {
|
|
filter: brightness(0) invert(1);
|
|
}
|
|
|
|
.footer-bottom {
|
|
border-top: 1px solid rgba(255, 255, 255, 0.1);
|
|
padding-top: 25px;
|
|
margin-top: 20px;
|
|
}
|
|
|
|
.footer-bottom-content {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
}
|
|
|
|
.footer-bottom p {
|
|
opacity: 0.6;
|
|
font-size: 13px;
|
|
margin: 0;
|
|
}
|
|
|
|
.footer-bottom-links {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 15px;
|
|
}
|
|
|
|
.footer-bottom-links .footer-link {
|
|
font-size: 13px;
|
|
opacity: 0.6;
|
|
}
|
|
|
|
.footer-bottom-links .footer-link:hover {
|
|
opacity: 1;
|
|
}
|
|
|
|
.separator {
|
|
opacity: 0.4;
|
|
font-size: 12px;
|
|
}
|
|
|
|
/* Footer Responsive Design */
|
|
@media (max-width: 1024px) {
|
|
.footer-content {
|
|
grid-template-columns: repeat(2, 1fr);
|
|
gap: 30px;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 768px) {
|
|
.footer-content {
|
|
grid-template-columns: 1fr;
|
|
gap: 30px;
|
|
}
|
|
|
|
.footer-container {
|
|
padding: 0 20px;
|
|
}
|
|
|
|
.footer-banner {
|
|
padding: 40px 0 25px;
|
|
}
|
|
|
|
.footer-bottom-content {
|
|
flex-direction: column;
|
|
gap: 15px;
|
|
text-align: center;
|
|
}
|
|
|
|
.social-icons {
|
|
justify-content: center;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 480px) {
|
|
.footer-banner {
|
|
padding: 30px 0 20px;
|
|
margin-top: 60px;
|
|
}
|
|
|
|
.footer-content {
|
|
gap: 25px;
|
|
}
|
|
|
|
.footer-title {
|
|
font-size: 15px;
|
|
}
|
|
|
|
.footer-logo-img {
|
|
height: 35px;
|
|
}
|
|
|
|
.social-link {
|
|
width: 35px;
|
|
height: 35px;
|
|
}
|
|
|
|
.social-link svg {
|
|
width: 14px;
|
|
height: 14px;
|
|
}
|
|
}
|
|
|
|
/* Chat Send Button Styles */
|
|
.chat-send {
|
|
background: var(--accent-teal);
|
|
color: white;
|
|
border: none;
|
|
border-radius: 50%;
|
|
width: 70px;
|
|
height: 70px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
cursor: pointer;
|
|
transition: all 0.3s ease;
|
|
flex-shrink: 0;
|
|
padding: 0;
|
|
margin-left: 10px;
|
|
box-shadow: 0 2px 8px rgba(38, 166, 154, 0.3);
|
|
}
|
|
|
|
.chat-send:hover {
|
|
background: #1e8e82;
|
|
transform: scale(1.05);
|
|
box-shadow: 0 4px 12px rgba(38, 166, 154, 0.4);
|
|
}
|
|
|
|
.chat-send:active {
|
|
transform: scale(0.95);
|
|
}
|
|
|
|
.chat-send img {
|
|
width: 64px;
|
|
height: 64px;
|
|
filter: brightness(0) invert(1);
|
|
object-fit: contain;
|
|
} |