/* 
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 */

header {
    .header-inner {
        .site-branding {
            max-width: 20%;
        }

        .site-navigation {
            max-width: 80%;

            .menu-navbar-menu-container {
                align-self: flex-start;

                #menu-navbar-menu {

                    li { 
                        background-color: #0086f8;
                        border-radius: 10px;
                        margin: 5px;

                        a {
                            font-size: 16px;
                            color: black;
                            text-decoration: none;
                        }

                        a:hover { 
                            text-decoration: underline;
                        }
                    }
                }
            }
        }
    }
}
footer {
    height: 175px;
    .container {
        .footer-widgets {
            display: inline-flex;
            flex-wrap: wrap;
            gap: 60px;
            width: -webkit-fill-available;
            display: ruby-text;
            padding-top: 15px;

            .footer-column {
                display: flex;
                flex-direction: column;
                gap: 8px;

                i {
                    padding-top: 5px;
                }

                h4 {
                    color: white;
                    font-weight: 900;
                    font-size: 16px;
                    margin: 0;
                    text-transform: uppercase;
                }

                span, a, p {
                display: flex;
                gap: 8px;
                font-weight: 400;
                font-size: 16px;
                color: white;
                margin: 0;
                }

                a:hover {
                    text-decoration: underline;
                }
            }
        } 
    }
}

/*
.footer-widgets {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 60px;
  }
  
  .footer-col {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-width: 250px;
  }
  
  .footer-col i {
    padding-top: 5px;
  }
  
  .footer-col h4 {
    color: white;
    font-weight: 900;
    font-size: 16px;
    margin: 0;
    text-transform: uppercase;
  }
  
  .footer-col span,
  .footer-col a,
  .footer-col p {
    display: flex;
    gap: 8px;
    font-weight: 400;
    font-size: 16px;
    color: white;
    margin: 0;
  }
  
  .footer-col a:hover {
    text-decoration: underline;
  }*/
  

footer {
    //background-image: url('http://asociatiav3-dev.ro/wp-content/uploads/2024/06/gradient_background.png'); 
    background-size: 100% 100%;
    background-color: black;

    .container {
        width: auto;
    }

    .footer-inner {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;

        .site-navigation {
            
            .menu-footer-menu-container {
                ul {
                    flex-direction: column;
                    align-items: flex-end;

                    li a {
                        font-size: 16px;
                        color: white;
                        text-decoration: none;
                    }

                    a:hover { 
                        text-decoration: underline;
                    }
                }
            }
        }

        .site-branding {
            .site-logo a img {
                display: none;
                
                /*@media only screen and (max-width: 560px) {
                    img { 
                        max-height: 200px; 
                        display: none;
                        height: 130px;
                        width: 200px;
                    }
                }*/
            }
        }
    }
}

.elementor-widget-container {
    .eael-contact-form {
        .wpforms-container {
            form {
                .wpforms-submit-container {
                    button {
                        padding: 10px;
                        margin: 15px;
                        background-color: #0086f8;
                        color: black;
                        border: 2px solid black;
                        float: right;
                        margin-right: auto;
                    }

                    button:hover {
                        background-color: white;
                    }
                }
            }
        }
    }
}

.site-footer .footer-inner .copyright {
    display: none;
}

.site-footer:not(.footer-stacked) .footer-inner .site-navigation {
    max-width: 60%;
    display: flex;
    justify-content: flex-end
}

#content {
    .page-content {
        .elementor-element {
            .e-con-inner {
                p, h2, h3 {
                    color: black;
                }

                .elementor-widget-redirect_revenue {
                    display: flex;
                    justify-content: center;

                    .elementor-widget-container {
                        width: 70%;
   

                        div {
                            border-radius: 10px;
                            border: solid #0086f8;
                            border: radius 10px;
                            display: flex;
                            margin-top: 20px;

                        .redirect-amount {
                            display: flex;
                            flex-direction: column;
                            padding: 20px;
                        }

                        .result-box {
                            min-width: 50%;
                            display: flex;
                            align-items: center;
                            justify-content: center;
                            border: none;
                            font-size: xx-large;
                            margin-top: 0px;
                        }
                    }
                }
            }
        }

        #sponsors {
            .e-con-inner {
                .elementor-element {
                    .e-con-inner {
                        display: flex;
                        flex-direction: row;
                        align-content: space-around;
                    }
                }
            }
        }
    }

    .elementor-element {
        form {
            .wpforms-field-container {
                .wpforms-field-row {
                    min-width: 100%;
                }

                .wpforms-field-email {
                    input {
                        min-width: 100%;
                    }
                }
            }
        }
    }
}

/* Spinner CSS */
#spinner-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .spinner {
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 16px solid #1032cf;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;
  }
  
  @keyframes spin {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }

  .categoryName {
    color: #38B6FF;
    display: flex;
    align-items: center;
    justify-content: center;
 }

 .moreDetails, .readMore {
    background-color: #00bf63;
    border-radius: 7px;
    border: 2px solid black;

    a {
        color: black;
    }
 }

 .moreDetails:hover,
 .readMore:hover {
    background-color: white;
 }

 #register-form button {
    padding: 10px;
    margin: 15px;
    background-color: #0086f8;
    color: black;
    border: 2px solid black;
    float: inline-end;
}

#register-form button:hover {
    background-color: white;
}

#register-form label {
    margin-top: 15px;
}

#sponsors {
    .elementor-widget-container {
        display: flex;
        align-items: center;
        padding: 30px;
    }
}

 .elementor-element {
    .elementor-widget-container {        

        .events-list,
        .classes-list {
            display: flex;
            flex-wrap: wrap;
            //width: max-content;
            justify-content: space-around;

            .eventBackground,
            .classBackground {
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                height: 100%;

                img {
                    height: 80%;
                    max-width: 350px;
                    max-height: 500px;
                    border-radius: 20px;
                }

                .details {
                    display: flex;
                    flex-direction: column;
                    align-items: center;
                }    
                
            }
        }
    }
 }


