952 lines
16 KiB
CSS
952 lines
16 KiB
CSS
/*
|
|
Theme Name: Europe Wonder
|
|
Theme URI: https://europewonder.com
|
|
Author: Europe Wonder
|
|
Author URI: https://europewonder.com
|
|
Description: Custom theme for Europe Wonder travel experiences
|
|
Version: 1.0
|
|
License: GNU General Public License v2 or later
|
|
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
|
Text Domain: grilctours
|
|
*/
|
|
|
|
/* Reset in osnovni stili */
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
body {
|
|
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
|
|
line-height: 1.6;
|
|
}
|
|
|
|
/* Spremenljivke za barve */
|
|
:root {
|
|
--primary: #edae49; /* Oranžna - glavna barva */
|
|
--secondary: #d1495b; /* Rdeča - sekundarna barva */
|
|
--accent: #00798c; /* Modro-zelena - poudarki */
|
|
--accent-dark: #30638e; /* Temno modra - poudarki temni */
|
|
--dark: #003d5b; /* Najtemnejša modra - temni elementi */
|
|
}
|
|
|
|
/* Hero sekcija */
|
|
.hero {
|
|
height: 100vh;
|
|
background: linear-gradient(to top,
|
|
rgba(0, 0, 0, 0.7) 0%,
|
|
rgba(0, 0, 0, 0.4) 30%,
|
|
rgba(0, 0, 0, 0) 100%
|
|
), url('images/hero.jpg');
|
|
background-size: cover;
|
|
background-position: center;
|
|
background-repeat: no-repeat;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
text-align: center;
|
|
padding-top: 60px;
|
|
}
|
|
|
|
.hero-content {
|
|
padding: 2rem;
|
|
}
|
|
|
|
.hero h1 {
|
|
font-size: 4rem;
|
|
margin-bottom: 1rem;
|
|
color: white;
|
|
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
|
|
}
|
|
|
|
.hero p {
|
|
font-size: 1.5rem;
|
|
color: white;
|
|
text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
|
|
}
|
|
|
|
/* Container */
|
|
.container {
|
|
max-width: 1200px;
|
|
margin: 0 auto;
|
|
padding: 0 1rem;
|
|
}
|
|
|
|
/* Tours sekcija */
|
|
.tours {
|
|
padding: 4rem 0;
|
|
background-color: #f9f9f9;
|
|
}
|
|
|
|
.section-title {
|
|
font-size: 2.5rem;
|
|
text-align: center;
|
|
margin-bottom: 3rem;
|
|
color: #333;
|
|
}
|
|
|
|
.tours-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
|
|
gap: 2rem;
|
|
}
|
|
|
|
.tour-card {
|
|
background: white;
|
|
border-radius: 10px;
|
|
overflow: hidden;
|
|
box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
|
|
transition: transform 0.3s ease;
|
|
border: 1px solid #eee;
|
|
}
|
|
|
|
.tour-card:hover {
|
|
transform: translateY(-5px);
|
|
}
|
|
|
|
.tour-card .tour-image {
|
|
width: 100%;
|
|
height: 200px;
|
|
position: relative;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.tour-card .tour-image img {
|
|
width: 100%;
|
|
height: 100%;
|
|
object-fit: cover;
|
|
transition: transform 0.3s ease;
|
|
}
|
|
|
|
.tour-card:hover .tour-image img {
|
|
transform: scale(1.1);
|
|
}
|
|
|
|
.tour-content {
|
|
padding: 1.5rem;
|
|
}
|
|
|
|
.tour-content h3 {
|
|
font-size: 1.4rem;
|
|
margin-bottom: 0.5rem;
|
|
color: var(--dark);
|
|
}
|
|
|
|
.btn-more {
|
|
display: inline-block;
|
|
padding: 0.5rem 1rem;
|
|
background-color: var(--accent);
|
|
color: white;
|
|
text-decoration: none;
|
|
border-radius: 5px;
|
|
transition: background-color 0.3s ease;
|
|
}
|
|
|
|
.btn-more:hover {
|
|
background-color: var(--accent-dark);
|
|
}
|
|
|
|
/* Video sekcija */
|
|
.video-section {
|
|
padding: 4rem 0;
|
|
background-color: #fff;
|
|
}
|
|
|
|
/* Header */
|
|
.main-header {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
background-color: rgba(255, 255, 255, 0.95);
|
|
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
|
|
z-index: 1000;
|
|
padding: 0.7rem 0;
|
|
}
|
|
|
|
.header-content {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
}
|
|
|
|
.logo {
|
|
height: 40px;
|
|
}
|
|
|
|
.logo img {
|
|
height: 100%;
|
|
width: auto;
|
|
}
|
|
|
|
.main-nav ul {
|
|
display: flex;
|
|
list-style: none;
|
|
gap: 2rem;
|
|
}
|
|
|
|
.main-nav a {
|
|
color: #333;
|
|
text-decoration: none;
|
|
font-weight: 500;
|
|
transition: color 0.3s ease;
|
|
}
|
|
|
|
.main-nav a:hover,
|
|
.main-nav a.active {
|
|
color: var(--accent);
|
|
}
|
|
|
|
.mobile-menu-toggle {
|
|
display: none;
|
|
}
|
|
|
|
/* Footer */
|
|
.footer {
|
|
background-color: var(--dark);
|
|
padding: 4rem 0;
|
|
color: white;
|
|
}
|
|
|
|
.footer-content {
|
|
display: grid;
|
|
grid-template-columns: 1fr 1fr;
|
|
gap: 4rem;
|
|
}
|
|
|
|
.footer-left {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 1.5rem;
|
|
}
|
|
|
|
.footer-logo {
|
|
height: 40px;
|
|
}
|
|
|
|
.footer-logo img {
|
|
height: 100%;
|
|
width: auto;
|
|
filter: brightness(0) invert(1);
|
|
}
|
|
|
|
.footer-description {
|
|
color: rgba(255, 255, 255, 0.8);
|
|
line-height: 1.6;
|
|
font-size: 1.1rem;
|
|
}
|
|
|
|
.footer-right {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.footer-contact {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 1rem;
|
|
}
|
|
|
|
.footer-contact a {
|
|
color: white;
|
|
text-decoration: none;
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 0.8rem;
|
|
font-size: 1.1rem;
|
|
transition: color 0.3s ease;
|
|
}
|
|
|
|
.footer-contact a:hover {
|
|
color: var(--primary);
|
|
}
|
|
|
|
.footer-contact i {
|
|
width: 20px;
|
|
text-align: center;
|
|
color: var(--primary);
|
|
}
|
|
|
|
.book-consultation {
|
|
margin-top: 0.5rem;
|
|
color: var(--primary) !important;
|
|
font-weight: 500;
|
|
}
|
|
|
|
.book-consultation:hover {
|
|
color: white !important;
|
|
}
|
|
|
|
.footer-links {
|
|
margin-top: 2rem;
|
|
display: flex;
|
|
gap: 2rem;
|
|
}
|
|
|
|
.footer-links a {
|
|
color: rgba(255, 255, 255, 0.8);
|
|
text-decoration: none;
|
|
font-size: 0.9rem;
|
|
transition: color 0.3s ease;
|
|
}
|
|
|
|
.footer-links a:hover {
|
|
color: var(--primary);
|
|
}
|
|
|
|
/* Responsive design */
|
|
@media (max-width: 768px) {
|
|
.hero h1 {
|
|
font-size: 3rem;
|
|
}
|
|
|
|
.hero p {
|
|
font-size: 1.2rem;
|
|
}
|
|
|
|
.section-title {
|
|
font-size: 2rem;
|
|
}
|
|
|
|
.tours-grid {
|
|
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
|
|
gap: 1.5rem;
|
|
}
|
|
|
|
.footer-content {
|
|
grid-template-columns: 1fr;
|
|
gap: 3rem;
|
|
}
|
|
|
|
.footer-right {
|
|
gap: 2rem;
|
|
}
|
|
|
|
.footer-links {
|
|
justify-content: center;
|
|
}
|
|
|
|
.mobile-menu-toggle {
|
|
display: block;
|
|
background: none;
|
|
border: none;
|
|
font-size: 1.8rem;
|
|
color: var(--dark);
|
|
cursor: pointer;
|
|
padding: 0.5rem;
|
|
z-index: 1001;
|
|
}
|
|
|
|
.menu-overlay {
|
|
display: none;
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
background-color: rgba(0, 0, 0, 0.5);
|
|
z-index: 999;
|
|
}
|
|
|
|
.menu-overlay.active {
|
|
display: block;
|
|
}
|
|
|
|
.main-nav {
|
|
position: absolute;
|
|
top: 100%;
|
|
left: 50%;
|
|
transform: translateX(-50%);
|
|
width: 90%;
|
|
max-width: 400px;
|
|
background: white;
|
|
padding: 1rem;
|
|
z-index: 1000;
|
|
border-radius: 8px;
|
|
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
|
|
display: none;
|
|
margin-top: 10px;
|
|
}
|
|
|
|
.mobile-menu-toggle.active ~ .main-nav {
|
|
display: block !important;
|
|
}
|
|
|
|
.main-nav ul {
|
|
flex-direction: column;
|
|
width: 100%;
|
|
margin: 0;
|
|
padding: 0;
|
|
gap: 0;
|
|
}
|
|
|
|
.main-nav li {
|
|
width: 100%;
|
|
text-align: center;
|
|
padding: 0.8rem 0;
|
|
border-bottom: 1px solid rgba(0, 0, 0, 0.1);
|
|
}
|
|
|
|
.main-nav li:last-child {
|
|
border-bottom: none;
|
|
}
|
|
|
|
.main-nav a {
|
|
display: block;
|
|
width: 100%;
|
|
padding: 0.5rem 0;
|
|
font-size: 1.1rem;
|
|
color: var(--dark);
|
|
font-weight: 500;
|
|
transition: color 0.3s ease;
|
|
}
|
|
|
|
.main-nav a:hover {
|
|
color: var(--accent);
|
|
}
|
|
|
|
body.menu-open {
|
|
overflow: hidden;
|
|
}
|
|
}
|
|
|
|
/* Page Hero */
|
|
.page-hero {
|
|
height: 60vh;
|
|
background-size: cover;
|
|
background-position: center;
|
|
background-repeat: no-repeat;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
text-align: center;
|
|
padding-top: 60px;
|
|
margin-bottom: 4rem;
|
|
}
|
|
|
|
.page-hero .hero-content {
|
|
padding: 2rem;
|
|
}
|
|
|
|
.page-hero h1 {
|
|
font-size: 3.5rem;
|
|
margin-bottom: 1rem;
|
|
color: white;
|
|
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
|
|
}
|
|
|
|
.page-hero p {
|
|
font-size: 1.3rem;
|
|
color: white;
|
|
text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
|
|
max-width: 800px;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
/* Experience Description */
|
|
.experience-description {
|
|
padding: 2rem 0 4rem;
|
|
}
|
|
|
|
.experience-description .container {
|
|
max-width: 800px;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
/* Individual Tours */
|
|
.individual-tours {
|
|
padding: 4rem 0;
|
|
background-color: #f9f9f9;
|
|
}
|
|
|
|
.individual-tours h2 {
|
|
text-align: center;
|
|
margin-bottom: 2rem;
|
|
color: #333;
|
|
font-size: 2.5rem;
|
|
}
|
|
|
|
.tours-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
|
|
gap: 2rem;
|
|
padding: 1rem;
|
|
}
|
|
|
|
.tour-card {
|
|
background: white;
|
|
border-radius: 8px;
|
|
overflow: hidden;
|
|
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
|
|
transition: transform 0.3s ease;
|
|
}
|
|
|
|
.tour-card:hover {
|
|
transform: translateY(-5px);
|
|
}
|
|
|
|
.tour-card .tour-image {
|
|
width: 100%;
|
|
height: 200px;
|
|
position: relative;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.tour-card .tour-image img {
|
|
width: 100%;
|
|
height: 100%;
|
|
object-fit: cover;
|
|
transition: transform 0.3s ease;
|
|
}
|
|
|
|
.tour-card:hover .tour-image img {
|
|
transform: scale(1.1);
|
|
}
|
|
|
|
.tour-card .tour-info {
|
|
padding: 1.5rem;
|
|
}
|
|
|
|
.tour-card h3 {
|
|
margin: 0 0 1rem;
|
|
color: #333;
|
|
font-size: 1.25rem;
|
|
}
|
|
|
|
.tour-card p {
|
|
color: #666;
|
|
margin-bottom: 1rem;
|
|
line-height: 1.6;
|
|
}
|
|
|
|
.tour-details {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
margin-bottom: 1rem;
|
|
color: #666;
|
|
}
|
|
|
|
.tour-details .price {
|
|
font-weight: 600;
|
|
color: var(--accent);
|
|
}
|
|
|
|
.btn-view {
|
|
display: block;
|
|
width: 100%;
|
|
padding: 0.8rem;
|
|
background-color: var(--dark);
|
|
color: white;
|
|
text-align: center;
|
|
text-decoration: none;
|
|
border-radius: 5px;
|
|
transition: background-color 0.3s ease;
|
|
}
|
|
|
|
.btn-view:hover {
|
|
background-color: var(--accent);
|
|
}
|
|
|
|
.no-tours {
|
|
text-align: center;
|
|
color: #666;
|
|
font-size: 1.1rem;
|
|
padding: 2rem;
|
|
}
|
|
|
|
/* Responsive design */
|
|
@media (max-width: 768px) {
|
|
.individual-tours h2 {
|
|
font-size: 2rem;
|
|
}
|
|
|
|
.tours-grid {
|
|
grid-template-columns: 1fr;
|
|
padding: 0.5rem;
|
|
}
|
|
|
|
.tour-card h3 {
|
|
font-size: 1.2rem;
|
|
}
|
|
}
|
|
|
|
/* Tour Hero */
|
|
.tour-hero {
|
|
position: relative;
|
|
height: 60vh;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.tour-hero img {
|
|
width: 100%;
|
|
height: 100%;
|
|
object-fit: cover;
|
|
}
|
|
|
|
.tour-hero-overlay {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
background: linear-gradient(to bottom,
|
|
rgba(0, 0, 0, 0.4) 0%,
|
|
rgba(0, 0, 0, 0.6) 100%
|
|
);
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
text-align: center;
|
|
color: white;
|
|
padding: 2rem;
|
|
}
|
|
|
|
.tour-hero-content h1 {
|
|
font-size: 3rem;
|
|
margin-bottom: 1.5rem;
|
|
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
|
|
}
|
|
|
|
.tour-hero-meta {
|
|
display: flex;
|
|
justify-content: center;
|
|
gap: 2rem;
|
|
align-items: center;
|
|
font-size: 1.2rem;
|
|
}
|
|
|
|
.tour-price {
|
|
font-size: 1.5rem;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.tour-duration i,
|
|
.tour-location i {
|
|
margin-right: 0.5rem;
|
|
}
|
|
|
|
/* Tour Content */
|
|
.tour-content-wrapper {
|
|
display: grid;
|
|
grid-template-columns: 2fr 1fr;
|
|
gap: 2rem;
|
|
max-width: 1200px;
|
|
margin: 0 auto;
|
|
padding: 2rem 1rem;
|
|
}
|
|
|
|
.tour-info h2 {
|
|
font-size: 1.8rem;
|
|
color: #333;
|
|
margin: 2rem 0 1rem;
|
|
}
|
|
|
|
.tour-description {
|
|
margin-bottom: 3rem;
|
|
}
|
|
|
|
.tour-description p {
|
|
color: #666;
|
|
line-height: 1.8;
|
|
}
|
|
|
|
/* Daily Program */
|
|
.tour-daily-program {
|
|
margin-bottom: 3rem;
|
|
}
|
|
|
|
.day-header {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 1rem;
|
|
margin-bottom: 0.5rem;
|
|
}
|
|
|
|
.day-number {
|
|
width: 2rem;
|
|
height: 2rem;
|
|
background-color: var(--accent);
|
|
color: white;
|
|
border-radius: 50%;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.day-header h3 {
|
|
margin: 0;
|
|
color: #333;
|
|
font-size: 1.1rem;
|
|
}
|
|
|
|
.program-day {
|
|
margin-bottom: 1.5rem;
|
|
}
|
|
|
|
.program-day p {
|
|
margin-left: 3rem;
|
|
color: #666;
|
|
}
|
|
|
|
/* Included/Not Included Lists */
|
|
.included-list,
|
|
.not-included-list {
|
|
display: grid;
|
|
gap: 1rem;
|
|
}
|
|
|
|
.included-item,
|
|
.not-included-item {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 1rem;
|
|
}
|
|
|
|
.included-item i {
|
|
color: #22c55e;
|
|
}
|
|
|
|
.not-included-item i {
|
|
color: #ef4444;
|
|
}
|
|
|
|
/* Booking Form */
|
|
.booking-form {
|
|
background: white;
|
|
padding: 2rem;
|
|
border-radius: 10px;
|
|
box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
|
|
position: sticky;
|
|
top: 2rem;
|
|
}
|
|
|
|
.booking-form h3 {
|
|
font-size: 1.5rem;
|
|
color: #333;
|
|
margin-bottom: 1.5rem;
|
|
}
|
|
|
|
.form-group {
|
|
margin-bottom: 1.5rem;
|
|
}
|
|
|
|
.form-group label {
|
|
display: block;
|
|
margin-bottom: 0.5rem;
|
|
color: #333;
|
|
}
|
|
|
|
.form-group input {
|
|
width: 100%;
|
|
padding: 0.8rem;
|
|
border: 1px solid #ddd;
|
|
border-radius: 5px;
|
|
font-size: 1rem;
|
|
}
|
|
|
|
.form-group input:focus {
|
|
border-color: var(--accent);
|
|
outline: none;
|
|
box-shadow: 0 0 0 2px rgba(0, 121, 140, 0.2);
|
|
}
|
|
|
|
.total-price {
|
|
font-size: 1.5rem;
|
|
font-weight: bold;
|
|
color: var(--accent);
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 0.5rem;
|
|
}
|
|
|
|
.btn-book {
|
|
width: 100%;
|
|
padding: 1rem;
|
|
background-color: var(--accent);
|
|
color: white;
|
|
border: none;
|
|
border-radius: 5px;
|
|
font-size: 1rem;
|
|
cursor: pointer;
|
|
transition: background-color 0.3s ease;
|
|
}
|
|
|
|
.btn-book:hover {
|
|
background-color: var(--accent-dark);
|
|
}
|
|
|
|
@media (max-width: 768px) {
|
|
.tour-hero-content h1 {
|
|
font-size: 2rem;
|
|
}
|
|
|
|
.tour-hero-meta {
|
|
flex-direction: column;
|
|
gap: 1rem;
|
|
}
|
|
|
|
.tour-content-wrapper {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
.booking-form {
|
|
position: static;
|
|
margin-top: 2rem;
|
|
}
|
|
}
|
|
|
|
/* Tour Extras Section */
|
|
.tour-extras {
|
|
margin: 3rem 0;
|
|
padding: 2.5rem;
|
|
background-color: #f8f9fa;
|
|
border-radius: 12px;
|
|
box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
|
|
max-width: 800px;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
}
|
|
|
|
.tour-extras h2 {
|
|
color: var(--dark);
|
|
margin-bottom: 2rem;
|
|
text-align: center;
|
|
font-size: 1.8rem;
|
|
position: relative;
|
|
padding-bottom: 1rem;
|
|
}
|
|
|
|
.tour-extras h2:after {
|
|
content: '';
|
|
position: absolute;
|
|
bottom: 0;
|
|
left: 50%;
|
|
transform: translateX(-50%);
|
|
width: 60px;
|
|
height: 3px;
|
|
background-color: var(--accent);
|
|
border-radius: 2px;
|
|
}
|
|
|
|
.extras-list {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 1rem;
|
|
padding: 1rem;
|
|
max-width: 700px;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.extra-item {
|
|
background: white;
|
|
padding: 1.2rem 1.5rem;
|
|
border-radius: 10px;
|
|
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 1.2rem;
|
|
transition: transform 0.3s ease, box-shadow 0.3s ease;
|
|
width: 100%;
|
|
}
|
|
|
|
.extra-item:hover {
|
|
transform: translateY(-2px);
|
|
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
|
|
}
|
|
|
|
.extra-item i {
|
|
color: #9b59b6;
|
|
font-size: 1.4rem;
|
|
background: rgba(155, 89, 182, 0.1);
|
|
width: 40px;
|
|
height: 40px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
border-radius: 50%;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.extra-item span {
|
|
color: #2c3e50;
|
|
line-height: 1.6;
|
|
font-size: 1.1rem;
|
|
flex-grow: 1;
|
|
}
|
|
|
|
@media (max-width: 768px) {
|
|
.tour-extras {
|
|
padding: 1.5rem;
|
|
margin: 2rem 0;
|
|
}
|
|
|
|
.extras-list {
|
|
padding: 0.5rem;
|
|
}
|
|
|
|
.extra-item {
|
|
padding: 1rem;
|
|
gap: 1rem;
|
|
flex-direction: column;
|
|
text-align: center;
|
|
}
|
|
|
|
.extra-item i {
|
|
width: 35px;
|
|
height: 35px;
|
|
font-size: 1.2rem;
|
|
margin: 0 auto;
|
|
}
|
|
}
|
|
|
|
/* Floating Inquiry Button */
|
|
.floating-inquiry-btn {
|
|
position: fixed;
|
|
bottom: 30px;
|
|
right: 30px;
|
|
background-color: var(--accent);
|
|
color: white;
|
|
padding: 15px 20px;
|
|
border-radius: 50px;
|
|
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
|
|
cursor: pointer;
|
|
font-weight: 600;
|
|
z-index: 999;
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
transition: all 0.3s ease;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.floating-inquiry-btn:hover {
|
|
background-color: var(--accent-dark);
|
|
transform: translateY(-3px);
|
|
box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
|
|
color: white;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.floating-inquiry-btn:visited {
|
|
color: white;
|
|
}
|
|
|
|
.floating-inquiry-btn i {
|
|
font-size: 1.2rem;
|
|
}
|
|
|
|
@media (max-width: 768px) {
|
|
.floating-inquiry-btn {
|
|
bottom: 20px;
|
|
right: 20px;
|
|
padding: 12px 16px;
|
|
font-size: 0.9rem;
|
|
}
|
|
|
|
.floating-inquiry-btn i {
|
|
font-size: 1rem;
|
|
}
|
|
} |