/* 
* Rasadnik Gornji Krnjin - Main Stylesheet
* Elegant, feminine design for a florist business targeting women over 35
*/

/* ===== BASE STYLES ===== */
:root {
    /* Updated Color Variables - More feminine, elegant palette */
    --primary-color: #7b9e89;     /* Softer sage green */
    --secondary-color: #d4a5a5;   /* Soft dusty rose */
    --accent-color: #f0c987;      /* Warm gold */
    --light-color: #f9f7f3;       /* Warm off-white */
    --dark-color: #3c4142;        /* Softer black */
    --text-color: #4a4a4a;        /* Softer text color */
    --text-light: #767676;        /* Soft gray */
    --white: #ffffff;
    --section-bg: #f6f2ee;        /* Soft cream background */
    --border-color: #e0dcd5;      /* Soft border */
    
    /* Updated Typography - Elegant sans-serif fonts */
    --heading-font: 'Cormorant Garamond', serif;
    --body-font: 'Open Sans', sans-serif;
    
    /* Spacing */
    --section-padding: 90px 0;    /* More generous spacing */
    --container-padding: 0 20px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    color: var(--text-color);
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden;
    background-color: var(--light-color);
    letter-spacing: 0.01em;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 18px;
    color: var(--dark-color);
    letter-spacing: 0.02em;
}

p {
    margin-bottom: 22px;
}

a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

a:hover {
    color: var(--primary-color);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

img.loaded {
    opacity: 1;
}

.img-fluid {
    max-width: 100%;
    height: auto;
    background-color: #f0f0f0;
    position: relative;
}

.img-fluid::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
    z-index: 1;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-title h2 {
    font-size: 40px;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
    color: var(--primary-color);
}

.section-title h2::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 1px;
    background-color: var(--secondary-color);
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 1px;
    background-color: var(--accent-color);
}

.btn {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 14px 34px;
    border-radius: 30px;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(212, 165, 165, 0.2);
    transition: all 0.3s ease;
    border: none;
    font-size: 15px;
    text-transform: none;
}

.btn:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(123, 158, 137, 0.3);
}

section {
    padding: var(--section-padding);
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.97);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
}

.header.scrolled {
    padding: 10px 0;
    background-color: var(--white);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 26px;
    margin-bottom: 0;
    font-weight: 700;
    color: var(--primary-color);
    font-family: var(--heading-font);
    letter-spacing: 0.05em;
}

.nav-menu {
    display: flex;
}

.nav-menu li {
    margin-left: 35px;
}

.nav-link {
    color: var(--dark-color);
    font-weight: 600;
    font-size: 15px;
    position: relative;
    letter-spacing: 0.02em;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--secondary-color);
    transition: all 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 2px;
    margin: 6px 0;
    background-color: var(--dark-color);
    transition: all 0.3s ease;
}

/* ===== HERO SECTION ===== */
.hero {
    height: 100vh;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 30%, rgba(0, 0, 0, 0.0)), url('../img/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    color: var(--white);
    padding-top: 0;
    will-change: transform;
}

.hero-content {
    max-width: 600px;
    padding: 0 20px;
    margin-left: 10%;
    text-align: left;
}

.hero-content h1 {
    font-size: 58px;
    color: var(--white);
    margin-bottom: 15px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
    line-height: 1.2;
    font-weight: 400;
}

.hero-content h2 {
    font-size: 32px;
    color: var(--accent-color);
    margin-bottom: 25px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
    font-weight: 300;
    font-style: italic;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 35px;
    color: var(--light-color);
    line-height: 1.6;
}

.hero .btn {
    padding: 16px 40px;
    font-size: 16px;
    background-color: var(--secondary-color);
}

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

/* ===== ABOUT SECTION ===== */
.about {
    background-color: var(--white);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-text {
    flex: 1;
}

.about-text p {
    margin-bottom: 22px;
    color: var(--text-color);
    font-size: 16px;
    line-height: 1.8;
}

.about-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    position: relative;
}

