mirror of
https://github.com/Dvorinka/masterdrinks.git
synced 2026-06-03 18:32:55 +00:00
1296 lines
36 KiB
HTML
1296 lines
36 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>MasterDrinks | Premium Alcohol Distributor</title>
|
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
<link href="https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Montserrat:wght@300;400;500;600&display=swap" rel="stylesheet">
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
|
|
<style>
|
|
:root {
|
|
--primary: #ffffff; /* White background */
|
|
--secondary: #f5f5f5; /* Light gray background */
|
|
--accent: #c9a95f; /* Orange accent remains unchanged */
|
|
--accent-dark: #b89142; /* Darker orange accent remains unchanged */
|
|
--text: #1a1a2e; /* Dark text color */
|
|
--text-dark: #444444; /* Slightly lighter text color */
|
|
--transition: all 0.3s ease;
|
|
}
|
|
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
body {
|
|
font-family: 'Montserrat', sans-serif;
|
|
background: linear-gradient(135deg, var(--primary), var(--secondary));
|
|
color: var(--text);
|
|
min-height: 100vh;
|
|
overflow-x: hidden;
|
|
}
|
|
|
|
.container {
|
|
width: 100%;
|
|
max-width: 1400px;
|
|
margin: 0 auto;
|
|
padding: 0 20px;
|
|
}
|
|
|
|
/* Header Styles */
|
|
header {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
z-index: 100;
|
|
background: rgba(255, 255, 255, 1);
|
|
backdrop-filter: blur(10px);
|
|
box-shadow: 0px 10px 0px #c9a95f;
|
|
transition: var(--transition);
|
|
}
|
|
|
|
.header-content {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
padding: 20px;
|
|
}
|
|
|
|
.logo {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.logo-img {
|
|
width: 85px;
|
|
}
|
|
|
|
nav ul {
|
|
display: flex;
|
|
list-style: none;
|
|
}
|
|
|
|
nav ul li {
|
|
margin-left: 30px;
|
|
}
|
|
|
|
nav ul li a {
|
|
text-decoration: none;
|
|
color: var(--text);
|
|
font-weight: 500;
|
|
font-size: 16px;
|
|
position: relative;
|
|
transition: var(--transition);
|
|
}
|
|
|
|
nav ul li a:hover {
|
|
color: var(--accent);
|
|
}
|
|
|
|
nav ul li a::after {
|
|
content: '';
|
|
position: absolute;
|
|
bottom: -5px;
|
|
left: 0;
|
|
width: 0;
|
|
height: 2px;
|
|
background: var(--accent);
|
|
transition: var(--transition);
|
|
}
|
|
|
|
nav ul li a:hover::after {
|
|
width: 100%;
|
|
}
|
|
|
|
.hamburger {
|
|
display: none;
|
|
cursor: pointer;
|
|
font-size: 24px;
|
|
color: var(--accent);
|
|
}
|
|
|
|
/* Hero Section */
|
|
.hero {
|
|
height: 100vh;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
position: relative;
|
|
overflow: hidden;
|
|
padding-top: 80px;
|
|
}
|
|
|
|
.hero::before {
|
|
content: '';
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
background: url('./background_main.png') center/cover no-repeat;
|
|
filter:brightness(.6);
|
|
animation: zoomBackground 20s infinite alternate;
|
|
}
|
|
|
|
@keyframes zoomBackground {
|
|
0% {
|
|
transform: scale(1);
|
|
}
|
|
100% {
|
|
transform: scale(1.1);
|
|
}
|
|
}
|
|
|
|
.hero-content {
|
|
position: relative;
|
|
z-index: 1;
|
|
text-align: center;
|
|
max-width: 800px;
|
|
padding: 0 20px;
|
|
margin: 0px auto;
|
|
}
|
|
|
|
.hero-title {
|
|
font-family: 'Playfair Display', serif;
|
|
font-size: 64px;
|
|
font-weight: 700;
|
|
margin-bottom: 20px;
|
|
background: linear-gradient(135deg, #faad53, #e0c78b);
|
|
-webkit-background-clip: text;
|
|
background-clip: text;
|
|
color: transparent;
|
|
animation: fadeInUp 1s ease;
|
|
}
|
|
|
|
.hero-subtitle {
|
|
font-size: 22px;
|
|
margin-bottom: 40px;
|
|
color: #dedede;
|
|
animation: fadeInUp 1s ease 0.2s;
|
|
animation-fill-mode: both;
|
|
}
|
|
|
|
.btn {
|
|
display: inline-block;
|
|
padding: 16px 32px;
|
|
background: linear-gradient(135deg, var(--accent), var(--accent-dark));
|
|
color: var(--primary);
|
|
font-size: 18px;
|
|
font-weight: 600;
|
|
text-decoration: none;
|
|
border-radius: 4px;
|
|
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
|
|
transition: var(--transition);
|
|
cursor: pointer;
|
|
border: none;
|
|
position: relative;
|
|
overflow: hidden;
|
|
z-index: 1;
|
|
animation: fadeInUp 1s ease 0.4s;
|
|
animation-fill-mode: both;
|
|
}
|
|
|
|
.btn::before {
|
|
content: '';
|
|
position: absolute;
|
|
top: 0;
|
|
left: -100%;
|
|
width: 100%;
|
|
height: 100%;
|
|
background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
|
|
transition: all 0.6s ease;
|
|
z-index: -1;
|
|
}
|
|
|
|
.btn:hover {
|
|
transform: translateY(-5px);
|
|
box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
|
|
}
|
|
|
|
.btn:hover::before {
|
|
left: 100%;
|
|
}
|
|
|
|
/* Feature Square Grid */
|
|
.features {
|
|
padding: 100px 0;
|
|
position: relative;
|
|
}
|
|
|
|
.features-title {
|
|
font-size: 40px;
|
|
text-align: center;
|
|
margin-bottom: 60px;
|
|
position: relative;
|
|
display: inline-block;
|
|
left: 50%;
|
|
transform: translateX(-50%);
|
|
}
|
|
|
|
.features-title::after {
|
|
content: '';
|
|
position: absolute;
|
|
bottom: -15px;
|
|
left: 50%;
|
|
transform: translateX(-50%);
|
|
width: 70%;
|
|
height: 2px;
|
|
background: var(--accent);
|
|
}
|
|
|
|
.feature-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(2, minmax(300px, 1fr));
|
|
gap: 30px;
|
|
max-width: 1200px;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.feature-card {
|
|
background: linear-gradient(135deg, rgba(255, 255, 255, 0.7), rgba(245, 245, 245, 0.8));
|
|
backdrop-filter: blur(5px);
|
|
border-radius: 8px;
|
|
padding: 30px;
|
|
height: 300px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
text-align: center;
|
|
cursor: pointer;
|
|
position: relative;
|
|
overflow: hidden;
|
|
box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
|
|
transition: var(--transition);
|
|
border: 1px solid rgba(201, 169, 95, 0.1);
|
|
}
|
|
|
|
.feature-card::before {
|
|
content: '';
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
background: linear-gradient(45deg, transparent, rgba(201, 169, 95, 0.03), transparent);
|
|
transition: var(--transition);
|
|
z-index: 0;
|
|
}
|
|
|
|
.feature-card:hover {
|
|
transform: translateY(-10px);
|
|
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
|
|
border-color: rgba(201, 169, 95, 0.3);
|
|
}
|
|
|
|
.feature-card:hover::before {
|
|
animation: shimmer 2s infinite;
|
|
}
|
|
|
|
@keyframes shimmer {
|
|
0% {
|
|
transform: translateX(-100%);
|
|
}
|
|
100% {
|
|
transform: translateX(100%);
|
|
}
|
|
}
|
|
|
|
.feature-icon {
|
|
font-size: 50px;
|
|
color: var(--accent);
|
|
margin-bottom: 20px;
|
|
position: relative;
|
|
z-index: 1;
|
|
transition: var(--transition);
|
|
}
|
|
|
|
.feature-card:hover .feature-icon {
|
|
transform: scale(1.1);
|
|
color: #b89142;
|
|
}
|
|
|
|
.feature-title {
|
|
font-size: 24px;
|
|
margin-bottom: 15px;
|
|
position: relative;
|
|
z-index: 1;
|
|
transition: var(--transition);
|
|
}
|
|
|
|
.feature-card:hover .feature-title {
|
|
color: var(--accent);
|
|
}
|
|
|
|
.feature-desc {
|
|
font-size: 16px;
|
|
color: var(--text-dark);
|
|
position: relative;
|
|
z-index: 1;
|
|
line-height: 1.6;
|
|
}
|
|
|
|
/* Product Carousel */
|
|
.products {
|
|
padding: 80px 0;
|
|
background: linear-gradient(to bottom, var(--primary), rgba(255, 255, 255, 0.8));
|
|
position: relative;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.products::before {
|
|
content: '';
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
background: radial-gradient(circle at 30% 50%, rgba(201, 169, 95, 0.05), transparent 70%);
|
|
}
|
|
|
|
.products-title {
|
|
font-size: 40px;
|
|
text-align: center;
|
|
margin-bottom: 60px;
|
|
position: relative;
|
|
display: inline-block;
|
|
left: 50%;
|
|
transform: translateX(-50%);
|
|
}
|
|
|
|
.products-title::after {
|
|
content: '';
|
|
position: absolute;
|
|
bottom: -15px;
|
|
left: 50%;
|
|
transform: translateX(-50%);
|
|
width: 70%;
|
|
height: 2px;
|
|
background: var(--accent);
|
|
}
|
|
|
|
.carousel-container {
|
|
position: relative;
|
|
max-width: 1200px;
|
|
margin: 0 auto;
|
|
padding: 0 70px;
|
|
}
|
|
|
|
.carousel {
|
|
display: flex;
|
|
overflow-x: auto;
|
|
scroll-snap-type: x mandatory;
|
|
scroll-behavior: smooth;
|
|
scrollbar-width: none;
|
|
-ms-overflow-style: none;
|
|
gap: 30px;
|
|
padding: 20px 0;
|
|
}
|
|
|
|
.carousel::-webkit-scrollbar {
|
|
display: none;
|
|
}
|
|
|
|
.carousel-item {
|
|
flex: 0 0 calc(33.333% - 20px);
|
|
min-width: 280px;
|
|
scroll-snap-align: start;
|
|
background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(245, 245, 245, 0.9));
|
|
backdrop-filter: blur(10px);
|
|
border-radius: 8px;
|
|
overflow: hidden;
|
|
box-shadow: 1px 0px 20px 0px rgba(0, 0, 0, 0.1);
|
|
transition: var(--transition);
|
|
border: 1px solid rgba(201, 169, 95, 0.1);
|
|
}
|
|
|
|
.carousel-item:hover {
|
|
transform: translateY(-10px);
|
|
box-shadow: 0px 6px 0px rgba(0, 0, 0, 0.2);
|
|
border-color: rgba(201, 169, 95, 0.3);
|
|
}
|
|
|
|
.carousel-item:hover .carousel-btn{
|
|
box-shadow: 0px 4px 0px 0px #97845b;
|
|
}
|
|
|
|
.carousel-img {
|
|
width: 100%;
|
|
height: 200px;
|
|
object-fit: cover;
|
|
}
|
|
|
|
.carousel-content {
|
|
padding: 20px;
|
|
}
|
|
|
|
.carousel-title {
|
|
font-size: 20px;
|
|
margin-bottom: 10px;
|
|
color: var(--accent);
|
|
}
|
|
|
|
.carousel-desc {
|
|
font-size: 14px;
|
|
color: var(--text-dark);
|
|
margin-bottom: 15px;
|
|
line-height: 1.6;
|
|
}
|
|
|
|
.carousel-price {
|
|
font-size: 18px;
|
|
font-weight: 600;
|
|
margin-bottom: 15px;
|
|
color: var(--text);
|
|
}
|
|
|
|
.carousel-btn {
|
|
display: inline-block;
|
|
padding: 10px 15px;
|
|
background: var(--accent);
|
|
color: var(--primary);
|
|
font-size: 14px;
|
|
font-weight: 600;
|
|
text-decoration: none;
|
|
border-radius: 4px;
|
|
transition: var(--transition);
|
|
}
|
|
|
|
.carousel-btn:hover {
|
|
background: var(--accent-dark);
|
|
transform: translateY(-2px);
|
|
}
|
|
|
|
.carousel-nav {
|
|
position: absolute;
|
|
top: 50%;
|
|
transform: translateY(-50%);
|
|
width: 40px;
|
|
height: 40px;
|
|
background: rgba(201, 169, 95, 0.8);
|
|
border-radius: 50%;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
cursor: pointer;
|
|
z-index: 10;
|
|
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
|
|
transition: var(--transition);
|
|
}
|
|
|
|
.carousel-nav:hover {
|
|
background: rgba(201, 169, 95, 1);
|
|
}
|
|
|
|
.carousel-prev {
|
|
left: 10px;
|
|
}
|
|
|
|
.carousel-next {
|
|
right: 10px;
|
|
}
|
|
|
|
.carousel-nav i {
|
|
color: var(--primary);
|
|
font-size: 18px;
|
|
}
|
|
|
|
/* Newsletter Section */
|
|
.newsletter {
|
|
padding: 80px 0;
|
|
background: linear-gradient(to bottom, rgba(255, 255, 255, 0.8), var(--primary));
|
|
position: relative;
|
|
}
|
|
|
|
.newsletter::before {
|
|
content: '';
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
background: radial-gradient(circle at 70% 50%, rgba(201, 169, 95, 0.05), transparent 70%);
|
|
}
|
|
|
|
.newsletter-container {
|
|
max-width: 600px;
|
|
margin: 0 auto;
|
|
text-align: center;
|
|
position: relative;
|
|
}
|
|
|
|
.show{
|
|
display: block !important;
|
|
opacity: 1 !important;
|
|
}
|
|
|
|
.newsletter-title {
|
|
font-size: 32px;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.newsletter-desc {
|
|
font-size: 16px;
|
|
color: var(--text-dark);
|
|
margin-bottom: 30px;
|
|
line-height: 1.6;
|
|
}
|
|
|
|
.newsletter-form {
|
|
display: flex;
|
|
gap: 10px;
|
|
max-width: 500px;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.newsletter-input {
|
|
flex: 1;
|
|
padding: 15px;
|
|
border: none;
|
|
border-radius: 4px;
|
|
background: rgba(255, 255, 255, 0.1);
|
|
color: var(--text);
|
|
font-size: 16px;
|
|
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
|
|
border: 1px solid rgba(255, 255, 255, 0.1);
|
|
transition: var(--transition);
|
|
font-family: 'Montserrat';
|
|
}
|
|
|
|
.newsletter-input:focus {
|
|
outline: none;
|
|
background: rgba(255, 255, 255, 0.15);
|
|
border-color: rgba(201, 169, 95, 0.3);
|
|
}
|
|
|
|
.newsletter-btn {
|
|
padding: 15px 25px;
|
|
background: var(--accent);
|
|
color: var(--primary);
|
|
font-size: 16px;
|
|
font-weight: 600;
|
|
border: none;
|
|
border-radius: 4px;
|
|
cursor: pointer;
|
|
transition: var(--transition);
|
|
font-family: 'Montserrat';
|
|
}
|
|
|
|
.newsletter-btn:hover {
|
|
background: var(--accent-dark);
|
|
transform: translateY(-3px);
|
|
}
|
|
|
|
/* Footer */
|
|
footer {
|
|
background: var(--primary);
|
|
padding: 60px 0 30px;
|
|
position: relative;
|
|
overflow: hidden;
|
|
}
|
|
|
|
footer::before {
|
|
content: '';
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 1px;
|
|
background: linear-gradient(to right, transparent, var(--accent), transparent);
|
|
}
|
|
|
|
.footer-container {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
|
|
gap: 40px;
|
|
max-width: 1200px;
|
|
margin: 0 auto;
|
|
padding: 0 20px;
|
|
}
|
|
|
|
.footer-logo {
|
|
display: flex;
|
|
align-items: center;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.footer-title {
|
|
font-size: 20px;
|
|
margin-bottom: 20px;
|
|
color: var(--accent);
|
|
position: relative;
|
|
padding-bottom: 10px;
|
|
}
|
|
|
|
.footer-title::after {
|
|
content: '';
|
|
position: absolute;
|
|
bottom: 0;
|
|
left: 0;
|
|
width: 40px;
|
|
height: 2px;
|
|
background: var(--accent);
|
|
}
|
|
|
|
.footer-links {
|
|
list-style: none;
|
|
}
|
|
|
|
.footer-links li {
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
.footer-links a {
|
|
color: var(--text-dark);
|
|
text-decoration: none;
|
|
font-size: 14px;
|
|
transition: var(--transition);
|
|
display: inline-block;
|
|
}
|
|
|
|
.footer-links a:hover {
|
|
color: var(--accent);
|
|
transform: translateX(5px);
|
|
}
|
|
|
|
.footer-contact p {
|
|
display: flex;
|
|
align-items: center;
|
|
color: var(--text-dark);
|
|
margin-bottom: 15px;
|
|
font-size: 14px;
|
|
}
|
|
|
|
.footer-contact i {
|
|
color: var(--accent);
|
|
margin-right: 10px;
|
|
font-size: 16px;
|
|
}
|
|
|
|
.social-links {
|
|
display: flex;
|
|
gap: 15px;
|
|
margin-top: 20px;
|
|
}
|
|
|
|
.social-icon {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
width: 40px;
|
|
height: 40px;
|
|
background: rgba(255, 255, 255, 0.05);
|
|
border-radius: 50%;
|
|
color: var(--accent);
|
|
font-size: 18px;
|
|
transition: var(--transition);
|
|
text-decoration: none;
|
|
}
|
|
|
|
.social-icon:hover {
|
|
background: var(--accent);
|
|
color: var(--primary);
|
|
transform: translateY(-5px);
|
|
}
|
|
|
|
.footer-bottom {
|
|
text-align: center;
|
|
padding-top: 40px;
|
|
margin-top: 40px;
|
|
border-top: 1px solid rgba(255, 255, 255, 0.05);
|
|
font-size: 14px;
|
|
color: var(--text-dark);
|
|
}
|
|
|
|
.admin-link {
|
|
color: var(--text-dark);
|
|
font-size: 12px;
|
|
margin-top: 10px;
|
|
display: inline-block;
|
|
transition: var(--transition);
|
|
opacity: 0.5;
|
|
}
|
|
|
|
.admin-link:hover {
|
|
color: var(--text);
|
|
opacity: 1;
|
|
}
|
|
|
|
/* Age Verification Modal */
|
|
.modal-overlay {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
background: rgba(0, 0, 0, 0.85);
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
z-index: 1000;
|
|
backdrop-filter: blur(5px);
|
|
}
|
|
|
|
.age-verification {
|
|
background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(245, 245, 245, 0.95));
|
|
border-radius: 10px;
|
|
padding: 40px;
|
|
max-width: 500px;
|
|
width: 90%;
|
|
text-align: center;
|
|
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
|
|
border: 1px solid rgba(201, 169, 95, 0.2);
|
|
animation: modalFadeIn 0.5s ease;
|
|
}
|
|
|
|
@keyframes modalFadeIn {
|
|
from {
|
|
opacity: 0;
|
|
transform: translateY(-30px);
|
|
}
|
|
to {
|
|
opacity: 1;
|
|
transform: translateY(0);
|
|
}
|
|
}
|
|
|
|
.age-icon {
|
|
font-size: 60px;
|
|
color: var(--accent);
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.age-title {
|
|
font-size: 28px;
|
|
margin-bottom: 15px;
|
|
}
|
|
|
|
.age-text {
|
|
font-size: 16px;
|
|
color: var(--text-dark);
|
|
margin-bottom: 30px;
|
|
line-height: 1.6;
|
|
}
|
|
|
|
.age-buttons {
|
|
display: flex;
|
|
gap: 20px;
|
|
justify-content: center;
|
|
}
|
|
|
|
.age-btn {
|
|
padding: 12px 25px;
|
|
border: none;
|
|
border-radius: 4px;
|
|
font-size: 16px;
|
|
font-weight: 600;
|
|
cursor: pointer;
|
|
transition: var(--transition);
|
|
}
|
|
|
|
.age-yes {
|
|
background: var(--accent);
|
|
color: var(--primary);
|
|
}
|
|
|
|
.age-yes:hover {
|
|
background: var(--accent-dark);
|
|
transform: translateY(-3px);
|
|
}
|
|
|
|
.age-no {
|
|
background: rgba(255, 255, 255, 0.1);
|
|
color: var(--text);
|
|
}
|
|
|
|
.age-no:hover {
|
|
background: rgba(255, 255, 255, 0.2);
|
|
}
|
|
|
|
/* Animations */
|
|
@keyframes fadeInUp {
|
|
from {
|
|
opacity: 0;
|
|
transform: translateY(20px);
|
|
}
|
|
to {
|
|
opacity: 1;
|
|
transform: translateY(0);
|
|
}
|
|
}
|
|
|
|
@keyframes pulse {
|
|
0% {
|
|
transform: scale(1);
|
|
}
|
|
50% {
|
|
transform: scale(1.05);
|
|
}
|
|
100% {
|
|
transform: scale(1);
|
|
}
|
|
}
|
|
|
|
/* Responsive Styles */
|
|
@media (max-width: 1024px) {
|
|
.hero-title {
|
|
font-size: 48px;
|
|
}
|
|
.carousel-item {
|
|
flex: 0 0 calc(50% - 20px);
|
|
}
|
|
}
|
|
@media (max-width: 768px) {
|
|
.header-content {
|
|
padding: 15px;
|
|
}
|
|
nav ul {
|
|
display: none;
|
|
flex-direction: column;
|
|
position: absolute;
|
|
top: 100%;
|
|
left: 0;
|
|
width: 100%;
|
|
background: rgba(255, 255, 255, 0.95);
|
|
padding: 20px;
|
|
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
|
|
transform: translateY(-10px);
|
|
opacity: 0;
|
|
pointer-events: none;
|
|
transition: var(--transition);
|
|
}
|
|
nav ul.show {
|
|
transform: translateY(0);
|
|
opacity: 1;
|
|
pointer-events: auto;
|
|
}
|
|
nav ul li {
|
|
margin: 10px 0;
|
|
}
|
|
.hamburger {
|
|
display: block;
|
|
}
|
|
.hero-title {
|
|
font-size: 36px;
|
|
}
|
|
.hero-subtitle {
|
|
font-size: 18px;
|
|
}
|
|
.btn {
|
|
padding: 12px 24px;
|
|
font-size: 16px;
|
|
}
|
|
.feature-grid {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
.carousel-item {
|
|
flex: 0 0 calc(100% - 20px);
|
|
}
|
|
.newsletter-form {
|
|
flex-direction: column;
|
|
}
|
|
.newsletter-btn {
|
|
width: 100%;
|
|
}
|
|
.footer-container {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
}
|
|
@media (max-width: 480px) {
|
|
.hero-title {
|
|
font-size: 32px;
|
|
}
|
|
.features-title, .products-title {
|
|
font-size: 28px;
|
|
}
|
|
.age-verification {
|
|
padding: 30px 20px;
|
|
}
|
|
.age-title {
|
|
font-size: 24px;
|
|
}
|
|
.age-buttons {
|
|
flex-direction: column;
|
|
gap: 10px;
|
|
}
|
|
.carousel-container {
|
|
padding: 0 50px;
|
|
}
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<!-- Age Verification Modal -->
|
|
<div class="modal-overlay" id="ageModal">
|
|
<div class="age-verification">
|
|
<div class="age-icon">
|
|
<i class="fas fa-exclamation-triangle"></i>
|
|
</div>
|
|
<h2 class="age-title">Ověření věku</h2>
|
|
<p class="age-text">Vítejte na MasterDrinks. Pro vstup na tuto stránku musíte být plnoletí podle zákonů vaší země. Kliknutím na "Ano" potvrzujete, že je vám alespoň 18 let.</p>
|
|
<div class="age-buttons">
|
|
<button class="age-btn age-yes" id="ageYes">Ano, je mi 18+</button>
|
|
<button class="age-btn age-no" id="ageNo">Ne, je mi méně než 18</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<!-- Header -->
|
|
<header>
|
|
<div class="container">
|
|
<div class="header-content">
|
|
<div class="logo">
|
|
<img src="https://www.masterdrinks.cz/files/img/main/logo_dark.png" class="logo-img" alt="Logo MasterDrinks">
|
|
</div>
|
|
<nav>
|
|
<ul id="navMenu">
|
|
<li><a href="#features">Objevit</a></li>
|
|
<li><a href="#products">Produkty</a></li>
|
|
<li><a href="#services">Služby</a></li>
|
|
<li><a href="#contact">Kontakt</a></li>
|
|
</ul>
|
|
<div class="hamburger" id="hamburger">
|
|
<i class="fas fa-bars"></i>
|
|
</div>
|
|
</nav>
|
|
</div>
|
|
</div>
|
|
</header>
|
|
<!-- Hero Section -->
|
|
<section class="hero">
|
|
<div class="container">
|
|
<div class="hero-content">
|
|
<h1 class="hero-title">Premium Destiláty & Výjimečné Služby</h1>
|
|
<p class="hero-subtitle">Váš důvěryhodný partner pro maloobchodní a velkoobchodní distribuci alkoholu. Objevte naši výjimečnou kolekci kvalitních destilátů.</p>
|
|
<a href="#products" class="btn">Prozkoumat naši kolekci</a>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
<!-- Feature Squares Section -->
|
|
<section class="features" id="features">
|
|
<div class="container">
|
|
<h2 class="features-title">Objevte MasterDrinks</h2>
|
|
<div class="feature-grid">
|
|
<!-- About Us -->
|
|
<div class="feature-card" id="aboutCard">
|
|
<div class="feature-icon">
|
|
<i class="fas fa-building"></i>
|
|
</div>
|
|
<h3 class="feature-title">O nás</h3>
|
|
<p class="feature-desc">Seznamte se s naší společností, historií, hodnotami, otevíracími hodinami a kontaktními údaji.</p>
|
|
</div>
|
|
<!-- Our Products -->
|
|
<div class="feature-card" id="productsCard">
|
|
<div class="feature-icon">
|
|
<i class="fas fa-wine-glass-alt"></i>
|
|
</div>
|
|
<h3 class="feature-title">Naše produkty</h3>
|
|
<p class="feature-desc">Prozkoumejte naši širokou nabídku premium destilátů, včetně bourbonu, brandy, džinu, koňaku, likérů, rumu, tequily, vodky a whisky.</p>
|
|
</div>
|
|
<!-- Services -->
|
|
<div class="feature-card" id="servicesCard">
|
|
<div class="feature-icon">
|
|
<i class="fas fa-truck"></i>
|
|
</div>
|
|
<h3 class="feature-title">Služby</h3>
|
|
<p class="feature-desc">Objevte naše možnosti doručování a pronájem stánků pro akce a speciální příležitosti.</p>
|
|
</div>
|
|
<!-- News & Promotions -->
|
|
<div class="feature-card" id="newsCard">
|
|
<div class="feature-icon">
|
|
<i class="fas fa-tags"></i>
|
|
</div>
|
|
<h3 class="feature-title">Novinky & Akce</h3>
|
|
<p class="feature-desc">Zůstaňte v obraze s našimi nejnovějšími novinkami, speciálními nabídkami a propagačními akcemi.</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
<!-- Product Carousel -->
|
|
<section class="products" id="products">
|
|
<div class="container">
|
|
<h2 class="products-title">Doporučené produkty</h2>
|
|
<div class="carousel-container">
|
|
<div class="carousel" id="productCarousel">
|
|
<!-- Bourbon -->
|
|
<div class="carousel-item">
|
|
<img src="https://www.masterdrinks.cz/files/img/products_02/vodka-absolut.png" alt="Bourbon" class="carousel-img">
|
|
<div class="carousel-content">
|
|
<h3 class="carousel-title">Premium Bourbon</h3>
|
|
<p class="carousel-desc">Hladký, bohatý bourbon s náznaky vanilky, karamelu a dubu.</p>
|
|
<p class="carousel-price">$45.99</p>
|
|
<a href="#" class="carousel-btn">Zobrazit podrobnosti</a>
|
|
</div>
|
|
</div>
|
|
<!-- Gin -->
|
|
<div class="carousel-item">
|
|
<img src="https://www.masterdrinks.cz/files/img/products_02/vodka-absolut-facet.jpg" alt="Gin" class="carousel-img">
|
|
<div class="carousel-content">
|
|
<h3 class="carousel-title">Řemeslný Džin</h3>
|
|
<p class="carousel-desc">Ručně vyráběný džin s bylinnými poznámkami a citrusovými tóny.</p>
|
|
<p class="carousel-price">$38.99</p>
|
|
<a href="#" class="carousel-btn">Zobrazit podrobnosti</a>
|
|
</div>
|
|
</div>
|
|
<!-- Tequila -->
|
|
<div class="carousel-item">
|
|
<img src="https://www.masterdrinks.cz/files/img/products_02/vodka-absolut-ruby-red.png" alt="Tequila" class="carousel-img">
|
|
<div class="carousel-content">
|
|
<h3 class="carousel-title">Añejo Tequila</h3>
|
|
<p class="carousel-desc">Vyvážená tequila s komplexními chutěmi a hladkým dokončením.</p>
|
|
<p class="carousel-price">$55.99</p>
|
|
<a href="#" class="carousel-btn">Zobrazit podrobnosti</a>
|
|
</div>
|
|
</div>
|
|
<!-- Whisky -->
|
|
<div class="carousel-item">
|
|
<img src="https://www.masterdrinks.cz/files/img/products_02/vodka-absolut-kurant.png" alt="Whisky" class="carousel-img">
|
|
<div class="carousel-content">
|
|
<h3 class="carousel-title">Single Malt Whisky</h3>
|
|
<p class="carousel-desc">Rašelinový, kouřový whisky s náznaky vanilky a koření.</p>
|
|
<p class="carousel-price">$72.99</p>
|
|
<a href="#" class="carousel-btn">Zobrazit podrobnosti</a>
|
|
</div>
|
|
</div>
|
|
<!-- Vodka -->
|
|
<div class="carousel-item">
|
|
<img src="https://www.masterdrinks.cz/files/img/products_02/vodka-absolut-vanilia.png" alt="Vodka" class="carousel-img">
|
|
<div class="carousel-content">
|
|
<h3 class="carousel-title">Premium Vodka</h3>
|
|
<p class="carousel-desc">Ultra-hladká vodka, destilovaná pětkrát pro čistotu.</p>
|
|
<p class="carousel-price">$32.99</p>
|
|
<a href="#" class="carousel-btn">Zobrazit podrobnosti</a>
|
|
</div>
|
|
</div>
|
|
<!-- Rum -->
|
|
<div class="carousel-item">
|
|
<img src="https://www.masterdrinks.cz/files/img/products_02/vodka-absolut-pears.png" alt="Rum" class="carousel-img">
|
|
<div class="carousel-content">
|
|
<h3 class="carousel-title">Vyvážený Rum</h3>
|
|
<p class="carousel-desc">Karibský rum vyzrálý v dubových sudích s náznaky koření a karamelu.</p>
|
|
<p class="carousel-price">$42.99</p>
|
|
<a href="#" class="carousel-btn">Zobrazit podrobnosti</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="carousel-nav carousel-prev" id="prevBtn">
|
|
<i class="fas fa-chevron-left"></i>
|
|
</div>
|
|
<div class="carousel-nav carousel-next" id="nextBtn">
|
|
<i class="fas fa-chevron-right"></i>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d1554.2191141813225!2d17.476257923806973!3d49.070018978781754!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x471314430011c0c7%3A0xe31bbc93e17aa486!2sMaster%20Drinks%2C%20s.r.o.!5e0!3m2!1sen!2scz!4v1745270716917!5m2!1sen!2scz%22" width="100%" height="600px" style="border:none;"></iframe>
|
|
|
|
<!-- Newsletter Section -->
|
|
<section class="newsletter">
|
|
<div class="container">
|
|
<div class="newsletter-container">
|
|
<h2 class="newsletter-title">Zůstaňte informováni</h2>
|
|
<p class="newsletter-desc">Přihlaste se k odběru našeho newsletteru, abyste dostávali exkluzivní nabídky, novinky o příchodu nových produktů a odborné doporučení.</p>
|
|
<form class="newsletter-form">
|
|
<input type="email" class="newsletter-input" placeholder="Váš email" required>
|
|
<button type="submit" class="newsletter-btn">Přihlásit</button>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
<!-- Footer -->
|
|
<footer id="contact">
|
|
<div class="container">
|
|
<div class="footer-container">
|
|
<div class="footer-info">
|
|
<div class="footer-logo">
|
|
<img src="https://www.masterdrinks.cz/files/img/main/logo_dark.png" class="logo-img" alt="Logo MasterDrinks">
|
|
</div>
|
|
<p>Premium distributor alkoholu nabízející maloobchodní a velkoobchodní služby s výjimečnou kolekcí kvalitních destilátů.</p>
|
|
<div class="social-links">
|
|
<a href="#" class="social-icon"><i class="fab fa-facebook-f"></i></a>
|
|
<a href="#" class="social-icon"><i class="fab fa-instagram"></i></a>
|
|
<a href="#" class="social-icon"><i class="fab fa-twitter"></i></a>
|
|
<a href="#" class="social-icon"><i class="fab fa-linkedin-in"></i></a>
|
|
</div>
|
|
</div>
|
|
<div class="footer-links-section">
|
|
<h3 class="footer-title">Rychlé odkazy</h3>
|
|
<ul class="footer-links">
|
|
<li><a href="#features">O nás</a></li>
|
|
<li><a href="#products">Naše produkty</a></li>
|
|
<li><a href="#services">Služby</a></li>
|
|
<li><a href="#news">Akce</a></li>
|
|
<li><a href="#contact">Kontakt</a></li>
|
|
</ul>
|
|
</div>
|
|
<div class="footer-links-section">
|
|
<h3 class="footer-title">Produkty</h3>
|
|
<ul class="footer-links">
|
|
<li><a href="#">Bourbon & Whisky</a></li>
|
|
<li><a href="#">Vodka & Džin</a></li>
|
|
<li><a href="#">Rum & Tequila</a></li>
|
|
<li><a href="#">Koňak & Brandy</a></li>
|
|
<li><a href="#">Likéry</a></li>
|
|
</ul>
|
|
</div>
|
|
<div class="footer-contact">
|
|
<h3 class="footer-title">Kontaktujte nás</h3>
|
|
<p><i class="fas fa-map-marker-alt"></i> Sokolovská 758, 686 01 Uherské Hradiště</p>
|
|
<p><i class="fas fa-phone"></i> +420 602 702 129</p>
|
|
<p><i class="fas fa-envelope"></i> masterdrinks@seznam.cz</p>
|
|
<p><i class="fas fa-clock"></i> Po-Pá: 10:00 - 20:00, So: 12:00 - 18:00</p>
|
|
</div>
|
|
</div>
|
|
<div class="footer-bottom">
|
|
<p>MasterDrinks, s.r.o. IČO: 28326369 | DIČ: CZ28326369. Všechna práva vyhrazena. Pijte zodpovědně.</p>
|
|
<a style="color: #1a1a1a; text-decoration: none; font-weight: bold;" href="tdvorak.dev" target="_blank">© 2025 TDvorak.dev</a>
|
|
</div>
|
|
</div>
|
|
</footer>
|
|
|
|
<script>
|
|
// Age Verification
|
|
document.addEventListener('DOMContentLoaded', function() {
|
|
const ageModal = document.getElementById('ageModal');
|
|
const ageYesBtn = document.getElementById('ageYes');
|
|
const ageNoBtn = document.getElementById('ageNo');
|
|
const hamburger = document.getElementById('hamburger');
|
|
const navMenu = document.getElementById('navMenu');
|
|
const prevBtn = document.getElementById('prevBtn');
|
|
const nextBtn = document.getElementById('nextBtn');
|
|
const carousel = document.getElementById('productCarousel');
|
|
|
|
// Check if user has verified age before
|
|
const isAgeVerified = localStorage.getItem('ageVerified');
|
|
|
|
if (isAgeVerified) {
|
|
ageModal.style.display = 'none';
|
|
}
|
|
|
|
// Age verification buttons
|
|
ageYesBtn.addEventListener('click', function() {
|
|
localStorage.setItem('ageVerified', 'true');
|
|
ageModal.style.animation = 'modalFadeOut 0.5s ease forwards';
|
|
setTimeout(() => {
|
|
ageModal.style.display = 'none';
|
|
}, 500);
|
|
});
|
|
|
|
ageNoBtn.addEventListener('click', function() {
|
|
window.onbeforeunload = function(event) {
|
|
return null;
|
|
};
|
|
window.location.href = 'about:blank';
|
|
});
|
|
|
|
// Mobile menu toggle
|
|
hamburger.addEventListener('click', function() {
|
|
navMenu.classList.toggle('show');
|
|
});
|
|
|
|
// Carousel functionality
|
|
let autoScrollInterval;
|
|
|
|
function scrollCarousel(direction) {
|
|
const scrollAmount = 300;
|
|
const maxScroll = carousel.scrollWidth - carousel.clientWidth;
|
|
|
|
if (direction === 'next') {
|
|
if (carousel.scrollLeft >= maxScroll) {
|
|
// If at the end, smoothly scroll back to start
|
|
carousel.scrollTo({
|
|
left: 0,
|
|
behavior: 'smooth'
|
|
});
|
|
} else {
|
|
carousel.scrollBy({
|
|
left: scrollAmount,
|
|
behavior: 'smooth'
|
|
});
|
|
}
|
|
} else {
|
|
if (carousel.scrollLeft <= 0) {
|
|
// If at the start, smoothly scroll to end
|
|
carousel.scrollTo({
|
|
left: maxScroll,
|
|
behavior: 'smooth'
|
|
});
|
|
} else {
|
|
carousel.scrollBy({
|
|
left: -scrollAmount,
|
|
behavior: 'smooth'
|
|
});
|
|
}
|
|
}
|
|
}
|
|
|
|
// Start auto-scrolling
|
|
function startAutoScroll() {
|
|
autoScrollInterval = setInterval(() => {
|
|
scrollCarousel('next');
|
|
}, 3000); // Scroll every 3 seconds
|
|
}
|
|
|
|
// Stop auto-scrolling
|
|
function stopAutoScroll() {
|
|
clearInterval(autoScrollInterval);
|
|
}
|
|
|
|
// Initialize auto-scroll
|
|
startAutoScroll();
|
|
|
|
// Pause auto-scroll on hover
|
|
carousel.addEventListener('mouseenter', stopAutoScroll);
|
|
carousel.addEventListener('mouseleave', startAutoScroll);
|
|
|
|
// Button controls
|
|
nextBtn.addEventListener('click', () => {
|
|
stopAutoScroll();
|
|
scrollCarousel('next');
|
|
startAutoScroll();
|
|
});
|
|
|
|
prevBtn.addEventListener('click', () => {
|
|
stopAutoScroll();
|
|
scrollCarousel('prev');
|
|
startAutoScroll();
|
|
});
|
|
|
|
// Feature card interactions
|
|
const featureCards = document.querySelectorAll('.feature-card');
|
|
featureCards.forEach(card => {
|
|
card.addEventListener('click', function() {
|
|
const id = this.id;
|
|
// Add your navigation or modal logic here
|
|
console.log(`Clicked on ${id}`);
|
|
});
|
|
});
|
|
|
|
// Parallax effect for hero section
|
|
window.addEventListener('scroll', function() {
|
|
const hero = document.querySelector('.hero');
|
|
const scrollPosition = window.scrollY;
|
|
|
|
if (scrollPosition < hero.offsetHeight) {
|
|
hero.style.backgroundPositionY = `${scrollPosition * 0.5}px`;
|
|
}
|
|
});
|
|
|
|
// Sticky header
|
|
window.addEventListener('scroll', function() {
|
|
const header = document.querySelector('header');
|
|
if (window.scrollY > 100) {
|
|
header.classList.add('sticky');
|
|
} else {
|
|
header.classList.remove('sticky');
|
|
}
|
|
});
|
|
});
|
|
</script>
|
|
|
|
</body>
|
|
</html>
|
|
``` |