/* Global Styles */
body {
    background-color: #ffffff;
    color: #000000;
    font-family: 'DM Sans', sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

/* Colors */
:root {
    --dark-red: #800000;
    --gold: #ffd700;
    --dark-gold: #e6c200;
    --dark-gray: #161616;
}

/* Navbar */
.navbar {
    background-color: var(--dark-red);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.navbar .nav-link {
    color: #fff;
    transition: color 0.3s ease;
}

.navbar .nav-link:hover {
    color: var(--gold);
}

.navbar-brand {
    font-weight: bold;
    color: var(--gold) !important;
}

/* Hero Section */
#hero {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    background-image: url('./images/SKtop.jpeg');
    background-size: cover;
    background-position: center;
    background-blend-mode: multiply;
}

#hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(128, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero-content h1 {
    font-size: 5rem;
    color: var(--gold);
    letter-spacing: 3px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease-in-out;
}

.hero-content p {
    font-size: 1.8rem;
    margin-bottom: 2.5rem;
    animation: fadeInUp 1.5s ease-in-out;
}

.hero-content .btn {
    background: var(--gold);
    color: #000;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    animation: fadeInUp 2s ease-in-out;
}

.hero-content .btn:hover {
    background-color: var(--dark-gold);
}

/* Keyframe Animations */
@keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* Section Styling */
.section {
    background-color: #ffffff;
    padding: 4rem 0;
}

.section-title {
    font-size: 2.8rem;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 3rem;
    color: var(--dark-red);
    text-align: center;
}

.section-title::after {
    content: '';
    width: 80px;
    height: 4px;
    background-color: var(--gold);
    display: block;
    margin: 10px auto;
}

.section-content {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #333;
}

.section-content .lead {
    font-size: 1.3rem;
    font-weight: bold;
    color: #000;
}

.section-content .highlight-text {
    font-size: 1.1rem;
    color: var(--dark-red);
    font-style: italic;
    margin-top: 1rem;
}

/* Gallery Image Styling */
.image-container {
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.3);
}

.gallery-image {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease-in-out;
    cursor: pointer;
    border-radius: 10px;
}

.gallery-image:hover {
    transform: scale(1.05);
}

/* Call to Action Section */
.call-cta {
    background-color: #ffffff;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.call-cta .btn-primary {
    background-color: var(--dark-red);
    border: none;
}

.call-cta .btn-primary:hover {
    background-color: #660000;
}

/* Video Section */
.video-section .video-wrapper {
    position: relative;
    Filipecek
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background: #000;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Testimonials Section */
.testimonials {
    background-color: #ffffff;
}

.testimonials .card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.testimonials .card-body {
    padding: 2rem;
}

.testimonials .fa-quote-left {
    color: var(--gold);
}

.testimonials .testimonial-text {
    font-size: 1.1rem;
    color: #333;
    font-style: italic;
}

.testimonials .blockquote-footer {
    color: var(--dark-red);
    font-weight: bold;
    margin-top: 1rem;
}

/* Ingredients Section */
.ingredient-item {
    background-color: #fff;
    padding: 1rem;
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

/* Social Media Section */
.social-media {
    background-color: var(--dark-red);
    color: #fff;
}

.social-media .section-title {
    color: var(--gold);
}

.social-media .btn {
    border-radius: 50px;
    padding: 0.8rem 1.8rem;
    font-size: 1.1rem;
    margin: 0.5rem;
    border: 2px solid var(--gold);
    color: #fff;
}

.social-media .btn-instagram {
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
}

.social-media .btn-facebook {
    background-color: #3b5998;
}

.social-media .btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Contact Form Styling */
.contact-form {
    background-color: #f8f9fa;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.contact-form .form-control {
    background-color: #fff;
    color: #000;
    border: 1px solid #ced4da;
    padding: 0.75rem;
    border-radius: 5px;
}

.contact-form .form-control::placeholder {
    color: #888;
}

.contact-form button {
    background-color: var(--dark-red);
    color: #fff;
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
}

.contact-form button:hover {
    background-color: #660000;
}

/* Location Section */
.location img {
    max-width: 600px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    margin-top: 2rem;
    margin-bottom: 1.5rem;
}

.location p {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.location strong {
    color: var(--dark-red);
}

/* Footer */
.footer {
    background-color: var(--dark-gray);
    color: #ffffff;
    padding: 3rem 0;
    text-align: center;
}

.footer .social-icons a {
    color: #ffffff;
    margin: 0 10px;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.footer .social-icons a:hover {
    color: var(--gold);
}

/* E-book Section */
.ebook-section {
    background-color: #f0f8ff;
    padding: 4rem 0;
    text-align: center;
}

.ebook-card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ebook-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.ebook-card img {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    height: 200px;
    object-fit: cover;
    width: 100%;
}

.ebook-card .card-body {
    padding: 1.5rem;
}

.ebook-card .card-title {
    font-size: 1.4rem;
    font-weight: bold;
    color: var(--dark-red);
}

.ebook-card .card-text {
    font-size: 0.95rem;
    color: #666;
}

.ebook-section .btn-primary {
    background-color: var(--gold);
    color: #000;
    border-color: var(--gold);
}

.ebook-section .btn-primary:hover {
    background-color: var(--dark-gold);
    border-color: var(--dark-gold);
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .hero-content h1 { font-size: 3.5rem; }
    .hero-content p { font-size: 1.5rem; }
    .section-title { font-size: 2.2rem; }
}

@media (max-width: 767.98px) {
    .hero-content h1 { font-size: 2.8rem; }
    .hero-content p { font-size: 1.2rem; }
    .hero-content .btn { padding: 0.8rem 1.5rem; font-size: 1.1rem; }
    .navbar-brand { font-size: 1.5rem; }
    .navbar .nav-link { font-size: 0.9rem; }
    .section-title { font-size: 1.8rem; }
    .section-content, .section-content .lead, .section-content .highlight-text { font-size: 1rem; }
    .testimonials .testimonial-text { font-size: 1rem; }
    .social-media .btn { font-size: 1rem; padding: 0.6rem 1.2rem; }
    .ebook-card img { height: 180px; }
}