/*
Theme Name: ElsaBridal
Theme URI: https://elsabridal.com
Description: Child theme for Bricks - Cloned from elsabridal.com using BRICKS CLONE ENGINE
Author: Elsa Bridal
Author URI: https://elsabridal.com
Template: bricks
Version: 1.0.0
License: GPLv2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: elsabridal
*/

/* 
 * Custom CSS for ElsaBridal child theme
 * All custom styles go here
 */

/* Import parent theme styles */
@import url('../bricks/style.css');

/* Custom styles for cloned website */
.vl-hero-slider {
    position: relative;
    width: 100%;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
}

.hero-slider-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: center;
}

.hero-content {
    color: #232323;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #232323;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #727272;
}

.hero-button {
    display: inline-block;
    padding: 12px 30px;
    background: #232323;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    transition: background 0.3s;
}

.hero-button:hover {
    background: #000000;
}

.vl-newsletter {
    padding: 60px 20px;
    background: #f9f9f9;
    text-align: center;
}

.newsletter-container {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #232323;
}

.newsletter-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
    color: #727272;
}

.newsletter-form {
    margin-top: 2rem;
}

.newsletter-input-group {
    display: flex;
    gap: 10px;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-input {
    flex: 1;
    padding: 12px 20px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.newsletter-button {
    padding: 12px 30px;
    background: #232323;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.newsletter-button:hover {
    background: #000000;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .newsletter-input-group {
        flex-direction: column;
    }
    
    .newsletter-button {
        width: 100%;
    }
}