.about-image::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border: 1px solid var(--accent-color);
    z-index: -1;
    opacity: 0.6;
}

.working-hours {
    background-color: var(--light-color);
    padding: 25px;
    border-radius: 10px;
    margin-top: 35px;
    border-left: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
}

.working-hours::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, var(--secondary-color), var(--primary-color));
    border-radius: 5px 0 0 5px;
}

.working-hours h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
    font-size: 22px;
}

.working-hours p {
    margin-bottom: 8px;
    font-size: 15px;
}

.working-hours i {
    color: var(--secondary-color);
    margin-right: 12px;
}

/* ===== PRODUCTS SECTION ===== */
.products {
    background-color: var(--section-bg);
    position: relative;
}

.products::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23f0c987' fill-opacity='0.1' fill-rule='evenodd'%3E%3Cpath d='M0 20C0 8.954 8.954 0 20 0s20 8.954 20 20-8.954 20-20 20S0 31.046 0 20zm20-15c-8.284 0-15 6.716-15 15 0 8.284 6.716 15 15 15 8.284 0 15-6.716 15-15 0-8.284-6.716-15-15-15z'/%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
    z-index: 0;
}

.products .container {
    position: relative;
    z-index: 1;
}

.products-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    opacity: 1 !important;
}

.products-intro p {
    font-size: 17px;
    line-height: 1.8;
    opacity: 1 !important;
}

.products-intro.skeleton-wrapper::before {
    display: none;
}

.product-categories {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.category {
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    position: relative;
}

.category:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.category-img {
    height: 280px;
    overflow: hidden;
    position: relative;
}

.category-img::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(to top, rgba(0,0,0,0.3), transparent);
}

.category-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.category:hover .category-img img {
    transform: scale(1.12);
}

.category h3 {
    font-size: 22px;
    margin: 24px 0 12px;
    padding: 0 25px;
    color: var(--primary-color);
    font-weight: 500;
}

.category p {
    padding: 0 25px 25px;
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.7;
}

.seasonal-offer {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 50px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(123, 158, 137, 0.2);
    position: relative;
    overflow: hidden;
}

.seasonal-offer::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.seasonal-offer::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 180px;
    height: 180px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.seasonal-offer h3 {
    color: var(--white);
    font-size: 32px;
    margin-bottom: 15px;
    font-weight: 400;
}

.seasonal-offer p {
    margin-bottom: 30px;
    font-size: 18px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.seasonal-offer .btn {
    background-color: var(--white);
    color: var(--primary-color);
    border: none;
}

.seasonal-offer .btn:hover {
    background-color: var(--accent-color);
    color: var(--dark-color);
}

/* ===== GALLERY SECTION ===== */
.gallery {
    background-color: var(--white);
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    position: relative;
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(123, 158, 137, 0.3), transparent);
    opacity: 0;
    transition: all 0.4s ease;
}

.gallery-item:hover::after {
    opacity: 1;
}

.gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.12);
}

/* ===== MARKET DAYS SECTION ===== */
.market-days {
    background-color: var(--section-bg);
    position: relative;
}

.market-days::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23d4a5a5' fill-opacity='0.08' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3Ccircle cx='13' cy='13' r='3'/%3E%3C/g%3E%3C/svg%3E");
}

.market-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    background-color: rgba(249, 247, 243, 0.8);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.market-list {
    display: inline-block;
    margin: 25px 0 35px;
    text-align: left;
}

.market-list li {
    margin-bottom: 18px;
    font-size: 18px;
    color: var(--dark-color);
    display: flex;
    align-items: center;
}

.market-list i {
    color: var(--secondary-color);
    margin-right: 12px;
    font-size: 20px;
}

/* ===== QUOTE SECTION ===== */
.quote-section {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../img/quote-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
    text-align: center;
    padding: 120px 0;
}

