/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* Add your custom styles here */



/* Ikonice foto video galerija */
.icon-wrapper {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: white; /* White background for the circle */
    color: black;      /* Icon color */
    border-radius: 50%; /* Makes the background a circle */
    width: 25px;       /* Default size */
    height: 25px;      /* Default size */
    margin-right: 5px; /* Space between icons if both are shown */
    transition: all 0.3s ease; /* Smooth transitions for responsiveness */
}

/* Individual Icons */
.icon-wrapper i {
    font-size: 14px; /* Default icon size */
    transition: font-size 0.3s ease; /* Smooth font size transition */
}

/* Responsive Styles */
@media (max-width: 768px) {
    .icon-wrapper {
        width: 25px;  /* Smaller size for tablets */
        height: 25px;
        margin-right: 4px; /* Adjust spacing */
    }

    .icon-wrapper i {
        font-size: 14px; /* Adjust font size */
    }
}

@media (max-width: 480px) {
    .icon-wrapper {
        width: 20px;  /* Smaller size for mobile */
        height: 20px;
        margin-right: 3px; /* Adjust spacing */
    }

    .icon-wrapper i {
        font-size: 12px; /* Smaller icon size */
    }
}
