/* Brief Template Styles */

/* Animacje fade-up */
.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-fade-up.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Brief Text Sections */
.brief-text-section {
    padding: 80px 0;
}

.brief-text-section-1 {
    padding-top: 100px;
}

.brief-text-content {
    margin: 0 auto;
    color: var(--color-dark);
    line-height: 1.8;
}

.brief-text-content h2,
.brief-text-content h3,
.brief-text-content h4,
.brief-text-content h5,
.brief-text-content h6 {
    color: var(--color-main);
    margin-bottom: 20px;
    margin-top: 30px;
}

.brief-text-content h2:first-child,
.brief-text-content h3:first-child,
.brief-text-content h4:first-child {
    margin-top: 0;
}

.brief-text-content p {
    margin-bottom: 15px;
}

.brief-text-content ul,
.brief-text-content ol {
    margin-left: 20px;
    margin-bottom: 15px;
}

.brief-text-content a {
    color: var(--color-main);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.brief-text-content a:hover {
    color: var(--color-orange);
}

/* Brief Form Section */
.brief-form-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.brief-form-wrapper {
    margin: 0 auto;
}

.brief-form-wrapper .wpcf7-form {
    background: var(--color-white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.brief-form-wrapper .wpcf7-form input[type="text"],
.brief-form-wrapper .wpcf7-form input[type="email"],
.brief-form-wrapper .wpcf7-form input[type="tel"],
.brief-form-wrapper .wpcf7-form input[type="url"],
.brief-form-wrapper .wpcf7-form textarea,
.brief-form-wrapper .wpcf7-form select {
    width: 100%;
    padding: 15px;
    border: 2px solid #f0f0f0;
    border-radius: 10px;
    margin-bottom: 20px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: var(--font-face);
}

.brief-form-wrapper .wpcf7-form input:focus,
.brief-form-wrapper .wpcf7-form textarea:focus,
.brief-form-wrapper .wpcf7-form select:focus {
    outline: none;
    border-color: var(--color-main);
}

.brief-form-wrapper .wpcf7-form input[type="submit"],
.brief-form-wrapper .wpcf7-form button[type="submit"] {
    background: var(--color-orange);
    color: var(--color-white);
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    font-family: var(--font-face);
}

.brief-form-wrapper .wpcf7-form input[type="submit"]:hover,
.brief-form-wrapper .wpcf7-form button[type="submit"]:hover {
    background: #e55a2b;
    transform: translateY(-2px);
}

/* Brief Features Section: 4 Features Grid */
.brief-features-section {
    padding: 100px 0;
    background: #fff;
}

.brief-features-grid,
.brief-features-section .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

/* Używamy istniejących klas z website-creation.css dla boxów */
/* Style dla .brief-feature-card są dziedziczone z .website-feature-card */

.step-nav{
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
}

.wpcf7-spinner{
    display:none;
}

.brief-form-wrapper .wpcf7-form input[type="submit"]{
    width: 25%;
    min-width: 140px;
}

span.red{
    color: #FF0000;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .brief-features-grid,
    .brief-features-section .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .brief-text-section {
        padding: 60px 0;
    }
    
    .brief-text-section-1 {
        padding-top: 80px;
    }
    
    .brief-text-content {
        padding: 0 20px;
    }
    
    .brief-form-section {
        padding: 40px 0;
    }
    
    .brief-form-wrapper {
        padding: 0 20px;
    }
    
    .brief-form-wrapper .wpcf7-form {
        padding: 30px 20px;
    }
    
    .brief-features-section {
        padding: 60px 0;
    }
    
    .brief-features-grid,
    .brief-features-section .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