.quote-section blockquote {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.quote-section blockquote::before,
.quote-section blockquote::after {
    content: '"';
    font-family: Georgia, serif;
    font-size: 80px;
    position: absolute;
    color: rgba(255, 255, 255, 0.2);
    line-height: 1;
}

.quote-section blockquote::before {
    top: -20px;
    left: -40px;
}

.quote-section blockquote::after {
    bottom: -70px;
    right: -40px;
    transform: rotate(180deg);
}

.quote-section p {
    font-family: var(--heading-font);
    font-size: 30px;
    line-height: 1.5;
    font-style: italic;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
    padding: 0 40px;
}

/* ===== CONTACT SECTION ===== */
.contact {
    background-color: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.info-item {
    text-align: center;
    padding: 35px 20px;
    background-color: var(--light-color);
    border-radius: 15px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.02);
}

.info-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    background: linear-gradient(to bottom, var(--light-color), rgba(249, 247, 243, 0.9));
}

.info-item i {
    font-size: 32px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.info-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.info-item p {
    margin-bottom: 0;
    color: var(--text-color);
}

.social-links {
    grid-column: span 2;
    text-align: center;
    margin-top: 25px;
    margin-bottom: 25px;
}

.social-links a {
    display: inline-block;
    width: 45px;
    height: 45px;
    background-color: var(--light-color);
    color: var(--secondary-color);
    border-radius: 50%;
    line-height: 45px;
    margin: 0 8px;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    font-size: 18px;
}

.social-links a:hover {
    background-color: var(--secondary-color);
    color: var(--white);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(212, 165, 165, 0.2);
}

/* Contact Map */
.contact-map {
    grid-column: span 2;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    height: 300px;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.contact-map::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    z-index: 1;
}

/* Facebook embed styling */
.facebook-embed {
    background-color: var(--light-color);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    position: relative;
}

.facebook-embed h3 {
    text-align: center;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.facebook-embed::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    z-index: 0;
    pointer-events: none;
}

/* Custom Facebook Post Styling */
.custom-fb-post {
    max-width: 500px;
    margin: 0 auto;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    z-index: 5;
}

.custom-fb-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.custom-fb-post a {
    text-decoration: none;
    color: #333;
    display: block;
}

.fb-post-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    border-bottom: 1px solid #f0f0f0;
}

.fb-profile {
    display: flex;
    align-items: center;
}

.fb-profile-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.fb-profile-info {
    margin-left: 10px;
}

.fb-profile-info h4 {
    margin: 0;
    font-size: 15px;
    color: #333;
}

.fb-post-time {
    font-size: 12px;
    color: #65676b;
}

.fb-logo {
    font-size: 20px;
    color: #1877f2; /* Facebook blue */
}

.fb-post-content {
    padding: 12px 16px;
    font-size: 15px;
    line-height: 1.5;
}

.fb-post-image {
    width: 100%;
}

.fb-post-image img {
    width: 100%;
    display: block;
}

.fb-post-footer {
    display: flex;
    padding: 8px;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}

.fb-action {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 0;
    color: #65676b;
    font-size: 14px;
    font-weight: 600;
}

.fb-action i {
    margin-right: 5px;
}

.fb-action:hover {
    background-color: #f2f2f2;
    border-radius: 4px;
}

.fb-visit-page {
    background-color: #1877f2;
    color: white;
    text-align: center;
    padding: 12px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.fb-visit-page span {
    color: white;
}

.custom-fb-post:hover .fb-visit-page {
    background-color: #166fe5;
}

/* Remove old FB plugin styles */
.fb-page, .static-fb-fallback, .fb-fallback {
    display: none;
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../img/cta-bg.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
    padding: 120px 0;
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3Ccircle cx='13' cy='13' r='3'/%3E%3C/g%3E%3C/svg%3E");
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    color: var(--white);
    font-size: 40px;
    margin-bottom: 25px;
    font-family: var(--heading-font);
    font-weight: 400;
}

.cta-content p {
    max-width: 700px;
    margin: 0 auto 35px;
    font-size: 18px;
    line-height: 1.7;
}

.cta-content .btn {
    background-color: var(--accent-color);
    color: var(--dark-color);
    padding: 16px 40px;
    font-size: 16px;
}

.cta-content .btn:hover {
    background-color: var(--white);
}

/* ===== FOOTER ===== */
.footer {
    background-color: var(--dark-color);
    color: var(--light-color);
    padding: 80px 0 0;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color), var(--accent-color));
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo h3 {
    color: var(--white);
    font-size: 28px;
    margin-bottom: 20px;
    font-family: var(--heading-font);
    font-weight: 500;
}

.footer-logo p {
    color: rgba(249, 247, 243, 0.7);
    font-size: 15px;
    line-height: 1.7;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: rgba(249, 247, 243, 0.7);
    transition: all 0.3s ease;
    font-size: 15px;
    display: inline-block;
}

.footer-links ul li a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-contact p {
    margin-bottom: 12px;
    color: rgba(249, 247, 243, 0.7);
    font-size: 15px;
    display: flex;
    align-items: center;
}

.footer-contact i {
    color: var(--secondary-color);
    margin-right: 12px;
    font-size: 18px;
}

.footer-bottom {
    text-align: center;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    margin-bottom: 0;
    font-size: 14px;
    color: rgba(249, 247, 243, 0.5);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 48px;
    }
    
    .hero-content h2 {
        font-size: 26px;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .gallery-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .section-title h2 {
        font-size: 36px;
    }

    .contact-content {
        display: grid;
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        padding: 20px 0;
        z-index: 100;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 15px 0;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .menu-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .product-categories {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-content,
    .contact-info,
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-info {
        margin-bottom: 0;
    }
    
    .hero-content {
        margin-left: 5%;
    }
    
    .hero-content h1 {
        font-size: 40px;
    }
    
    .hero-content h2 {
        font-size: 24px;
    }
    
    .section-title h2 {
        font-size: 32px;
    }
    
    .quote-section p {
        font-size: 24px;
        padding: 0 30px;
    }

    .facebook-embed {
        padding: 30px 20px;
    }
    
    .contact-map {
        height: 250px;
        margin-top: 10px;
    }
}

@media (max-width: 576px) {
    .product-categories,
    .gallery-container {
        grid-template-columns: 1fr;
    }
    
    .hero-content {
        text-align: center;
        margin: 0 auto;
    }
    
    .hero-content h1 {
        font-size: 36px;
    }
    
    .hero-content h2 {
        font-size: 22px;
    }
    
    .hero-content p {
        font-size: 16px;
    }
    
    .section-title h2 {
        font-size: 28px;
    }
    
    .quote-section p {
        font-size: 20px;
        padding: 0 20px;
    }
    
    .cta-content h2 {
        font-size: 28px;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .facebook-embed {
        padding: 25px 15px;
    }
    
    .contact-map {
        height: 200px;
    }
} 
/* style.css | file:///C:/projects/rasadnik-gornji-krnjin/css/style.css */

.footer-contact i {
  /* margin-right: 12px; */
  margin-right: 13px;
  margin-left: 13px;
}

/* Remove all previous skeleton loading styles and replace with simpler version */
@keyframes skeleton-loading {
    0% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0 50%;
    }
}

/* Basic skeleton loading */
.skeleton-wrapper {
    position: relative;
    background: #f0f0f0;
}

.skeleton-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        #f0f0f0 25%,
        #e0e0e0 37%,
        #f0f0f0 63%
    );
    background-size: 400% 100%;
    animation: skeleton-loading 1.4s ease infinite;
}

/* Ensure images are always visible */
img {
    position: relative;
    z-index: 2;
    opacity: 1 !important;
    display: block;
    width: 100%;
    height: auto;
}

/* Fix category and gallery images */
.category-img,
.gallery-item {
    position: relative;
    overflow: hidden;
}

.category-img img,
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

/* Remove any conflicting styles */
.category-img::before,
.gallery-item::before,
.about-text.skeleton-wrapper::before,
.working-hours.skeleton-wrapper::before {
    display: none;
}

/* Hero section specific */
.hero {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 30%, rgba(0, 0, 0, 0.0)), url('../img/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    color: var(--white);
    padding-top: 0;
}
